mirror of
https://github.com/Thealexbarney/LibHac.git
synced 2025-02-09 13:14:46 +01:00
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.
30 lines
834 B
XML
30 lines
834 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<TargetFramework>netcoreapp3.1</TargetFramework>
|
|
|
|
<IsPackable>false</IsPackable>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="16.7.0" />
|
|
<PackageReference Include="xunit.core" Version="2.4.1" />
|
|
<PackageReference Include="xunit.analyzers" Version="0.10.0" />
|
|
<PackageReference Include="xunit.assert.source" Version="2.4.1" />
|
|
<PackageReference Include="xunit.runner.visualstudio" Version="2.4.3" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\..\src\LibHac\LibHac.csproj" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<None Remove="LibHac.Tests.csproj.DotSettings" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<EmbeddedResource Include="CryptoTests\TestVectors\*.rsp" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|