[.NET] Mention MSBuild panel when building fails

This commit is contained in:
Raul Santos 2025-06-27 20:30:12 +02:00
parent 30456ba095
commit c67f95d80e
No known key found for this signature in database
GPG key ID: B532473AE3A803E4
2 changed files with 2 additions and 2 deletions

View file

@ -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;

View file

@ -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