-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathBitcoinKernel.csproj
More file actions
34 lines (29 loc) · 1.48 KB
/
BitcoinKernel.csproj
File metadata and controls
34 lines (29 loc) · 1.48 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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net9.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<AllowUnsafeBlocks>false</AllowUnsafeBlocks>
<!-- NuGet Package Metadata -->
<PackageId>BitcoinKernel</PackageId>
<Version>0.1.1</Version>
<Authors>JanB84</Authors>
<Description>.NET library for Bitcoin Core functionality. Provides a simple, fluent API for Bitcoin consensus validation, script verification, and blockchain operations powered by libbitcoinkernel.</Description>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<PackageProjectUrl>https://github.com/JanB84/BitcoinKernel.NET</PackageProjectUrl>
<RepositoryUrl>https://github.com/JanB84/BitcoinKernel.NET</RepositoryUrl>
<RepositoryType>git</RepositoryType>
<PackageTags>bitcoin;kernel;libbitcoinkernel;blockchain;facade;easy</PackageTags>
<GeneratePackageOnBuild>false</GeneratePackageOnBuild>
<IncludeSymbols>true</IncludeSymbols>
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
<PackageReadmeFile>README.md</PackageReadmeFile>
</PropertyGroup>
<ItemGroup>
<None Include="README.md" Pack="true" PackagePath="\" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\..\src\BitcoinKernel.Core\BitcoinKernel.Core.csproj" />
<ProjectReference Include="..\..\src\BitcoinKernel.Interop\BitcoinKernel.Interop.csproj" />
</ItemGroup>
</Project>