-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathChasm.SemanticVersioning.Benchmarks.csproj
32 lines (29 loc) · 1.26 KB
/
Chasm.SemanticVersioning.Benchmarks.csproj
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFrameworks>
net9.0;
net5.0;
netcoreapp3.1;
netstandard2.1;
</TargetFrameworks>
<IsPackable>false</IsPackable>
<GenerateDocumentationFile>false</GenerateDocumentationFile>
<ImplicitUsings>enable</ImplicitUsings>
</PropertyGroup>
<ItemGroup>
<None Remove="Chasm.SemanticVersioning.Benchmarks.csproj.DotSettings" />
<ProjectReference Include="..\Chasm.Utilities\Chasm.Utilities.csproj" />
<ProjectReference Include="..\Chasm.Collections\Chasm.Collections.csproj" />
<ProjectReference Include="..\Chasm.SemanticVersioning\Chasm.SemanticVersioning.csproj" />
<PackageReference Include="JetBrains.Annotations" Version="2024.2.0" PrivateAssets="all" />
<PackageReference Include="BenchmarkDotNet" Version="0.14.0" />
<PackageReference Include="McSherry.SemanticVersioning" Version="1.4.1" />
<PackageReference Include="NuGet.Versioning" Version="6.12.1" />
<PackageReference Include="SemanticVersioning" Version="3.0.0" />
<PackageReference Include="Semver" Version="3.0.0" />
</ItemGroup>
<PropertyGroup>
<SuppressTfmSupportBuildWarnings>True</SuppressTfmSupportBuildWarnings>
</PropertyGroup>
</Project>