Skip to content

Commit 25525bc

Browse files
committed
Merge pull request #108053 from raulsntos/dotnet/check-msbuild-panel-for-details
[.NET] Mention MSBuild panel when building fails
2 parents 5aefc2e + c67f95d commit 25525bc

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

modules/mono/editor/GodotTools/GodotTools/Build/BuildManager.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -230,7 +230,7 @@ private static bool BuildProjectBlocking(BuildInfo buildInfo)
230230

231231
if (!success)
232232
{
233-
ShowBuildErrorDialog("Failed to build project");
233+
ShowBuildErrorDialog("Failed to build project. Check MSBuild panel for details.");
234234
}
235235

236236
return success;

modules/mono/editor/GodotTools/GodotTools/Export/ExportPlugin.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -286,7 +286,7 @@ private void _ExportBeginImpl(string[] features, bool isDebug, string path, long
286286
if (!BuildManager.PublishProjectBlocking(buildConfig, platform,
287287
runtimeIdentifier, publishOutputDir, includeDebugSymbols))
288288
{
289-
throw new InvalidOperationException("Failed to build project.");
289+
throw new InvalidOperationException("Failed to build project. Check MSBuild panel for details.");
290290
}
291291

292292
string soExt = ridOS switch

0 commit comments

Comments
 (0)