2018-11-18 23:20:34 -05:00
|
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
|
|
|
|
|
|
<PropertyGroup>
|
2023-12-08 23:30:46 -07:00
|
|
|
|
<TargetFramework>net8.0</TargetFramework>
|
2021-01-17 00:30:51 -07:00
|
|
|
|
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
|
2022-12-13 19:10:10 -07:00
|
|
|
|
<CheckForOverflowUnderflow>true</CheckForOverflowUnderflow>
|
2018-11-18 23:20:34 -05:00
|
|
|
|
|
|
|
|
|
<IsPackable>false</IsPackable>
|
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
2024-05-22 20:12:15 -07:00
|
|
|
|
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.9.0" />
|
|
|
|
|
<PackageReference Include="xunit.core" Version="2.8.0" />
|
|
|
|
|
<PackageReference Include="xunit.analyzers" Version="1.13.0" />
|
|
|
|
|
<PackageReference Include="xunit.assert.source" Version="2.8.0" />
|
|
|
|
|
<PackageReference Include="xunit.runner.visualstudio" Version="2.8.0">
|
2023-10-08 21:03:56 -07:00
|
|
|
|
<PrivateAssets>all</PrivateAssets>
|
|
|
|
|
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
|
|
|
|
|
</PackageReference>
|
2018-11-18 23:20:34 -05:00
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
2018-11-21 22:57:18 -05:00
|
|
|
|
<ProjectReference Include="..\..\src\LibHac\LibHac.csproj" />
|
2018-11-18 23:20:34 -05:00
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
2020-01-28 00:55:39 -07:00
|
|
|
|
<ItemGroup>
|
|
|
|
|
<None Remove="LibHac.Tests.csproj.DotSettings" />
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
2019-11-09 00:32:13 -07:00
|
|
|
|
<ItemGroup>
|
|
|
|
|
<EmbeddedResource Include="CryptoTests\TestVectors\*.rsp" />
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
2018-11-18 23:20:34 -05:00
|
|
|
|
</Project>
|