20 lines
557 B
XML
20 lines
557 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
<PropertyGroup>
|
|
<TargetFramework>net10.0</TargetFramework>
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
<Nullable>enable</Nullable>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="FsCheck.Xunit.v3" />
|
|
<PackageReference Include="FluentAssertions" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\..\StellaOps.Canonicalization\StellaOps.Canonicalization.csproj" />
|
|
<ProjectReference Include="../../StellaOps.TestKit/StellaOps.TestKit.csproj" />
|
|
</ItemGroup>
|
|
</Project>
|
|
|
|
|