Tweak restoration and dependencies
This commit is contained in:
parent
64523881e7
commit
a93e9111d7
3 changed files with 7 additions and 7 deletions
|
@ -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
|
||||
|
|
|
@ -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)
|
||||
|
|
|
@ -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",
|
||||
|
|
Loading…
Reference in a new issue