Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Small performance improvements #533

Merged
merged 3 commits into from
Oct 1, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -29,3 +29,5 @@ YamlDotNet/Properties/AssemblyInfo.Generated.cs

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

Original file line number Diff line number Diff line change
@@ -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>
Original file line number Diff line number Diff line change
@@ -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.

Loading