diff options
author | Paul Joannon <hello@pauljoannon.com> | 2023-02-16 11:45:33 +0100 |
---|---|---|
committer | Paul Joannon <hello@pauljoannon.com> | 2023-02-16 11:45:33 +0100 |
commit | 5e3d114829db444c9baac2c8c2aa4fb36cb12acc (patch) | |
tree | 2b54f70251ce9f67d19ab2074448a3ad54e059aa /modules/mono | |
parent | 953383328af17e8c9fd6359285c12617cb22f636 (diff) |
Clicking "Clean solution" should clean, not build
Diffstat (limited to 'modules/mono')
-rw-r--r-- | modules/mono/editor/GodotTools/GodotTools/Build/BuildManager.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/mono/editor/GodotTools/GodotTools/Build/BuildManager.cs b/modules/mono/editor/GodotTools/GodotTools/Build/BuildManager.cs index ed3a4c6e26..6c5c61acb9 100644 --- a/modules/mono/editor/GodotTools/GodotTools/Build/BuildManager.cs +++ b/modules/mono/editor/GodotTools/GodotTools/Build/BuildManager.cs @@ -302,7 +302,7 @@ namespace GodotTools.Build public static bool CleanProjectBlocking( [DisallowNull] string configuration, [AllowNull] string platform = null - ) => CleanProjectBlocking(CreateBuildInfo(configuration, platform, rebuild: false)); + ) => CleanProjectBlocking(CreateBuildInfo(configuration, platform, rebuild: false, onlyClean: true)); public static bool PublishProjectBlocking( [DisallowNull] string configuration, |