2024-11-24 12:46:21 +01:00
|
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
|
|
|
|
|
|
|
|
<PropertyGroup>
|
|
|
|
|
|
<TargetFramework>net9.0</TargetFramework>
|
|
|
|
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
|
|
|
|
<Nullable>enable</Nullable>
|
|
|
|
|
|
<IsPackable>false</IsPackable>
|
2025-08-18 19:41:36 +02:00
|
|
|
|
<Platforms>AnyCPU;x64</Platforms>
|
2024-11-24 12:46:21 +01:00
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
|
<PackageReference Include="coverlet.collector" />
|
|
|
|
|
|
<PackageReference Include="Microsoft.NET.Test.Sdk" />
|
2025-08-30 19:41:10 +02:00
|
|
|
|
<PackageReference Include="OneOf" />
|
2024-11-24 12:46:21 +01:00
|
|
|
|
<PackageReference Include="xunit" />
|
|
|
|
|
|
<PackageReference Include="xunit.runner.visualstudio" />
|
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
|
<Using Include="Xunit" />
|
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
|
<ProjectReference Include="..\pgLabII.PgUtils\pgLabII.PgUtils.csproj" />
|
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
|
|
</Project>
|