forked from ardalis/SmartEnum
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSmartEnum.Benchmarks.csproj
20 lines (20 loc) · 988 Bytes
/
SmartEnum.Benchmarks.csproj
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>netcoreapp2.1</TargetFramework>
<IsPackable>false</IsPackable>
<LangVersion>7.3</LangVersion>
<Features>strict</Features>
<GeneratePackageOnBuild>false</GeneratePackageOnBuild>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="BenchmarkDotNet" Version="0.13.1" />
<PackageReference Include="Constant" Version="2.0.4" />
<PackageReference Include="Enums.NET" Version="4.0.0" />
<ProjectReference Include="..\..\src\SmartEnum.MessagePack\SmartEnum.MessagePack.csproj" />
<ProjectReference Include="..\..\src\SmartEnum\SmartEnum.csproj" />
<ProjectReference Include="..\..\src\SmartEnum.JsonNet\SmartEnum.JsonNet.csproj" />
<ProjectReference Include="..\..\src\SmartEnum.Utf8Json\SmartEnum.Utf8Json.csproj" />
<ProjectReference Include="..\..\src\SmartEnum.ProtoBufNet\SmartEnum.ProtoBufNet.csproj" />
</ItemGroup>
</Project>