Ed25519/Ed25519/Ed25519.csproj
2020-01-06 20:01:21 +01:00

32 lines
1.2 KiB
XML

<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>netcoreapp3.1</TargetFramework>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<PackageRequireLicenseAcceptance>true</PackageRequireLicenseAcceptance>
<Authors>Thorsten Sommer</Authors>
<Description>An Ed25519 implementation to sign data and check its validity.</Description>
<PackageProjectUrl>https://github.com/SommerEngineering/Ed25519</PackageProjectUrl>
<RepositoryUrl>https://github.com/SommerEngineering/Ed25519</RepositoryUrl>
<PackageTags>Cryptography, Ed25519, Signing, DSA, Security</PackageTags>
<PackageLicenseFile>LICENSE</PackageLicenseFile>
<Copyright>Thorsten Sommer</Copyright>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
<DocumentationFile>c:\Users\Thorsten\Downloads\repos\Ed25519\Ed25519\Ed25519.xml</DocumentationFile>
</PropertyGroup>
<ItemGroup>
<None Include="..\LICENSE">
<Pack>True</Pack>
<PackagePath></PackagePath>
</None>
</ItemGroup>
<ItemGroup>
<PackageReference Include="Encrypter" Version="1.0.0" />
</ItemGroup>
</Project>