2020-05-27 06:40:34 +00:00
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
|
|
|
|
<PropertyGroup>
|
|
|
|
<TargetFramework>netstandard2.0</TargetFramework>
|
2020-05-27 08:00:18 +00:00
|
|
|
<Authors>Kevin Froman</Authors>
|
|
|
|
<Company></Company>
|
|
|
|
<Title>SimplePack</Title>
|
|
|
|
<Copyright>2020</Copyright>
|
|
|
|
<PackageId>SimplePack-base58</PackageId>
|
|
|
|
<PackageLicenseExpression>GPL-3.0-or-later</PackageLicenseExpression>
|
|
|
|
<description>Simple binary encoding format with built in checksum designed to avoid mangling.</description>
|
|
|
|
|
|
|
|
|
2020-05-27 06:40:34 +00:00
|
|
|
</PropertyGroup>
|
|
|
|
|
2020-05-27 08:00:18 +00:00
|
|
|
<ItemGroup>
|
|
|
|
<PackageReference Include="Base58Check" Version="0.2.0" />
|
|
|
|
<None Include="../LICENSE.txt" Pack="true" PackagePath="LICENSE.txt"/>
|
2020-05-27 06:40:34 +00:00
|
|
|
</ItemGroup>
|
|
|
|
|
2020-05-27 08:00:18 +00:00
|
|
|
|
|
|
|
|
2020-05-27 06:40:34 +00:00
|
|
|
</Project>
|