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.
38 lines
1.7 KiB
38 lines
1.7 KiB
<Project Sdk="Microsoft.NET.Sdk"> |
|
|
|
<PropertyGroup> |
|
<TargetFramework>net8.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="DotNet.Bundle" Version="0.9.13" /> |
|
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.8.0" /> |
|
<PackageReference Include="NSubstitute" Version="5.1.0" /> |
|
<PackageReference Include="Verify" Version="22.4.1" /> |
|
<PackageReference Include="Verify.CommunityToolkit.Mvvm" Version="0.1.0" /> |
|
<PackageReference Include="Verify.Avalonia" Version="1.0.1" /> |
|
<PackageReference Include="Verify.Phash" Version="3.1.0" /> |
|
<PackageReference Include="Verify.Xunit" Version="22.4.1" /> |
|
<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>
|
|
|