-
Notifications
You must be signed in to change notification settings - Fork 51
Expand file tree
/
Copy pathBitPay.csproj
More file actions
63 lines (58 loc) · 3.5 KB
/
BitPay.csproj
File metadata and controls
63 lines (58 loc) · 3.5 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<!-- version numbers will be updated by build -->
<AssemblyVersion>6.0.1.0</AssemblyVersion>
<FileVersion>6.0.1</FileVersion>
<VersionPrefix>6.0.1</VersionPrefix>
<Version>6.0.1</Version>
<Authors>Antonio Buedo</Authors>
<Company>BitPay Inc.</Company>
<Owners>BitPay, Inc.</Owners>
<Product>BitPay</Product>
<Description>This library is a simple way to integrate your Net Core application with BitPay along with your BitPay account for taking Bitcoin and Bitcoin Cash payments. It exposes all available resorces on the BitPay's API.</Description>
<Copyright>Copyright (c) 2019 BitPay, Inc.</Copyright>
<Summary>This library is a simple way to integrate your Net Core application with BitPay along with your BitPay account for taking Bitcoin and Bitcoin Cash payments. It exposes all available resorces on the BitPay's API.</Summary>
<NeutralLanguage>en-US</NeutralLanguage>
<Title>BitPay's API client</Title>
<PackageTags>bitcoin bitpay cash payment gateway</PackageTags>
<PackageIcon>logo.png</PackageIcon>
<PackageProjectUrl>https://bitpay.com</PackageProjectUrl>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<PublishRepositoryUrl>true</PublishRepositoryUrl>
<RootNamespace>BitPay</RootNamespace>
<AssemblyName>BitPay</AssemblyName>
<PackageDescription>This library is a simple way to integrate your application with BitPay along with your BitPay account for taking Bitcoin and Bitcoin Cash payments. It exposes six basic functions, creating and retrieving invoices, creating, retrieving and delivering bills and retrieving rates. It is not meant as a replacement for the entire BitPay API.</PackageDescription>
<RepositoryUrl>https://github.com/bitpay/csharp-bitpay-client</RepositoryUrl>
<RepositoryType>git</RepositoryType>
<AnalysisMode>Recommended</AnalysisMode>
<NoWarn>CA1724</NoWarn>
<EnableNETAnalyzers>true</EnableNETAnalyzers>
<CodeAnalysisTreatWarningsAsErrors>true</CodeAnalysisTreatWarningsAsErrors>
<GeneratePackageOnBuild>True</GeneratePackageOnBuild>
<IncludeSymbols>true</IncludeSymbols>
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
<Deterministic>true</Deterministic>
<ContinuousIntegrationBuild>True</ContinuousIntegrationBuild>
<EmbedUntrackedSources>true</EmbedUntrackedSources>
</PropertyGroup>
<!-- Conditionally obtain references for the .NET Framework 4.8 target -->
<ItemGroup Condition=" '$(TargetFramework)' == 'net48' ">
<PackageReference Include="System.Net.Http" Version="4.3.4" />
</ItemGroup>
<ItemGroup>
<None Include="..\screenshots\logo.png" Pack="true" PackagePath="\" />
<PackageReference Include="Microsoft.CSharp" Version="4.7.0" />
<PackageReference Include="Microsoft.Extensions.Configuration" Version="7.0.0" />
<PackageReference Include="Microsoft.Extensions.Configuration.Json" Version="7.0.0" />
<PackageReference Include="Microsoft.Extensions.Http" Version="7.0.0" />
<PackageReference Include="Newtonsoft.Json" Version="13.0.3" />
<PackageReference Include="Portable.BouncyCastle" Version="1.9.0" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="8.0.0" PrivateAssets="All" />
<PackageReference Include="DotNet.ReproducibleBuilds" Version="1.1.1">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers</IncludeAssets>
</PackageReference>
</ItemGroup>
</Project>