btcpayserver/BTCPayServer.Tests/BTCPayServer.Tests.csproj

31 lines
842 B
XML
Raw Normal View History

2018-05-31 18:41:03 +09:00
<Project Sdk="Microsoft.NET.Sdk">
2017-09-13 15:47:34 +09:00
<PropertyGroup>
2018-05-08 17:57:53 +09:00
<TargetFramework>netcoreapp2.1</TargetFramework>
2017-09-13 15:47:34 +09:00
<IsPackable>false</IsPackable>
2018-02-17 13:18:16 +09:00
<NoWarn>NU1701,CA1816,CA1308,CA1810,CA2208</NoWarn>
2018-06-18 23:07:05 +09:00
<LangVersion>7.2</LangVersion>
2017-09-13 15:47:34 +09:00
</PropertyGroup>
<ItemGroup>
2018-05-31 18:41:03 +09:00
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="15.7.2" />
2017-11-04 16:02:00 -07:00
<PackageReference Include="xunit" Version="2.3.1" />
<PackageReference Include="xunit.runner.visualstudio" Version="2.3.1" />
2017-09-13 15:47:34 +09:00
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\BTCPayServer\BTCPayServer.csproj" />
</ItemGroup>
<ItemGroup>
<None Update=".dockerignore">
<DependentUpon>Dockerfile</DependentUpon>
</None>
<None Update="docker-compose.yml">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
</ItemGroup>
2017-09-13 15:47:34 +09:00
</Project>