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.
29 lines
834 B
XML
29 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>
|