-
-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathDirectory.Build.props
executable file
·29 lines (23 loc) · 1.08 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
<Project>
<PropertyGroup>
<TargetFrameworks>net8.0;net9.0</TargetFrameworks>
<LangVersion>9.0</LangVersion>
<GenerateAssemblyInfo>true</GenerateAssemblyInfo>
<!-- https://github.com/NuGet/Home/wiki/Centrally-managing-NuGet-package-versions -->
<ManagePackageVersionsCentrally>true</ManagePackageVersionsCentrally>
<NuGetAudit>true</NuGetAudit>
<NuGetAuditMode>direct</NuGetAuditMode>
</PropertyGroup>
<!-- Some general configuration applied to all projects -->
<PropertyGroup>
<SourcesPath>$(MSBuildThisFileDirectory)src/</SourcesPath>
<TestPath>$(MSBuildThisFileDirectory)test/</TestPath>
<CliPath>$(SourcesPath)dotnet-affected/</CliPath>
<PackageDefaultsPropsPath>$(MSBuildThisFileDirectory)package-defaults.props</PackageDefaultsPropsPath>
</PropertyGroup>
<!-- Configure Versioning Strategy-->
<PropertyGroup>
<MinVerTagPrefix>v</MinVerTagPrefix>
<MinVerDefaultPreReleaseIdentifiers>preview.0</MinVerDefaultPreReleaseIdentifiers>
</PropertyGroup>
</Project>