|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup Condition="'$(RuntimeIdentifier)' != 'win-x64'">
|
|
|
|
<TargetFramework>net8.0</TargetFramework>
|
|
|
|
</PropertyGroup>
|
|
|
|
<PropertyGroup Condition="'$(RuntimeIdentifier)' == 'win-x64'">
|
|
|
|
<TargetFramework>net8.0-windows10.0.17763.0</TargetFramework>
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
<PropertyGroup>
|
|
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
|
|
<Nullable>enable</Nullable>
|
|
|
|
|
|
|
|
<IsPackable>false</IsPackable>
|
|
|
|
<IsTestProject>true</IsTestProject>
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
<PackageReference Include="Avalonia.Headless.XUnit" Version="11.0.9" />
|
|
|
|
<PackageReference Include="DotNet.Bundle" Version="0.9.13" />
|
|
|
|
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.9.0" />
|
|
|
|
<PackageReference Include="NSubstitute" Version="5.1.0" />
|
|
|
|
<PackageReference Include="System.Drawing.Common" Version="8.0.3" />
|
|
|
|
<PackageReference Include="Verify" Version="23.5.2" />
|
|
|
|
<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="23.5.2" />
|
|
|
|
<PackageReference Include="xunit" Version="2.7.0" />
|
|
|
|
<PackageReference Include="xunit.runner.visualstudio" Version="2.5.7">
|
|
|
|
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
|
|
|
|
<PrivateAssets>all</PrivateAssets>
|
|
|
|
</PackageReference>
|
|
|
|
<PackageReference Include="coverlet.collector" Version="6.0.1">
|
|
|
|
<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>
|