mirror of
https://github.com/btcpayserver/btcpayserver.git
synced 2024-11-19 18:11:36 +01:00
cd3807a3d8
* Lightning payment info and fee handling Builds on the additions in btcpayserver/BTCPayServer.Lightning#59 and btcpayserver/BTCPayServer.Lightning#61. Adds payment information (total amount and fees) to the API response and allows to set an optional maximum fee percentage when paying. * Add max fee flat
20 lines
727 B
XML
20 lines
727 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="Microsoft.CodeAnalysis.CSharp" Version="4.0.1" />
|
|
<PackageReference Include="Microsoft.AspNet.WebApi.Client" Version="5.2.7" />
|
|
<PackageReference Include="NBitcoin" Version="7.0.1" />
|
|
<PackageReference Include="Newtonsoft.Json" Version="13.0.1" />
|
|
<PackageReference Include="DigitalRuby.ExchangeSharp" Version="0.6.3" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<EmbeddedResource Include="Currencies.json" />
|
|
</ItemGroup>
|
|
|
|
|
|
</Project>
|