Multi-Platform Package Manager for Stable Diffusion
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.
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
|
|
|
|
<PropertyGroup>
|
|
|
|
<TargetFramework>net6.0-windows10.0.17763.0</TargetFramework>
|
|
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
|
|
<Nullable>enable</Nullable>
|
|
|
|
|
|
|
|
<IsPackable>false</IsPackable>
|
|
|
|
<IsTestProject>true</IsTestProject>
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
<PackageReference Include="DotNext" Version="4.12.0" />
|
|
|
|
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.5.0" />
|
|
|
|
<PackageReference Include="Moq" Version="4.18.4" />
|
|
|
|
<PackageReference Include="MSTest.TestAdapter" Version="2.2.10" />
|
|
|
|
<PackageReference Include="MSTest.TestFramework" Version="2.2.10" />
|
|
|
|
<PackageReference Include="coverlet.collector" Version="3.2.0" />
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
<ProjectReference Include="..\StabilityMatrix\StabilityMatrix.csproj" />
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
</Project>
|