27 lines
944 B
XML
27 lines
944 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<RootNamespace>HexagonalLib.Tests</RootNamespace>
|
|
<IsPackable>false</IsPackable>
|
|
<TargetFrameworks>net472;net48;netcoreapp3.1</TargetFrameworks>
|
|
</PropertyGroup>
|
|
|
|
<PropertyGroup Condition=" '$(Configuration)' == 'Debug' ">
|
|
<OutputPath>..\..\.bin\HexagonalLib.Net.Tests\Debug\</OutputPath>
|
|
</PropertyGroup>
|
|
|
|
<PropertyGroup Condition=" '$(Configuration)' == 'Release' ">
|
|
<OutputPath>..\..\.bin\HexagonalLib.Net.Tests\Release\</OutputPath>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="nunit" Version="4.4.0" />
|
|
<PackageReference Include="NUnit3TestAdapter" Version="5.2.0" />
|
|
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="18.0.1" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\HexagonalLib.Net\HexagonalLib.Net.csproj" />
|
|
</ItemGroup>
|
|
</Project>
|