-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathDirectory.Build.props
More file actions
32 lines (29 loc) · 1.79 KB
/
Copy pathDirectory.Build.props
File metadata and controls
32 lines (29 loc) · 1.79 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
<Project>
<PropertyGroup>
<Authors>Ari Sulistiono; Process Bus Insight Contributors</Authors>
<Company>Process Bus Insight</Company>
<Copyright>Copyright 2026 Ari Sulistiono and Process Bus Insight Contributors</Copyright>
<PackageLicenseExpression>GPL-3.0-or-later</PackageLicenseExpression>
<RepositoryType>git</RepositoryType>
<RepositoryUrl>https://github.com/masarray/DigSubAnalyzer</RepositoryUrl>
<PackageProjectUrl>https://masarray.github.io/DigSubAnalyzer/</PackageProjectUrl>
<NeutralLanguage>en</NeutralLanguage>
<!-- Public beta version. Release builds may override these properties from the tag. -->
<VersionPrefix Condition="'$(VersionPrefix)' == ''">1.4.0</VersionPrefix>
<VersionSuffix Condition="'$(VersionSuffix)' == ''">beta.2</VersionSuffix>
<Version Condition="'$(Version)' == ''">$(VersionPrefix)-$(VersionSuffix)</Version>
<PackageVersion Condition="'$(PackageVersion)' == ''">$(Version)</PackageVersion>
<AssemblyVersion Condition="'$(AssemblyVersion)' == ''">$(VersionPrefix).0</AssemblyVersion>
<FileVersion Condition="'$(FileVersion)' == ''">$(VersionPrefix).0</FileVersion>
<InformationalVersion Condition="'$(InformationalVersion)' == ''">$(Version)</InformationalVersion>
<Deterministic>true</Deterministic>
<ContinuousIntegrationBuild Condition="'$(CI)' == 'true'">true</ContinuousIntegrationBuild>
<EnableNETAnalyzers>true</EnableNETAnalyzers>
<AnalysisLevel>latest-recommended</AnalysisLevel>
<NuGetAudit>true</NuGetAudit>
<NuGetAuditMode>all</NuGetAuditMode>
<NuGetAuditLevel>high</NuGetAuditLevel>
<NuGetAuditCodes>NU1903;NU1904</NuGetAuditCodes>
<WarningsAsErrors Condition="'$(AuditPipeline)' == 'true'">$(WarningsAsErrors);$(NuGetAuditCodes)</WarningsAsErrors>
</PropertyGroup>
</Project>