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.
23 lines
1.0 KiB
23 lines
1.0 KiB
<Project Sdk="Microsoft.NET.Sdk"> |
|
<PropertyGroup> |
|
<IsPackable>false</IsPackable> |
|
<RootNamespace>Admin.Test</RootNamespace> |
|
</PropertyGroup> |
|
<ItemGroup> |
|
<PackageReference Include="coverlet.collector" Version="$(CoverletCollectorVersion)"> |
|
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets> |
|
<PrivateAssets>all</PrivateAssets> |
|
</PackageReference> |
|
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="$(MicrosoftNetTestSdkVersion)" /> |
|
<PackageReference Include="xunit" Version="$(XUnitVersion)" /> |
|
<PackageReference Include="xunit.runner.visualstudio" |
|
Version="$(XUnitRunnerVisualStudioVersion)"> |
|
<PrivateAssets>all</PrivateAssets> |
|
<IncludeAssets>runtime; build; native; contentfiles; analyzers</IncludeAssets> |
|
</PackageReference> |
|
</ItemGroup> |
|
<ItemGroup> |
|
<ProjectReference Include="..\..\src\Admin\Admin.csproj" /> |
|
<ProjectReference Include="..\Common\Common.csproj" /> |
|
</ItemGroup> |
|
</Project>
|
|
|