Add workaround for shared output assemblies

Note to self: revisit this once I get the response in https://github.com/dotnet/cli/issues/9349
This commit is contained in:
JustArchi
2018-05-25 22:08:23 +02:00
parent d3e8ae862a
commit 61fa89bd36
2 changed files with 2 additions and 2 deletions

View File

@@ -40,7 +40,7 @@ script:
- | - |
set -e set -e
dotnet build ArchiSteamFarm -c "$CONFIGURATION" -o 'out/source' /nologo dotnet build ArchiSteamFarm -c "$CONFIGURATION" -o 'out/source' /nologo "/p:ASFVariant=generic"
dotnet test ArchiSteamFarm.Tests -c "$CONFIGURATION" -o 'out/source' /nologo dotnet test ArchiSteamFarm.Tests -c "$CONFIGURATION" -o 'out/source' /nologo
publish() { publish() {

View File

@@ -42,7 +42,7 @@ build_script:
$ProgressPreference = 'SilentlyContinue' $ProgressPreference = 'SilentlyContinue'
dotnet build ArchiSteamFarm -c "$env:CONFIGURATION" -o 'out\source' /nologo dotnet build ArchiSteamFarm -c "$env:CONFIGURATION" -o 'out\source' /nologo "/p:ASFVariant=generic"
if ($LastExitCode -ne 0) { if ($LastExitCode -ne 0) {
throw "Command failed." throw "Command failed."