From 4dd5765ff2aa43227b52286ce8560299ecb06923 Mon Sep 17 00:00:00 2001 From: Senthil Date: Fri, 5 Feb 2016 13:21:58 -0800 Subject: [PATCH] Feed changes to dotnet.myget --- build.sh | 2 +- dir.props | 10 +++++----- src/NuGet.config | 7 ++++--- tests/restore.cmd | 2 +- tests/restore.sh | 2 +- 5 files changed, 12 insertions(+), 11 deletions(-) diff --git a/build.sh b/build.sh index c6d79a59201..9dd3e0c939a 100755 --- a/build.sh +++ b/build.sh @@ -155,7 +155,7 @@ prepare_managed_build() # Grab the MSBuild package if we don't have it already if [ ! -e "$__msbuildpath" ]; then echo "Restoring MSBuild..." - mono "$__nugetpath" install $__msbuildpackageid -Version $__msbuildpackageversion -source "https://www.myget.org/F/dotnet-buildtools/" -OutputDirectory "$__packageroot" + mono "$__nugetpath" install $__msbuildpackageid -Version $__msbuildpackageversion -source "https://dotnet.myget.org/F/dotnet-buildtools/" -OutputDirectory "$__packageroot" if [ $? -ne 0 ]; then echo "Failed to restore MSBuild." exit 1 diff --git a/dir.props b/dir.props index 958c1d1ff2b..e736d87771f 100644 --- a/dir.props +++ b/dir.props @@ -118,7 +118,7 @@ - + @@ -140,10 +140,10 @@ - - - - + + + + diff --git a/src/NuGet.config b/src/NuGet.config index 5890bf2cfda..4c1ebae51f3 100644 --- a/src/NuGet.config +++ b/src/NuGet.config @@ -6,9 +6,10 @@ - - - + + + + diff --git a/tests/restore.cmd b/tests/restore.cmd index 5e4e174b5b1..a72ae113a65 100644 --- a/tests/restore.cmd +++ b/tests/restore.cmd @@ -22,7 +22,7 @@ set __NuPkgInstallDir=%CoreRT_TestRoot%\..\bin\Product\%__BuildStr%\.nuget\publi if not exist %__NuGetExeDir%\NuGet.exe ((call :Fail "No NuGet.exe found at %__NuGetExeDir%. Specify /nugetexedir option") & exit /b -1) REM ** Install packages from NuGet -set __NuGetFeedUrl="https://www.myget.org/F/dotnet/auth/3e4f1dbe-f43a-45a8-b029-3ad4d25605ac/api/v2" +set __NuGetFeedUrl="https://dotnet.myget.org/F/dotnet-corert/api/v2" REM ** Install AppDep SDK echo. diff --git a/tests/restore.sh b/tests/restore.sh index 353b8a80e33..c0ac2894c10 100755 --- a/tests/restore.sh +++ b/tests/restore.sh @@ -65,7 +65,7 @@ if [ ! -f ${__NuGetExeDir}/NuGet.exe ] ; then exit -1 fi -__NuGetFeedUrl="https://www.myget.org/F/dotnet/auth/3e4f1dbe-f43a-45a8-b029-3ad4d25605ac/api/v2" +__NuGetFeedUrl="https://dotnet.myget.org/F/dotnet-corert/api/v2" echo Installing CoreRT external dependencies mono ${__NuGetExeDir}/NuGet.exe install -Source ${__NuGetFeedUrl} -OutputDir ${__NuPkgInstallDir} -Version ${CoreRT_AppDepSdkVer} ${CoreRT_AppDepSdkPkg} -prerelease ${__NuGetOptions} -nocache