mirror of
https://github.com/Thealexbarney/LibHac.git
synced 2024-11-14 10:49:41 +01:00
a005b40022
Use the version in the .csproj if there is no local git repository. Always use Windows line endings in codegen output. Update build dependency versions. We're still using GitVersion 5.1.3 because of https://github.com/nuke-build/nuke/issues/509.
27 lines
998 B
XML
27 lines
998 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<OutputType>Exe</OutputType>
|
|
<TargetFramework>netcoreapp3.1</TargetFramework>
|
|
<AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
|
|
<RootNamespace>LibHacBuild</RootNamespace>
|
|
<IsPackable>False</IsPackable>
|
|
<NoWarn>CS0649;CS0169</NoWarn>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageDownload Include="GitVersion.Tool" Version="[5.1.3]" />
|
|
<PackageReference Include="CsvHelper" Version="15.0.5" />
|
|
<PackageReference Include="NuGet.CommandLine" Version="5.6.0" />
|
|
<PackageReference Include="Nuke.Common" Version="0.24.11" />
|
|
<PackageReference Include="SharpZipLib" Version="1.2.0" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<NukeMetadata Include="**\*.json" Exclude="bin\**;obj\**" />
|
|
<NukeExternalFiles Include="**\*.*.ext" Exclude="bin\**;obj\**" />
|
|
<None Remove="*.csproj.DotSettings;*.ref.*.txt" />
|
|
<EmbeddedResource Include="CodeGen\*.csv" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|