2018-11-22 04:57:18 +01:00
|
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
|
|
|
|
|
|
<PropertyGroup>
|
|
|
|
|
<OutputType>Exe</OutputType>
|
2019-12-31 07:05:29 +01:00
|
|
|
|
<TargetFramework>netcoreapp3.1</TargetFramework>
|
2018-11-22 04:57:18 +01:00
|
|
|
|
<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-12-31 07:05:29 +01:00
|
|
|
|
<PackageDownload Include="GitVersion.Tool" Version="[5.1.3]" />
|
2020-08-16 08:19:27 +02:00
|
|
|
|
<PackageReference Include="CsvHelper" Version="15.0.5" />
|
|
|
|
|
<PackageReference Include="NuGet.CommandLine" Version="5.6.0" />
|
|
|
|
|
<PackageReference Include="Nuke.Common" Version="0.24.11" />
|
2019-10-15 04:10:53 +02:00
|
|
|
|
<PackageReference Include="SharpZipLib" Version="1.2.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" />
|
2020-02-24 22:45:51 +01:00
|
|
|
|
<EmbeddedResource Include="CodeGen\*.csv" />
|
2018-11-22 04:57:18 +01:00
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
</Project>
|