Skip to content

Commit

Permalink
Merge pull request #23408 from jaredpar/fix-ver
Browse files Browse the repository at this point in the history
Publish NuGet packages for 15.6
  • Loading branch information
jaredpar committed Nov 29, 2017
2 parents 240b611 + 3b18349 commit 7692269
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
6 changes: 3 additions & 3 deletions build/Targets/Versions.props
Original file line number Diff line number Diff line change
Expand Up @@ -8,13 +8,13 @@

<PropertyGroup>
<!-- This is the assembly version of Roslyn from the .NET assembly perspective. It should only be revved during significant point releases. -->
<RoslynAssemblyVersionBase Condition="'$(RoslynAssemblyVersion)' == ''">2.6.0</RoslynAssemblyVersionBase>
<RoslynAssemblyVersionBase Condition="'$(RoslynAssemblyVersion)' == ''">2.7.0</RoslynAssemblyVersionBase>
<!-- This is the file version of Roslyn, as placed in the PE header. It should be revved during point releases, and is also what provides the basis for our NuGet package versioning. -->
<RoslynFileVersionBase Condition="'$(RoslynFileVersionBase)' == ''">2.6.0</RoslynFileVersionBase>
<RoslynFileVersionBase Condition="'$(RoslynFileVersionBase)' == ''">2.7.0</RoslynFileVersionBase>
<!-- The release moniker for our packages. Developers should use "dev" and official builds pick the branch
moniker listed below -->
<RoslynNuGetMoniker Condition="'$(RoslynNuGetMoniker)' == ''">dev</RoslynNuGetMoniker>
<RoslynNuGetMoniker Condition="'$(OfficialBuild)' == 'true'">beta3</RoslynNuGetMoniker>
<RoslynNuGetMoniker Condition="'$(OfficialBuild)' == 'true'">beta2</RoslynNuGetMoniker>

<!-- This is the base of the NuGet versioning for prerelease packages -->
<NuGetPreReleaseVersion>$(RoslynFileVersionBase)-$(RoslynNuGetMoniker)</NuGetPreReleaseVersion>
Expand Down
10 changes: 5 additions & 5 deletions build/config/PublishData.json
Original file line number Diff line number Diff line change
@@ -1,18 +1,18 @@
{
"branches": {
"dev15.5.x": {
"master-vs-deps": {
"nugetKind": "PerBuildPreRelease",
"version": "2.6.*",
"version": "2.7.*",
"nuget": [ "https://dotnet.myget.org/F/roslyn/api/v2/package" ],
"vsix": [ "https://dotnet.myget.org/F/roslyn/vsix/upload" ],
"channels": [ "dev15.5", "dev15.5p3" ]
"channels": [ "dev15.6" ]
},
"dev/jaredpar/fix-publish": {
"dev15.5.x": {
"nugetKind": "PerBuildPreRelease",
"version": "2.6.*",
"nuget": [ "https://dotnet.myget.org/F/roslyn/api/v2/package" ],
"vsix": [ "https://dotnet.myget.org/F/roslyn/vsix/upload" ],
"channels": [ "publish-test" ]
"channels": [ "dev15.5", "dev15.5p3" ]
},
"features/readonly-ref": {
"nugetKind": "PerBuildPreRelease",
Expand Down

0 comments on commit 7692269

Please sign in to comment.