From 385b282e79d186363d4ef58bbe7d5e4bf371a8d4 Mon Sep 17 00:00:00 2001 From: Swaroop Sridhar Date: Thu, 2 Jun 2016 16:29:11 -0700 Subject: [PATCH] CoreDisTools Package: Make minor version generic Change the version requirement of CoreDisTools package from 1.0.1-prerelease-00001 to 1.0.1-prerelease-* so that the test infrastructure picks up the latest available version. If only the 1.0.1-prerelease-xxxxx number changes, there is no change in the library API. There may be a change in the implementation. The current need for this change is that we need to pick up a new version of the CoreDisTools package (with an implementation fix) for X86 testing. --- tests/setup-runtime-dependencies.cmd | 2 +- tests/setup-runtime-dependencies.sh | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/setup-runtime-dependencies.cmd b/tests/setup-runtime-dependencies.cmd index 5b13d09f82..182f0efad0 100755 --- a/tests/setup-runtime-dependencies.cmd +++ b/tests/setup-runtime-dependencies.cmd @@ -78,7 +78,7 @@ REM ============================================================================ REM Write dependency information to project.json echo { ^ "dependencies": { ^ - "runtime.win7-%__Arch%.Microsoft.NETCore.CoreDisTools": "1.0.1-prerelease-00001" ^ + "runtime.win7-%__Arch%.Microsoft.NETCore.CoreDisTools": "1.0.1-prerelease-*" ^ }, ^ "frameworks": { "dnxcore50": { } } ^ } > "%__JasonFilePath%" diff --git a/tests/setup-runtime-dependencies.sh b/tests/setup-runtime-dependencies.sh index 3db178c4f9..db5ecb49ec 100755 --- a/tests/setup-runtime-dependencies.sh +++ b/tests/setup-runtime-dependencies.sh @@ -119,7 +119,7 @@ fi packageName='runtime.'$rid'.Microsoft.NETCore.CoreDisTools' echo { \ \"dependencies\": { \ - \"$packageName\": \"1.0.1-prerelease-00001\" \ + \"$packageName\": \"1.0.1-prerelease-*\" \ }, \ \"frameworks\": { \"dnxcore50\": { } } \ } > $jsonFilePath -- 2.34.1