Skip to content

Commit

Permalink
Rebranding dev branch to 4.3.0-rtm (NuGet#1537)
Browse files Browse the repository at this point in the history
  • Loading branch information
alpaix authored Jul 7, 2017
1 parent de2e9e3 commit 85ce937
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion .teamcity.properties
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Collection of properties customizing TeamCity build configurations
ReleaseLabel = preview3
ReleaseLabel = rtm
ReleaseProductVersion = 4.3.0
# Enables publishing of NuGet packages to the MyGet/nugetbuild feed
# Should be true for dev, and false for release branches
Expand Down
8 changes: 4 additions & 4 deletions build.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -47,10 +47,10 @@ To troubleshoot build issues
#>
[CmdletBinding()]
param (
[ValidateSet("debug", "release")]
[ValidateSet('debug', 'release')]
[Alias('c')]
[string]$Configuration,
[ValidateSet("release","rtm", "rc", "rc1", "rc2", "rc3", "rc4", "beta", "beta1", "beta2", "final", "preview1", "preview2", "preview3", "xprivate", "zlocal")]
[ValidatePattern('^(beta|final|preview|rc|release|rtm|xprivate|zlocal)([0-9]*)$')]
[Alias('l')]
[string]$ReleaseLabel = 'zlocal',
[Alias('n')]
Expand Down Expand Up @@ -166,7 +166,7 @@ Invoke-BuildStep 'Building nuget.tools.vsix for Insertion' {

# Build and (If not $SkipUnitTest) Pack, Core unit tests, and Unit tests for VS 15.0
Trace-Log ". `"$MSBuildExe`" build\build.proj /t:BuildVS15 /p:Configuration=$Configuration /p:ReleaseLabel=$ReleaseLabel /p:BuildNumber=$BuildNumber /p:ExcludeTestProjects=true /p:IsInsertable=true /v:m /m:1"
& $MSBuildExe build\build.proj /t:BuildVS15 /p:Configuration=$Configuration /p:ReleaseLabel=$ReleaseLabel /p:BuildNumber=$BuildNumber /p:ExcludeTestProjects=true /p:IsInsertable=true /v:m /m:1
& $MSBuildExe build\build.proj /t:BuildVS15 /p:Configuration=$Configuration /p:ReleaseLabel=$ReleaseLabel /p:BuildNumber=$BuildNumber /p:ExcludeTestProjects=true /p:IsInsertable=true /v:m /m:1

if (-not $?)
{
Expand Down Expand Up @@ -250,7 +250,7 @@ Invoke-BuildStep 'Packing VS15 RTM' {

# Build and (If not $SkipUnitTest) Pack, Core unit tests, and Unit tests for VS 15.0
Trace-Log ". `"$MSBuildExe`" build\build.proj /t:BuildVS15`;Pack /p:Configuration=$Configuration /p:BuildRTM=true /p:ReleaseLabel=$ReleaseLabel /p:BuildNumber=$BuildNumber /p:ExcludeTestProjects=true /v:m /m:1"
& $MSBuildExe build\build.proj /t:BuildVS15`;Pack /p:Configuration=$Configuration /p:BuildRTM=true /p:ReleaseLabel=$ReleaseLabel /p:BuildNumber=$BuildNumber /p:ExcludeTestProjects=true /v:m /m:1
& $MSBuildExe build\build.proj /t:BuildVS15`;Pack /p:Configuration=$Configuration /p:BuildRTM=true /p:ReleaseLabel=$ReleaseLabel /p:BuildNumber=$BuildNumber /p:ExcludeTestProjects=true /v:m /m:1

if (-not $?)
{
Expand Down
4 changes: 2 additions & 2 deletions build/config.props
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@
<SemanticVersion Condition=" '$(SemanticVersion)' == '' ">4.3.0</SemanticVersion>
<!-- We need to update this netcoreassembly build number with every milestone to workaround any breaking api
changes we might have made-->
<NetCoreAssemblyBuildNumber Condition=" '$(NetCoreAssemblyBuildNumber)' == '' ">4</NetCoreAssemblyBuildNumber>
<ReleaseLabel Condition=" '$(ReleaseLabel)' == '' ">preview$(NetCoreAssemblyBuildNumber)</ReleaseLabel>
<NetCoreAssemblyBuildNumber Condition=" '$(NetCoreAssemblyBuildNumber)' == '' ">5</NetCoreAssemblyBuildNumber>
<ReleaseLabel Condition=" '$(ReleaseLabel)' == '' ">rtm</ReleaseLabel>
</PropertyGroup>

<!-- Dependency versions -->
Expand Down
4 changes: 2 additions & 2 deletions runTests.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -40,10 +40,10 @@ Running core unit tests only
#>
[CmdletBinding()]
param (
[ValidateSet("debug", "release")]
[ValidateSet('debug', 'release')]
[Alias('c')]
[string]$Configuration,
[ValidateSet("release","rtm", "rc", "rc1", "rc2", "rc3", "rc4", "beta", "beta1", "beta2", "final", "preview1", "preview2", "preview3", "xprivate", "zlocal")]
[ValidatePattern('^(beta|final|preview|rc|release|rtm|xprivate|zlocal)([0-9]*)$')]
[Alias('l')]
[string]$ReleaseLabel = 'zlocal',
[Alias('n')]
Expand Down

0 comments on commit 85ce937

Please sign in to comment.