fix liquid+

This commit is contained in:
Kukks
2023-01-21 12:06:51 +01:00
parent d3f8f3d24b
commit 546f11cda8
2 changed files with 52 additions and 36 deletions

View File

@@ -3,6 +3,8 @@
<PropertyGroup>
<TargetFramework>net6.0</TargetFramework>
<LangVersion>10</LangVersion>
<Configurations>Debug;Release;Altcoins-Debug;Altcoins-Release</Configurations>
<Platforms>AnyCPU</Platforms>
</PropertyGroup>
<!-- Plugin specific properties -->
@@ -30,14 +32,26 @@
</ItemDefinitionGroup>
<PropertyGroup Condition=" '$(Configuration)' == 'Debug' ">
<Altcoins>true</Altcoins>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)' == 'Release' ">
<Altcoins>true</Altcoins>
</PropertyGroup>
<PropertyGroup Condition="'$(Altcoins)' == 'true'">
<DefineConstants>$(DefineConstants);ALTCOINS</DefineConstants>
</PropertyGroup>
<ItemGroup>
<EmbeddedResource Include="Resources\**"/>
<EmbeddedResource Include="Resources\**" />
<ProjectReference Include="..\..\submodules\btcpayserver\BTCPayServer\BTCPayServer.csproj">
<Properties>Altcoins=true</Properties>
<Altcoins>true</Altcoins>
</ProjectReference>
</ItemGroup>
<ItemGroup>
<Folder Include="Resources"/>
<Folder Include="Resources" />
</ItemGroup>
</Project>