You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
37 lines
1.6 KiB
37 lines
1.6 KiB
1 year ago
|
<Project Sdk="Microsoft.NET.Sdk">
|
||
|
|
||
|
<PropertyGroup>
|
||
|
<TargetFramework>net7.0</TargetFramework>
|
||
|
<ImplicitUsings>enable</ImplicitUsings>
|
||
|
<Nullable>enable</Nullable>
|
||
|
|
||
|
<IsPackable>false</IsPackable>
|
||
|
<IsTestProject>true</IsTestProject>
|
||
|
</PropertyGroup>
|
||
|
|
||
|
<ItemGroup>
|
||
|
<PackageReference Include="Avalonia.Headless.XUnit" Version="11.0.5" />
|
||
|
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.5.0"/>
|
||
|
<PackageReference Include="NSubstitute" Version="5.1.0" />
|
||
|
<PackageReference Include="Verify" Version="22.1.4" />
|
||
|
<PackageReference Include="Verify.CommunityToolkit.Mvvm" Version="0.1.0" />
|
||
|
<PackageReference Include="Verify.Avalonia" Version="1.0.1" />
|
||
|
<PackageReference Include="Verify.Xunit" Version="22.1.4" />
|
||
|
<PackageReference Include="xunit" Version="2.6.1"/>
|
||
|
<PackageReference Include="xunit.runner.visualstudio" Version="2.5.3">
|
||
|
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
|
||
|
<PrivateAssets>all</PrivateAssets>
|
||
|
</PackageReference>
|
||
|
<PackageReference Include="coverlet.collector" Version="3.2.0">
|
||
|
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
|
||
|
<PrivateAssets>all</PrivateAssets>
|
||
|
</PackageReference>
|
||
|
</ItemGroup>
|
||
|
|
||
|
<ItemGroup>
|
||
|
<ProjectReference Include="..\StabilityMatrix.Avalonia\StabilityMatrix.Avalonia.csproj" />
|
||
|
<ProjectReference Include="..\StabilityMatrix.Core\StabilityMatrix.Core.csproj" />
|
||
|
</ItemGroup>
|
||
|
|
||
|
</Project>
|