From fb20108de3bf5736c6a2d3e92bd8429f09c15268 Mon Sep 17 00:00:00 2001 From: Archi Date: Sat, 22 May 2021 19:10:19 +0200 Subject: [PATCH] AppVeyor: Remove dotnet clean, as it's not needed --- .github/appveyor.yml | 7 ------- 1 file changed, 7 deletions(-) diff --git a/.github/appveyor.yml b/.github/appveyor.yml index 5e9558820..a4363495a 100644 --- a/.github/appveyor.yml +++ b/.github/appveyor.yml @@ -172,13 +172,6 @@ after_test: dotnet publish "$env:STEAM_TOKEN_DUMPER_NAME" -c "$env:CONFIGURATION" -f "$env:NET_FRAMEWORK_VERSION" -o "out/$env:STEAM_TOKEN_DUMPER_NAME/$env:NET_FRAMEWORK_VERSION" -p:ContinuousIntegrationBuild=true -p:TargetLatestRuntimePatch=false -p:UseAppHost=false --nologo - if ($LastExitCode -ne 0) { - throw "Last command failed." - } - - dotnet clean ArchiSteamFarm -c "$env:CONFIGURATION" -p:ContinuousIntegrationBuild=true -p:UseAppHost=false --nologo - - if ($LastExitCode -ne 0) { throw "Last command failed." }