Ed25519/Ed25519/Ed25519.csproj

38 lines
1.7 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" />
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="16.4.0" Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'" />
<PackageReference Include="NUnit" Version="3.12.0" Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'" />
<PackageReference Include="NUnit3TestAdapter" Version="3.16.0" Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
</ItemGroup>
</Project>