-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDirectory.Build.props
46 lines (39 loc) · 1.8 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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
<Project>
<PropertyGroup Label="Project props">
<TargetFramework>net9.0</TargetFramework>
<RuntimeIdentifier>linux-x64</RuntimeIdentifier>
<!-- compiling -->
<ImplicitUsings>disable</ImplicitUsings>
<NeutralLanguage>en-US</NeutralLanguage>
<Nullable>enable</Nullable>
<ManagePackageVersionsCentrally>true</ManagePackageVersionsCentrally>
<SatelliteResourceLanguages>en</SatelliteResourceLanguages>
<!-- analysing -->
<AnalysisMode>All</AnalysisMode>
<RunAnalyzersDuringBuild>false</RunAnalyzersDuringBuild>
<CodeAnalysisTreatWarningsAsErrors>true</CodeAnalysisTreatWarningsAsErrors>
<!-- <EnforceCodeStyleInBuild>true</EnforceCodeStyleInBuild> -->
<!-- packing -->
<IsPackable>true</IsPackable>
<IncludeSymbols>true</IncludeSymbols>
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
<!-- package -->
<Authors>Dragos Tudor</Authors>
<Company>$(Authors)</Company>
<Copyright>Copyright @2025</Copyright>
<Version>1.0.0-beta1</Version>
<PackageReadmeFile>README.md</PackageReadmeFile>
<PackageLicenseFile>LICENSE</PackageLicenseFile>
<RepositoryRoot>$(MSBuildThisFileDirectory)</RepositoryRoot>
<RepositoryUrl>https://github.com/dragos-tudor/backend-security.git</RepositoryUrl>
<PackageLicense>https://github.com/dragos-tudor/backend-security/blob/master/LICENSE</PackageLicense>
<PackageProjectUrl>https://github.com/dragos-tudor/backend-security/tree/main/$(MSBuildProjectName)</PackageProjectUrl>
</PropertyGroup>
<PropertyGroup Condition="'$(GITHUB_ACTIONS)' == 'true'">
<ContinuousIntegrationBuild>true</ContinuousIntegrationBuild>
</PropertyGroup>
<ItemGroup>
<None Include="../README.md" Pack="true" PackagePath="\"/>
<None Include="../LICENSE" Pack="true" PackagePath="\"/>
</ItemGroup>
</Project>