-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathRegexProof.csproj
More file actions
26 lines (21 loc) · 1.03 KB
/
Copy pathRegexProof.csproj
File metadata and controls
26 lines (21 loc) · 1.03 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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFrameworks>net8.0;net9.0;net10.0</TargetFrameworks>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<LangVersion>latest</LangVersion>
<!-- Исходник, который пишет генератор регулярных выражений, по умолчанию
на диск не попадает. Эти две строки сохраняют его в папку Generated. -->
<EmitCompilerGeneratedFiles>true</EmitCompilerGeneratedFiles>
<CompilerGeneratedFilesOutputPath>Generated</CompilerGeneratedFilesOutputPath>
</PropertyGroup>
<ItemGroup>
<Compile Remove="Disasm\**\*.cs" />
<!-- Сохранённые файлы генератора компилировать второй раз не нужно. -->
<Compile Remove="Generated\**\*.cs" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="BenchmarkDotNet" Version="0.15.8" />
</ItemGroup>
</Project>