This commit is contained in:
Matt Parker
2026-01-17 15:10:02 +10:00
parent 46753f48d4
commit c7c8ee4861

View File

@@ -121,6 +121,7 @@ public partial class IdeRoot : Control
private void OnRestoreSlnButtonPressed() => MsBuild(BuildType.Restore);
private async void MsBuild(BuildType buildType)
{
await Task.CompletedTask.ConfigureAwait(ConfigureAwaitOptions.ForceYielding);
GodotGlobalEvents.Instance.BottomPanelTabExternallySelected.InvokeParallelFireAndForget(BottomPanelType.Build);
await _buildService.MsBuildAsync(_solutionExplorerPanel.SolutionModel.FilePath, buildType);
}