mirror of
https://github.com/danbulant/Cosmos
synced 2026-05-19 04:18:43 +00:00
27 lines
985 B
XML
27 lines
985 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<TargetFramework>netcoreapp2.0</TargetFramework>
|
|
|
|
</PropertyGroup>
|
|
|
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='|AnyCPU'">
|
|
<DefineConstants>TRACE;</DefineConstants>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="ApprovalTests" NoWarn="NU1701" />
|
|
<PackageReference Include="Microsoft.NET.Test.Sdk" />
|
|
<PackageReference Include="MSTest.TestAdapter" />
|
|
<PackageReference Include="MSTest.TestFramework" />
|
|
<PackageReference Include="NSubstitute" Version="4.0.0" />
|
|
<PackageReference Include="NUnit" Version="3.11.0" />
|
|
<PackageReference Include="NUnit3TestAdapter" Version="3.13.0" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\..\source\Cosmos.HAL2\Cosmos.HAL2.csproj" />
|
|
<ProjectReference Include="..\..\source\Cosmos.System2\Cosmos.System2.csproj" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|