Skip to content

Commit aa73802

Browse files
Package and version fixes
Fixes to generate stable package versions for shipping. Fix incorrect [AssemblyCompany]. Disable package servicing.
1 parent a865eed commit aa73802

File tree

3 files changed

+8
-1
lines changed

3 files changed

+8
-1
lines changed

Directory.Build.props

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -46,6 +46,7 @@
4646
<IncludeSymbols>true</IncludeSymbols>
4747
<IsPackable>true</IsPackable>
4848
<IsShipping>true</IsShipping>
49+
<Serviceable>false</Serviceable>
4950
</PropertyGroup>
5051
<ItemGroup Condition=" '$(IsPackable)' == 'true' ">
5152
<None Include="$(MSBuildThisFileDirectory)package-icon.png" Pack="True" PackagePath="" />

Directory.Build.targets

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@
88
-->
99

1010
<PropertyGroup>
11+
<Company>$(Authors)</Company>
1112
<Copyright>$(_ProjectCopyright)</Copyright>
1213
</PropertyGroup>
1314

eng/Versions.props

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,12 @@
11
<Project>
22
<PropertyGroup>
3-
<VersionPrefix>3.0.0</VersionPrefix>
3+
<MajorVersion>3</MajorVersion>
4+
<MinorVersion>0</MinorVersion>
5+
<PatchVersion>0</PatchVersion>
6+
<VersionPrefix>$(MajorVersion).$(MinorVersion).$(PatchVersion)</VersionPrefix>
47
<PreReleaseVersionLabel>release</PreReleaseVersionLabel>
8+
<StabilizePackageVersion Condition="'$(StabilizePackageVersion)' == ''">false</StabilizePackageVersion>
9+
<DotNetFinalVersionKind Condition="'$(StabilizePackageVersion)' == 'true'">release</DotNetFinalVersionKind>
510
</PropertyGroup>
611
<PropertyGroup>
712
<AspNetCoreVersion>3.0.0</AspNetCoreVersion>

0 commit comments

Comments
 (0)