36 lines
1.2 KiB
XML
36 lines
1.2 KiB
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<TargetFramework>net6.0</TargetFramework>
|
|
|
|
<IsPackable>false</IsPackable>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="16.7.1" />
|
|
<PackageReference Include="MSTest.TestAdapter" Version="2.1.1" />
|
|
<PackageReference Include="MSTest.TestFramework" Version="2.1.1" />
|
|
<PackageReference Include="coverlet.collector" Version="1.3.0" />
|
|
<PackageReference Include="Moq" Version="4.14.6" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="../Prise/Prise.csproj" />
|
|
<ProjectReference Include="../Prise.Plugin/Prise.Plugin.csproj" />
|
|
<ProjectReference Include="../Prise.Proxy/Prise.Proxy.csproj" />
|
|
<ProjectReference Include="../Prise.ReverseProxy/Prise.ReverseProxy.csproj" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<Content Include="Assemblies/**/*.*">
|
|
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
|
|
</Content>
|
|
<Content Include="TestData.json">
|
|
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
|
|
</Content>
|
|
<Content Include="TestFile.txt">
|
|
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
|
|
</Content>
|
|
</ItemGroup>
|
|
</Project>
|