mirror of
https://github.com/btcpayserver/btcpayserver.git
synced 2025-02-23 06:35:13 +01:00
* Pluginify on chain wallet setup This PR fixes a few logical points in the wallet setup flow to allow more extensive plugin flexibility; It also fixes an issue when building plugins that requires an Altcoin config profile. Here is an example showcasing the Liquid+ plugin using this to enforce that it is a hot wallet (a requirement it has) and that import to RPC is always set, and a new option that is used to configure the wallet further https://i.imgur.com/pDPQ73v.gif * Update BTCPayServer/Controllers/UIStoresController.Onchain.cs * update nbx
13 lines
546 B
XML
13 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.5" />
|
|
<PackageReference Include="NicolasDorier.StandardConfiguration" Version="2.0.1" />
|
|
</ItemGroup>
|
|
<ItemGroup Condition="'$(Altcoins)' != 'true'">
|
|
<Compile Remove="Altcoins\**\*.cs"></Compile>
|
|
</ItemGroup>
|
|
</Project>
|