-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCodeforces.csproj
37 lines (32 loc) · 1.36 KB
/
Codeforces.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
33
34
35
36
37
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net6.0</TargetFramework>
<Nullable>Enable</Nullable>
<LangVersion>8.0</LangVersion>
<RootNamespace></RootNamespace>
<StartupObject>Infra.Program</StartupObject>
<DefineConstants>LOCAL</DefineConstants>
</PropertyGroup>
<ItemGroup>
<Compile Remove="_Generated\**" />
<EmbeddedResource Remove="_Generated\**" />
<None Remove="_Generated\**" />
</ItemGroup>
<ItemGroup>
<CustomAttribute Include="Infra.PathAttribute">
<_Parameter1>GenerationRoot</_Parameter1>
<_Parameter2>$(ProjectDir)\_Generated</_Parameter2>
</CustomAttribute>
<CustomAttribute Include="Infra.PathAttribute">
<_Parameter1>ProjectRoot</_Parameter1>
<_Parameter2>$(ProjectDir)</_Parameter2>
</CustomAttribute>
</ItemGroup>
<Target Name="PreBuild" BeforeTargets="PreBuildEvent">
<WriteCodeFragment Language="C#" AssemblyAttributes="@(CustomAttribute)" OutputDirectory="$(IntermediateOutputPath)" OutputFile="CustomAttributes.g.cs">
<Output TaskParameter="OutputFile" ItemName="Compile" />
<Output TaskParameter="OutputFile" ItemName="FileWrites" />
</WriteCodeFragment>
</Target>
</Project>