-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathOverflowProof.csproj
More file actions
24 lines (21 loc) · 957 Bytes
/
Copy pathOverflowProof.csproj
File metadata and controls
24 lines (21 loc) · 957 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFrameworks>net8.0;net9.0;net10.0</TargetFrameworks>
<RootNamespace>OverflowProof</RootNamespace>
<AssemblyName>OverflowProof</AssemblyName>
<LangVersion>latest</LangVersion>
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
<Optimize>true</Optimize>
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
<GenerateDocumentationFile>false</GenerateDocumentationFile>
<!-- Дизассемблер BenchmarkDotNet читает карту символов: без неё вместо имён -->
<!-- методов в отчёте будут адреса. -->
<DebugType>pdbonly</DebugType>
<DebugSymbols>true</DebugSymbols>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="BenchmarkDotNet" Version="0.15.8" />
</ItemGroup>
</Project>