-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathDirectory.Build.props
More file actions
18 lines (15 loc) · 854 Bytes
/
Copy pathDirectory.Build.props
File metadata and controls
18 lines (15 loc) · 854 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
<Project>
<PropertyGroup>
<VersionPrefix>0.0.9</VersionPrefix>
<VersionSuffix>alpha</VersionSuffix>
<!-- Package version string used by PackageReference entries -->
<JobMasterPackageVersion Condition="'$(VersionSuffix)' != ''">$(VersionPrefix)-$(VersionSuffix)</JobMasterPackageVersion>
<JobMasterPackageVersion Condition="'$(VersionSuffix)' == ''">$(VersionPrefix)</JobMasterPackageVersion>
<JobMasterVersion>$(JobMasterPackageVersion)</JobMasterVersion>
<!-- true = ProjectReference (development, IDE rename/refactor works) -->
<!-- false = PackageReference (pack / publish / CI) -->
<UseProjectRefs Condition="'$(UseProjectRefs)' == ''">true</UseProjectRefs>
<!-- Suppress NU1801: local NuGet source may not exist in fresh checkouts -->
<NoWarn>$(NoWarn);NU1801</NoWarn>
</PropertyGroup>
</Project>