mirror of
https://github.com/ZetaKebab/MpcNET.git
synced 2025-01-14 22:18:43 +00:00
41 lines
1.3 KiB
XML
41 lines
1.3 KiB
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<TargetFramework>net5.0</TargetFramework>
|
|
<AssemblyName>MpcNET.Test</AssemblyName>
|
|
<PackageId>MpcNET.Test</PackageId>
|
|
<GenerateRuntimeConfigurationFiles>true</GenerateRuntimeConfigurationFiles>
|
|
<GenerateAssemblyConfigurationAttribute>false</GenerateAssemblyConfigurationAttribute>
|
|
<GenerateAssemblyCompanyAttribute>false</GenerateAssemblyCompanyAttribute>
|
|
<GenerateAssemblyProductAttribute>false</GenerateAssemblyProductAttribute>
|
|
<RootNamespace>MpcNET.Test</RootNamespace>
|
|
<SignAssembly>False</SignAssembly>
|
|
<DelaySign>True</DelaySign>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<None Remove="MpcNET.Test.csproj.DotSettings" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<None Update="Server\**\*">
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|
</None>
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="15.9.0" />
|
|
<PackageReference Include="MSTest.TestAdapter" Version="1.4.0" />
|
|
<PackageReference Include="MSTest.TestFramework" Version="1.4.0" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\MpcNET\MpcNET.csproj" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<Service Include="{82a7f48d-3b50-4b1e-b82e-3ada8210c358}" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|