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.6 KiB
38 lines
1.6 KiB
<Project Sdk="Microsoft.NET.Sdk"> |
|
|
|
<PropertyGroup> |
|
<TargetFramework>net7.0</TargetFramework> |
|
<RuntimeIdentifiers>win-x64;linux-x64;osx-x64;osx-arm64</RuntimeIdentifiers> |
|
<ImplicitUsings>enable</ImplicitUsings> |
|
<Nullable>enable</Nullable> |
|
<EnableWindowsTargeting>true</EnableWindowsTargeting> |
|
<IsPackable>false</IsPackable> |
|
<IsTestProject>true</IsTestProject> |
|
</PropertyGroup> |
|
|
|
<ItemGroup> |
|
<PackageReference Include="DotNext" Version="4.12.4" /> |
|
<PackageReference Include="Microsoft.Extensions.Configuration.Json" Version="7.0.0" /> |
|
<PackageReference Include="Microsoft.Extensions.Http.Polly" Version="7.0.8" /> |
|
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.7.2" /> |
|
<PackageReference Include="Moq" Version="4.18.4" /> |
|
<PackageReference Include="MSTest.TestAdapter" Version="3.1.1" /> |
|
<PackageReference Include="MSTest.TestFramework" Version="3.0.4" /> |
|
<PackageReference Include="coverlet.collector" Version="6.0.0"> |
|
<PrivateAssets>all</PrivateAssets> |
|
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets> |
|
</PackageReference> |
|
<PackageReference Include="Polly" Version="7.2.4" /> |
|
<PackageReference Include="Polly.Contrib.WaitAndRetry" Version="1.1.1" /> |
|
</ItemGroup> |
|
|
|
<ItemGroup> |
|
<ProjectReference Include="..\StabilityMatrix.Avalonia\StabilityMatrix.Avalonia.csproj" /> |
|
<ProjectReference Include="..\StabilityMatrix.Core\StabilityMatrix.Core.csproj" /> |
|
|
|
</ItemGroup> |
|
|
|
|
|
|
|
|
|
</Project>
|
|
|