Add folder via dialog

This commit is contained in:
Matt Parker
2025-10-20 00:09:24 +10:00
parent 681e07586e
commit e379d064f3
5 changed files with 26 additions and 7 deletions

View File

@@ -44,6 +44,7 @@ public partial class IdeRoot : Control
[Inject] private readonly BuildService _buildService = null!;
[Inject] private readonly IdeOpenTabsFileManager _openTabsFileManager = null!;
[Inject] private readonly RoslynAnalysis _roslynAnalysis = null!;
[Inject] private readonly SharpIdeSolutionModificationService _sharpIdeSolutionModificationService = null!;
public override void _EnterTree()
{
@@ -141,6 +142,7 @@ public partial class IdeRoot : Control
_searchAllFilesWindow.Solution = solutionModel;
_fileExternalChangeHandler.SolutionModel = solutionModel;
_fileChangedService.SolutionModel = solutionModel;
_sharpIdeSolutionModificationService.SolutionModel = solutionModel;
Callable.From(_solutionExplorerPanel.BindToSolution).CallDeferred();
_roslynAnalysis.StartSolutionAnalysis(solutionModel);
_fileWatcher.StartWatching(solutionModel);