-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path_build.csproj
29 lines (25 loc) · 1.18 KB
/
_build.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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net8.0</TargetFramework>
<RootNamespace></RootNamespace>
<NoWarn>CS0649;CS0169</NoWarn>
<NukeRootDirectory>..</NukeRootDirectory>
<NukeScriptDirectory>..</NukeScriptDirectory>
<NukeTelemetryVersion>1</NukeTelemetryVersion>
<EnableUnsafeBinaryFormatterSerialization>true</EnableUnsafeBinaryFormatterSerialization>
</PropertyGroup>
<ItemGroup Condition="'$(TargetFramework)' == 'net8.0'">
<!-- Restore insecure BinaryFormatter package until we can move to Nuke 9 which doesn't need it -->
<PackageReference Include="System.Runtime.Serialization.Formatters" Version="9.0.4" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Nuke.Common" Version="8.1.0" />
<PackageReference Include="ILRepack" Version="2.0.41">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
<PackageDownload Include="NuGet.CommandLine" Version="[6.12.2]" />
<PackageDownload Include="Octopus.OctoVersion.Tool" Version="[1.0.6]" />
</ItemGroup>
</Project>