-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathPostQuantum.FileFormat.Cli.csproj
More file actions
34 lines (30 loc) · 1.84 KB
/
PostQuantum.FileFormat.Cli.csproj
File metadata and controls
34 lines (30 loc) · 1.84 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>
<OutputType>Exe</OutputType>
<TargetFramework>net8.0</TargetFramework>
<RollForward>Major</RollForward>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<PackAsTool>true</PackAsTool>
<ToolCommandName>pqf</ToolCommandName>
<PackageId>PostQuantum.FileFormat.Cli</PackageId>
<Version>0.4.0-preview.2</Version>
<Authors>PostQuantum.FileFormat contributors</Authors>
<Description>pqf is the command-line tool for the Post-Quantum File Format (PQF): a hybrid post-quantum (X25519+ML-KEM-1024 / Ed25519+ML-DSA-87) encrypted file container with a deterministic CBOR header, fail-closed parser, and reference test vectors. EXPERIMENTAL preview; not externally audited; do not use to protect irreplaceable data.</Description>
<PackageTags>post-quantum;cryptography;encryption;file-format;ml-kem;ml-dsa;hybrid;cbor;cli;dotnet-tool</PackageTags>
<PackageProjectUrl>https://github.com/systemslibrarian/PostQuantum.FileFormat</PackageProjectUrl>
<RepositoryUrl>https://github.com/systemslibrarian/PostQuantum.FileFormat</RepositoryUrl>
<RepositoryType>git</RepositoryType>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<PackageReadmeFile>README.md</PackageReadmeFile>
<PackageReleaseNotes>0.4.0-preview.2: enable major-version roll-forward so the tool runs on .NET 8, 9, or 10 without DOTNET_ROLL_FORWARD=Major. No behavior change. EXPERIMENTAL; not externally audited.</PackageReleaseNotes>
<IncludeSymbols>true</IncludeSymbols>
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
</PropertyGroup>
<ItemGroup>
<None Include="..\..\README.md" Pack="true" PackagePath="\" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\..\src\PostQuantum.FileFormat\PostQuantum.FileFormat.csproj" />
</ItemGroup>
</Project>