44 lines
1.6 KiB
XML
44 lines
1.6 KiB
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
<Nullable>enable</Nullable>
|
|
<OutputType>Exe</OutputType>
|
|
<RootNamespace>F4SD.Cockpit.Client.Test</RootNamespace>
|
|
<TargetFramework>net9.0</TargetFramework>
|
|
<!--
|
|
To enable the Microsoft Testing Platform 'dotnet test' experience, add property:
|
|
<TestingPlatformDotnetTestSupport>true</TestingPlatformDotnetTestSupport>
|
|
|
|
To enable the Microsoft Testing Platform native command line experience, add property:
|
|
<UseMicrosoftTestingPlatformRunner>true</UseMicrosoftTestingPlatformRunner>
|
|
|
|
For more information on Microsoft Testing Platform support in xUnit.net, please visit:
|
|
https://xunit.net/docs/getting-started/v3/microsoft-testing-platform
|
|
-->
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<Content Include="xunit.runner.json" CopyToOutputDirectory="PreserveNewest" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<Using Include="Xunit" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="18.0.0" />
|
|
<PackageReference Include="NSubstitute" Version="5.3.0" />
|
|
<PackageReference Include="xunit.v3" Version="3.1.0" />
|
|
<PackageReference Include="xunit.runner.visualstudio" Version="3.1.5">
|
|
<PrivateAssets>all</PrivateAssets>
|
|
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
|
|
</PackageReference>
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\FasdDesktopUi\F4SD-Cockpit-Client.csproj" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|