-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy path_build.csproj
More file actions
28 lines (23 loc) · 874 Bytes
/
_build.csproj
File metadata and controls
28 lines (23 loc) · 874 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
25
26
27
28
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net8.0</TargetFramework>
<RootNamespace></RootNamespace>
<NoWarn>CS0649;CS0169</NoWarn>
<NukeRootDirectory>..</NukeRootDirectory>
<NukeScriptDirectory>..</NukeScriptDirectory>
<LangVersion>12</LangVersion>
<!-- NETSDK1138: Ignore .NET SDK deprecation notice -->
<NoWarn>$(NoWarn);NETSDK1138;NU1902;NU1903</NoWarn>
<Configurations>Debug;Release;Verify</Configurations>
<IsPackable>false</IsPackable>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Nuke.Common" Version="10.1.0" />
<PackageReference Include="ReportGenerator" Version="5.5.4" />
<PackageDownload Include="GitVersion.Tool" Version="[5.10.3]" />
</ItemGroup>
<ItemGroup>
<None Remove="..\global.json" />
</ItemGroup>
</Project>