-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDirectory.Build.props
More file actions
35 lines (34 loc) · 1.94 KB
/
Copy pathDirectory.Build.props
File metadata and controls
35 lines (34 loc) · 1.94 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
35
<Project>
<PropertyGroup>
<TargetFramework>net10.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<LangVersion>latest</LangVersion>
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
<!-- GA line: v1.3.0 (CHANGELOG [1.3.0]). A new, unpublished version, so the AC-10 clean-room
install resolves it (and its NetCrypto 1.4.0 dependency) only from the local pack feed —
no collision with the already-published 0.1.0-preview.* (which pin NetCrypto 1.0.0).
Release CI overrides this from the git tag (e.g. v1.3.0 -> 1.3.0). -->
<DataProofsVersion Condition="'$(DataProofsVersion)' == ''">1.3.0</DataProofsVersion>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
<NoWarn>$(NoWarn);1591</NoWarn>
<Deterministic>true</Deterministic>
<EmbedUntrackedSources>true</EmbedUntrackedSources>
<IncludeSourceRevisionInInformationalVersion>true</IncludeSourceRevisionInInformationalVersion>
<ContinuousIntegrationBuild Condition="'$(GITHUB_ACTIONS)' == 'true'">true</ContinuousIntegrationBuild>
</PropertyGroup>
<!-- Shared NuGet package metadata for all publishable projects -->
<PropertyGroup>
<Authors>Moises E Jaramillo</Authors>
<Company>dataproofs-dotnet contributors</Company>
<Copyright>Copyright (c) 2026 Moises E Jaramillo and dataproofs-dotnet contributors</Copyright>
<PackageLicenseExpression>Apache-2.0</PackageLicenseExpression>
<PackageProjectUrl>https://github.com/moisesja/dataproofs-dotnet</PackageProjectUrl>
<RepositoryUrl>https://github.com/moisesja/dataproofs-dotnet</RepositoryUrl>
<RepositoryType>git</RepositoryType>
<PackageTags>data-integrity;verifiable-credentials;proofs;jose;cose;sd-jwt;jws;jwe;cwt;w3c;ietf;ssi</PackageTags>
<PackageReadmeFile>README.md</PackageReadmeFile>
<IncludeSymbols>true</IncludeSymbols>
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
</PropertyGroup>
</Project>