21 lines
622 B
XML
21 lines
622 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<TargetFramework>net10.0</TargetFramework>
|
|
<LangVersion>12</LangVersion>
|
|
<IsPackable>false</IsPackable>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<FrameworkReference Include="Microsoft.AspNetCore.App" />
|
|
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="18.5.1" />
|
|
<PackageReference Include="xunit.v3" Version="3.2.2" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\BTCPayServer.Vault\BTCPayServer.Vault.csproj" />
|
|
<ProjectReference Include="..\BTCPayServer.Hwi\BTCPayServer.Hwi.csproj" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|