23 lines
739 B
XML
23 lines
739 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<RootNamespace>PLib.Tests</RootNamespace>
|
|
<IsPackable>false</IsPackable>
|
|
<OutputType>Exe</OutputType>
|
|
<!-- xunit.v3 runs on Microsoft.Testing.Platform; no VSTest adapter needed. -->
|
|
<TestingPlatformDotnetTestSupport>true</TestingPlatformDotnetTestSupport>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="xunit.v3" />
|
|
<PackageReference Include="Shouldly" />
|
|
<PackageReference Include="NSubstitute" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\..\src\PLib.Application\PLib.Application.csproj" />
|
|
<ProjectReference Include="..\..\src\PLib.Domain\PLib.Domain.csproj" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|