44 lines
1.7 KiB
XML
44 lines
1.7 KiB
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<TargetFramework>net8.0</TargetFramework>
|
|
<LangVersion>latest</LangVersion>
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
<Nullable>enable</Nullable>
|
|
<EnableMSTestRunner>true</EnableMSTestRunner>
|
|
<OutputType>Exe</OutputType>
|
|
<TestingPlatformDotnetTestSupport>true</TestingPlatformDotnetTestSupport>
|
|
<!--
|
|
Displays error on console in addition to the log file. Note that this feature comes with a performance impact.
|
|
For more information, visit https://learn.microsoft.com/dotnet/core/testing/unit-testing-platform-integration-dotnet-test#show-failure-per-test
|
|
-->
|
|
<TestingPlatformShowTestsFailure>true</TestingPlatformShowTestsFailure>
|
|
<PlatformTarget>x64</PlatformTarget>
|
|
<Platforms>x64</Platforms>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="Microsoft.Extensions.Configuration.Json" Version="9.0.3" />
|
|
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.13.0" />
|
|
<PackageReference Include="Microsoft.Testing.Extensions.CodeCoverage" Version="17.14.2" />
|
|
<PackageReference Include="Microsoft.Testing.Extensions.TrxReport" Version="1.6.3" />
|
|
<PackageReference Include="MSTest" Version="3.8.3" />
|
|
<Content Include="..\python\**\*">
|
|
<Link>python\%(RecursiveDir)/%(FileName)%(Extension)</Link>
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|
</Content>
|
|
<Content Include="..\CREDENTIALS.json">
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|
</Content>
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\dopt.DeltaBarth\dopt.DeltaBarth.csproj" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<Using Include="Microsoft.VisualStudio.TestTools.UnitTesting" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|