-
-
Notifications
You must be signed in to change notification settings - Fork 62
/
Directory.Build.props
27 lines (24 loc) · 1.09 KB
/
Directory.Build.props
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
<?xml version="1.0" encoding="utf-8"?>
<Project>
<PropertyGroup>
<RestoreProjectStyle>PackageReference</RestoreProjectStyle>
<GenerateAssemblyInfo>true</GenerateAssemblyInfo>
<UpdateAssemblyInfo>true</UpdateAssemblyInfo>
<EnableNETAnalyzers>true</EnableNETAnalyzers>
<AnalysisMode>AllEnableByDefault</AnalysisMode>
</PropertyGroup>
<PropertyGroup Condition="'$(GITHUB_ACTIONS)' == 'true'">
<ContinuousIntegrationBuild>true</ContinuousIntegrationBuild>
</PropertyGroup>
<PropertyGroup>
<Authors>CycloneDX Team</Authors>
<Copyright>Copyright (c) OWASP Foundation</Copyright>
<PackageProjectUrl>https://github.com/CycloneDX/cyclonedx-cli</PackageProjectUrl>
<PackageLicenseExpression>Apache-2.0</PackageLicenseExpression>
<RepositoryType>git</RepositoryType>
<RepositoryUrl>https://github.com/CycloneDX/cyclonedx-cli.git</RepositoryUrl>
<EmbedUntrackedSources>true</EmbedUntrackedSources>
<!-- <RestorePackagesWithLockFile>true</RestorePackagesWithLockFile> -->
<!-- <RestoreLockedMode>true</RestoreLockedMode> -->
</PropertyGroup>
</Project>