dotnet-restore fix

add rid to all restores in test

Add Rid to appdep script, fix common

more script fixes!

fixes

script fix

script fix

Fix up the Runtests script

more fixes :)
This commit is contained in:
Bryan 2016-01-29 19:04:18 -08:00 committed by Bryan Thornbury
parent afacc2c0a6
commit 39682cd14b
8 changed files with 23 additions and 23 deletions

View file

@ -17,10 +17,10 @@ DIR="$( cd -P "$( dirname "$SOURCE" )" && pwd )"
source "$DIR/../common/_common.sh"
for project in loadTestList()
PROJECTS=$(loadTestProjectList)
for project in $PROJECTS
do
dotnet publish --framework "dnxcore50" --runtime "$Rid" --output "$TestBinRoot" --configuration "$CONFIGURATION" "$REPOROOT/test/$project"
dotnet publish --framework "dnxcore50" --runtime "$RID" --output "$TEST_BIN_ROOT" --configuration "$CONFIGURATION" "$REPOROOT/test/$project"
done
# TODO: Remove this when publish paths change back
cp -a "$TestBinRoot/Debug/dnxcore50/." "$TestBinRoot"