25 lines
697 B
XML
25 lines
697 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<TargetFramework>net10.0</TargetFramework>
|
|
<OutputType>Exe</OutputType>
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
<Nullable>enable</Nullable>
|
|
<UseMicrosoftTestingPlatformRunner>true</UseMicrosoftTestingPlatformRunner>
|
|
<!--
|
|
Microsoft Testing Platform docs
|
|
https://xunit.net/docs/getting-started/v3/microsoft-testing-platform
|
|
-->
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<Content Include="xunit.runner.json" CopyToOutputDirectory="PreserveNewest" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="AwesomeAssertions" />
|
|
<PackageReference Include="xunit.v3.mtp-v2" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|