Skip to content

Commit

Permalink
Move dev to 5.10 (#3882)
Browse files Browse the repository at this point in the history
  • Loading branch information
nkolev92 committed Feb 2, 2021
1 parent 24d1baf commit 74781ba
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions build/config.props
Expand Up @@ -13,13 +13,13 @@
<!-- ** Change for each new version -->
<!-- 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)' == ''">9</MinorNuGetVersion>
<MinorNuGetVersion Condition="'$(MinorNuGetVersion)' == ''">10</MinorNuGetVersion>
<PatchNuGetVersion Condition="'$(PatchNuGetVersion)' == ''">0</PatchNuGetVersion>
<SemanticVersion Condition=" '$(SemanticVersion)' == '' ">$(MajorNuGetVersion).$(MinorNuGetVersion).$(PatchNuGetVersion)</SemanticVersion>

<!-- ** Change for each new preview/rc -->
<!-- Check the VS schedule and manually enter a preview number here that makes sense. -->
<ReleaseLabel Condition=" '$(ReleaseLabel)' == '' ">rc</ReleaseLabel>
<ReleaseLabel Condition=" '$(ReleaseLabel)' == '' ">preview.1</ReleaseLabel>

<IsEscrowMode>false</IsEscrowMode>

Expand Down
2 changes: 1 addition & 1 deletion src/NuGet.Clients/NuGet.Tools/NuGetPackage.cs
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.9.0";
public const string ProductVersion = "5.10.0";
private const string F1KeywordValuePmUI = "VS.NuGet.PackageManager.UI";

private AsyncLazy<IVsMonitorSelection> _vsMonitorSelection;
Expand Down

0 comments on commit 74781ba

Please sign in to comment.