mirror of
https://github.com/btcpayserver/btcpayserver.git
synced 2024-11-19 09:54:30 +01:00
2e31816979
* Can load external plugins during dev to debug more easily * Add again load plugin by project reference * Make sure we don't load same plugin twice
14 lines
546 B
XML
14 lines
546 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
<Import Project="../Build/Version.csproj" Condition="Exists('../Build/Version.csproj')" />
|
|
<Import Project="../Build/Common.csproj" />
|
|
|
|
<ItemGroup>
|
|
<FrameworkReference Include="Microsoft.AspNetCore.App" />
|
|
<PackageReference Include="NBXplorer.Client" Version="4.2.3" />
|
|
<PackageReference Include="NicolasDorier.StandardConfiguration" Version="2.0.1" />
|
|
</ItemGroup>
|
|
<ItemGroup Condition="'$(Altcoins)' != 'true'">
|
|
<Compile Remove="Altcoins\**\*.cs"></Compile>
|
|
</ItemGroup>
|
|
</Project>
|