Skip to content

Commit

Permalink
Merge pull request #533 from aaubry/insertion-queue-performance
Browse files Browse the repository at this point in the history
Small performance improvements. Addresses #519
  • Loading branch information
aaubry committed Oct 1, 2020
2 parents 22a29f3 + 92b690e commit cd123f7
Show file tree
Hide file tree
Showing 53 changed files with 899 additions and 1,475 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Expand Up @@ -29,3 +29,5 @@ YamlDotNet/Properties/AssemblyInfo.Generated.cs

/.vs
/YamlDotNet/Properties/AssemblyInfo.cs
BenchmarkDotNet.Artifacts

@@ -0,0 +1,22 @@
<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003" ToolsVersion="Current">
<PropertyGroup>
<OldToolsVersion>2.0</OldToolsVersion>
<ProjectGuid>{2C86D85C-A483-4F17-8897-2B53DC1DBFA3}</ProjectGuid>
<Configurations>Release</Configurations>
<Platforms>AnyCPU</Platforms>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
</PropertyGroup>
<Import Project="versions.props" />
<ItemGroup>
<None Include="versions.props" />
</ItemGroup>
<Target Name="Build" Outputs="%(TestVersions.Identity)">
<Message Importance="high" Text="BUILDING %(TestVersions.Identity)" />
<MSBuild Projects="..\YamlDotNet.PerformanceTests\YamlDotNet.PerformanceTests.csproj" Targets="Restore;Build" BuildInParallel="$(BuildInParallel)" Properties="Configuration=Release;TestVersion=%(TestVersions.Identity);BaseIntermediateOutputPath=obj\%(TestVersions.Identity)\;MSBuildProjectExtensionsPath=obj\%(TestVersions.Identity)\" />
<Message Importance="high" Text="&#xA;" />
</Target>
<Target Name="Clean">
<RemoveDir Directories="..\YamlDotNet.PerformanceTests\obj\%(TestVersions.Identity)" />
</Target>
</Project>
@@ -0,0 +1,12 @@
<Project>
<ItemGroup>
<!-- After changing this file, you need to tell Visual Studio to reload the project! -->

<TestVersions Include="3.8.0" />
<TestVersions Include="4.0.0" />
<TestVersions Include="5.3.0" />
<TestVersions Include="8.0.0" />
<TestVersions Include="8.1.2" />
<TestVersions Include="latest" />
</ItemGroup>
</Project>

This file was deleted.

This file was deleted.

0 comments on commit cd123f7

Please sign in to comment.