From df796632ce253ce2fd2776ebaf655784fa4478ee Mon Sep 17 00:00:00 2001 From: Davis Goodin Date: Thu, 9 Jun 2016 10:03:11 -0500 Subject: [PATCH] Remove CoreFX-specific project.json update code and update summary comment. --- UpdateDependencies.ps1 | 17 ++--------------- 1 file changed, 2 insertions(+), 15 deletions(-) diff --git a/UpdateDependencies.ps1 b/UpdateDependencies.ps1 index be4ffb76e761..102dd4ee8ccc 100644 --- a/UpdateDependencies.ps1 +++ b/UpdateDependencies.ps1 @@ -3,8 +3,8 @@ # Licensed under the MIT license. See LICENSE file in the project root for full license information. # -# This script updates all the project.json files with the latest build version, -# and then creates a Pull Request for the change. +# This script updates dir.props with the current version of CoreCLR +# dependencies, and then creates a Pull Request for the change. param( [Parameter(Mandatory=$true)][string]$GitHubUser, @@ -50,14 +50,6 @@ function UpdateValidDependencyVersionsFile return $true } -# Updates all the project.json files with out of date version numbers -function RunUpdatePackageDependencyVersions -{ - cmd /c $PSScriptRoot\build.cmd /t:UpdateInvalidPackageVersions | Out-Host - - return $LASTEXITCODE -eq 0 -} - # Creates a Pull Request for the updated version numbers function CreatePullRequest { @@ -121,11 +113,6 @@ if (!(UpdateValidDependencyVersionsFile)) Exit -1 } -if (!(RunUpdatePackageDependencyVersions)) -{ - Exit -1 -} - if (!(CreatePullRequest)) { Exit -1