From c67f95d80ea789114a5d9fa02b57eba3788fb6c9 Mon Sep 17 00:00:00 2001 From: Raul Santos Date: Fri, 27 Jun 2025 20:30:12 +0200 Subject: [PATCH] [.NET] Mention MSBuild panel when building fails --- modules/mono/editor/GodotTools/GodotTools/Build/BuildManager.cs | 2 +- .../mono/editor/GodotTools/GodotTools/Export/ExportPlugin.cs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/modules/mono/editor/GodotTools/GodotTools/Build/BuildManager.cs b/modules/mono/editor/GodotTools/GodotTools/Build/BuildManager.cs index d7877fa5fc..4ea212ad5f 100644 --- a/modules/mono/editor/GodotTools/GodotTools/Build/BuildManager.cs +++ b/modules/mono/editor/GodotTools/GodotTools/Build/BuildManager.cs @@ -230,7 +230,7 @@ namespace GodotTools.Build if (!success) { - ShowBuildErrorDialog("Failed to build project"); + ShowBuildErrorDialog("Failed to build project. Check MSBuild panel for details."); } return success; diff --git a/modules/mono/editor/GodotTools/GodotTools/Export/ExportPlugin.cs b/modules/mono/editor/GodotTools/GodotTools/Export/ExportPlugin.cs index ae5a142182..da38252c22 100644 --- a/modules/mono/editor/GodotTools/GodotTools/Export/ExportPlugin.cs +++ b/modules/mono/editor/GodotTools/GodotTools/Export/ExportPlugin.cs @@ -286,7 +286,7 @@ namespace GodotTools.Export if (!BuildManager.PublishProjectBlocking(buildConfig, platform, runtimeIdentifier, publishOutputDir, includeDebugSymbols)) { - throw new InvalidOperationException("Failed to build project."); + throw new InvalidOperationException("Failed to build project. Check MSBuild panel for details."); } string soExt = ridOS switch