2020-07-29 11:55:28 +02:00
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
2020-03-02 16:50:28 +01:00
|
|
|
|
|
|
|
<PropertyGroup>
|
2020-03-11 15:46:21 +01:00
|
|
|
<TargetFramework>netstandard2.1</TargetFramework>
|
2021-12-27 05:20:57 +01:00
|
|
|
<LangVersion>10.0</LangVersion>
|
2020-09-01 04:48:52 +02:00
|
|
|
<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>
|
2024-08-30 01:34:23 +02:00
|
|
|
<Configurations>Debug;Release</Configurations>
|
2023-06-01 14:18:28 +02:00
|
|
|
<Platforms>AnyCPU</Platforms>
|
2020-03-02 16:50:28 +01:00
|
|
|
</PropertyGroup>
|
2020-09-01 04:48:52 +02:00
|
|
|
<PropertyGroup>
|
2024-11-14 14:21:06 +01:00
|
|
|
<Version Condition=" '$(Version)' == '' ">2.0.1</Version>
|
2020-09-01 04:48:52 +02:00
|
|
|
</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>
|
2020-03-11 15:46:21 +01:00
|
|
|
<ItemGroup>
|
2024-11-30 03:47:26 +01:00
|
|
|
<PackageReference Include="BTCPayServer.Lightning.Common" Version="1.5.2" />
|
|
|
|
<PackageReference Include="NBitcoin" Version="7.0.46" />
|
2023-09-07 10:02:32 +02:00
|
|
|
<PackageReference Include="Newtonsoft.Json" Version="13.0.3" />
|
2020-03-11 15:46:21 +01:00
|
|
|
</ItemGroup>
|
2020-09-01 04:48:52 +02:00
|
|
|
<ItemGroup>
|
|
|
|
<None Include="icon.png" Pack="true" PackagePath="\" />
|
|
|
|
</ItemGroup>
|
2020-03-02 16:50:28 +01:00
|
|
|
</Project>
|