Skip to content

Commit 51366ef

Browse files
authored
Dont stabilize version and set package project url (#2546)
* Don't stabilize dotnet-suggest version in VMR That package doesn't ship from the VMR so we don't need to stabilize it. * Set PackageProjectUrl so that the VMR doesn't overwrite it
1 parent dd2bc6a commit 51366ef

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

Directory.Build.props

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@
88
<NoWarn>$(NoWarn);NU5125;CS0618</NoWarn>
99
<PackageLicenseExpression>MIT</PackageLicenseExpression>
1010
<LangVersion>10.0</LangVersion>
11+
<PackageProjectUrl>https://github.com/dotnet/command-line-api</PackageProjectUrl>
1112
</PropertyGroup>
1213

1314
<PropertyGroup>

src/System.CommandLine.Suggest/dotnet-suggest.csproj

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,8 @@
1313
<DotnetSuggestBuildNumber>.1</DotnetSuggestBuildNumber>
1414
<DotnetSuggestBuildNumber Condition="'$(VersionSuffixDateStamp)' != ''">.$(VersionSuffixDateStamp).$(VersionSuffixBuildOfTheDay)</DotnetSuggestBuildNumber>
1515
<VersionPrefix>1.1$(DotnetSuggestBuildNumber)</VersionPrefix>
16-
<VersionSuffix></VersionSuffix>
16+
<!-- Don't stabilize the version when building from the VMR as the package doesn't ship from there. -->
17+
<VersionSuffix Condition="'$(DotNetBuild)' != 'true'" />
1718
</PropertyGroup>
1819

1920
<PropertyGroup>

0 commit comments

Comments
 (0)