From 988d7e1802ec4e490f89252d500c8dacaae29f5d Mon Sep 17 00:00:00 2001 From: Andrew Kahr <22359829+AndrewKahr@users.noreply.github.com> Date: Sat, 21 Oct 2023 22:04:04 -0700 Subject: [PATCH] More debug --- dist/platforms/windows/build.ps1 | 34 ++++++++++++++++---------------- 1 file changed, 17 insertions(+), 17 deletions(-) diff --git a/dist/platforms/windows/build.ps1 b/dist/platforms/windows/build.ps1 index 91d90824..34f1927d 100644 --- a/dist/platforms/windows/build.ps1 +++ b/dist/platforms/windows/build.ps1 @@ -135,24 +135,24 @@ $_, $customParametersArray = Invoke-Expression('Write-Output -- "" ' + $Env:CUST $argList = @("-quit", "-batchmode", -"-nographics", -"-projectPath", $Env:UNITY_PROJECT_PATH, -"-executeMethod", $Env:BUILD_METHOD, -"-buildTarget", $Env:BUILD_TARGET, -"-customBuildTarget", $Env:BUILD_TARGET, -"-customBuildPath", $Env:CUSTOM_BUILD_PATH, -"-buildVersion", $Env:VERSION, -"-androidVersionCode", $Env:ANDROID_VERSION_CODE, -"-androidKeystorePass", $Env:ANDROID_KEYSTORE_PASS, -"-androidKeyaliasName", $Env:ANDROID_KEYALIAS_NAME, -"-androidKeyaliasPass", $Env:ANDROID_KEYALIAS_PASS, -"-androidTargetSdkVersion", $Env:ANDROID_TARGET_SDK_VERSION, -"-androidExportType", $Env:ANDROID_EXPORT_TYPE, -"-androidSymbolType", $Env:ANDROID_SYMBOL_TYPE, -"-logfile", "-", "./build.log", -"-silent-crashes" +"-nographics" ) # + $customParametersArray - +# , +# "-projectPath", $Env:UNITY_PROJECT_PATH, +# "-executeMethod", $Env:BUILD_METHOD, +# "-buildTarget", $Env:BUILD_TARGET, +# "-customBuildTarget", $Env:BUILD_TARGET, +# "-customBuildPath", $Env:CUSTOM_BUILD_PATH, +# "-buildVersion", $Env:VERSION, +# "-androidVersionCode", $Env:ANDROID_VERSION_CODE, +# "-androidKeystorePass", $Env:ANDROID_KEYSTORE_PASS, +# "-androidKeyaliasName", $Env:ANDROID_KEYALIAS_NAME, +# "-androidKeyaliasPass", $Env:ANDROID_KEYALIAS_PASS, +# "-androidTargetSdkVersion", $Env:ANDROID_TARGET_SDK_VERSION, +# "-androidExportType", $Env:ANDROID_EXPORT_TYPE, +# "-androidSymbolType", $Env:ANDROID_SYMBOL_TYPE, +# "-logfile", "-", "./build.log", +# "-silent-crashes" foreach ($element in $argList) { Write-Host $element }