-
-
Notifications
You must be signed in to change notification settings - Fork 18
Expand file tree
/
Copy pathFixedMathSharp.Benchmarks.csproj
More file actions
29 lines (29 loc) · 1.18 KB
/
Copy pathFixedMathSharp.Benchmarks.csproj
File metadata and controls
29 lines (29 loc) · 1.18 KB
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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<LangVersion>11.0</LangVersion>
<OutputType>Exe</OutputType>
<TargetFrameworks>net8.0</TargetFrameworks>
<ImplicitUsings>disable</ImplicitUsings>
<Nullable>disable</Nullable>
<Optimize>true</Optimize>
<DebugSymbols>true</DebugSymbols>
<NoWarn>$(NoWarn);CA1018;CA5351;CA1825</NoWarn>
<GenerateDocumentationFile>false</GenerateDocumentationFile>
<PlatformTarget>AnyCPU</PlatformTarget>
<Configurations>Debug;Release;ReleaseLean</Configurations>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)' == 'ReleaseLean'">
<DefineConstants>$(DefineConstants);FIXEDMATHSHARP_DISABLE_MEMORYPACK</DefineConstants>
</PropertyGroup>
<ItemGroup>
<ProjectReference Include="..\..\src\FixedMathSharp\FixedMathSharp.csproj" />
<PackageReference Include="BenchmarkDotNet" Version="0.15.8" />
<!-- The Test SDK is required only for the VSTest Adapter to work -->
</ItemGroup>
<ItemGroup Condition="'$(Configuration)' != 'ReleaseLean'">
<PackageReference Include="MemoryPack" Version="1.21.4" />
</ItemGroup>
<ItemGroup>
<None Remove=".gitignore" />
</ItemGroup>
</Project>