up
Some checks failed
Docs CI / lint-and-preview (push) Has been cancelled
Mirror Thin Bundle Sign & Verify / mirror-sign (push) Has been cancelled
Signals CI & Image / signals-ci (push) Has been cancelled

This commit is contained in:
StellaOps Bot
2025-11-26 07:47:08 +02:00
parent 56e2f64d07
commit 1c782897f7
184 changed files with 8991 additions and 649 deletions

View File

@@ -1,21 +1,23 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<GostCryptographyVersion>2.0.11</GostCryptographyVersion>
<GostCryptographyVersion>2.0.11</GostCryptographyVersion>
</PropertyGroup>
<PropertyGroup>
<TargetFrameworks>net40;net452</TargetFrameworks>
<TargetFramework>net10.0</TargetFramework>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
<ImplicitUsings>disable</ImplicitUsings>
<Nullable>enable</Nullable>
<AssemblyTitle>GostCryptography</AssemblyTitle>
<Product>GostCryptography</Product>
<AssemblyVersion>$(GostCryptographyVersion).0</AssemblyVersion>
<FileVersion>$(GostCryptographyVersion).0</FileVersion>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
<TreatWarningsAsErrors>false</TreatWarningsAsErrors>
</PropertyGroup>
<PropertyGroup>
<NoWarn>1701;1702;1591</NoWarn>
<NoWarn>1701;1702;1591;CA1416;SYSLIB0004</NoWarn>
<PackageId>GostCryptography</PackageId>
<Title>GostCryptography</Title>
<Version>$(GostCryptographyVersion)</Version>
@@ -28,20 +30,14 @@
<PackageTags>GOST GOST-2012 Cryptography ViPNet CryptoPro</PackageTags>
<RepositoryType>git</RepositoryType>
<RepositoryUrl>https://github.com/AlexMAS/GostCryptography</RepositoryUrl>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<GeneratePackageOnBuild>false</GeneratePackageOnBuild>
<PackageReadmeFile>README.md</PackageReadmeFile>
</PropertyGroup>
<ItemGroup>
<None Include="$(SolutionDir)README.md" Pack="true" PackagePath="\" />
</ItemGroup>
<ItemGroup>
<Reference Include="System.Security" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Microsoft.NETFramework.ReferenceAssemblies" Version="1.0.0-preview.2" PrivateAssets="All" />
<PackageReference Include="System.Configuration.ConfigurationManager" Version="8.0.1" />
<PackageReference Include="System.Security.Cryptography.Xml" Version="8.0.1" />
<PackageReference Include="System.Security.Permissions" Version="8.0.0" />
</ItemGroup>
<ItemGroup>
@@ -58,5 +54,4 @@
<LastGenOutput>Resources.Designer.cs</LastGenOutput>
</EmbeddedResource>
</ItemGroup>
</Project>