27 lines
912 B
XML
27 lines
912 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<TargetFramework>net10.0</TargetFramework>
|
|
<LangVersion>preview</LangVersion>
|
|
<Nullable>enable</Nullable>
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
|
|
<GenerateDocumentationFile>true</GenerateDocumentationFile>
|
|
</PropertyGroup>
|
|
|
|
<PropertyGroup>
|
|
<AssemblyName>StellaOps.Cryptography.Providers.OfflineVerification</AssemblyName>
|
|
<RootNamespace>StellaOps.Cryptography.Providers.OfflineVerification</RootNamespace>
|
|
<Description>Offline verification crypto provider wrapping .NET cryptography for air-gap scenarios</Description>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="Microsoft.IdentityModel.Tokens" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\StellaOps.Cryptography\StellaOps.Cryptography.csproj" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|