From b62933eaba3d13d8578e01c922f7b0ceb3837673 Mon Sep 17 00:00:00 2001 From: Jared Parsons Date: Tue, 29 Aug 2017 15:42:23 -0700 Subject: [PATCH] Need to publish self contained on Unix as well --- build/scripts/tests.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build/scripts/tests.sh b/build/scripts/tests.sh index 4d28c5a5372..3ffe3463309 100755 --- a/build/scripts/tests.sh +++ b/build/scripts/tests.sh @@ -29,7 +29,7 @@ NEED_PUBLISH=( for p in $NEED_PUBLISH do echo Publishing ${p} - dotnet publish --no-restore ${SRC_PATH}/${p} -p:RuntimeIdentifier=${RUNTIME_ID} -p:TargetFramework=${TARGET_FRAMEWORK} + dotnet publish --no-restore ${SRC_PATH}/${p} -p:RuntimeIdentifier=${RUNTIME_ID} -p:TargetFramework=${TARGET_FRAMEWORK} -p:SelfContained=true done # Discover and run the tests -- GitLab