2018-11-22 04:57:18 +01:00
|
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
|
|
|
|
|
|
<PropertyGroup>
|
|
|
|
|
<OutputType>Exe</OutputType>
|
|
|
|
|
<TargetFramework>netcoreapp2.1</TargetFramework>
|
|
|
|
|
<AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
|
2019-02-17 02:03:56 +01:00
|
|
|
|
<RootNamespace>LibHacBuild</RootNamespace>
|
2018-11-22 04:57:18 +01:00
|
|
|
|
<IsPackable>False</IsPackable>
|
|
|
|
|
<NoWarn>CS0649;CS0169</NoWarn>
|
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
2019-02-17 02:03:56 +01:00
|
|
|
|
<PackageReference Include="GitVersion.CommandLine.DotNetCore" Version="4.0.0" />
|
2018-11-22 04:57:18 +01:00
|
|
|
|
<PackageReference Include="ILRepack.Lib" Version="2.0.16" NoWarn="NU1701" />
|
2019-02-17 02:03:56 +01:00
|
|
|
|
<PackageReference Include="NuGet.CommandLine" Version="4.9.3" />
|
|
|
|
|
<PackageReference Include="Nuke.Common" Version="0.16.0" />
|
|
|
|
|
<PackageReference Include="SharpZipLib" Version="1.1.0" />
|
2018-11-22 04:57:18 +01:00
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
<NukeMetadata Include="**\*.json" Exclude="bin\**;obj\**" />
|
|
|
|
|
<NukeExternalFiles Include="**\*.*.ext" Exclude="bin\**;obj\**" />
|
|
|
|
|
<None Remove="*.csproj.DotSettings;*.ref.*.txt" />
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
</Project>
|