-
Notifications
You must be signed in to change notification settings - Fork 263
Expand file tree
/
Copy pathBuild.csproj
More file actions
31 lines (27 loc) · 1.16 KB
/
Build.csproj
File metadata and controls
31 lines (27 loc) · 1.16 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
27
28
29
30
31
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net10.0</TargetFramework>
<RootNamespace></RootNamespace>
<NoWarn>CS0649;CS0169;CA1050;CA1822;CA2211;IDE1006</NoWarn>
<NukeRootDirectory>..</NukeRootDirectory>
<NukeScriptDirectory>..</NukeScriptDirectory>
<NukeTelemetryVersion>1</NukeTelemetryVersion>
<IsPackable>false</IsPackable>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="LibGit2Sharp" />
<PackageReference Include="Nuke.Common" />
<PackageReference Include="Nuke.Components" />
<PackageReference Include="SharpCompress" />
</ItemGroup>
<ItemGroup>
<PackageDownload Include="coverlet.console" Version="[3.1.2]" />
<PackageDownload Include="dotnet-sonarscanner" Version="[9.0.2]" />
<PackageDownload Include="dotnet-stryker" Version="[4.4.1]" />
<PackageDownload Include="GitVersion.Tool" Version="[6.0.5]" />
<PackageDownload Include="NUnit.ConsoleRunner" Version="[3.19.2]" />
<PackageDownload Include="ReportGenerator" Version="[5.4.1]" />
<PackageDownload Include="xunit.runner.console" Version="[2.9.2]" />
</ItemGroup>
</Project>