mirror of
https://github.com/aljazceru/btcpayserver.git
synced 2025-12-30 12:14:23 +01:00
* Prevent creation of on-chain invoices below the dust limit Fixes #3071. * Apply suggestions from code review Co-authored-by: Nicolas Dorier <nicolas.dorier@gmail.com> * small fix * Fix selenium test 0.000000012 BTC (whether rounded or not) is below the dust threshold, causing this test to fail. * fix CanCreateTopupInvoices test Don't apply dust threshold conditional for topup invoices. * Fix test, and minor changes Co-authored-by: Nicolas Dorier <nicolas.dorier@gmail.com>
38 lines
1.7 KiB
XML
38 lines
1.7 KiB
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<TargetFramework>netstandard2.1</TargetFramework>
|
|
<Company>BTCPay Server</Company>
|
|
<Copyright>Copyright © BTCPay Server 2020</Copyright>
|
|
<Description>A client library for BTCPay Server Greenfield API</Description>
|
|
<PackageIcon>icon.png</PackageIcon>
|
|
<PackageTags>btcpay,btcpayserver</PackageTags>
|
|
<PackageProjectUrl>https://github.com/btcpayserver/btcpayserver/tree/master/BTCPayServer.Client</PackageProjectUrl>
|
|
<PackageLicenseExpression>MIT</PackageLicenseExpression>
|
|
<RepositoryUrl>https://github.com/btcpayserver/btcpayserver</RepositoryUrl>
|
|
<RepositoryType>git</RepositoryType>
|
|
</PropertyGroup>
|
|
<PropertyGroup>
|
|
<Version Condition=" '$(Version)' == '' ">1.5.0</Version>
|
|
</PropertyGroup>
|
|
<PropertyGroup Condition=" '$(Configuration)' == 'Release' ">
|
|
<PublishRepositoryUrl>true</PublishRepositoryUrl>
|
|
<EmbedUntrackedSources>true</EmbedUntrackedSources>
|
|
<DebugType>portable</DebugType>
|
|
<Optimize>true</Optimize>
|
|
<NoWarn>1591;1573;1572;1584;1570;3021</NoWarn>
|
|
<GenerateDocumentationFile>true</GenerateDocumentationFile>
|
|
</PropertyGroup>
|
|
<ItemGroup Condition=" '$(Configuration)' == 'Release' ">
|
|
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="1.0.0" PrivateAssets="All" />
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<PackageReference Include="NBitcoin" Version="6.0.17" />
|
|
<PackageReference Include="BTCPayServer.Lightning.Common" Version="1.2.7" />
|
|
<PackageReference Include="Newtonsoft.Json" Version="13.0.1" />
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<None Include="icon.png" Pack="true" PackagePath="\" />
|
|
</ItemGroup>
|
|
</Project>
|