2018-11-21 22:57:18 -05:00
|
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
|
|
|
|
|
|
<PropertyGroup>
|
|
|
|
|
<OutputType>Exe</OutputType>
|
2020-11-15 14:53:08 -07:00
|
|
|
|
<TargetFramework>net5.0</TargetFramework>
|
2021-11-14 12:08:57 -07:00
|
|
|
|
<LangVersion>10.0</LangVersion>
|
2018-11-21 22:57:18 -05:00
|
|
|
|
<AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
|
2019-02-16 19:03:56 -06:00
|
|
|
|
<RootNamespace>LibHacBuild</RootNamespace>
|
2018-11-21 22:57:18 -05:00
|
|
|
|
<IsPackable>False</IsPackable>
|
|
|
|
|
<NoWarn>CS0649;CS0169</NoWarn>
|
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
2021-03-19 16:46:37 -07:00
|
|
|
|
<PackageDownload Include="GitVersion.Tool" Version="[5.6.3]" />
|
2021-03-18 17:35:17 -07:00
|
|
|
|
<PackageReference Include="CsvHelper" Version="26.0.1" />
|
|
|
|
|
<PackageReference Include="NuGet.CommandLine" Version="5.8.1" />
|
|
|
|
|
<PackageReference Include="Nuke.Common" Version="5.0.2" />
|
|
|
|
|
<PackageReference Include="SharpZipLib" Version="1.3.1" />
|
2018-11-21 22:57:18 -05:00
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
<NukeMetadata Include="**\*.json" Exclude="bin\**;obj\**" />
|
|
|
|
|
<NukeExternalFiles Include="**\*.*.ext" Exclude="bin\**;obj\**" />
|
|
|
|
|
<None Remove="*.csproj.DotSettings;*.ref.*.txt" />
|
2020-02-24 14:45:51 -07:00
|
|
|
|
<EmbeddedResource Include="CodeGen\*.csv" />
|
2020-10-06 18:15:32 -07:00
|
|
|
|
<Compile Remove="CodeGen\Stage2\**" />
|
|
|
|
|
<Compile Remove="CodeGen\bin\**;CodeGen\obj\**" />
|
|
|
|
|
<None Remove="CodeGen\bin\**;CodeGen\obj\**" />
|
2018-11-21 22:57:18 -05:00
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
</Project>
|