Fix one more case of CommandLine argument value usage

This commit is contained in:
Ari Vuollet
2026-08-17 16:49:21 +03:00
parent c83cec1e4e
commit 89dcc32657
@@ -105,7 +105,7 @@ namespace Flax.Build.Platforms
var editorFolder = configuration.Architecture == TargetArchitecture.x64 ? "Win64" : (configuration.Architecture == TargetArchitecture.ARM64 ? "ARM64" : "Win32");
vcUserFileContent.AppendLine(string.Format(" <PropertyGroup Condition=\"'$(Configuration)|$(Platform)'=='{0}'\">", configuration.Name));
vcUserFileContent.AppendLine(string.Format(" <LocalDebuggerCommand>{0}\\FlaxEditor.exe</LocalDebuggerCommand>", Path.Combine(Globals.EngineRoot, "Binaries", "Editor", editorFolder, configuration.ConfigurationName)));
vcUserFileContent.AppendLine(" <LocalDebuggerCommandArguments>-project \"$(SolutionDir)\" -skipCompile</LocalDebuggerCommandArguments>");
vcUserFileContent.AppendLine(" <LocalDebuggerCommandArguments>-project=\"$(SolutionDir)\" -skipCompile</LocalDebuggerCommandArguments>");
vcUserFileContent.AppendLine(" <LocalDebuggerWorkingDirectory>$(SolutionDir)</LocalDebuggerWorkingDirectory>");
vcUserFileContent.AppendLine(" <DebuggerFlavor>WindowsLocalDebugger</DebuggerFlavor>");
vcUserFileContent.AppendLine(" </PropertyGroup>");