diff options
| author | Ignacio Etcheverry | 2017-10-07 01:21:11 +0200 |
|---|---|---|
| committer | Ignacio Etcheverry | 2017-10-07 01:21:11 +0200 |
| commit | 14280ac44b2d1f687f2fde99d6998628dd1a31af (patch) | |
| tree | 6c4718b6b7e24e9d25e7847ac096ea8caa9f2302 /modules/mono/editor/GodotSharpTools/Build/BuildSystem.cs | |
| parent | fdc3de009c41ba58a78a3579080a67ae6b699c84 (diff) | |
| download | godot-14280ac44b2d1f687f2fde99d6998628dd1a31af.tar.gz godot-14280ac44b2d1f687f2fde99d6998628dd1a31af.tar.zst godot-14280ac44b2d1f687f2fde99d6998628dd1a31af.zip | |
Quote MSBuild arguments. Fixes #11892
Diffstat (limited to 'modules/mono/editor/GodotSharpTools/Build/BuildSystem.cs')
| -rw-r--r-- | modules/mono/editor/GodotSharpTools/Build/BuildSystem.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/mono/editor/GodotSharpTools/Build/BuildSystem.cs b/modules/mono/editor/GodotSharpTools/Build/BuildSystem.cs index 329b6d200..5544233eb 100644 --- a/modules/mono/editor/GodotSharpTools/Build/BuildSystem.cs +++ b/modules/mono/editor/GodotSharpTools/Build/BuildSystem.cs @@ -106,7 +106,7 @@ namespace GodotSharpTools.Build private string BuildArguments(string loggerAssemblyPath, string loggerOutputDir, string[] customProperties) { - string arguments = string.Format("{0} /v:normal /t:Build /p:{1} /l:{2},{3};{4}", + string arguments = string.Format(@"""{0}"" /v:normal /t:Build ""/p:{1}"" ""/l:{2},{3};{4}""", solution, "Configuration=" + config, typeof(GodotBuildLogger).FullName, |
