36 lines
1.7 KiB
XML
36 lines
1.7 KiB
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<TargetFramework>net7.0</TargetFramework>
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
<PlatformTarget>AnyCPU</PlatformTarget>
|
|
<Platforms>AnyCPU;x64</Platforms>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="MathNet.Numerics" Version="5.0.0" />
|
|
<PackageReference Include="Microsoft.AspNetCore.Mvc.Testing" Version="7.0.10" />
|
|
<PackageReference Include="Microsoft.Extensions.Configuration" Version="7.0.0" />
|
|
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.7.0" />
|
|
<PackageReference Include="Microsoft.TestPlatform.AdapterUtilities" Version="17.7.0" />
|
|
<PackageReference Include="Moq" Version="4.18.4" />
|
|
<PackageReference Include="MSTest.TestAdapter" Version="3.1.1" />
|
|
<PackageReference Include="MSTest.TestFramework" Version="3.1.1" />
|
|
<PackageReference Include="xunit" Version="2.5.0" />
|
|
<PackageReference Include="xunit.runner.visualstudio" Version="2.5.0">
|
|
<PrivateAssets>all</PrivateAssets>
|
|
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
|
|
</PackageReference>
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\Managing.Api\Managing.Api.csproj" />
|
|
<ProjectReference Include="..\Managing.Application\Managing.Application.csproj" />
|
|
<ProjectReference Include="..\Managing.Common\Managing.Common.csproj" />
|
|
<ProjectReference Include="..\Managing.Core\Managing.Core.csproj" />
|
|
<ProjectReference Include="..\Managing.Domain\Managing.Domain.csproj" />
|
|
<ProjectReference Include="..\Managing.Infrastructure.Exchanges\Managing.Infrastructure.Exchanges.csproj" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|