mirror of
https://github.com/Thealexbarney/LibHac.git
synced 2024-11-14 10:49:41 +01:00
30 lines
874 B
XML
30 lines
874 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<TargetFramework>net6.0</TargetFramework>
|
|
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
|
|
|
|
<IsPackable>false</IsPackable>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.4.0" />
|
|
<PackageReference Include="xunit.core" Version="2.4.2" />
|
|
<PackageReference Include="xunit.analyzers" Version="1.0.0" />
|
|
<PackageReference Include="xunit.assert.source" Version="2.4.2" />
|
|
<PackageReference Include="xunit.runner.visualstudio" Version="2.4.5" />
|
|
</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>
|