-
Notifications
You must be signed in to change notification settings - Fork 6
/
Directory.Build.props
23 lines (23 loc) · 1.01 KB
/
Directory.Build.props
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<Project>
<Choose>
<When Condition="$(MSBuildProjectName.Contains('GiganticEmu'))">
<PropertyGroup>
<nullable>enable</nullable>
<NoWarn>$(NoWarn);1998;CS8524;ACONS02;CS1998</NoWarn>
<WarningsAsErrors>CS8600;CS8602;CS8603</WarningsAsErrors>
<TargetFramework>net7.0</TargetFramework>
<BaseOutputPath>build/$(OS)/bin</BaseOutputPath>
<BaseIntermediateOutputPath>build/$(OS)/obj</BaseIntermediateOutputPath>
<IntermediateOutputPath>build/$(OS)/obj</IntermediateOutputPath>
<AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
<DefaultItemExcludes>$(DefaultItemExcludes);build/**</DefaultItemExcludes>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="GitVersion.MsBuild" Version="5.12.0">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers</IncludeAssets>
</PackageReference>
</ItemGroup>
</When>
</Choose>
</Project>