diff --git a/scripts/test/e2e-test.sh b/scripts/test/e2e-test.sh index 51eadf190..30fbc8743 100755 --- a/scripts/test/e2e-test.sh +++ b/scripts/test/e2e-test.sh @@ -17,7 +17,7 @@ DIR="$( cd -P "$( dirname "$SOURCE" )" && pwd )" source "$DIR/../_common.sh" rm "$REPOROOT/test/E2E/project.lock.json" -dotnet restore "$REPOROOT/test/E2E" --runtime "osx.10.10-x64" --runtime "ubuntu.14.04-x64" --runtime "win7-x64" +dotnet restore --quiet "$REPOROOT/test/E2E" --runtime "osx.10.10-x64" --runtime "ubuntu.14.04-x64" --runtime "win7-x64" dotnet publish --framework dnxcore50 --runtime "$RID" --output "$REPOROOT/artifacts/$RID/e2etest" "$REPOROOT/test/E2E" # set -e will abort if the exit code of this is non-zero diff --git a/test/E2E/E2ETest.cs b/test/E2E/E2ETest.cs index e6f3beb5c..5c4ed8786 100644 --- a/test/E2E/E2ETest.cs +++ b/test/E2E/E2ETest.cs @@ -117,7 +117,7 @@ namespace ConsoleApplication Directory.SetCurrentDirectory(TestDirectory); TestRunCommand("dotnet", "init"); - TestRunCommand("dotnet", "restore"); + TestRunCommand("dotnet", "restore --quiet"); } private bool SkipForOS(OSPlatform os, string reason) diff --git a/test/E2E/project.json b/test/E2E/project.json index e21cac468..2b128cb09 100644 --- a/test/E2E/project.json +++ b/test/E2E/project.json @@ -5,11 +5,11 @@ }, "dependencies": { - "Microsoft.NETCore.Platforms":"1.0.1-beta-*", - "Microsoft.NETCore.Runtime": "1.0.1-beta-*", - "System.Console": "4.0.0-beta-*", - "System.Runtime": "4.0.21-beta-*", - "System.AppContext": "4.0.1-beta-*", + "Microsoft.NETCore.Platforms":"1.0.1-*", + "Microsoft.NETCore.Runtime": "1.0.1-*", + "System.Console": "4.0.0-*", + "System.Runtime": "4.0.21-*", + "System.AppContext": "4.0.1-*", "xunit": "2.1.0", "xunit.console.netcore": "1.0.2-prerelease-00101",