Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

update release branding to 5.11.4 (release-5.11.x) #4911

Merged
merged 2 commits into from
Nov 11, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion build/config.props
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
<!-- when changing any of the NuGetVersion props below, update ProductVersion in src\NuGet.Clients\NuGet.Tools\NuGetPackage.cs and run tools-local\ship-public-apis -->
<MajorNuGetVersion Condition="'$(MajorNuGetVersion)' == ''">5</MajorNuGetVersion>
<MinorNuGetVersion Condition="'$(MinorNuGetVersion)' == ''">11</MinorNuGetVersion>
<PatchNuGetVersion Condition="'$(PatchNuGetVersion)' == ''">3</PatchNuGetVersion>
<PatchNuGetVersion Condition="'$(PatchNuGetVersion)' == ''">4</PatchNuGetVersion>
kartheekp-ms marked this conversation as resolved.
Show resolved Hide resolved
<SemanticVersion Condition=" '$(SemanticVersion)' == '' ">$(MajorNuGetVersion).$(MinorNuGetVersion).$(PatchNuGetVersion)</SemanticVersion>

<!-- ** Change for each new preview/rc -->
Expand Down
2 changes: 1 addition & 1 deletion src/NuGet.Clients/NuGet.Tools/NuGetPackage.cs
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ namespace NuGetVSExtension
public sealed class NuGetPackage : AsyncPackage, IVsPackageExtensionProvider, IVsPersistSolutionOpts
{
// It is displayed in the Help - About box of Visual Studio
public const string ProductVersion = "5.11.3";
public const string ProductVersion = "5.11.4";
private const string F1KeywordValuePmUI = "VS.NuGet.PackageManager.UI";

private AsyncLazy<IVsMonitorSelection> _vsMonitorSelection;
Expand Down