From 89dcc32657403e97da2c4462a8424f008c98972f Mon Sep 17 00:00:00 2001 From: Ari Vuollet Date: Mon, 17 Aug 2026 16:49:21 +0300 Subject: [PATCH] Fix one more case of `CommandLine` argument value usage --- Source/Tools/Flax.Build/Platforms/Windows/WindowsPlatform.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/Tools/Flax.Build/Platforms/Windows/WindowsPlatform.cs b/Source/Tools/Flax.Build/Platforms/Windows/WindowsPlatform.cs index fb4b55bf9..c4e67207f 100644 --- a/Source/Tools/Flax.Build/Platforms/Windows/WindowsPlatform.cs +++ b/Source/Tools/Flax.Build/Platforms/Windows/WindowsPlatform.cs @@ -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(" ", configuration.Name)); vcUserFileContent.AppendLine(string.Format(" {0}\\FlaxEditor.exe", Path.Combine(Globals.EngineRoot, "Binaries", "Editor", editorFolder, configuration.ConfigurationName))); - vcUserFileContent.AppendLine(" -project \"$(SolutionDir)\" -skipCompile"); + vcUserFileContent.AppendLine(" -project=\"$(SolutionDir)\" -skipCompile"); vcUserFileContent.AppendLine(" $(SolutionDir)"); vcUserFileContent.AppendLine(" WindowsLocalDebugger"); vcUserFileContent.AppendLine(" ");