├── .editorconfig ├── .gitattributes ├── .github ├── pull_request_template.md └── workflows │ └── create-release.yml ├── .gitignore ├── .globalconfig ├── CONTRIBUTING.md ├── Directory.Build.props ├── Directory.Packages.props ├── LICENSE.txt ├── NotesToUsers.md ├── README.md ├── SharpIDE.slnx ├── docs └── file-changed-flow.svg ├── global.json ├── iac ├── Deploy │ ├── Deploy.csproj │ ├── DeploymentConstants.cs │ ├── Program.cs │ ├── Steps │ │ ├── CreateGithubRelease.cs │ │ ├── CreateLinuxRelease.cs │ │ ├── CreateMacosRelease.cs │ │ ├── CreateWindowsArm64Release.cs │ │ ├── CreateWindowsRelease.cs │ │ └── RestoreAndBuildStep.cs │ └── appsettings.json └── should-release.cs ├── local-publish.bat ├── nuget.config ├── src ├── SharpIDE.Application │ ├── BannedSymbols.txt │ ├── DependencyInjection.cs │ ├── Features │ │ ├── Analysis │ │ │ ├── FixLoaders │ │ │ │ ├── CodeFixProviderLoader.cs │ │ │ │ └── CodeRefactoringProviderLoader.cs │ │ │ ├── IdeApplyCompletionService.cs │ │ │ ├── IdeCodeActionService.cs │ │ │ ├── IdeRenameService.cs │ │ │ ├── Progress.cs │ │ │ ├── ProjectLoader │ │ │ │ ├── CustomMsBuildProjectLoader.Worker.AnalyzerReferencePathComparer.cs │ │ │ │ ├── CustomMsBuildProjectLoader.Worker.cs │ │ │ │ ├── CustomMsBuildProjectLoader.Worker_ResolveReferences.cs │ │ │ │ └── CustomMsBuildProjectLoader.cs │ │ │ ├── Razor │ │ │ │ ├── CustomSemanticTokensVisitor.cs │ │ │ │ ├── SharpIdeRazorClassifiedSpan.cs │ │ │ │ ├── SharpIdeRazorSourceMapping.cs │ │ │ │ ├── SharpIdeRazorSourceSpan.cs │ │ │ │ └── TokenTypeProvider.cs │ │ │ ├── RoslynAnalysis.cs │ │ │ ├── SharpIdeClassifiedSpan.cs │ │ │ ├── SharpIdeDiagnostic.cs │ │ │ └── SharpIdeFileLinePosition.cs │ │ ├── Build │ │ │ ├── BuildManagerExtensions.cs │ │ │ ├── BuildService.cs │ │ │ └── SharpIdeMsbuildLocator.cs │ │ ├── Debugging │ │ │ ├── Breakpoint.cs │ │ │ ├── Debugger.cs │ │ │ ├── DebuggingService.cs │ │ │ ├── ExecutionStopInfo.cs │ │ │ ├── Signing │ │ │ │ └── DebuggerHandshakeSigner.cs │ │ │ └── ThreadsStackTraceModel.cs │ │ ├── Evaluation │ │ │ ├── DotnetUserSecretsService.cs │ │ │ ├── NugetDependencyGraph.cs │ │ │ └── ProjectEvaluation.cs │ │ ├── Events │ │ │ ├── EventWrapper.cs │ │ │ ├── EventWrapperBase.cs │ │ │ └── GlobalEvents.cs │ │ ├── FilePersistence │ │ │ └── IdeOpenTabsFileManager.cs │ │ ├── FileWatching │ │ │ ├── AnalyzerFileWatcher.cs │ │ │ ├── FileChangedService.cs │ │ │ ├── IdeFileExternalChangeHandler.cs │ │ │ ├── IdeFileOperationsService.cs │ │ │ ├── IdeFileWatcher.cs │ │ │ ├── NewFileTemplates.cs │ │ │ └── SharpIdeSolutionModificationService.cs │ │ ├── Logging │ │ │ ├── ChannelTextWriter.cs │ │ │ ├── InMemoryLogger.cs │ │ │ └── InternalTerminalLoggerFactory.cs │ │ ├── NavigationHistory │ │ │ └── IdeNavigationHistoryService.cs │ │ ├── Nuget │ │ │ ├── NugetClientService.cs │ │ │ └── NugetPackageIconCacheService.cs │ │ ├── Run │ │ │ ├── LaunchSettingsParser.cs │ │ │ └── RunService.cs │ │ ├── Search │ │ │ ├── FindFilesSearchResult.cs │ │ │ ├── FindInFilesSearchResult.cs │ │ │ └── SearchService.cs │ │ ├── SolutionDiscovery │ │ │ ├── SharpIdeFile.cs │ │ │ ├── SharpIdeFolder.cs │ │ │ ├── SharpIdeModelComparers.cs │ │ │ ├── TreeMapperV2.cs │ │ │ └── VsPersistence │ │ │ │ ├── IntermediateMapper.cs │ │ │ │ ├── IntermediateModels.cs │ │ │ │ ├── SharpIdeModels.cs │ │ │ │ └── VsPersistenceMapper.cs │ │ └── Testing │ │ │ ├── Client │ │ │ ├── Dtos │ │ │ │ ├── AttachDebuggerInfo.cs │ │ │ │ ├── ClientCapabilities.cs │ │ │ │ ├── ClientInfo.cs │ │ │ │ ├── DiscoverRequest.cs │ │ │ │ ├── InitializeRequest.cs │ │ │ │ ├── InitializeResponse.cs │ │ │ │ ├── LogLevel.cs │ │ │ │ ├── RpcListener.cs │ │ │ │ ├── RunRequest.cs │ │ │ │ ├── ServerCapabilities.cs │ │ │ │ ├── ServerInfo.cs │ │ │ │ ├── TelemetryPayload.cs │ │ │ │ └── TestNode.cs │ │ │ ├── ExecutionStates.cs │ │ │ ├── LogsCollector.cs │ │ │ ├── RootFinder.cs │ │ │ ├── TelemetryCollector.cs │ │ │ ├── TestingPlatformClient.cs │ │ │ └── TestingPlatformClientFactory.cs │ │ │ └── TestRunnerService.cs │ ├── Program.cs │ ├── SharpIDE.Application.csproj │ └── SharpIdeOtel.cs ├── SharpIDE.Godot │ ├── .editorconfig │ ├── .gitattributes │ ├── .gitignore │ ├── DiAutoload.cs │ ├── DiAutoload.cs.uid │ ├── ExampleScript.gd │ ├── ExampleScript.gd.uid │ ├── Features │ │ ├── ActivityListener │ │ │ ├── ActivityMonitor.cs │ │ │ └── ActivityMonitor.cs.uid │ │ ├── BottomBar │ │ │ ├── BottomBar.cs │ │ │ ├── BottomBar.cs.uid │ │ │ ├── BottomBar.tscn │ │ │ ├── RunningTasksDisplay.cs │ │ │ ├── RunningTasksDisplay.cs.uid │ │ │ └── RunningTasksDisplay.tscn │ │ ├── BottomPanel │ │ │ ├── BottomPanelManager.cs │ │ │ ├── BottomPanelManager.cs.uid │ │ │ ├── BottomPanelType.cs │ │ │ └── BottomPanelType.cs.uid │ │ ├── Build │ │ │ ├── BuildPanel.cs │ │ │ ├── BuildPanel.cs.uid │ │ │ └── BuildPanel.tscn │ │ ├── CodeEditor │ │ │ ├── CodeEditorPanel.cs │ │ │ ├── CodeEditorPanel.cs.uid │ │ │ ├── CodeEditorPanel.tscn │ │ │ ├── CustomSyntaxHighlighter.cs │ │ │ ├── CustomSyntaxHighlighter.cs.uid │ │ │ ├── RenameSymbolDialog.cs │ │ │ ├── RenameSymbolDialog.cs.uid │ │ │ ├── RenameSymbolDialog.tscn │ │ │ ├── Resources │ │ │ │ ├── CascadiaFontVariation.tres │ │ │ │ ├── CascadiaMono.ttf │ │ │ │ ├── CascadiaMono.ttf.import │ │ │ │ └── TabBarTabStyle.tres │ │ │ ├── SharpIdeCodeEdit.cs │ │ │ ├── SharpIdeCodeEdit.cs.uid │ │ │ ├── SharpIdeCodeEdit.tscn │ │ │ ├── SharpIdeCodeEdit_Completions.cs │ │ │ ├── SharpIdeCodeEdit_Completions.cs.uid │ │ │ ├── SharpIdeCodeEdit_GitGutter.cs │ │ │ ├── SharpIdeCodeEdit_GitGutter.cs.uid │ │ │ ├── SharpIdeCodeEdit_RenameSymbol.cs │ │ │ ├── SharpIdeCodeEdit_RenameSymbol.cs.uid │ │ │ ├── SharpIdeCodeEdit_SymbolHover.cs │ │ │ ├── SharpIdeCodeEdit_SymbolHover.cs.uid │ │ │ ├── SharpIdeCodeEdit_SymbolLookup.cs │ │ │ ├── SharpIdeCodeEdit_SymbolLookup.cs.uid │ │ │ └── SymbolTooltips │ │ │ │ ├── Common.cs │ │ │ │ ├── Common.cs.uid │ │ │ │ ├── DiagnosticTooltip.cs │ │ │ │ ├── DiagnosticTooltip.cs.uid │ │ │ │ ├── FieldTooltip.cs │ │ │ │ ├── FieldTooltip.cs.uid │ │ │ │ ├── LocalVariableTooltip.cs │ │ │ │ ├── LocalVariableTooltip.cs.uid │ │ │ │ ├── MethodTooltip.cs │ │ │ │ ├── MethodTooltip.cs.uid │ │ │ │ ├── NamedTypeTooltip.cs │ │ │ │ ├── NamedTypeTooltip.cs.uid │ │ │ │ ├── ParameterTooltip.cs │ │ │ │ ├── ParameterTooltip.cs.uid │ │ │ │ ├── PropertyTooltip.cs │ │ │ │ └── PropertyTooltip.cs.uid │ │ ├── Common │ │ │ ├── TreeItemContainer.cs │ │ │ └── TreeItemContainer.cs.uid │ │ ├── Completions │ │ │ └── Resources │ │ │ │ ├── class-icon.svg │ │ │ │ ├── class-icon.svg.import │ │ │ │ ├── delegate-icon.svg │ │ │ │ ├── delegate-icon.svg.import │ │ │ │ ├── enum-icon.svg │ │ │ │ ├── enum-icon.svg.import │ │ │ │ ├── event-icon.svg │ │ │ │ ├── event-icon.svg.import │ │ │ │ ├── field-icon.svg │ │ │ │ ├── field-icon.svg.import │ │ │ │ ├── interface-icon.svg │ │ │ │ ├── interface-icon.svg.import │ │ │ │ ├── keyword-icon.svg │ │ │ │ ├── keyword-icon.svg.import │ │ │ │ ├── local-variable-icon.svg │ │ │ │ ├── local-variable-icon.svg.import │ │ │ │ ├── method-cube.svg │ │ │ │ ├── method-cube.svg.import │ │ │ │ ├── namespace-icon.svg │ │ │ │ ├── namespace-icon.svg.import │ │ │ │ ├── parameter-icon.svg │ │ │ │ ├── parameter-icon.svg.import │ │ │ │ ├── property-icon.svg │ │ │ │ └── property-icon.svg.import │ │ ├── CustomControls │ │ │ ├── InvertedVSplitContainer.cs │ │ │ └── InvertedVSplitContainer.cs.uid │ │ ├── Debug_ │ │ │ ├── DebugPanel.cs │ │ │ ├── DebugPanel.cs.uid │ │ │ ├── DebugPanel.tscn │ │ │ └── Tab │ │ │ │ ├── DebugPanelTab.cs │ │ │ │ ├── DebugPanelTab.cs.uid │ │ │ │ ├── DebugPanelTab.tscn │ │ │ │ └── SubTabs │ │ │ │ ├── ThreadListItem.tscn │ │ │ │ ├── ThreadsVariablesSubTab.cs │ │ │ │ ├── ThreadsVariablesSubTab.cs.uid │ │ │ │ └── ThreadsVariablesSubTab.tscn │ │ ├── Git │ │ │ ├── GitColours.cs │ │ │ └── GitColours.cs.uid │ │ ├── IdeDiagnostics │ │ │ ├── IdeDiagnosticsPanel.cs │ │ │ ├── IdeDiagnosticsPanel.cs.uid │ │ │ └── IdeDiagnosticsPanel.tscn │ │ ├── IdeSettings │ │ │ ├── AppState.cs │ │ │ ├── AppState.cs.uid │ │ │ ├── AppStateLoader.cs │ │ │ ├── AppStateLoader.cs.uid │ │ │ ├── IdeSolutionState.cs │ │ │ └── IdeSolutionState.cs.uid │ │ ├── LeftSideBar │ │ │ ├── LeftBottomSidebarButtonGroup.tres │ │ │ ├── LeftSideBar.cs │ │ │ ├── LeftSideBar.cs.uid │ │ │ ├── LeftSideBar.tscn │ │ │ └── Resources │ │ │ │ ├── Ide.svg │ │ │ │ ├── Ide.svg.import │ │ │ │ ├── LeftSideBarButtonStyleNormal.tres │ │ │ │ ├── LeftSideBarButtonStylePressed.tres │ │ │ │ ├── Nuget.svg │ │ │ │ ├── Nuget.svg.import │ │ │ │ ├── SidebarDebug.svg │ │ │ │ ├── SidebarDebug.svg.import │ │ │ │ ├── SidebarFolder.svg │ │ │ │ ├── SidebarFolder.svg.import │ │ │ │ ├── SidebarProblem.svg │ │ │ │ ├── SidebarProblem.svg.import │ │ │ │ ├── SidebarRun.svg │ │ │ │ ├── SidebarRun.svg.import │ │ │ │ ├── SidebarTestExplorer.svg │ │ │ │ ├── SidebarTestExplorer.svg.import │ │ │ │ ├── Terminal.svg │ │ │ │ └── Terminal.svg.import │ │ ├── Navigation │ │ │ ├── ForwardBackwardButtonContainer.cs │ │ │ ├── ForwardBackwardButtonContainer.cs.uid │ │ │ └── ForwardBackwardButtonContainer.tscn │ │ ├── Nuget │ │ │ ├── ImageTextureHelper.cs │ │ │ ├── ImageTextureHelper.cs.uid │ │ │ ├── NugetPackageDetails.cs │ │ │ ├── NugetPackageDetails.cs.uid │ │ │ ├── NugetPackageDetails.tscn │ │ │ ├── NugetPanel.cs │ │ │ ├── NugetPanel.cs.uid │ │ │ ├── NugetPanel.tscn │ │ │ ├── PackageDetailsProjectEntry.cs │ │ │ ├── PackageDetailsProjectEntry.cs.uid │ │ │ ├── PackageDetailsProjectEntry.tscn │ │ │ ├── PackageEntry.cs │ │ │ ├── PackageEntry.cs.uid │ │ │ ├── PackageEntry.tscn │ │ │ └── Resources │ │ │ │ ├── add-icon.svg │ │ │ │ ├── add-icon.svg.import │ │ │ │ ├── downgrade-icon.svg │ │ │ │ ├── downgrade-icon.svg.import │ │ │ │ ├── remove-icon.svg │ │ │ │ ├── remove-icon.svg.import │ │ │ │ ├── upgrade-icon.svg │ │ │ │ └── upgrade-icon.svg.import │ │ ├── Problems │ │ │ ├── ProblemEntry.cs │ │ │ ├── ProblemEntry.cs.uid │ │ │ ├── ProblemsPanel.cs │ │ │ ├── ProblemsPanel.cs.uid │ │ │ ├── ProblemsPanel.tscn │ │ │ ├── RefCountedContainer.cs │ │ │ ├── RefCountedContainer.cs.uid │ │ │ └── Resources │ │ │ │ ├── Error.svg │ │ │ │ ├── Error.svg.import │ │ │ │ ├── Warning.svg │ │ │ │ └── Warning.svg.import │ │ ├── Run │ │ │ ├── Resources │ │ │ │ ├── Debug.svg │ │ │ │ ├── Debug.svg.import │ │ │ │ ├── Run.svg │ │ │ │ ├── Run.svg.import │ │ │ │ ├── Running.svg │ │ │ │ ├── Running.svg.import │ │ │ │ ├── Stop.svg │ │ │ │ └── Stop.svg.import │ │ │ ├── RunMenuItem.cs │ │ │ ├── RunMenuItem.cs.uid │ │ │ ├── RunMenuItem.tscn │ │ │ ├── RunPanel.cs │ │ │ ├── RunPanel.cs.uid │ │ │ ├── RunPanel.tscn │ │ │ ├── RunPanelTab.cs │ │ │ ├── RunPanelTab.cs.uid │ │ │ └── RunPanelTab.tscn │ │ ├── Search │ │ │ ├── SearchAllFiles │ │ │ │ ├── SearchAllFilesResultComponent.cs │ │ │ │ ├── SearchAllFilesResultComponent.cs.uid │ │ │ │ ├── SearchAllFilesResultComponent.tscn │ │ │ │ ├── SearchAllFilesWindow.cs │ │ │ │ ├── SearchAllFilesWindow.cs.uid │ │ │ │ └── SearchAllFilesWindow.tscn │ │ │ └── SearchInFiles │ │ │ │ ├── SearchResultComponent.cs │ │ │ │ ├── SearchResultComponent.cs.uid │ │ │ │ ├── SearchResultComponent.tscn │ │ │ │ ├── SearchWindow.cs │ │ │ │ ├── SearchWindow.cs.uid │ │ │ │ └── SearchWindow.tscn │ │ ├── Settings │ │ │ ├── SettingsButton.cs │ │ │ ├── SettingsButton.cs.uid │ │ │ ├── SettingsButton.tscn │ │ │ ├── SettingsWindow.cs │ │ │ ├── SettingsWindow.cs.uid │ │ │ └── SettingsWindow.tscn │ │ ├── SlnPicker │ │ │ ├── AutoOpenLastSlnButton.cs │ │ │ ├── AutoOpenLastSlnButton.cs.uid │ │ │ ├── PreviousSlnEntry.cs │ │ │ ├── PreviousSlnEntry.cs.uid │ │ │ ├── PreviousSlnEntry.tscn │ │ │ ├── RandomRecentSlnColours.cs │ │ │ ├── RandomRecentSlnColours.cs.uid │ │ │ ├── SlnPicker.cs │ │ │ ├── SlnPicker.cs.uid │ │ │ └── SlnPicker.tscn │ │ ├── SolutionExplorer │ │ │ ├── ContextMenus │ │ │ │ ├── Dialogs │ │ │ │ │ ├── NewCsharpFileDialog.cs │ │ │ │ │ ├── NewCsharpFileDialog.cs.uid │ │ │ │ │ ├── NewCsharpFileDialog.tscn │ │ │ │ │ ├── NewDirectoryDialog.cs │ │ │ │ │ ├── NewDirectoryDialog.cs.uid │ │ │ │ │ ├── NewDirectoryDialog.tscn │ │ │ │ │ ├── RenameDirectoryDialog.cs │ │ │ │ │ ├── RenameDirectoryDialog.cs.uid │ │ │ │ │ ├── RenameDirectoryDialog.tscn │ │ │ │ │ ├── RenameFileDialog.cs │ │ │ │ │ ├── RenameFileDialog.cs.uid │ │ │ │ │ └── RenameFileDialog.tscn │ │ │ │ ├── FileContextMenu.cs │ │ │ │ ├── FileContextMenu.cs.uid │ │ │ │ ├── FolderContextMenu.cs │ │ │ │ ├── FolderContextMenu.cs.uid │ │ │ │ ├── ProjectContextMenu.cs │ │ │ │ └── ProjectContextMenu.cs.uid │ │ │ ├── FileIconHelper.cs │ │ │ ├── FileIconHelper.cs.uid │ │ │ ├── Resources │ │ │ │ ├── CsharpFile.svg │ │ │ │ ├── CsharpFile.svg.import │ │ │ │ ├── Csproj.svg │ │ │ │ ├── Csproj.svg.import │ │ │ │ ├── FileExtensions │ │ │ │ │ ├── CssFile.svg │ │ │ │ │ ├── CssFile.svg.import │ │ │ │ │ ├── EditorConfigFile.svg │ │ │ │ │ ├── EditorConfigFile.svg.import │ │ │ │ │ ├── FsharpFile.svg │ │ │ │ │ ├── FsharpFile.svg.import │ │ │ │ │ ├── GenericFileDecorations │ │ │ │ │ │ ├── ConfigFile.svg │ │ │ │ │ │ ├── ConfigFile.svg.import │ │ │ │ │ │ ├── PropsFile.svg │ │ │ │ │ │ ├── PropsFile.svg.import │ │ │ │ │ │ ├── TargetsFile.svg │ │ │ │ │ │ ├── TargetsFile.svg.import │ │ │ │ │ │ ├── UnknownFile.svg │ │ │ │ │ │ └── UnknownFile.svg.import │ │ │ │ │ ├── GenericFileIcon.svg │ │ │ │ │ ├── GenericFileIcon.svg.import │ │ │ │ │ ├── GitIgnoreFile.svg │ │ │ │ │ ├── GitIgnoreFile.svg.import │ │ │ │ │ ├── HtmlFile.svg │ │ │ │ │ ├── HtmlFile.svg.import │ │ │ │ │ ├── ImageFile.svg │ │ │ │ │ ├── ImageFile.svg.import │ │ │ │ │ ├── JsFile.svg │ │ │ │ │ ├── JsFile.svg.import │ │ │ │ │ ├── JsonFile.svg │ │ │ │ │ ├── JsonFile.svg.import │ │ │ │ │ ├── MdFile.svg │ │ │ │ │ ├── MdFile.svg.import │ │ │ │ │ ├── RazorFile.svg │ │ │ │ │ ├── RazorFile.svg.import │ │ │ │ │ ├── TxtFile.svg │ │ │ │ │ ├── TxtFile.svg.import │ │ │ │ │ ├── XmlFile.svg │ │ │ │ │ └── XmlFile.svg.import │ │ │ │ ├── FolderIcon.svg │ │ │ │ ├── FolderIcon.svg.import │ │ │ │ ├── SlnBaseIcon.svg │ │ │ │ ├── SlnBaseIcon.svg.import │ │ │ │ ├── SlnFolderIcon.svg │ │ │ │ ├── SlnFolderIcon.svg.import │ │ │ │ ├── SlnIcon.svg │ │ │ │ └── SlnIcon.svg.import │ │ │ ├── SolutionExplorerPanel.Clipboard.cs │ │ │ ├── SolutionExplorerPanel.Clipboard.cs.uid │ │ │ ├── SolutionExplorerPanel.FileIcons.cs │ │ │ ├── SolutionExplorerPanel.FileIcons.cs.uid │ │ │ ├── SolutionExplorerPanel.cs │ │ │ ├── SolutionExplorerPanel.cs.uid │ │ │ └── SolutionExplorerPanel.tscn │ │ ├── SymbolLookup │ │ │ ├── SymbolLookupPopup.cs │ │ │ ├── SymbolLookupPopup.cs.uid │ │ │ ├── SymbolLookupPopup.tscn │ │ │ ├── SymbolUsageComponent.cs │ │ │ ├── SymbolUsageComponent.cs.uid │ │ │ └── SymbolUsageComponent.tscn │ │ ├── TerminalBase │ │ │ └── TerminalTheme.tres │ │ └── TestExplorer │ │ │ ├── TestExplorerPanel.cs │ │ │ ├── TestExplorerPanel.cs.uid │ │ │ ├── TestExplorerPanel.tscn │ │ │ ├── TestNodeEntry.cs │ │ │ ├── TestNodeEntry.cs.uid │ │ │ └── TestNodeEntry.tscn │ ├── GDExtensionBindgen │ │ ├── PTY.cs │ │ ├── PTY.cs.uid │ │ ├── Terminal.cs │ │ └── Terminal.cs.uid │ ├── GlobalUsings.cs │ ├── GlobalUsings.cs.uid │ ├── GodotGlobalEvents.cs │ ├── GodotGlobalEvents.cs.uid │ ├── IdeRoot.cs │ ├── IdeRoot.cs.uid │ ├── IdeRoot.tscn │ ├── IdeWindow.cs │ ├── IdeWindow.cs.uid │ ├── IdeWindow.tscn │ ├── InputStringNames.cs │ ├── InputStringNames.cs.uid │ ├── Inter-VariableFont.ttf │ ├── Inter-VariableFont.ttf.import │ ├── NodeExtensions.cs │ ├── NodeExtensions.cs.uid │ ├── Resources │ │ ├── SharpIde.png │ │ ├── SharpIde.png.import │ │ ├── SharpIde.svg │ │ ├── SharpIde.svg.import │ │ ├── SharpIdeSplash.png │ │ ├── SharpIdeSplash.png.import │ │ ├── SharpIdeSplash.svg │ │ ├── SharpIdeSplash.svg.import │ │ ├── SharpIdeV2.svg │ │ ├── SharpIdeV2.svg.import │ │ ├── SharpIdeV3.svg │ │ ├── SharpIdeV3.svg.import │ │ ├── refresh.svg │ │ ├── refresh.svg.import │ │ ├── settings.svg │ │ └── settings.svg.import │ ├── SharpIDE.Godot.csproj │ ├── SharpIDE.Godot.sln │ ├── SharpIdeSolutionAccessor.cs │ ├── SharpIdeSolutionAccessor.cs.uid │ ├── Singletons.cs │ ├── Singletons.cs.uid │ ├── addons │ │ ├── R3.Godot │ │ │ ├── FrameProviderDispatcher.cs │ │ │ ├── FrameProviderDispatcher.cs.uid │ │ │ ├── GodotFrameProvider.cs │ │ │ ├── GodotFrameProvider.cs.uid │ │ │ ├── GodotNodeExtensions.cs │ │ │ ├── GodotNodeExtensions.cs.uid │ │ │ ├── GodotObservableExtensions.cs │ │ │ ├── GodotObservableExtensions.cs.uid │ │ │ ├── GodotProviderInitializer.cs │ │ │ ├── GodotProviderInitializer.cs.uid │ │ │ ├── GodotR3Plugin.cs │ │ │ ├── GodotR3Plugin.cs.uid │ │ │ ├── GodotSignalMapper.cs │ │ │ ├── GodotSignalMapper.cs.uid │ │ │ ├── GodotTimeProvider.cs │ │ │ ├── GodotTimeProvider.cs.uid │ │ │ ├── GodotUINodeExtensions.cs │ │ │ ├── GodotUINodeExtensions.cs.uid │ │ │ ├── ObservableTrackerDebuggerPlugin.cs │ │ │ ├── ObservableTrackerDebuggerPlugin.cs.uid │ │ │ ├── ObservableTrackerRuntimeHook.cs │ │ │ ├── ObservableTrackerRuntimeHook.cs.uid │ │ │ ├── ObservableTrackerTab.cs │ │ │ ├── ObservableTrackerTab.cs.uid │ │ │ ├── ObservableTrackerTree.cs │ │ │ ├── ObservableTrackerTree.cs.uid │ │ │ └── plugin.cfg │ │ ├── csharp_gdextension_bindgen │ │ │ ├── UNLICENSE │ │ │ ├── cli_entrypoint.gd │ │ │ ├── cli_entrypoint.gd.uid │ │ │ ├── csharp_gdextension_bindgen.gd │ │ │ ├── csharp_gdextension_bindgen.gd.uid │ │ │ ├── icon.png │ │ │ ├── icon.png.import │ │ │ └── plugin.cfg │ │ └── godot_xterm │ │ │ ├── LICENSE.md │ │ │ ├── THIRDPARTY_NOTICES.txt │ │ │ ├── THIRDPARTY_NOTICES_nopty.txt │ │ │ ├── editor_plugins │ │ │ └── terminal │ │ │ │ ├── editor_terminal.gd │ │ │ │ ├── editor_terminal.gd.uid │ │ │ │ ├── editor_terminal.tscn │ │ │ │ ├── settings │ │ │ │ ├── default_copy_shortcut.tres │ │ │ │ ├── default_kill_terminal_shortcut.tres │ │ │ │ ├── default_new_terminal_shortcut.tres │ │ │ │ ├── default_paste_shortcut.tres │ │ │ │ ├── default_tab_left_shortcut.tres │ │ │ │ ├── default_tab_right_shortcut.tres │ │ │ │ ├── terminal_settings.gd │ │ │ │ └── terminal_settings.gd.uid │ │ │ │ ├── terminal_panel.gd │ │ │ │ ├── terminal_panel.gd.uid │ │ │ │ └── terminal_panel.tscn │ │ │ ├── godot-xterm.gdextension │ │ │ ├── godot-xterm.gdextension.uid │ │ │ ├── icons │ │ │ ├── pty_icon.svg │ │ │ ├── pty_icon.svg.import │ │ │ ├── terminal_icon.svg │ │ │ └── terminal_icon.svg.import │ │ │ ├── import_plugins │ │ │ ├── asciicast_import_plugin.gd │ │ │ ├── asciicast_import_plugin.gd.uid │ │ │ ├── xrdb_import_plugin.gd │ │ │ └── xrdb_import_plugin.gd.uid │ │ │ ├── lib │ │ │ ├── arm32 │ │ │ │ └── libstdc++.so │ │ │ ├── libgodot-xterm.linux.template_debug.arm32.so │ │ │ ├── libgodot-xterm.linux.template_debug.arm64.so │ │ │ ├── libgodot-xterm.linux.template_debug.x86_32.so │ │ │ ├── libgodot-xterm.linux.template_debug.x86_64.so │ │ │ ├── libgodot-xterm.linux.template_release.arm32.so │ │ │ ├── libgodot-xterm.linux.template_release.arm64.so │ │ │ ├── libgodot-xterm.linux.template_release.x86_32.so │ │ │ ├── libgodot-xterm.linux.template_release.x86_64.so │ │ │ ├── libgodot-xterm.macos.template_debug.framework │ │ │ │ └── libgodot-xterm.macos.template_debug │ │ │ ├── libgodot-xterm.macos.template_release.framework │ │ │ │ └── libgodot-xterm.macos.template_release │ │ │ ├── libgodot-xterm.web.template_debug.wasm32.wasm │ │ │ ├── libgodot-xterm.web.template_release.wasm32.wasm │ │ │ ├── libgodot-xterm.windows.template_debug.arm64.dll │ │ │ ├── libgodot-xterm.windows.template_debug.x86_32.dll │ │ │ ├── libgodot-xterm.windows.template_debug.x86_64.dll │ │ │ ├── libgodot-xterm.windows.template_release.arm64.dll │ │ │ ├── libgodot-xterm.windows.template_release.x86_32.dll │ │ │ ├── libgodot-xterm.windows.template_release.x86_64.dll │ │ │ ├── spawn-helper │ │ │ ├── x86_32 │ │ │ │ └── libstdc++.so │ │ │ └── x86_64 │ │ │ │ └── libstdc++.so.6 │ │ │ ├── plugin.cfg │ │ │ ├── plugin.gd │ │ │ ├── plugin.gd.uid │ │ │ ├── resources │ │ │ ├── asciicast.gd │ │ │ ├── asciicast.gd.uid │ │ │ ├── xrdb_theme.gd │ │ │ └── xrdb_theme.gd.uid │ │ │ ├── shaders │ │ │ ├── background.gdshader │ │ │ ├── background.gdshader.uid │ │ │ ├── common.gdshaderinc │ │ │ ├── common.gdshaderinc.uid │ │ │ ├── foreground.gdshader │ │ │ └── foreground.gdshader.uid │ │ │ ├── themes │ │ │ └── fonts │ │ │ │ ├── jet_brains_mono │ │ │ │ ├── AUTHORS.txt │ │ │ │ ├── OFL.txt │ │ │ │ ├── jet_brains_mono_nl-regular-2.304.ttf │ │ │ │ └── jet_brains_mono_nl-regular-2.304.ttf.import │ │ │ │ └── regular.tres │ │ │ └── util │ │ │ ├── tput.gd │ │ │ └── tput.gd.uid │ ├── export_presets.cfg │ ├── icon.svg │ ├── icon.svg.import │ ├── project.godot │ └── version.txt └── SharpIDE.Photino │ ├── App.razor │ ├── AppThemeProvider.cs │ ├── Components │ ├── BuildOutputDisplay.razor │ ├── CodeViewer.razor │ ├── DisplayNoneComponent.razor │ ├── IdeSettingsDialog.razor │ ├── Problems │ │ ├── ProblemsPanel.razor │ │ └── ProjectProblemComponent.razor │ ├── Run │ │ ├── RunOutputDisplay.razor │ │ ├── RunPanel.razor │ │ └── RunPopover.razor │ ├── SidebarIconButton.razor │ ├── SolutionExplorer.razor │ ├── SolutionPickerDialog.razor │ └── TerminalDisplay.razor │ ├── Layout │ ├── MainLayout.razor │ └── NavMenu.razor │ ├── Models │ ├── AppState.cs │ └── BottomPanelType.cs │ ├── Pages │ └── Home.razor │ ├── Program.cs │ ├── Properties │ └── launchSettings.json │ ├── README.md │ ├── Services │ └── RefreshOpenFileService.cs │ ├── SharpIDE.Photino.csproj │ ├── _Imports.razor │ ├── favicon.ico │ └── wwwroot │ ├── css │ └── app.css │ ├── index.html │ └── scripts2.js ├── tests ├── Roslyn.Benchmarks │ ├── CreateWorkspaceBenchmarks.cs │ ├── ParseSolutionBenchmarks.cs │ ├── Program.cs │ └── Roslyn.Benchmarks.csproj └── SharpIDE.Application.IntegrationTests │ ├── Features │ └── Analysis │ │ └── RoslynAnalysisTests.cs │ ├── GlobalUsings.cs │ ├── SharpIDE.Application.IntegrationTests.csproj │ └── xunit.runner.json └── tools ├── AppHost ├── AppHost.cs ├── AppHost.csproj ├── GodotExtensions.cs ├── Properties │ └── launchSettings.json ├── README.md ├── appsettings.Development.json └── appsettings.json └── GodotServiceDefaults ├── GodotOtelExtensions.cs └── GodotServiceDefaults.csproj /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattParkerDev/SharpIDE/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattParkerDev/SharpIDE/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattParkerDev/SharpIDE/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /.github/workflows/create-release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattParkerDev/SharpIDE/HEAD/.github/workflows/create-release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattParkerDev/SharpIDE/HEAD/.gitignore -------------------------------------------------------------------------------- /.globalconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattParkerDev/SharpIDE/HEAD/.globalconfig -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattParkerDev/SharpIDE/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Directory.Build.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattParkerDev/SharpIDE/HEAD/Directory.Build.props -------------------------------------------------------------------------------- /Directory.Packages.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattParkerDev/SharpIDE/HEAD/Directory.Packages.props -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattParkerDev/SharpIDE/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /NotesToUsers.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattParkerDev/SharpIDE/HEAD/NotesToUsers.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattParkerDev/SharpIDE/HEAD/README.md -------------------------------------------------------------------------------- /SharpIDE.slnx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattParkerDev/SharpIDE/HEAD/SharpIDE.slnx -------------------------------------------------------------------------------- /docs/file-changed-flow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattParkerDev/SharpIDE/HEAD/docs/file-changed-flow.svg -------------------------------------------------------------------------------- /global.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattParkerDev/SharpIDE/HEAD/global.json -------------------------------------------------------------------------------- /iac/Deploy/Deploy.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattParkerDev/SharpIDE/HEAD/iac/Deploy/Deploy.csproj -------------------------------------------------------------------------------- /iac/Deploy/DeploymentConstants.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattParkerDev/SharpIDE/HEAD/iac/Deploy/DeploymentConstants.cs -------------------------------------------------------------------------------- /iac/Deploy/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattParkerDev/SharpIDE/HEAD/iac/Deploy/Program.cs -------------------------------------------------------------------------------- /iac/Deploy/Steps/CreateGithubRelease.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattParkerDev/SharpIDE/HEAD/iac/Deploy/Steps/CreateGithubRelease.cs -------------------------------------------------------------------------------- /iac/Deploy/Steps/CreateLinuxRelease.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattParkerDev/SharpIDE/HEAD/iac/Deploy/Steps/CreateLinuxRelease.cs -------------------------------------------------------------------------------- /iac/Deploy/Steps/CreateMacosRelease.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattParkerDev/SharpIDE/HEAD/iac/Deploy/Steps/CreateMacosRelease.cs -------------------------------------------------------------------------------- /iac/Deploy/Steps/CreateWindowsArm64Release.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattParkerDev/SharpIDE/HEAD/iac/Deploy/Steps/CreateWindowsArm64Release.cs -------------------------------------------------------------------------------- /iac/Deploy/Steps/CreateWindowsRelease.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattParkerDev/SharpIDE/HEAD/iac/Deploy/Steps/CreateWindowsRelease.cs -------------------------------------------------------------------------------- /iac/Deploy/Steps/RestoreAndBuildStep.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattParkerDev/SharpIDE/HEAD/iac/Deploy/Steps/RestoreAndBuildStep.cs -------------------------------------------------------------------------------- /iac/Deploy/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattParkerDev/SharpIDE/HEAD/iac/Deploy/appsettings.json -------------------------------------------------------------------------------- /iac/should-release.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattParkerDev/SharpIDE/HEAD/iac/should-release.cs -------------------------------------------------------------------------------- /local-publish.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattParkerDev/SharpIDE/HEAD/local-publish.bat -------------------------------------------------------------------------------- /nuget.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattParkerDev/SharpIDE/HEAD/nuget.config -------------------------------------------------------------------------------- /src/SharpIDE.Application/BannedSymbols.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattParkerDev/SharpIDE/HEAD/src/SharpIDE.Application/BannedSymbols.txt -------------------------------------------------------------------------------- /src/SharpIDE.Application/DependencyInjection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattParkerDev/SharpIDE/HEAD/src/SharpIDE.Application/DependencyInjection.cs -------------------------------------------------------------------------------- /src/SharpIDE.Application/Features/Analysis/FixLoaders/CodeFixProviderLoader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattParkerDev/SharpIDE/HEAD/src/SharpIDE.Application/Features/Analysis/FixLoaders/CodeFixProviderLoader.cs -------------------------------------------------------------------------------- /src/SharpIDE.Application/Features/Analysis/FixLoaders/CodeRefactoringProviderLoader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattParkerDev/SharpIDE/HEAD/src/SharpIDE.Application/Features/Analysis/FixLoaders/CodeRefactoringProviderLoader.cs -------------------------------------------------------------------------------- /src/SharpIDE.Application/Features/Analysis/IdeApplyCompletionService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattParkerDev/SharpIDE/HEAD/src/SharpIDE.Application/Features/Analysis/IdeApplyCompletionService.cs -------------------------------------------------------------------------------- /src/SharpIDE.Application/Features/Analysis/IdeCodeActionService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattParkerDev/SharpIDE/HEAD/src/SharpIDE.Application/Features/Analysis/IdeCodeActionService.cs -------------------------------------------------------------------------------- /src/SharpIDE.Application/Features/Analysis/IdeRenameService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattParkerDev/SharpIDE/HEAD/src/SharpIDE.Application/Features/Analysis/IdeRenameService.cs -------------------------------------------------------------------------------- /src/SharpIDE.Application/Features/Analysis/Progress.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattParkerDev/SharpIDE/HEAD/src/SharpIDE.Application/Features/Analysis/Progress.cs -------------------------------------------------------------------------------- /src/SharpIDE.Application/Features/Analysis/ProjectLoader/CustomMsBuildProjectLoader.Worker.AnalyzerReferencePathComparer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattParkerDev/SharpIDE/HEAD/src/SharpIDE.Application/Features/Analysis/ProjectLoader/CustomMsBuildProjectLoader.Worker.AnalyzerReferencePathComparer.cs -------------------------------------------------------------------------------- /src/SharpIDE.Application/Features/Analysis/ProjectLoader/CustomMsBuildProjectLoader.Worker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattParkerDev/SharpIDE/HEAD/src/SharpIDE.Application/Features/Analysis/ProjectLoader/CustomMsBuildProjectLoader.Worker.cs -------------------------------------------------------------------------------- /src/SharpIDE.Application/Features/Analysis/ProjectLoader/CustomMsBuildProjectLoader.Worker_ResolveReferences.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattParkerDev/SharpIDE/HEAD/src/SharpIDE.Application/Features/Analysis/ProjectLoader/CustomMsBuildProjectLoader.Worker_ResolveReferences.cs -------------------------------------------------------------------------------- /src/SharpIDE.Application/Features/Analysis/ProjectLoader/CustomMsBuildProjectLoader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattParkerDev/SharpIDE/HEAD/src/SharpIDE.Application/Features/Analysis/ProjectLoader/CustomMsBuildProjectLoader.cs -------------------------------------------------------------------------------- /src/SharpIDE.Application/Features/Analysis/Razor/CustomSemanticTokensVisitor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattParkerDev/SharpIDE/HEAD/src/SharpIDE.Application/Features/Analysis/Razor/CustomSemanticTokensVisitor.cs -------------------------------------------------------------------------------- /src/SharpIDE.Application/Features/Analysis/Razor/SharpIdeRazorClassifiedSpan.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattParkerDev/SharpIDE/HEAD/src/SharpIDE.Application/Features/Analysis/Razor/SharpIdeRazorClassifiedSpan.cs -------------------------------------------------------------------------------- /src/SharpIDE.Application/Features/Analysis/Razor/SharpIdeRazorSourceMapping.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattParkerDev/SharpIDE/HEAD/src/SharpIDE.Application/Features/Analysis/Razor/SharpIdeRazorSourceMapping.cs -------------------------------------------------------------------------------- /src/SharpIDE.Application/Features/Analysis/Razor/SharpIdeRazorSourceSpan.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattParkerDev/SharpIDE/HEAD/src/SharpIDE.Application/Features/Analysis/Razor/SharpIdeRazorSourceSpan.cs -------------------------------------------------------------------------------- /src/SharpIDE.Application/Features/Analysis/Razor/TokenTypeProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattParkerDev/SharpIDE/HEAD/src/SharpIDE.Application/Features/Analysis/Razor/TokenTypeProvider.cs -------------------------------------------------------------------------------- /src/SharpIDE.Application/Features/Analysis/RoslynAnalysis.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattParkerDev/SharpIDE/HEAD/src/SharpIDE.Application/Features/Analysis/RoslynAnalysis.cs -------------------------------------------------------------------------------- /src/SharpIDE.Application/Features/Analysis/SharpIdeClassifiedSpan.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattParkerDev/SharpIDE/HEAD/src/SharpIDE.Application/Features/Analysis/SharpIdeClassifiedSpan.cs -------------------------------------------------------------------------------- /src/SharpIDE.Application/Features/Analysis/SharpIdeDiagnostic.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattParkerDev/SharpIDE/HEAD/src/SharpIDE.Application/Features/Analysis/SharpIdeDiagnostic.cs -------------------------------------------------------------------------------- /src/SharpIDE.Application/Features/Analysis/SharpIdeFileLinePosition.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattParkerDev/SharpIDE/HEAD/src/SharpIDE.Application/Features/Analysis/SharpIdeFileLinePosition.cs -------------------------------------------------------------------------------- /src/SharpIDE.Application/Features/Build/BuildManagerExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattParkerDev/SharpIDE/HEAD/src/SharpIDE.Application/Features/Build/BuildManagerExtensions.cs -------------------------------------------------------------------------------- /src/SharpIDE.Application/Features/Build/BuildService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattParkerDev/SharpIDE/HEAD/src/SharpIDE.Application/Features/Build/BuildService.cs -------------------------------------------------------------------------------- /src/SharpIDE.Application/Features/Build/SharpIdeMsbuildLocator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattParkerDev/SharpIDE/HEAD/src/SharpIDE.Application/Features/Build/SharpIdeMsbuildLocator.cs -------------------------------------------------------------------------------- /src/SharpIDE.Application/Features/Debugging/Breakpoint.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattParkerDev/SharpIDE/HEAD/src/SharpIDE.Application/Features/Debugging/Breakpoint.cs -------------------------------------------------------------------------------- /src/SharpIDE.Application/Features/Debugging/Debugger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattParkerDev/SharpIDE/HEAD/src/SharpIDE.Application/Features/Debugging/Debugger.cs -------------------------------------------------------------------------------- /src/SharpIDE.Application/Features/Debugging/DebuggingService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattParkerDev/SharpIDE/HEAD/src/SharpIDE.Application/Features/Debugging/DebuggingService.cs -------------------------------------------------------------------------------- /src/SharpIDE.Application/Features/Debugging/ExecutionStopInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattParkerDev/SharpIDE/HEAD/src/SharpIDE.Application/Features/Debugging/ExecutionStopInfo.cs -------------------------------------------------------------------------------- /src/SharpIDE.Application/Features/Debugging/Signing/DebuggerHandshakeSigner.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattParkerDev/SharpIDE/HEAD/src/SharpIDE.Application/Features/Debugging/Signing/DebuggerHandshakeSigner.cs -------------------------------------------------------------------------------- /src/SharpIDE.Application/Features/Debugging/ThreadsStackTraceModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattParkerDev/SharpIDE/HEAD/src/SharpIDE.Application/Features/Debugging/ThreadsStackTraceModel.cs -------------------------------------------------------------------------------- /src/SharpIDE.Application/Features/Evaluation/DotnetUserSecretsService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattParkerDev/SharpIDE/HEAD/src/SharpIDE.Application/Features/Evaluation/DotnetUserSecretsService.cs -------------------------------------------------------------------------------- /src/SharpIDE.Application/Features/Evaluation/NugetDependencyGraph.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattParkerDev/SharpIDE/HEAD/src/SharpIDE.Application/Features/Evaluation/NugetDependencyGraph.cs -------------------------------------------------------------------------------- /src/SharpIDE.Application/Features/Evaluation/ProjectEvaluation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattParkerDev/SharpIDE/HEAD/src/SharpIDE.Application/Features/Evaluation/ProjectEvaluation.cs -------------------------------------------------------------------------------- /src/SharpIDE.Application/Features/Events/EventWrapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattParkerDev/SharpIDE/HEAD/src/SharpIDE.Application/Features/Events/EventWrapper.cs -------------------------------------------------------------------------------- /src/SharpIDE.Application/Features/Events/EventWrapperBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattParkerDev/SharpIDE/HEAD/src/SharpIDE.Application/Features/Events/EventWrapperBase.cs -------------------------------------------------------------------------------- /src/SharpIDE.Application/Features/Events/GlobalEvents.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattParkerDev/SharpIDE/HEAD/src/SharpIDE.Application/Features/Events/GlobalEvents.cs -------------------------------------------------------------------------------- /src/SharpIDE.Application/Features/FilePersistence/IdeOpenTabsFileManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattParkerDev/SharpIDE/HEAD/src/SharpIDE.Application/Features/FilePersistence/IdeOpenTabsFileManager.cs -------------------------------------------------------------------------------- /src/SharpIDE.Application/Features/FileWatching/AnalyzerFileWatcher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattParkerDev/SharpIDE/HEAD/src/SharpIDE.Application/Features/FileWatching/AnalyzerFileWatcher.cs -------------------------------------------------------------------------------- /src/SharpIDE.Application/Features/FileWatching/FileChangedService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattParkerDev/SharpIDE/HEAD/src/SharpIDE.Application/Features/FileWatching/FileChangedService.cs -------------------------------------------------------------------------------- /src/SharpIDE.Application/Features/FileWatching/IdeFileExternalChangeHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattParkerDev/SharpIDE/HEAD/src/SharpIDE.Application/Features/FileWatching/IdeFileExternalChangeHandler.cs -------------------------------------------------------------------------------- /src/SharpIDE.Application/Features/FileWatching/IdeFileOperationsService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattParkerDev/SharpIDE/HEAD/src/SharpIDE.Application/Features/FileWatching/IdeFileOperationsService.cs -------------------------------------------------------------------------------- /src/SharpIDE.Application/Features/FileWatching/IdeFileWatcher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattParkerDev/SharpIDE/HEAD/src/SharpIDE.Application/Features/FileWatching/IdeFileWatcher.cs -------------------------------------------------------------------------------- /src/SharpIDE.Application/Features/FileWatching/NewFileTemplates.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattParkerDev/SharpIDE/HEAD/src/SharpIDE.Application/Features/FileWatching/NewFileTemplates.cs -------------------------------------------------------------------------------- /src/SharpIDE.Application/Features/FileWatching/SharpIdeSolutionModificationService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattParkerDev/SharpIDE/HEAD/src/SharpIDE.Application/Features/FileWatching/SharpIdeSolutionModificationService.cs -------------------------------------------------------------------------------- /src/SharpIDE.Application/Features/Logging/ChannelTextWriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattParkerDev/SharpIDE/HEAD/src/SharpIDE.Application/Features/Logging/ChannelTextWriter.cs -------------------------------------------------------------------------------- /src/SharpIDE.Application/Features/Logging/InMemoryLogger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattParkerDev/SharpIDE/HEAD/src/SharpIDE.Application/Features/Logging/InMemoryLogger.cs -------------------------------------------------------------------------------- /src/SharpIDE.Application/Features/Logging/InternalTerminalLoggerFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattParkerDev/SharpIDE/HEAD/src/SharpIDE.Application/Features/Logging/InternalTerminalLoggerFactory.cs -------------------------------------------------------------------------------- /src/SharpIDE.Application/Features/NavigationHistory/IdeNavigationHistoryService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattParkerDev/SharpIDE/HEAD/src/SharpIDE.Application/Features/NavigationHistory/IdeNavigationHistoryService.cs -------------------------------------------------------------------------------- /src/SharpIDE.Application/Features/Nuget/NugetClientService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattParkerDev/SharpIDE/HEAD/src/SharpIDE.Application/Features/Nuget/NugetClientService.cs -------------------------------------------------------------------------------- /src/SharpIDE.Application/Features/Nuget/NugetPackageIconCacheService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattParkerDev/SharpIDE/HEAD/src/SharpIDE.Application/Features/Nuget/NugetPackageIconCacheService.cs -------------------------------------------------------------------------------- /src/SharpIDE.Application/Features/Run/LaunchSettingsParser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattParkerDev/SharpIDE/HEAD/src/SharpIDE.Application/Features/Run/LaunchSettingsParser.cs -------------------------------------------------------------------------------- /src/SharpIDE.Application/Features/Run/RunService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattParkerDev/SharpIDE/HEAD/src/SharpIDE.Application/Features/Run/RunService.cs -------------------------------------------------------------------------------- /src/SharpIDE.Application/Features/Search/FindFilesSearchResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattParkerDev/SharpIDE/HEAD/src/SharpIDE.Application/Features/Search/FindFilesSearchResult.cs -------------------------------------------------------------------------------- /src/SharpIDE.Application/Features/Search/FindInFilesSearchResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattParkerDev/SharpIDE/HEAD/src/SharpIDE.Application/Features/Search/FindInFilesSearchResult.cs -------------------------------------------------------------------------------- /src/SharpIDE.Application/Features/Search/SearchService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattParkerDev/SharpIDE/HEAD/src/SharpIDE.Application/Features/Search/SearchService.cs -------------------------------------------------------------------------------- /src/SharpIDE.Application/Features/SolutionDiscovery/SharpIdeFile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattParkerDev/SharpIDE/HEAD/src/SharpIDE.Application/Features/SolutionDiscovery/SharpIdeFile.cs -------------------------------------------------------------------------------- /src/SharpIDE.Application/Features/SolutionDiscovery/SharpIdeFolder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattParkerDev/SharpIDE/HEAD/src/SharpIDE.Application/Features/SolutionDiscovery/SharpIdeFolder.cs -------------------------------------------------------------------------------- /src/SharpIDE.Application/Features/SolutionDiscovery/SharpIdeModelComparers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattParkerDev/SharpIDE/HEAD/src/SharpIDE.Application/Features/SolutionDiscovery/SharpIdeModelComparers.cs -------------------------------------------------------------------------------- /src/SharpIDE.Application/Features/SolutionDiscovery/TreeMapperV2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattParkerDev/SharpIDE/HEAD/src/SharpIDE.Application/Features/SolutionDiscovery/TreeMapperV2.cs -------------------------------------------------------------------------------- /src/SharpIDE.Application/Features/SolutionDiscovery/VsPersistence/IntermediateMapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattParkerDev/SharpIDE/HEAD/src/SharpIDE.Application/Features/SolutionDiscovery/VsPersistence/IntermediateMapper.cs -------------------------------------------------------------------------------- /src/SharpIDE.Application/Features/SolutionDiscovery/VsPersistence/IntermediateModels.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattParkerDev/SharpIDE/HEAD/src/SharpIDE.Application/Features/SolutionDiscovery/VsPersistence/IntermediateModels.cs -------------------------------------------------------------------------------- /src/SharpIDE.Application/Features/SolutionDiscovery/VsPersistence/SharpIdeModels.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattParkerDev/SharpIDE/HEAD/src/SharpIDE.Application/Features/SolutionDiscovery/VsPersistence/SharpIdeModels.cs -------------------------------------------------------------------------------- /src/SharpIDE.Application/Features/SolutionDiscovery/VsPersistence/VsPersistenceMapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattParkerDev/SharpIDE/HEAD/src/SharpIDE.Application/Features/SolutionDiscovery/VsPersistence/VsPersistenceMapper.cs -------------------------------------------------------------------------------- /src/SharpIDE.Application/Features/Testing/Client/Dtos/AttachDebuggerInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattParkerDev/SharpIDE/HEAD/src/SharpIDE.Application/Features/Testing/Client/Dtos/AttachDebuggerInfo.cs -------------------------------------------------------------------------------- /src/SharpIDE.Application/Features/Testing/Client/Dtos/ClientCapabilities.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattParkerDev/SharpIDE/HEAD/src/SharpIDE.Application/Features/Testing/Client/Dtos/ClientCapabilities.cs -------------------------------------------------------------------------------- /src/SharpIDE.Application/Features/Testing/Client/Dtos/ClientInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattParkerDev/SharpIDE/HEAD/src/SharpIDE.Application/Features/Testing/Client/Dtos/ClientInfo.cs -------------------------------------------------------------------------------- /src/SharpIDE.Application/Features/Testing/Client/Dtos/DiscoverRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattParkerDev/SharpIDE/HEAD/src/SharpIDE.Application/Features/Testing/Client/Dtos/DiscoverRequest.cs -------------------------------------------------------------------------------- /src/SharpIDE.Application/Features/Testing/Client/Dtos/InitializeRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattParkerDev/SharpIDE/HEAD/src/SharpIDE.Application/Features/Testing/Client/Dtos/InitializeRequest.cs -------------------------------------------------------------------------------- /src/SharpIDE.Application/Features/Testing/Client/Dtos/InitializeResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattParkerDev/SharpIDE/HEAD/src/SharpIDE.Application/Features/Testing/Client/Dtos/InitializeResponse.cs -------------------------------------------------------------------------------- /src/SharpIDE.Application/Features/Testing/Client/Dtos/LogLevel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattParkerDev/SharpIDE/HEAD/src/SharpIDE.Application/Features/Testing/Client/Dtos/LogLevel.cs -------------------------------------------------------------------------------- /src/SharpIDE.Application/Features/Testing/Client/Dtos/RpcListener.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattParkerDev/SharpIDE/HEAD/src/SharpIDE.Application/Features/Testing/Client/Dtos/RpcListener.cs -------------------------------------------------------------------------------- /src/SharpIDE.Application/Features/Testing/Client/Dtos/RunRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattParkerDev/SharpIDE/HEAD/src/SharpIDE.Application/Features/Testing/Client/Dtos/RunRequest.cs -------------------------------------------------------------------------------- /src/SharpIDE.Application/Features/Testing/Client/Dtos/ServerCapabilities.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattParkerDev/SharpIDE/HEAD/src/SharpIDE.Application/Features/Testing/Client/Dtos/ServerCapabilities.cs -------------------------------------------------------------------------------- /src/SharpIDE.Application/Features/Testing/Client/Dtos/ServerInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattParkerDev/SharpIDE/HEAD/src/SharpIDE.Application/Features/Testing/Client/Dtos/ServerInfo.cs -------------------------------------------------------------------------------- /src/SharpIDE.Application/Features/Testing/Client/Dtos/TelemetryPayload.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattParkerDev/SharpIDE/HEAD/src/SharpIDE.Application/Features/Testing/Client/Dtos/TelemetryPayload.cs -------------------------------------------------------------------------------- /src/SharpIDE.Application/Features/Testing/Client/Dtos/TestNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattParkerDev/SharpIDE/HEAD/src/SharpIDE.Application/Features/Testing/Client/Dtos/TestNode.cs -------------------------------------------------------------------------------- /src/SharpIDE.Application/Features/Testing/Client/ExecutionStates.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattParkerDev/SharpIDE/HEAD/src/SharpIDE.Application/Features/Testing/Client/ExecutionStates.cs -------------------------------------------------------------------------------- /src/SharpIDE.Application/Features/Testing/Client/LogsCollector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattParkerDev/SharpIDE/HEAD/src/SharpIDE.Application/Features/Testing/Client/LogsCollector.cs -------------------------------------------------------------------------------- /src/SharpIDE.Application/Features/Testing/Client/RootFinder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattParkerDev/SharpIDE/HEAD/src/SharpIDE.Application/Features/Testing/Client/RootFinder.cs -------------------------------------------------------------------------------- /src/SharpIDE.Application/Features/Testing/Client/TelemetryCollector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattParkerDev/SharpIDE/HEAD/src/SharpIDE.Application/Features/Testing/Client/TelemetryCollector.cs -------------------------------------------------------------------------------- /src/SharpIDE.Application/Features/Testing/Client/TestingPlatformClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattParkerDev/SharpIDE/HEAD/src/SharpIDE.Application/Features/Testing/Client/TestingPlatformClient.cs -------------------------------------------------------------------------------- /src/SharpIDE.Application/Features/Testing/Client/TestingPlatformClientFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattParkerDev/SharpIDE/HEAD/src/SharpIDE.Application/Features/Testing/Client/TestingPlatformClientFactory.cs -------------------------------------------------------------------------------- /src/SharpIDE.Application/Features/Testing/TestRunnerService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattParkerDev/SharpIDE/HEAD/src/SharpIDE.Application/Features/Testing/TestRunnerService.cs -------------------------------------------------------------------------------- /src/SharpIDE.Application/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattParkerDev/SharpIDE/HEAD/src/SharpIDE.Application/Program.cs -------------------------------------------------------------------------------- /src/SharpIDE.Application/SharpIDE.Application.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattParkerDev/SharpIDE/HEAD/src/SharpIDE.Application/SharpIDE.Application.csproj -------------------------------------------------------------------------------- /src/SharpIDE.Application/SharpIdeOtel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattParkerDev/SharpIDE/HEAD/src/SharpIDE.Application/SharpIdeOtel.cs -------------------------------------------------------------------------------- /src/SharpIDE.Godot/.editorconfig: -------------------------------------------------------------------------------- 1 | root = true 2 | 3 | [*] 4 | charset = utf-8 5 | -------------------------------------------------------------------------------- /src/SharpIDE.Godot/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattParkerDev/SharpIDE/HEAD/src/SharpIDE.Godot/.gitattributes -------------------------------------------------------------------------------- /src/SharpIDE.Godot/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattParkerDev/SharpIDE/HEAD/src/SharpIDE.Godot/.gitignore -------------------------------------------------------------------------------- /src/SharpIDE.Godot/DiAutoload.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattParkerDev/SharpIDE/HEAD/src/SharpIDE.Godot/DiAutoload.cs -------------------------------------------------------------------------------- /src/SharpIDE.Godot/DiAutoload.cs.uid: -------------------------------------------------------------------------------- 1 | uid://c1ong07uc2rx4 2 | -------------------------------------------------------------------------------- /src/SharpIDE.Godot/ExampleScript.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattParkerDev/SharpIDE/HEAD/src/SharpIDE.Godot/ExampleScript.gd -------------------------------------------------------------------------------- /src/SharpIDE.Godot/ExampleScript.gd.uid: -------------------------------------------------------------------------------- 1 | uid://tcisse2vmp8h 2 | -------------------------------------------------------------------------------- /src/SharpIDE.Godot/Features/ActivityListener/ActivityMonitor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattParkerDev/SharpIDE/HEAD/src/SharpIDE.Godot/Features/ActivityListener/ActivityMonitor.cs -------------------------------------------------------------------------------- /src/SharpIDE.Godot/Features/ActivityListener/ActivityMonitor.cs.uid: -------------------------------------------------------------------------------- 1 | uid://bj7cmmfhf41ry 2 | -------------------------------------------------------------------------------- /src/SharpIDE.Godot/Features/BottomBar/BottomBar.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattParkerDev/SharpIDE/HEAD/src/SharpIDE.Godot/Features/BottomBar/BottomBar.cs -------------------------------------------------------------------------------- /src/SharpIDE.Godot/Features/BottomBar/BottomBar.cs.uid: -------------------------------------------------------------------------------- 1 | uid://dkeruijr43xlk 2 | -------------------------------------------------------------------------------- /src/SharpIDE.Godot/Features/BottomBar/BottomBar.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattParkerDev/SharpIDE/HEAD/src/SharpIDE.Godot/Features/BottomBar/BottomBar.tscn -------------------------------------------------------------------------------- /src/SharpIDE.Godot/Features/BottomBar/RunningTasksDisplay.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattParkerDev/SharpIDE/HEAD/src/SharpIDE.Godot/Features/BottomBar/RunningTasksDisplay.cs -------------------------------------------------------------------------------- /src/SharpIDE.Godot/Features/BottomBar/RunningTasksDisplay.cs.uid: -------------------------------------------------------------------------------- 1 | uid://t26ae82ia2cj 2 | -------------------------------------------------------------------------------- /src/SharpIDE.Godot/Features/BottomBar/RunningTasksDisplay.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattParkerDev/SharpIDE/HEAD/src/SharpIDE.Godot/Features/BottomBar/RunningTasksDisplay.tscn -------------------------------------------------------------------------------- /src/SharpIDE.Godot/Features/BottomPanel/BottomPanelManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattParkerDev/SharpIDE/HEAD/src/SharpIDE.Godot/Features/BottomPanel/BottomPanelManager.cs -------------------------------------------------------------------------------- /src/SharpIDE.Godot/Features/BottomPanel/BottomPanelManager.cs.uid: -------------------------------------------------------------------------------- 1 | uid://cvvgp42r3nml8 2 | -------------------------------------------------------------------------------- /src/SharpIDE.Godot/Features/BottomPanel/BottomPanelType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattParkerDev/SharpIDE/HEAD/src/SharpIDE.Godot/Features/BottomPanel/BottomPanelType.cs -------------------------------------------------------------------------------- /src/SharpIDE.Godot/Features/BottomPanel/BottomPanelType.cs.uid: -------------------------------------------------------------------------------- 1 | uid://dyoci88kqk2r1 2 | -------------------------------------------------------------------------------- /src/SharpIDE.Godot/Features/Build/BuildPanel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattParkerDev/SharpIDE/HEAD/src/SharpIDE.Godot/Features/Build/BuildPanel.cs -------------------------------------------------------------------------------- /src/SharpIDE.Godot/Features/Build/BuildPanel.cs.uid: -------------------------------------------------------------------------------- 1 | uid://dt46krpl6ds28 2 | -------------------------------------------------------------------------------- /src/SharpIDE.Godot/Features/Build/BuildPanel.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattParkerDev/SharpIDE/HEAD/src/SharpIDE.Godot/Features/Build/BuildPanel.tscn -------------------------------------------------------------------------------- /src/SharpIDE.Godot/Features/CodeEditor/CodeEditorPanel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattParkerDev/SharpIDE/HEAD/src/SharpIDE.Godot/Features/CodeEditor/CodeEditorPanel.cs -------------------------------------------------------------------------------- /src/SharpIDE.Godot/Features/CodeEditor/CodeEditorPanel.cs.uid: -------------------------------------------------------------------------------- 1 | uid://cy7erscaagrtj 2 | -------------------------------------------------------------------------------- /src/SharpIDE.Godot/Features/CodeEditor/CodeEditorPanel.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattParkerDev/SharpIDE/HEAD/src/SharpIDE.Godot/Features/CodeEditor/CodeEditorPanel.tscn -------------------------------------------------------------------------------- /src/SharpIDE.Godot/Features/CodeEditor/CustomSyntaxHighlighter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattParkerDev/SharpIDE/HEAD/src/SharpIDE.Godot/Features/CodeEditor/CustomSyntaxHighlighter.cs -------------------------------------------------------------------------------- /src/SharpIDE.Godot/Features/CodeEditor/CustomSyntaxHighlighter.cs.uid: -------------------------------------------------------------------------------- 1 | uid://b6wpiabl7sutg 2 | -------------------------------------------------------------------------------- /src/SharpIDE.Godot/Features/CodeEditor/RenameSymbolDialog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattParkerDev/SharpIDE/HEAD/src/SharpIDE.Godot/Features/CodeEditor/RenameSymbolDialog.cs -------------------------------------------------------------------------------- /src/SharpIDE.Godot/Features/CodeEditor/RenameSymbolDialog.cs.uid: -------------------------------------------------------------------------------- 1 | uid://c4ppo6t4kcegp 2 | -------------------------------------------------------------------------------- /src/SharpIDE.Godot/Features/CodeEditor/RenameSymbolDialog.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattParkerDev/SharpIDE/HEAD/src/SharpIDE.Godot/Features/CodeEditor/RenameSymbolDialog.tscn -------------------------------------------------------------------------------- /src/SharpIDE.Godot/Features/CodeEditor/Resources/CascadiaFontVariation.tres: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattParkerDev/SharpIDE/HEAD/src/SharpIDE.Godot/Features/CodeEditor/Resources/CascadiaFontVariation.tres -------------------------------------------------------------------------------- /src/SharpIDE.Godot/Features/CodeEditor/Resources/CascadiaMono.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattParkerDev/SharpIDE/HEAD/src/SharpIDE.Godot/Features/CodeEditor/Resources/CascadiaMono.ttf -------------------------------------------------------------------------------- /src/SharpIDE.Godot/Features/CodeEditor/Resources/CascadiaMono.ttf.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattParkerDev/SharpIDE/HEAD/src/SharpIDE.Godot/Features/CodeEditor/Resources/CascadiaMono.ttf.import -------------------------------------------------------------------------------- /src/SharpIDE.Godot/Features/CodeEditor/Resources/TabBarTabStyle.tres: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattParkerDev/SharpIDE/HEAD/src/SharpIDE.Godot/Features/CodeEditor/Resources/TabBarTabStyle.tres -------------------------------------------------------------------------------- /src/SharpIDE.Godot/Features/CodeEditor/SharpIdeCodeEdit.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattParkerDev/SharpIDE/HEAD/src/SharpIDE.Godot/Features/CodeEditor/SharpIdeCodeEdit.cs -------------------------------------------------------------------------------- /src/SharpIDE.Godot/Features/CodeEditor/SharpIdeCodeEdit.cs.uid: -------------------------------------------------------------------------------- 1 | uid://du2lt7r1p1qfy 2 | -------------------------------------------------------------------------------- /src/SharpIDE.Godot/Features/CodeEditor/SharpIdeCodeEdit.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattParkerDev/SharpIDE/HEAD/src/SharpIDE.Godot/Features/CodeEditor/SharpIdeCodeEdit.tscn -------------------------------------------------------------------------------- /src/SharpIDE.Godot/Features/CodeEditor/SharpIdeCodeEdit_Completions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattParkerDev/SharpIDE/HEAD/src/SharpIDE.Godot/Features/CodeEditor/SharpIdeCodeEdit_Completions.cs -------------------------------------------------------------------------------- /src/SharpIDE.Godot/Features/CodeEditor/SharpIdeCodeEdit_Completions.cs.uid: -------------------------------------------------------------------------------- 1 | uid://daa1p18jx6lgd 2 | -------------------------------------------------------------------------------- /src/SharpIDE.Godot/Features/CodeEditor/SharpIdeCodeEdit_GitGutter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattParkerDev/SharpIDE/HEAD/src/SharpIDE.Godot/Features/CodeEditor/SharpIdeCodeEdit_GitGutter.cs -------------------------------------------------------------------------------- /src/SharpIDE.Godot/Features/CodeEditor/SharpIdeCodeEdit_GitGutter.cs.uid: -------------------------------------------------------------------------------- 1 | uid://o088d67e6wrl 2 | -------------------------------------------------------------------------------- /src/SharpIDE.Godot/Features/CodeEditor/SharpIdeCodeEdit_RenameSymbol.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattParkerDev/SharpIDE/HEAD/src/SharpIDE.Godot/Features/CodeEditor/SharpIdeCodeEdit_RenameSymbol.cs -------------------------------------------------------------------------------- /src/SharpIDE.Godot/Features/CodeEditor/SharpIdeCodeEdit_RenameSymbol.cs.uid: -------------------------------------------------------------------------------- 1 | uid://bxtxw0soa1l5u 2 | -------------------------------------------------------------------------------- /src/SharpIDE.Godot/Features/CodeEditor/SharpIdeCodeEdit_SymbolHover.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattParkerDev/SharpIDE/HEAD/src/SharpIDE.Godot/Features/CodeEditor/SharpIdeCodeEdit_SymbolHover.cs -------------------------------------------------------------------------------- /src/SharpIDE.Godot/Features/CodeEditor/SharpIdeCodeEdit_SymbolHover.cs.uid: -------------------------------------------------------------------------------- 1 | uid://byy2ut7xh6qcf 2 | -------------------------------------------------------------------------------- /src/SharpIDE.Godot/Features/CodeEditor/SharpIdeCodeEdit_SymbolLookup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattParkerDev/SharpIDE/HEAD/src/SharpIDE.Godot/Features/CodeEditor/SharpIdeCodeEdit_SymbolLookup.cs -------------------------------------------------------------------------------- /src/SharpIDE.Godot/Features/CodeEditor/SharpIdeCodeEdit_SymbolLookup.cs.uid: -------------------------------------------------------------------------------- 1 | uid://bo72lu3g6umo1 2 | -------------------------------------------------------------------------------- /src/SharpIDE.Godot/Features/CodeEditor/SymbolTooltips/Common.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattParkerDev/SharpIDE/HEAD/src/SharpIDE.Godot/Features/CodeEditor/SymbolTooltips/Common.cs -------------------------------------------------------------------------------- /src/SharpIDE.Godot/Features/CodeEditor/SymbolTooltips/Common.cs.uid: -------------------------------------------------------------------------------- 1 | uid://d3wka2jkfexiy 2 | -------------------------------------------------------------------------------- /src/SharpIDE.Godot/Features/CodeEditor/SymbolTooltips/DiagnosticTooltip.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattParkerDev/SharpIDE/HEAD/src/SharpIDE.Godot/Features/CodeEditor/SymbolTooltips/DiagnosticTooltip.cs -------------------------------------------------------------------------------- /src/SharpIDE.Godot/Features/CodeEditor/SymbolTooltips/DiagnosticTooltip.cs.uid: -------------------------------------------------------------------------------- 1 | uid://bfnfp0b6xivtd 2 | -------------------------------------------------------------------------------- /src/SharpIDE.Godot/Features/CodeEditor/SymbolTooltips/FieldTooltip.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattParkerDev/SharpIDE/HEAD/src/SharpIDE.Godot/Features/CodeEditor/SymbolTooltips/FieldTooltip.cs -------------------------------------------------------------------------------- /src/SharpIDE.Godot/Features/CodeEditor/SymbolTooltips/FieldTooltip.cs.uid: -------------------------------------------------------------------------------- 1 | uid://b6g15e1xvwjoo 2 | -------------------------------------------------------------------------------- /src/SharpIDE.Godot/Features/CodeEditor/SymbolTooltips/LocalVariableTooltip.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattParkerDev/SharpIDE/HEAD/src/SharpIDE.Godot/Features/CodeEditor/SymbolTooltips/LocalVariableTooltip.cs -------------------------------------------------------------------------------- /src/SharpIDE.Godot/Features/CodeEditor/SymbolTooltips/LocalVariableTooltip.cs.uid: -------------------------------------------------------------------------------- 1 | uid://bfusdswov11m6 2 | -------------------------------------------------------------------------------- /src/SharpIDE.Godot/Features/CodeEditor/SymbolTooltips/MethodTooltip.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattParkerDev/SharpIDE/HEAD/src/SharpIDE.Godot/Features/CodeEditor/SymbolTooltips/MethodTooltip.cs -------------------------------------------------------------------------------- /src/SharpIDE.Godot/Features/CodeEditor/SymbolTooltips/MethodTooltip.cs.uid: -------------------------------------------------------------------------------- 1 | uid://knv54l716f06 2 | -------------------------------------------------------------------------------- /src/SharpIDE.Godot/Features/CodeEditor/SymbolTooltips/NamedTypeTooltip.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattParkerDev/SharpIDE/HEAD/src/SharpIDE.Godot/Features/CodeEditor/SymbolTooltips/NamedTypeTooltip.cs -------------------------------------------------------------------------------- /src/SharpIDE.Godot/Features/CodeEditor/SymbolTooltips/NamedTypeTooltip.cs.uid: -------------------------------------------------------------------------------- 1 | uid://bxi3wb5hwnm65 2 | -------------------------------------------------------------------------------- /src/SharpIDE.Godot/Features/CodeEditor/SymbolTooltips/ParameterTooltip.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattParkerDev/SharpIDE/HEAD/src/SharpIDE.Godot/Features/CodeEditor/SymbolTooltips/ParameterTooltip.cs -------------------------------------------------------------------------------- /src/SharpIDE.Godot/Features/CodeEditor/SymbolTooltips/ParameterTooltip.cs.uid: -------------------------------------------------------------------------------- 1 | uid://bm5qdk3fc6wpj 2 | -------------------------------------------------------------------------------- /src/SharpIDE.Godot/Features/CodeEditor/SymbolTooltips/PropertyTooltip.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattParkerDev/SharpIDE/HEAD/src/SharpIDE.Godot/Features/CodeEditor/SymbolTooltips/PropertyTooltip.cs -------------------------------------------------------------------------------- /src/SharpIDE.Godot/Features/CodeEditor/SymbolTooltips/PropertyTooltip.cs.uid: -------------------------------------------------------------------------------- 1 | uid://bwh1rsnpqykga 2 | -------------------------------------------------------------------------------- /src/SharpIDE.Godot/Features/Common/TreeItemContainer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattParkerDev/SharpIDE/HEAD/src/SharpIDE.Godot/Features/Common/TreeItemContainer.cs -------------------------------------------------------------------------------- /src/SharpIDE.Godot/Features/Common/TreeItemContainer.cs.uid: -------------------------------------------------------------------------------- 1 | uid://c3k4fos7lp7oa 2 | -------------------------------------------------------------------------------- /src/SharpIDE.Godot/Features/Completions/Resources/class-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattParkerDev/SharpIDE/HEAD/src/SharpIDE.Godot/Features/Completions/Resources/class-icon.svg -------------------------------------------------------------------------------- /src/SharpIDE.Godot/Features/Completions/Resources/class-icon.svg.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattParkerDev/SharpIDE/HEAD/src/SharpIDE.Godot/Features/Completions/Resources/class-icon.svg.import -------------------------------------------------------------------------------- /src/SharpIDE.Godot/Features/Completions/Resources/delegate-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattParkerDev/SharpIDE/HEAD/src/SharpIDE.Godot/Features/Completions/Resources/delegate-icon.svg -------------------------------------------------------------------------------- /src/SharpIDE.Godot/Features/Completions/Resources/delegate-icon.svg.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattParkerDev/SharpIDE/HEAD/src/SharpIDE.Godot/Features/Completions/Resources/delegate-icon.svg.import -------------------------------------------------------------------------------- /src/SharpIDE.Godot/Features/Completions/Resources/enum-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattParkerDev/SharpIDE/HEAD/src/SharpIDE.Godot/Features/Completions/Resources/enum-icon.svg -------------------------------------------------------------------------------- /src/SharpIDE.Godot/Features/Completions/Resources/enum-icon.svg.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattParkerDev/SharpIDE/HEAD/src/SharpIDE.Godot/Features/Completions/Resources/enum-icon.svg.import -------------------------------------------------------------------------------- /src/SharpIDE.Godot/Features/Completions/Resources/event-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattParkerDev/SharpIDE/HEAD/src/SharpIDE.Godot/Features/Completions/Resources/event-icon.svg -------------------------------------------------------------------------------- /src/SharpIDE.Godot/Features/Completions/Resources/event-icon.svg.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattParkerDev/SharpIDE/HEAD/src/SharpIDE.Godot/Features/Completions/Resources/event-icon.svg.import -------------------------------------------------------------------------------- /src/SharpIDE.Godot/Features/Completions/Resources/field-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattParkerDev/SharpIDE/HEAD/src/SharpIDE.Godot/Features/Completions/Resources/field-icon.svg -------------------------------------------------------------------------------- /src/SharpIDE.Godot/Features/Completions/Resources/field-icon.svg.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattParkerDev/SharpIDE/HEAD/src/SharpIDE.Godot/Features/Completions/Resources/field-icon.svg.import -------------------------------------------------------------------------------- /src/SharpIDE.Godot/Features/Completions/Resources/interface-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattParkerDev/SharpIDE/HEAD/src/SharpIDE.Godot/Features/Completions/Resources/interface-icon.svg -------------------------------------------------------------------------------- /src/SharpIDE.Godot/Features/Completions/Resources/interface-icon.svg.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattParkerDev/SharpIDE/HEAD/src/SharpIDE.Godot/Features/Completions/Resources/interface-icon.svg.import -------------------------------------------------------------------------------- /src/SharpIDE.Godot/Features/Completions/Resources/keyword-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattParkerDev/SharpIDE/HEAD/src/SharpIDE.Godot/Features/Completions/Resources/keyword-icon.svg -------------------------------------------------------------------------------- /src/SharpIDE.Godot/Features/Completions/Resources/keyword-icon.svg.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattParkerDev/SharpIDE/HEAD/src/SharpIDE.Godot/Features/Completions/Resources/keyword-icon.svg.import -------------------------------------------------------------------------------- /src/SharpIDE.Godot/Features/Completions/Resources/local-variable-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattParkerDev/SharpIDE/HEAD/src/SharpIDE.Godot/Features/Completions/Resources/local-variable-icon.svg -------------------------------------------------------------------------------- /src/SharpIDE.Godot/Features/Completions/Resources/local-variable-icon.svg.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattParkerDev/SharpIDE/HEAD/src/SharpIDE.Godot/Features/Completions/Resources/local-variable-icon.svg.import -------------------------------------------------------------------------------- /src/SharpIDE.Godot/Features/Completions/Resources/method-cube.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattParkerDev/SharpIDE/HEAD/src/SharpIDE.Godot/Features/Completions/Resources/method-cube.svg -------------------------------------------------------------------------------- /src/SharpIDE.Godot/Features/Completions/Resources/method-cube.svg.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattParkerDev/SharpIDE/HEAD/src/SharpIDE.Godot/Features/Completions/Resources/method-cube.svg.import -------------------------------------------------------------------------------- /src/SharpIDE.Godot/Features/Completions/Resources/namespace-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattParkerDev/SharpIDE/HEAD/src/SharpIDE.Godot/Features/Completions/Resources/namespace-icon.svg -------------------------------------------------------------------------------- /src/SharpIDE.Godot/Features/Completions/Resources/namespace-icon.svg.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattParkerDev/SharpIDE/HEAD/src/SharpIDE.Godot/Features/Completions/Resources/namespace-icon.svg.import -------------------------------------------------------------------------------- /src/SharpIDE.Godot/Features/Completions/Resources/parameter-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattParkerDev/SharpIDE/HEAD/src/SharpIDE.Godot/Features/Completions/Resources/parameter-icon.svg -------------------------------------------------------------------------------- /src/SharpIDE.Godot/Features/Completions/Resources/parameter-icon.svg.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattParkerDev/SharpIDE/HEAD/src/SharpIDE.Godot/Features/Completions/Resources/parameter-icon.svg.import -------------------------------------------------------------------------------- /src/SharpIDE.Godot/Features/Completions/Resources/property-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattParkerDev/SharpIDE/HEAD/src/SharpIDE.Godot/Features/Completions/Resources/property-icon.svg -------------------------------------------------------------------------------- /src/SharpIDE.Godot/Features/Completions/Resources/property-icon.svg.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattParkerDev/SharpIDE/HEAD/src/SharpIDE.Godot/Features/Completions/Resources/property-icon.svg.import -------------------------------------------------------------------------------- /src/SharpIDE.Godot/Features/CustomControls/InvertedVSplitContainer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattParkerDev/SharpIDE/HEAD/src/SharpIDE.Godot/Features/CustomControls/InvertedVSplitContainer.cs -------------------------------------------------------------------------------- /src/SharpIDE.Godot/Features/CustomControls/InvertedVSplitContainer.cs.uid: -------------------------------------------------------------------------------- 1 | uid://kvnhndc3l6ih 2 | -------------------------------------------------------------------------------- /src/SharpIDE.Godot/Features/Debug_/DebugPanel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattParkerDev/SharpIDE/HEAD/src/SharpIDE.Godot/Features/Debug_/DebugPanel.cs -------------------------------------------------------------------------------- /src/SharpIDE.Godot/Features/Debug_/DebugPanel.cs.uid: -------------------------------------------------------------------------------- 1 | uid://ddyadu54qitw4 2 | -------------------------------------------------------------------------------- /src/SharpIDE.Godot/Features/Debug_/DebugPanel.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattParkerDev/SharpIDE/HEAD/src/SharpIDE.Godot/Features/Debug_/DebugPanel.tscn -------------------------------------------------------------------------------- /src/SharpIDE.Godot/Features/Debug_/Tab/DebugPanelTab.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattParkerDev/SharpIDE/HEAD/src/SharpIDE.Godot/Features/Debug_/Tab/DebugPanelTab.cs -------------------------------------------------------------------------------- /src/SharpIDE.Godot/Features/Debug_/Tab/DebugPanelTab.cs.uid: -------------------------------------------------------------------------------- 1 | uid://b6gq81odfn8ok 2 | -------------------------------------------------------------------------------- /src/SharpIDE.Godot/Features/Debug_/Tab/DebugPanelTab.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattParkerDev/SharpIDE/HEAD/src/SharpIDE.Godot/Features/Debug_/Tab/DebugPanelTab.tscn -------------------------------------------------------------------------------- /src/SharpIDE.Godot/Features/Debug_/Tab/SubTabs/ThreadListItem.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattParkerDev/SharpIDE/HEAD/src/SharpIDE.Godot/Features/Debug_/Tab/SubTabs/ThreadListItem.tscn -------------------------------------------------------------------------------- /src/SharpIDE.Godot/Features/Debug_/Tab/SubTabs/ThreadsVariablesSubTab.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattParkerDev/SharpIDE/HEAD/src/SharpIDE.Godot/Features/Debug_/Tab/SubTabs/ThreadsVariablesSubTab.cs -------------------------------------------------------------------------------- /src/SharpIDE.Godot/Features/Debug_/Tab/SubTabs/ThreadsVariablesSubTab.cs.uid: -------------------------------------------------------------------------------- 1 | uid://dpc4fvj40e5il 2 | -------------------------------------------------------------------------------- /src/SharpIDE.Godot/Features/Debug_/Tab/SubTabs/ThreadsVariablesSubTab.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattParkerDev/SharpIDE/HEAD/src/SharpIDE.Godot/Features/Debug_/Tab/SubTabs/ThreadsVariablesSubTab.tscn -------------------------------------------------------------------------------- /src/SharpIDE.Godot/Features/Git/GitColours.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattParkerDev/SharpIDE/HEAD/src/SharpIDE.Godot/Features/Git/GitColours.cs -------------------------------------------------------------------------------- /src/SharpIDE.Godot/Features/Git/GitColours.cs.uid: -------------------------------------------------------------------------------- 1 | uid://ccdmpjeuj1lmy 2 | -------------------------------------------------------------------------------- /src/SharpIDE.Godot/Features/IdeDiagnostics/IdeDiagnosticsPanel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattParkerDev/SharpIDE/HEAD/src/SharpIDE.Godot/Features/IdeDiagnostics/IdeDiagnosticsPanel.cs -------------------------------------------------------------------------------- /src/SharpIDE.Godot/Features/IdeDiagnostics/IdeDiagnosticsPanel.cs.uid: -------------------------------------------------------------------------------- 1 | uid://1dbtk7cifd25 2 | -------------------------------------------------------------------------------- /src/SharpIDE.Godot/Features/IdeDiagnostics/IdeDiagnosticsPanel.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattParkerDev/SharpIDE/HEAD/src/SharpIDE.Godot/Features/IdeDiagnostics/IdeDiagnosticsPanel.tscn -------------------------------------------------------------------------------- /src/SharpIDE.Godot/Features/IdeSettings/AppState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattParkerDev/SharpIDE/HEAD/src/SharpIDE.Godot/Features/IdeSettings/AppState.cs -------------------------------------------------------------------------------- /src/SharpIDE.Godot/Features/IdeSettings/AppState.cs.uid: -------------------------------------------------------------------------------- 1 | uid://ccsfv10f1lhxd 2 | -------------------------------------------------------------------------------- /src/SharpIDE.Godot/Features/IdeSettings/AppStateLoader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattParkerDev/SharpIDE/HEAD/src/SharpIDE.Godot/Features/IdeSettings/AppStateLoader.cs -------------------------------------------------------------------------------- /src/SharpIDE.Godot/Features/IdeSettings/AppStateLoader.cs.uid: -------------------------------------------------------------------------------- 1 | uid://dnu6x5m37dapi 2 | -------------------------------------------------------------------------------- /src/SharpIDE.Godot/Features/IdeSettings/IdeSolutionState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattParkerDev/SharpIDE/HEAD/src/SharpIDE.Godot/Features/IdeSettings/IdeSolutionState.cs -------------------------------------------------------------------------------- /src/SharpIDE.Godot/Features/IdeSettings/IdeSolutionState.cs.uid: -------------------------------------------------------------------------------- 1 | uid://bbrr8py0cemp0 2 | -------------------------------------------------------------------------------- /src/SharpIDE.Godot/Features/LeftSideBar/LeftBottomSidebarButtonGroup.tres: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattParkerDev/SharpIDE/HEAD/src/SharpIDE.Godot/Features/LeftSideBar/LeftBottomSidebarButtonGroup.tres -------------------------------------------------------------------------------- /src/SharpIDE.Godot/Features/LeftSideBar/LeftSideBar.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattParkerDev/SharpIDE/HEAD/src/SharpIDE.Godot/Features/LeftSideBar/LeftSideBar.cs -------------------------------------------------------------------------------- /src/SharpIDE.Godot/Features/LeftSideBar/LeftSideBar.cs.uid: -------------------------------------------------------------------------------- 1 | uid://bddno1bbvvp5q 2 | -------------------------------------------------------------------------------- /src/SharpIDE.Godot/Features/LeftSideBar/LeftSideBar.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattParkerDev/SharpIDE/HEAD/src/SharpIDE.Godot/Features/LeftSideBar/LeftSideBar.tscn -------------------------------------------------------------------------------- /src/SharpIDE.Godot/Features/LeftSideBar/Resources/Ide.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattParkerDev/SharpIDE/HEAD/src/SharpIDE.Godot/Features/LeftSideBar/Resources/Ide.svg -------------------------------------------------------------------------------- /src/SharpIDE.Godot/Features/LeftSideBar/Resources/Ide.svg.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattParkerDev/SharpIDE/HEAD/src/SharpIDE.Godot/Features/LeftSideBar/Resources/Ide.svg.import -------------------------------------------------------------------------------- /src/SharpIDE.Godot/Features/LeftSideBar/Resources/LeftSideBarButtonStyleNormal.tres: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattParkerDev/SharpIDE/HEAD/src/SharpIDE.Godot/Features/LeftSideBar/Resources/LeftSideBarButtonStyleNormal.tres -------------------------------------------------------------------------------- /src/SharpIDE.Godot/Features/LeftSideBar/Resources/LeftSideBarButtonStylePressed.tres: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattParkerDev/SharpIDE/HEAD/src/SharpIDE.Godot/Features/LeftSideBar/Resources/LeftSideBarButtonStylePressed.tres -------------------------------------------------------------------------------- /src/SharpIDE.Godot/Features/LeftSideBar/Resources/Nuget.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattParkerDev/SharpIDE/HEAD/src/SharpIDE.Godot/Features/LeftSideBar/Resources/Nuget.svg -------------------------------------------------------------------------------- /src/SharpIDE.Godot/Features/LeftSideBar/Resources/Nuget.svg.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattParkerDev/SharpIDE/HEAD/src/SharpIDE.Godot/Features/LeftSideBar/Resources/Nuget.svg.import -------------------------------------------------------------------------------- /src/SharpIDE.Godot/Features/LeftSideBar/Resources/SidebarDebug.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattParkerDev/SharpIDE/HEAD/src/SharpIDE.Godot/Features/LeftSideBar/Resources/SidebarDebug.svg -------------------------------------------------------------------------------- /src/SharpIDE.Godot/Features/LeftSideBar/Resources/SidebarDebug.svg.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattParkerDev/SharpIDE/HEAD/src/SharpIDE.Godot/Features/LeftSideBar/Resources/SidebarDebug.svg.import -------------------------------------------------------------------------------- /src/SharpIDE.Godot/Features/LeftSideBar/Resources/SidebarFolder.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattParkerDev/SharpIDE/HEAD/src/SharpIDE.Godot/Features/LeftSideBar/Resources/SidebarFolder.svg -------------------------------------------------------------------------------- /src/SharpIDE.Godot/Features/LeftSideBar/Resources/SidebarFolder.svg.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattParkerDev/SharpIDE/HEAD/src/SharpIDE.Godot/Features/LeftSideBar/Resources/SidebarFolder.svg.import -------------------------------------------------------------------------------- /src/SharpIDE.Godot/Features/LeftSideBar/Resources/SidebarProblem.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattParkerDev/SharpIDE/HEAD/src/SharpIDE.Godot/Features/LeftSideBar/Resources/SidebarProblem.svg -------------------------------------------------------------------------------- /src/SharpIDE.Godot/Features/LeftSideBar/Resources/SidebarProblem.svg.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattParkerDev/SharpIDE/HEAD/src/SharpIDE.Godot/Features/LeftSideBar/Resources/SidebarProblem.svg.import -------------------------------------------------------------------------------- /src/SharpIDE.Godot/Features/LeftSideBar/Resources/SidebarRun.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattParkerDev/SharpIDE/HEAD/src/SharpIDE.Godot/Features/LeftSideBar/Resources/SidebarRun.svg -------------------------------------------------------------------------------- /src/SharpIDE.Godot/Features/LeftSideBar/Resources/SidebarRun.svg.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattParkerDev/SharpIDE/HEAD/src/SharpIDE.Godot/Features/LeftSideBar/Resources/SidebarRun.svg.import -------------------------------------------------------------------------------- /src/SharpIDE.Godot/Features/LeftSideBar/Resources/SidebarTestExplorer.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattParkerDev/SharpIDE/HEAD/src/SharpIDE.Godot/Features/LeftSideBar/Resources/SidebarTestExplorer.svg -------------------------------------------------------------------------------- /src/SharpIDE.Godot/Features/LeftSideBar/Resources/SidebarTestExplorer.svg.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattParkerDev/SharpIDE/HEAD/src/SharpIDE.Godot/Features/LeftSideBar/Resources/SidebarTestExplorer.svg.import -------------------------------------------------------------------------------- /src/SharpIDE.Godot/Features/LeftSideBar/Resources/Terminal.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattParkerDev/SharpIDE/HEAD/src/SharpIDE.Godot/Features/LeftSideBar/Resources/Terminal.svg -------------------------------------------------------------------------------- /src/SharpIDE.Godot/Features/LeftSideBar/Resources/Terminal.svg.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattParkerDev/SharpIDE/HEAD/src/SharpIDE.Godot/Features/LeftSideBar/Resources/Terminal.svg.import -------------------------------------------------------------------------------- /src/SharpIDE.Godot/Features/Navigation/ForwardBackwardButtonContainer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattParkerDev/SharpIDE/HEAD/src/SharpIDE.Godot/Features/Navigation/ForwardBackwardButtonContainer.cs -------------------------------------------------------------------------------- /src/SharpIDE.Godot/Features/Navigation/ForwardBackwardButtonContainer.cs.uid: -------------------------------------------------------------------------------- 1 | uid://cao2o2singwnb 2 | -------------------------------------------------------------------------------- /src/SharpIDE.Godot/Features/Navigation/ForwardBackwardButtonContainer.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattParkerDev/SharpIDE/HEAD/src/SharpIDE.Godot/Features/Navigation/ForwardBackwardButtonContainer.tscn -------------------------------------------------------------------------------- /src/SharpIDE.Godot/Features/Nuget/ImageTextureHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattParkerDev/SharpIDE/HEAD/src/SharpIDE.Godot/Features/Nuget/ImageTextureHelper.cs -------------------------------------------------------------------------------- /src/SharpIDE.Godot/Features/Nuget/ImageTextureHelper.cs.uid: -------------------------------------------------------------------------------- 1 | uid://f62r1og43wye 2 | -------------------------------------------------------------------------------- /src/SharpIDE.Godot/Features/Nuget/NugetPackageDetails.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattParkerDev/SharpIDE/HEAD/src/SharpIDE.Godot/Features/Nuget/NugetPackageDetails.cs -------------------------------------------------------------------------------- /src/SharpIDE.Godot/Features/Nuget/NugetPackageDetails.cs.uid: -------------------------------------------------------------------------------- 1 | uid://d1v1v4uqdu2rw 2 | -------------------------------------------------------------------------------- /src/SharpIDE.Godot/Features/Nuget/NugetPackageDetails.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattParkerDev/SharpIDE/HEAD/src/SharpIDE.Godot/Features/Nuget/NugetPackageDetails.tscn -------------------------------------------------------------------------------- /src/SharpIDE.Godot/Features/Nuget/NugetPanel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattParkerDev/SharpIDE/HEAD/src/SharpIDE.Godot/Features/Nuget/NugetPanel.cs -------------------------------------------------------------------------------- /src/SharpIDE.Godot/Features/Nuget/NugetPanel.cs.uid: -------------------------------------------------------------------------------- 1 | uid://du4v3dyf0y3d8 2 | -------------------------------------------------------------------------------- /src/SharpIDE.Godot/Features/Nuget/NugetPanel.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattParkerDev/SharpIDE/HEAD/src/SharpIDE.Godot/Features/Nuget/NugetPanel.tscn -------------------------------------------------------------------------------- /src/SharpIDE.Godot/Features/Nuget/PackageDetailsProjectEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattParkerDev/SharpIDE/HEAD/src/SharpIDE.Godot/Features/Nuget/PackageDetailsProjectEntry.cs -------------------------------------------------------------------------------- /src/SharpIDE.Godot/Features/Nuget/PackageDetailsProjectEntry.cs.uid: -------------------------------------------------------------------------------- 1 | uid://bhgqjh7sfenxm 2 | -------------------------------------------------------------------------------- /src/SharpIDE.Godot/Features/Nuget/PackageDetailsProjectEntry.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattParkerDev/SharpIDE/HEAD/src/SharpIDE.Godot/Features/Nuget/PackageDetailsProjectEntry.tscn -------------------------------------------------------------------------------- /src/SharpIDE.Godot/Features/Nuget/PackageEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattParkerDev/SharpIDE/HEAD/src/SharpIDE.Godot/Features/Nuget/PackageEntry.cs -------------------------------------------------------------------------------- /src/SharpIDE.Godot/Features/Nuget/PackageEntry.cs.uid: -------------------------------------------------------------------------------- 1 | uid://cwriljtokcujb 2 | -------------------------------------------------------------------------------- /src/SharpIDE.Godot/Features/Nuget/PackageEntry.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattParkerDev/SharpIDE/HEAD/src/SharpIDE.Godot/Features/Nuget/PackageEntry.tscn -------------------------------------------------------------------------------- /src/SharpIDE.Godot/Features/Nuget/Resources/add-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattParkerDev/SharpIDE/HEAD/src/SharpIDE.Godot/Features/Nuget/Resources/add-icon.svg -------------------------------------------------------------------------------- /src/SharpIDE.Godot/Features/Nuget/Resources/add-icon.svg.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattParkerDev/SharpIDE/HEAD/src/SharpIDE.Godot/Features/Nuget/Resources/add-icon.svg.import -------------------------------------------------------------------------------- /src/SharpIDE.Godot/Features/Nuget/Resources/downgrade-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattParkerDev/SharpIDE/HEAD/src/SharpIDE.Godot/Features/Nuget/Resources/downgrade-icon.svg -------------------------------------------------------------------------------- /src/SharpIDE.Godot/Features/Nuget/Resources/downgrade-icon.svg.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattParkerDev/SharpIDE/HEAD/src/SharpIDE.Godot/Features/Nuget/Resources/downgrade-icon.svg.import -------------------------------------------------------------------------------- /src/SharpIDE.Godot/Features/Nuget/Resources/remove-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattParkerDev/SharpIDE/HEAD/src/SharpIDE.Godot/Features/Nuget/Resources/remove-icon.svg -------------------------------------------------------------------------------- /src/SharpIDE.Godot/Features/Nuget/Resources/remove-icon.svg.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattParkerDev/SharpIDE/HEAD/src/SharpIDE.Godot/Features/Nuget/Resources/remove-icon.svg.import -------------------------------------------------------------------------------- /src/SharpIDE.Godot/Features/Nuget/Resources/upgrade-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattParkerDev/SharpIDE/HEAD/src/SharpIDE.Godot/Features/Nuget/Resources/upgrade-icon.svg -------------------------------------------------------------------------------- /src/SharpIDE.Godot/Features/Nuget/Resources/upgrade-icon.svg.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattParkerDev/SharpIDE/HEAD/src/SharpIDE.Godot/Features/Nuget/Resources/upgrade-icon.svg.import -------------------------------------------------------------------------------- /src/SharpIDE.Godot/Features/Problems/ProblemEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattParkerDev/SharpIDE/HEAD/src/SharpIDE.Godot/Features/Problems/ProblemEntry.cs -------------------------------------------------------------------------------- /src/SharpIDE.Godot/Features/Problems/ProblemEntry.cs.uid: -------------------------------------------------------------------------------- 1 | uid://dkgiknux4rqit 2 | -------------------------------------------------------------------------------- /src/SharpIDE.Godot/Features/Problems/ProblemsPanel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattParkerDev/SharpIDE/HEAD/src/SharpIDE.Godot/Features/Problems/ProblemsPanel.cs -------------------------------------------------------------------------------- /src/SharpIDE.Godot/Features/Problems/ProblemsPanel.cs.uid: -------------------------------------------------------------------------------- 1 | uid://b1r3no4u3khik 2 | -------------------------------------------------------------------------------- /src/SharpIDE.Godot/Features/Problems/ProblemsPanel.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattParkerDev/SharpIDE/HEAD/src/SharpIDE.Godot/Features/Problems/ProblemsPanel.tscn -------------------------------------------------------------------------------- /src/SharpIDE.Godot/Features/Problems/RefCountedContainer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattParkerDev/SharpIDE/HEAD/src/SharpIDE.Godot/Features/Problems/RefCountedContainer.cs -------------------------------------------------------------------------------- /src/SharpIDE.Godot/Features/Problems/RefCountedContainer.cs.uid: -------------------------------------------------------------------------------- 1 | uid://bpo4ti23q3bhu 2 | -------------------------------------------------------------------------------- /src/SharpIDE.Godot/Features/Problems/Resources/Error.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattParkerDev/SharpIDE/HEAD/src/SharpIDE.Godot/Features/Problems/Resources/Error.svg -------------------------------------------------------------------------------- /src/SharpIDE.Godot/Features/Problems/Resources/Error.svg.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattParkerDev/SharpIDE/HEAD/src/SharpIDE.Godot/Features/Problems/Resources/Error.svg.import -------------------------------------------------------------------------------- /src/SharpIDE.Godot/Features/Problems/Resources/Warning.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattParkerDev/SharpIDE/HEAD/src/SharpIDE.Godot/Features/Problems/Resources/Warning.svg -------------------------------------------------------------------------------- /src/SharpIDE.Godot/Features/Problems/Resources/Warning.svg.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattParkerDev/SharpIDE/HEAD/src/SharpIDE.Godot/Features/Problems/Resources/Warning.svg.import -------------------------------------------------------------------------------- /src/SharpIDE.Godot/Features/Run/Resources/Debug.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattParkerDev/SharpIDE/HEAD/src/SharpIDE.Godot/Features/Run/Resources/Debug.svg -------------------------------------------------------------------------------- /src/SharpIDE.Godot/Features/Run/Resources/Debug.svg.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattParkerDev/SharpIDE/HEAD/src/SharpIDE.Godot/Features/Run/Resources/Debug.svg.import -------------------------------------------------------------------------------- /src/SharpIDE.Godot/Features/Run/Resources/Run.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattParkerDev/SharpIDE/HEAD/src/SharpIDE.Godot/Features/Run/Resources/Run.svg -------------------------------------------------------------------------------- /src/SharpIDE.Godot/Features/Run/Resources/Run.svg.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattParkerDev/SharpIDE/HEAD/src/SharpIDE.Godot/Features/Run/Resources/Run.svg.import -------------------------------------------------------------------------------- /src/SharpIDE.Godot/Features/Run/Resources/Running.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattParkerDev/SharpIDE/HEAD/src/SharpIDE.Godot/Features/Run/Resources/Running.svg -------------------------------------------------------------------------------- /src/SharpIDE.Godot/Features/Run/Resources/Running.svg.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattParkerDev/SharpIDE/HEAD/src/SharpIDE.Godot/Features/Run/Resources/Running.svg.import -------------------------------------------------------------------------------- /src/SharpIDE.Godot/Features/Run/Resources/Stop.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattParkerDev/SharpIDE/HEAD/src/SharpIDE.Godot/Features/Run/Resources/Stop.svg -------------------------------------------------------------------------------- /src/SharpIDE.Godot/Features/Run/Resources/Stop.svg.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattParkerDev/SharpIDE/HEAD/src/SharpIDE.Godot/Features/Run/Resources/Stop.svg.import -------------------------------------------------------------------------------- /src/SharpIDE.Godot/Features/Run/RunMenuItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattParkerDev/SharpIDE/HEAD/src/SharpIDE.Godot/Features/Run/RunMenuItem.cs -------------------------------------------------------------------------------- /src/SharpIDE.Godot/Features/Run/RunMenuItem.cs.uid: -------------------------------------------------------------------------------- 1 | uid://btsnapfx0dlbb 2 | -------------------------------------------------------------------------------- /src/SharpIDE.Godot/Features/Run/RunMenuItem.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattParkerDev/SharpIDE/HEAD/src/SharpIDE.Godot/Features/Run/RunMenuItem.tscn -------------------------------------------------------------------------------- /src/SharpIDE.Godot/Features/Run/RunPanel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattParkerDev/SharpIDE/HEAD/src/SharpIDE.Godot/Features/Run/RunPanel.cs -------------------------------------------------------------------------------- /src/SharpIDE.Godot/Features/Run/RunPanel.cs.uid: -------------------------------------------------------------------------------- 1 | uid://ddivigavjclyb 2 | -------------------------------------------------------------------------------- /src/SharpIDE.Godot/Features/Run/RunPanel.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattParkerDev/SharpIDE/HEAD/src/SharpIDE.Godot/Features/Run/RunPanel.tscn -------------------------------------------------------------------------------- /src/SharpIDE.Godot/Features/Run/RunPanelTab.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattParkerDev/SharpIDE/HEAD/src/SharpIDE.Godot/Features/Run/RunPanelTab.cs -------------------------------------------------------------------------------- /src/SharpIDE.Godot/Features/Run/RunPanelTab.cs.uid: -------------------------------------------------------------------------------- 1 | uid://ouskvcd0yaub 2 | -------------------------------------------------------------------------------- /src/SharpIDE.Godot/Features/Run/RunPanelTab.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattParkerDev/SharpIDE/HEAD/src/SharpIDE.Godot/Features/Run/RunPanelTab.tscn -------------------------------------------------------------------------------- /src/SharpIDE.Godot/Features/Search/SearchAllFiles/SearchAllFilesResultComponent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattParkerDev/SharpIDE/HEAD/src/SharpIDE.Godot/Features/Search/SearchAllFiles/SearchAllFilesResultComponent.cs -------------------------------------------------------------------------------- /src/SharpIDE.Godot/Features/Search/SearchAllFiles/SearchAllFilesResultComponent.cs.uid: -------------------------------------------------------------------------------- 1 | uid://dx53kr0ffp0n8 2 | -------------------------------------------------------------------------------- /src/SharpIDE.Godot/Features/Search/SearchAllFiles/SearchAllFilesResultComponent.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattParkerDev/SharpIDE/HEAD/src/SharpIDE.Godot/Features/Search/SearchAllFiles/SearchAllFilesResultComponent.tscn -------------------------------------------------------------------------------- /src/SharpIDE.Godot/Features/Search/SearchAllFiles/SearchAllFilesWindow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattParkerDev/SharpIDE/HEAD/src/SharpIDE.Godot/Features/Search/SearchAllFiles/SearchAllFilesWindow.cs -------------------------------------------------------------------------------- /src/SharpIDE.Godot/Features/Search/SearchAllFiles/SearchAllFilesWindow.cs.uid: -------------------------------------------------------------------------------- 1 | uid://dbbjoiur46dhq 2 | -------------------------------------------------------------------------------- /src/SharpIDE.Godot/Features/Search/SearchAllFiles/SearchAllFilesWindow.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattParkerDev/SharpIDE/HEAD/src/SharpIDE.Godot/Features/Search/SearchAllFiles/SearchAllFilesWindow.tscn -------------------------------------------------------------------------------- /src/SharpIDE.Godot/Features/Search/SearchInFiles/SearchResultComponent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattParkerDev/SharpIDE/HEAD/src/SharpIDE.Godot/Features/Search/SearchInFiles/SearchResultComponent.cs -------------------------------------------------------------------------------- /src/SharpIDE.Godot/Features/Search/SearchInFiles/SearchResultComponent.cs.uid: -------------------------------------------------------------------------------- 1 | uid://6sdu34jtdrux 2 | -------------------------------------------------------------------------------- /src/SharpIDE.Godot/Features/Search/SearchInFiles/SearchResultComponent.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattParkerDev/SharpIDE/HEAD/src/SharpIDE.Godot/Features/Search/SearchInFiles/SearchResultComponent.tscn -------------------------------------------------------------------------------- /src/SharpIDE.Godot/Features/Search/SearchInFiles/SearchWindow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattParkerDev/SharpIDE/HEAD/src/SharpIDE.Godot/Features/Search/SearchInFiles/SearchWindow.cs -------------------------------------------------------------------------------- /src/SharpIDE.Godot/Features/Search/SearchInFiles/SearchWindow.cs.uid: -------------------------------------------------------------------------------- 1 | uid://bah6tmifl41ce 2 | -------------------------------------------------------------------------------- /src/SharpIDE.Godot/Features/Search/SearchInFiles/SearchWindow.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattParkerDev/SharpIDE/HEAD/src/SharpIDE.Godot/Features/Search/SearchInFiles/SearchWindow.tscn -------------------------------------------------------------------------------- /src/SharpIDE.Godot/Features/Settings/SettingsButton.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattParkerDev/SharpIDE/HEAD/src/SharpIDE.Godot/Features/Settings/SettingsButton.cs -------------------------------------------------------------------------------- /src/SharpIDE.Godot/Features/Settings/SettingsButton.cs.uid: -------------------------------------------------------------------------------- 1 | uid://cry5oglh3nyt1 2 | -------------------------------------------------------------------------------- /src/SharpIDE.Godot/Features/Settings/SettingsButton.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattParkerDev/SharpIDE/HEAD/src/SharpIDE.Godot/Features/Settings/SettingsButton.tscn -------------------------------------------------------------------------------- /src/SharpIDE.Godot/Features/Settings/SettingsWindow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattParkerDev/SharpIDE/HEAD/src/SharpIDE.Godot/Features/Settings/SettingsWindow.cs -------------------------------------------------------------------------------- /src/SharpIDE.Godot/Features/Settings/SettingsWindow.cs.uid: -------------------------------------------------------------------------------- 1 | uid://b7umbl07avv6d 2 | -------------------------------------------------------------------------------- /src/SharpIDE.Godot/Features/Settings/SettingsWindow.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattParkerDev/SharpIDE/HEAD/src/SharpIDE.Godot/Features/Settings/SettingsWindow.tscn -------------------------------------------------------------------------------- /src/SharpIDE.Godot/Features/SlnPicker/AutoOpenLastSlnButton.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattParkerDev/SharpIDE/HEAD/src/SharpIDE.Godot/Features/SlnPicker/AutoOpenLastSlnButton.cs -------------------------------------------------------------------------------- /src/SharpIDE.Godot/Features/SlnPicker/AutoOpenLastSlnButton.cs.uid: -------------------------------------------------------------------------------- 1 | uid://but0p7xwpfxtg 2 | -------------------------------------------------------------------------------- /src/SharpIDE.Godot/Features/SlnPicker/PreviousSlnEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattParkerDev/SharpIDE/HEAD/src/SharpIDE.Godot/Features/SlnPicker/PreviousSlnEntry.cs -------------------------------------------------------------------------------- /src/SharpIDE.Godot/Features/SlnPicker/PreviousSlnEntry.cs.uid: -------------------------------------------------------------------------------- 1 | uid://cnfj7yfseyikh 2 | -------------------------------------------------------------------------------- /src/SharpIDE.Godot/Features/SlnPicker/PreviousSlnEntry.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattParkerDev/SharpIDE/HEAD/src/SharpIDE.Godot/Features/SlnPicker/PreviousSlnEntry.tscn -------------------------------------------------------------------------------- /src/SharpIDE.Godot/Features/SlnPicker/RandomRecentSlnColours.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattParkerDev/SharpIDE/HEAD/src/SharpIDE.Godot/Features/SlnPicker/RandomRecentSlnColours.cs -------------------------------------------------------------------------------- /src/SharpIDE.Godot/Features/SlnPicker/RandomRecentSlnColours.cs.uid: -------------------------------------------------------------------------------- 1 | uid://bdh3csaym7l1n 2 | -------------------------------------------------------------------------------- /src/SharpIDE.Godot/Features/SlnPicker/SlnPicker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattParkerDev/SharpIDE/HEAD/src/SharpIDE.Godot/Features/SlnPicker/SlnPicker.cs -------------------------------------------------------------------------------- /src/SharpIDE.Godot/Features/SlnPicker/SlnPicker.cs.uid: -------------------------------------------------------------------------------- 1 | uid://bjvwb6jg6jpsi 2 | -------------------------------------------------------------------------------- /src/SharpIDE.Godot/Features/SlnPicker/SlnPicker.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattParkerDev/SharpIDE/HEAD/src/SharpIDE.Godot/Features/SlnPicker/SlnPicker.tscn -------------------------------------------------------------------------------- /src/SharpIDE.Godot/Features/SolutionExplorer/ContextMenus/Dialogs/NewCsharpFileDialog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattParkerDev/SharpIDE/HEAD/src/SharpIDE.Godot/Features/SolutionExplorer/ContextMenus/Dialogs/NewCsharpFileDialog.cs -------------------------------------------------------------------------------- /src/SharpIDE.Godot/Features/SolutionExplorer/ContextMenus/Dialogs/NewCsharpFileDialog.cs.uid: -------------------------------------------------------------------------------- 1 | uid://celjpet3ik464 2 | -------------------------------------------------------------------------------- /src/SharpIDE.Godot/Features/SolutionExplorer/ContextMenus/Dialogs/NewCsharpFileDialog.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattParkerDev/SharpIDE/HEAD/src/SharpIDE.Godot/Features/SolutionExplorer/ContextMenus/Dialogs/NewCsharpFileDialog.tscn -------------------------------------------------------------------------------- /src/SharpIDE.Godot/Features/SolutionExplorer/ContextMenus/Dialogs/NewDirectoryDialog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattParkerDev/SharpIDE/HEAD/src/SharpIDE.Godot/Features/SolutionExplorer/ContextMenus/Dialogs/NewDirectoryDialog.cs -------------------------------------------------------------------------------- /src/SharpIDE.Godot/Features/SolutionExplorer/ContextMenus/Dialogs/NewDirectoryDialog.cs.uid: -------------------------------------------------------------------------------- 1 | uid://dj57wbvqjp34r 2 | -------------------------------------------------------------------------------- /src/SharpIDE.Godot/Features/SolutionExplorer/ContextMenus/Dialogs/NewDirectoryDialog.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattParkerDev/SharpIDE/HEAD/src/SharpIDE.Godot/Features/SolutionExplorer/ContextMenus/Dialogs/NewDirectoryDialog.tscn -------------------------------------------------------------------------------- /src/SharpIDE.Godot/Features/SolutionExplorer/ContextMenus/Dialogs/RenameDirectoryDialog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattParkerDev/SharpIDE/HEAD/src/SharpIDE.Godot/Features/SolutionExplorer/ContextMenus/Dialogs/RenameDirectoryDialog.cs -------------------------------------------------------------------------------- /src/SharpIDE.Godot/Features/SolutionExplorer/ContextMenus/Dialogs/RenameDirectoryDialog.cs.uid: -------------------------------------------------------------------------------- 1 | uid://br4u8ymur3yg5 2 | -------------------------------------------------------------------------------- /src/SharpIDE.Godot/Features/SolutionExplorer/ContextMenus/Dialogs/RenameDirectoryDialog.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattParkerDev/SharpIDE/HEAD/src/SharpIDE.Godot/Features/SolutionExplorer/ContextMenus/Dialogs/RenameDirectoryDialog.tscn -------------------------------------------------------------------------------- /src/SharpIDE.Godot/Features/SolutionExplorer/ContextMenus/Dialogs/RenameFileDialog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattParkerDev/SharpIDE/HEAD/src/SharpIDE.Godot/Features/SolutionExplorer/ContextMenus/Dialogs/RenameFileDialog.cs -------------------------------------------------------------------------------- /src/SharpIDE.Godot/Features/SolutionExplorer/ContextMenus/Dialogs/RenameFileDialog.cs.uid: -------------------------------------------------------------------------------- 1 | uid://dq72hpd4r54w4 2 | -------------------------------------------------------------------------------- /src/SharpIDE.Godot/Features/SolutionExplorer/ContextMenus/Dialogs/RenameFileDialog.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattParkerDev/SharpIDE/HEAD/src/SharpIDE.Godot/Features/SolutionExplorer/ContextMenus/Dialogs/RenameFileDialog.tscn -------------------------------------------------------------------------------- /src/SharpIDE.Godot/Features/SolutionExplorer/ContextMenus/FileContextMenu.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattParkerDev/SharpIDE/HEAD/src/SharpIDE.Godot/Features/SolutionExplorer/ContextMenus/FileContextMenu.cs -------------------------------------------------------------------------------- /src/SharpIDE.Godot/Features/SolutionExplorer/ContextMenus/FileContextMenu.cs.uid: -------------------------------------------------------------------------------- 1 | uid://scpgdtrgfymx 2 | -------------------------------------------------------------------------------- /src/SharpIDE.Godot/Features/SolutionExplorer/ContextMenus/FolderContextMenu.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattParkerDev/SharpIDE/HEAD/src/SharpIDE.Godot/Features/SolutionExplorer/ContextMenus/FolderContextMenu.cs -------------------------------------------------------------------------------- /src/SharpIDE.Godot/Features/SolutionExplorer/ContextMenus/FolderContextMenu.cs.uid: -------------------------------------------------------------------------------- 1 | uid://0vjuo2vdlpxb 2 | -------------------------------------------------------------------------------- /src/SharpIDE.Godot/Features/SolutionExplorer/ContextMenus/ProjectContextMenu.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattParkerDev/SharpIDE/HEAD/src/SharpIDE.Godot/Features/SolutionExplorer/ContextMenus/ProjectContextMenu.cs -------------------------------------------------------------------------------- /src/SharpIDE.Godot/Features/SolutionExplorer/ContextMenus/ProjectContextMenu.cs.uid: -------------------------------------------------------------------------------- 1 | uid://sskr5wgfs2nc 2 | -------------------------------------------------------------------------------- /src/SharpIDE.Godot/Features/SolutionExplorer/FileIconHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattParkerDev/SharpIDE/HEAD/src/SharpIDE.Godot/Features/SolutionExplorer/FileIconHelper.cs -------------------------------------------------------------------------------- /src/SharpIDE.Godot/Features/SolutionExplorer/FileIconHelper.cs.uid: -------------------------------------------------------------------------------- 1 | uid://8i3v4urj75u5 2 | -------------------------------------------------------------------------------- /src/SharpIDE.Godot/Features/SolutionExplorer/Resources/CsharpFile.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattParkerDev/SharpIDE/HEAD/src/SharpIDE.Godot/Features/SolutionExplorer/Resources/CsharpFile.svg -------------------------------------------------------------------------------- /src/SharpIDE.Godot/Features/SolutionExplorer/Resources/CsharpFile.svg.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattParkerDev/SharpIDE/HEAD/src/SharpIDE.Godot/Features/SolutionExplorer/Resources/CsharpFile.svg.import -------------------------------------------------------------------------------- /src/SharpIDE.Godot/Features/SolutionExplorer/Resources/Csproj.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattParkerDev/SharpIDE/HEAD/src/SharpIDE.Godot/Features/SolutionExplorer/Resources/Csproj.svg -------------------------------------------------------------------------------- /src/SharpIDE.Godot/Features/SolutionExplorer/Resources/Csproj.svg.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattParkerDev/SharpIDE/HEAD/src/SharpIDE.Godot/Features/SolutionExplorer/Resources/Csproj.svg.import -------------------------------------------------------------------------------- /src/SharpIDE.Godot/Features/SolutionExplorer/Resources/FileExtensions/CssFile.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattParkerDev/SharpIDE/HEAD/src/SharpIDE.Godot/Features/SolutionExplorer/Resources/FileExtensions/CssFile.svg -------------------------------------------------------------------------------- /src/SharpIDE.Godot/Features/SolutionExplorer/Resources/FileExtensions/CssFile.svg.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattParkerDev/SharpIDE/HEAD/src/SharpIDE.Godot/Features/SolutionExplorer/Resources/FileExtensions/CssFile.svg.import -------------------------------------------------------------------------------- /src/SharpIDE.Godot/Features/SolutionExplorer/Resources/FileExtensions/EditorConfigFile.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattParkerDev/SharpIDE/HEAD/src/SharpIDE.Godot/Features/SolutionExplorer/Resources/FileExtensions/EditorConfigFile.svg -------------------------------------------------------------------------------- /src/SharpIDE.Godot/Features/SolutionExplorer/Resources/FileExtensions/EditorConfigFile.svg.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattParkerDev/SharpIDE/HEAD/src/SharpIDE.Godot/Features/SolutionExplorer/Resources/FileExtensions/EditorConfigFile.svg.import -------------------------------------------------------------------------------- /src/SharpIDE.Godot/Features/SolutionExplorer/Resources/FileExtensions/FsharpFile.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattParkerDev/SharpIDE/HEAD/src/SharpIDE.Godot/Features/SolutionExplorer/Resources/FileExtensions/FsharpFile.svg -------------------------------------------------------------------------------- /src/SharpIDE.Godot/Features/SolutionExplorer/Resources/FileExtensions/FsharpFile.svg.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattParkerDev/SharpIDE/HEAD/src/SharpIDE.Godot/Features/SolutionExplorer/Resources/FileExtensions/FsharpFile.svg.import -------------------------------------------------------------------------------- /src/SharpIDE.Godot/Features/SolutionExplorer/Resources/FileExtensions/GenericFileDecorations/ConfigFile.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattParkerDev/SharpIDE/HEAD/src/SharpIDE.Godot/Features/SolutionExplorer/Resources/FileExtensions/GenericFileDecorations/ConfigFile.svg -------------------------------------------------------------------------------- /src/SharpIDE.Godot/Features/SolutionExplorer/Resources/FileExtensions/GenericFileDecorations/ConfigFile.svg.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattParkerDev/SharpIDE/HEAD/src/SharpIDE.Godot/Features/SolutionExplorer/Resources/FileExtensions/GenericFileDecorations/ConfigFile.svg.import -------------------------------------------------------------------------------- /src/SharpIDE.Godot/Features/SolutionExplorer/Resources/FileExtensions/GenericFileDecorations/PropsFile.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattParkerDev/SharpIDE/HEAD/src/SharpIDE.Godot/Features/SolutionExplorer/Resources/FileExtensions/GenericFileDecorations/PropsFile.svg -------------------------------------------------------------------------------- /src/SharpIDE.Godot/Features/SolutionExplorer/Resources/FileExtensions/GenericFileDecorations/PropsFile.svg.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattParkerDev/SharpIDE/HEAD/src/SharpIDE.Godot/Features/SolutionExplorer/Resources/FileExtensions/GenericFileDecorations/PropsFile.svg.import -------------------------------------------------------------------------------- /src/SharpIDE.Godot/Features/SolutionExplorer/Resources/FileExtensions/GenericFileDecorations/TargetsFile.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattParkerDev/SharpIDE/HEAD/src/SharpIDE.Godot/Features/SolutionExplorer/Resources/FileExtensions/GenericFileDecorations/TargetsFile.svg -------------------------------------------------------------------------------- /src/SharpIDE.Godot/Features/SolutionExplorer/Resources/FileExtensions/GenericFileDecorations/TargetsFile.svg.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattParkerDev/SharpIDE/HEAD/src/SharpIDE.Godot/Features/SolutionExplorer/Resources/FileExtensions/GenericFileDecorations/TargetsFile.svg.import -------------------------------------------------------------------------------- /src/SharpIDE.Godot/Features/SolutionExplorer/Resources/FileExtensions/GenericFileDecorations/UnknownFile.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattParkerDev/SharpIDE/HEAD/src/SharpIDE.Godot/Features/SolutionExplorer/Resources/FileExtensions/GenericFileDecorations/UnknownFile.svg -------------------------------------------------------------------------------- /src/SharpIDE.Godot/Features/SolutionExplorer/Resources/FileExtensions/GenericFileDecorations/UnknownFile.svg.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattParkerDev/SharpIDE/HEAD/src/SharpIDE.Godot/Features/SolutionExplorer/Resources/FileExtensions/GenericFileDecorations/UnknownFile.svg.import -------------------------------------------------------------------------------- /src/SharpIDE.Godot/Features/SolutionExplorer/Resources/FileExtensions/GenericFileIcon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattParkerDev/SharpIDE/HEAD/src/SharpIDE.Godot/Features/SolutionExplorer/Resources/FileExtensions/GenericFileIcon.svg -------------------------------------------------------------------------------- /src/SharpIDE.Godot/Features/SolutionExplorer/Resources/FileExtensions/GenericFileIcon.svg.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattParkerDev/SharpIDE/HEAD/src/SharpIDE.Godot/Features/SolutionExplorer/Resources/FileExtensions/GenericFileIcon.svg.import -------------------------------------------------------------------------------- /src/SharpIDE.Godot/Features/SolutionExplorer/Resources/FileExtensions/GitIgnoreFile.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattParkerDev/SharpIDE/HEAD/src/SharpIDE.Godot/Features/SolutionExplorer/Resources/FileExtensions/GitIgnoreFile.svg -------------------------------------------------------------------------------- /src/SharpIDE.Godot/Features/SolutionExplorer/Resources/FileExtensions/GitIgnoreFile.svg.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattParkerDev/SharpIDE/HEAD/src/SharpIDE.Godot/Features/SolutionExplorer/Resources/FileExtensions/GitIgnoreFile.svg.import -------------------------------------------------------------------------------- /src/SharpIDE.Godot/Features/SolutionExplorer/Resources/FileExtensions/HtmlFile.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattParkerDev/SharpIDE/HEAD/src/SharpIDE.Godot/Features/SolutionExplorer/Resources/FileExtensions/HtmlFile.svg -------------------------------------------------------------------------------- /src/SharpIDE.Godot/Features/SolutionExplorer/Resources/FileExtensions/HtmlFile.svg.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattParkerDev/SharpIDE/HEAD/src/SharpIDE.Godot/Features/SolutionExplorer/Resources/FileExtensions/HtmlFile.svg.import -------------------------------------------------------------------------------- /src/SharpIDE.Godot/Features/SolutionExplorer/Resources/FileExtensions/ImageFile.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattParkerDev/SharpIDE/HEAD/src/SharpIDE.Godot/Features/SolutionExplorer/Resources/FileExtensions/ImageFile.svg -------------------------------------------------------------------------------- /src/SharpIDE.Godot/Features/SolutionExplorer/Resources/FileExtensions/ImageFile.svg.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattParkerDev/SharpIDE/HEAD/src/SharpIDE.Godot/Features/SolutionExplorer/Resources/FileExtensions/ImageFile.svg.import -------------------------------------------------------------------------------- /src/SharpIDE.Godot/Features/SolutionExplorer/Resources/FileExtensions/JsFile.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattParkerDev/SharpIDE/HEAD/src/SharpIDE.Godot/Features/SolutionExplorer/Resources/FileExtensions/JsFile.svg -------------------------------------------------------------------------------- /src/SharpIDE.Godot/Features/SolutionExplorer/Resources/FileExtensions/JsFile.svg.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattParkerDev/SharpIDE/HEAD/src/SharpIDE.Godot/Features/SolutionExplorer/Resources/FileExtensions/JsFile.svg.import -------------------------------------------------------------------------------- /src/SharpIDE.Godot/Features/SolutionExplorer/Resources/FileExtensions/JsonFile.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattParkerDev/SharpIDE/HEAD/src/SharpIDE.Godot/Features/SolutionExplorer/Resources/FileExtensions/JsonFile.svg -------------------------------------------------------------------------------- /src/SharpIDE.Godot/Features/SolutionExplorer/Resources/FileExtensions/JsonFile.svg.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattParkerDev/SharpIDE/HEAD/src/SharpIDE.Godot/Features/SolutionExplorer/Resources/FileExtensions/JsonFile.svg.import -------------------------------------------------------------------------------- /src/SharpIDE.Godot/Features/SolutionExplorer/Resources/FileExtensions/MdFile.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattParkerDev/SharpIDE/HEAD/src/SharpIDE.Godot/Features/SolutionExplorer/Resources/FileExtensions/MdFile.svg -------------------------------------------------------------------------------- /src/SharpIDE.Godot/Features/SolutionExplorer/Resources/FileExtensions/MdFile.svg.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattParkerDev/SharpIDE/HEAD/src/SharpIDE.Godot/Features/SolutionExplorer/Resources/FileExtensions/MdFile.svg.import -------------------------------------------------------------------------------- /src/SharpIDE.Godot/Features/SolutionExplorer/Resources/FileExtensions/RazorFile.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattParkerDev/SharpIDE/HEAD/src/SharpIDE.Godot/Features/SolutionExplorer/Resources/FileExtensions/RazorFile.svg -------------------------------------------------------------------------------- /src/SharpIDE.Godot/Features/SolutionExplorer/Resources/FileExtensions/RazorFile.svg.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattParkerDev/SharpIDE/HEAD/src/SharpIDE.Godot/Features/SolutionExplorer/Resources/FileExtensions/RazorFile.svg.import -------------------------------------------------------------------------------- /src/SharpIDE.Godot/Features/SolutionExplorer/Resources/FileExtensions/TxtFile.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattParkerDev/SharpIDE/HEAD/src/SharpIDE.Godot/Features/SolutionExplorer/Resources/FileExtensions/TxtFile.svg -------------------------------------------------------------------------------- /src/SharpIDE.Godot/Features/SolutionExplorer/Resources/FileExtensions/TxtFile.svg.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattParkerDev/SharpIDE/HEAD/src/SharpIDE.Godot/Features/SolutionExplorer/Resources/FileExtensions/TxtFile.svg.import -------------------------------------------------------------------------------- /src/SharpIDE.Godot/Features/SolutionExplorer/Resources/FileExtensions/XmlFile.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattParkerDev/SharpIDE/HEAD/src/SharpIDE.Godot/Features/SolutionExplorer/Resources/FileExtensions/XmlFile.svg -------------------------------------------------------------------------------- /src/SharpIDE.Godot/Features/SolutionExplorer/Resources/FileExtensions/XmlFile.svg.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattParkerDev/SharpIDE/HEAD/src/SharpIDE.Godot/Features/SolutionExplorer/Resources/FileExtensions/XmlFile.svg.import -------------------------------------------------------------------------------- /src/SharpIDE.Godot/Features/SolutionExplorer/Resources/FolderIcon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattParkerDev/SharpIDE/HEAD/src/SharpIDE.Godot/Features/SolutionExplorer/Resources/FolderIcon.svg -------------------------------------------------------------------------------- /src/SharpIDE.Godot/Features/SolutionExplorer/Resources/FolderIcon.svg.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattParkerDev/SharpIDE/HEAD/src/SharpIDE.Godot/Features/SolutionExplorer/Resources/FolderIcon.svg.import -------------------------------------------------------------------------------- /src/SharpIDE.Godot/Features/SolutionExplorer/Resources/SlnBaseIcon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattParkerDev/SharpIDE/HEAD/src/SharpIDE.Godot/Features/SolutionExplorer/Resources/SlnBaseIcon.svg -------------------------------------------------------------------------------- /src/SharpIDE.Godot/Features/SolutionExplorer/Resources/SlnBaseIcon.svg.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattParkerDev/SharpIDE/HEAD/src/SharpIDE.Godot/Features/SolutionExplorer/Resources/SlnBaseIcon.svg.import -------------------------------------------------------------------------------- /src/SharpIDE.Godot/Features/SolutionExplorer/Resources/SlnFolderIcon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattParkerDev/SharpIDE/HEAD/src/SharpIDE.Godot/Features/SolutionExplorer/Resources/SlnFolderIcon.svg -------------------------------------------------------------------------------- /src/SharpIDE.Godot/Features/SolutionExplorer/Resources/SlnFolderIcon.svg.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattParkerDev/SharpIDE/HEAD/src/SharpIDE.Godot/Features/SolutionExplorer/Resources/SlnFolderIcon.svg.import -------------------------------------------------------------------------------- /src/SharpIDE.Godot/Features/SolutionExplorer/Resources/SlnIcon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattParkerDev/SharpIDE/HEAD/src/SharpIDE.Godot/Features/SolutionExplorer/Resources/SlnIcon.svg -------------------------------------------------------------------------------- /src/SharpIDE.Godot/Features/SolutionExplorer/Resources/SlnIcon.svg.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattParkerDev/SharpIDE/HEAD/src/SharpIDE.Godot/Features/SolutionExplorer/Resources/SlnIcon.svg.import -------------------------------------------------------------------------------- /src/SharpIDE.Godot/Features/SolutionExplorer/SolutionExplorerPanel.Clipboard.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattParkerDev/SharpIDE/HEAD/src/SharpIDE.Godot/Features/SolutionExplorer/SolutionExplorerPanel.Clipboard.cs -------------------------------------------------------------------------------- /src/SharpIDE.Godot/Features/SolutionExplorer/SolutionExplorerPanel.Clipboard.cs.uid: -------------------------------------------------------------------------------- 1 | uid://3vyxuek1gy86 2 | -------------------------------------------------------------------------------- /src/SharpIDE.Godot/Features/SolutionExplorer/SolutionExplorerPanel.FileIcons.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattParkerDev/SharpIDE/HEAD/src/SharpIDE.Godot/Features/SolutionExplorer/SolutionExplorerPanel.FileIcons.cs -------------------------------------------------------------------------------- /src/SharpIDE.Godot/Features/SolutionExplorer/SolutionExplorerPanel.FileIcons.cs.uid: -------------------------------------------------------------------------------- 1 | uid://bwr8t3txvnnux 2 | -------------------------------------------------------------------------------- /src/SharpIDE.Godot/Features/SolutionExplorer/SolutionExplorerPanel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattParkerDev/SharpIDE/HEAD/src/SharpIDE.Godot/Features/SolutionExplorer/SolutionExplorerPanel.cs -------------------------------------------------------------------------------- /src/SharpIDE.Godot/Features/SolutionExplorer/SolutionExplorerPanel.cs.uid: -------------------------------------------------------------------------------- 1 | uid://bai53k7ongbxw 2 | -------------------------------------------------------------------------------- /src/SharpIDE.Godot/Features/SolutionExplorer/SolutionExplorerPanel.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattParkerDev/SharpIDE/HEAD/src/SharpIDE.Godot/Features/SolutionExplorer/SolutionExplorerPanel.tscn -------------------------------------------------------------------------------- /src/SharpIDE.Godot/Features/SymbolLookup/SymbolLookupPopup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattParkerDev/SharpIDE/HEAD/src/SharpIDE.Godot/Features/SymbolLookup/SymbolLookupPopup.cs -------------------------------------------------------------------------------- /src/SharpIDE.Godot/Features/SymbolLookup/SymbolLookupPopup.cs.uid: -------------------------------------------------------------------------------- 1 | uid://cxxo2sex03ox5 2 | -------------------------------------------------------------------------------- /src/SharpIDE.Godot/Features/SymbolLookup/SymbolLookupPopup.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattParkerDev/SharpIDE/HEAD/src/SharpIDE.Godot/Features/SymbolLookup/SymbolLookupPopup.tscn -------------------------------------------------------------------------------- /src/SharpIDE.Godot/Features/SymbolLookup/SymbolUsageComponent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattParkerDev/SharpIDE/HEAD/src/SharpIDE.Godot/Features/SymbolLookup/SymbolUsageComponent.cs -------------------------------------------------------------------------------- /src/SharpIDE.Godot/Features/SymbolLookup/SymbolUsageComponent.cs.uid: -------------------------------------------------------------------------------- 1 | uid://ct037eoc26o04 2 | -------------------------------------------------------------------------------- /src/SharpIDE.Godot/Features/SymbolLookup/SymbolUsageComponent.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattParkerDev/SharpIDE/HEAD/src/SharpIDE.Godot/Features/SymbolLookup/SymbolUsageComponent.tscn -------------------------------------------------------------------------------- /src/SharpIDE.Godot/Features/TerminalBase/TerminalTheme.tres: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattParkerDev/SharpIDE/HEAD/src/SharpIDE.Godot/Features/TerminalBase/TerminalTheme.tres -------------------------------------------------------------------------------- /src/SharpIDE.Godot/Features/TestExplorer/TestExplorerPanel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattParkerDev/SharpIDE/HEAD/src/SharpIDE.Godot/Features/TestExplorer/TestExplorerPanel.cs -------------------------------------------------------------------------------- /src/SharpIDE.Godot/Features/TestExplorer/TestExplorerPanel.cs.uid: -------------------------------------------------------------------------------- 1 | uid://8o78ti2hb0pu 2 | -------------------------------------------------------------------------------- /src/SharpIDE.Godot/Features/TestExplorer/TestExplorerPanel.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattParkerDev/SharpIDE/HEAD/src/SharpIDE.Godot/Features/TestExplorer/TestExplorerPanel.tscn -------------------------------------------------------------------------------- /src/SharpIDE.Godot/Features/TestExplorer/TestNodeEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattParkerDev/SharpIDE/HEAD/src/SharpIDE.Godot/Features/TestExplorer/TestNodeEntry.cs -------------------------------------------------------------------------------- /src/SharpIDE.Godot/Features/TestExplorer/TestNodeEntry.cs.uid: -------------------------------------------------------------------------------- 1 | uid://cnfayblofyjwn 2 | -------------------------------------------------------------------------------- /src/SharpIDE.Godot/Features/TestExplorer/TestNodeEntry.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattParkerDev/SharpIDE/HEAD/src/SharpIDE.Godot/Features/TestExplorer/TestNodeEntry.tscn -------------------------------------------------------------------------------- /src/SharpIDE.Godot/GDExtensionBindgen/PTY.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattParkerDev/SharpIDE/HEAD/src/SharpIDE.Godot/GDExtensionBindgen/PTY.cs -------------------------------------------------------------------------------- /src/SharpIDE.Godot/GDExtensionBindgen/PTY.cs.uid: -------------------------------------------------------------------------------- 1 | uid://h0iecoac1l48 2 | -------------------------------------------------------------------------------- /src/SharpIDE.Godot/GDExtensionBindgen/Terminal.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattParkerDev/SharpIDE/HEAD/src/SharpIDE.Godot/GDExtensionBindgen/Terminal.cs -------------------------------------------------------------------------------- /src/SharpIDE.Godot/GDExtensionBindgen/Terminal.cs.uid: -------------------------------------------------------------------------------- 1 | uid://cnwhkhvgxtf6x 2 | -------------------------------------------------------------------------------- /src/SharpIDE.Godot/GlobalUsings.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/SharpIDE.Godot/GlobalUsings.cs.uid: -------------------------------------------------------------------------------- 1 | uid://dv0ry6n8t1vb 2 | -------------------------------------------------------------------------------- /src/SharpIDE.Godot/GodotGlobalEvents.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattParkerDev/SharpIDE/HEAD/src/SharpIDE.Godot/GodotGlobalEvents.cs -------------------------------------------------------------------------------- /src/SharpIDE.Godot/GodotGlobalEvents.cs.uid: -------------------------------------------------------------------------------- 1 | uid://dgws4lmqv2bsf 2 | -------------------------------------------------------------------------------- /src/SharpIDE.Godot/IdeRoot.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattParkerDev/SharpIDE/HEAD/src/SharpIDE.Godot/IdeRoot.cs -------------------------------------------------------------------------------- /src/SharpIDE.Godot/IdeRoot.cs.uid: -------------------------------------------------------------------------------- 1 | uid://bavypuy7b375x 2 | -------------------------------------------------------------------------------- /src/SharpIDE.Godot/IdeRoot.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattParkerDev/SharpIDE/HEAD/src/SharpIDE.Godot/IdeRoot.tscn -------------------------------------------------------------------------------- /src/SharpIDE.Godot/IdeWindow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattParkerDev/SharpIDE/HEAD/src/SharpIDE.Godot/IdeWindow.cs -------------------------------------------------------------------------------- /src/SharpIDE.Godot/IdeWindow.cs.uid: -------------------------------------------------------------------------------- 1 | uid://bul4kkrg1yhqx 2 | -------------------------------------------------------------------------------- /src/SharpIDE.Godot/IdeWindow.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattParkerDev/SharpIDE/HEAD/src/SharpIDE.Godot/IdeWindow.tscn -------------------------------------------------------------------------------- /src/SharpIDE.Godot/InputStringNames.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattParkerDev/SharpIDE/HEAD/src/SharpIDE.Godot/InputStringNames.cs -------------------------------------------------------------------------------- /src/SharpIDE.Godot/InputStringNames.cs.uid: -------------------------------------------------------------------------------- 1 | uid://c8dler1dxpwda 2 | -------------------------------------------------------------------------------- /src/SharpIDE.Godot/Inter-VariableFont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattParkerDev/SharpIDE/HEAD/src/SharpIDE.Godot/Inter-VariableFont.ttf -------------------------------------------------------------------------------- /src/SharpIDE.Godot/Inter-VariableFont.ttf.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattParkerDev/SharpIDE/HEAD/src/SharpIDE.Godot/Inter-VariableFont.ttf.import -------------------------------------------------------------------------------- /src/SharpIDE.Godot/NodeExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattParkerDev/SharpIDE/HEAD/src/SharpIDE.Godot/NodeExtensions.cs -------------------------------------------------------------------------------- /src/SharpIDE.Godot/NodeExtensions.cs.uid: -------------------------------------------------------------------------------- 1 | uid://cpdxatadoqpmm 2 | -------------------------------------------------------------------------------- /src/SharpIDE.Godot/Resources/SharpIde.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattParkerDev/SharpIDE/HEAD/src/SharpIDE.Godot/Resources/SharpIde.png -------------------------------------------------------------------------------- /src/SharpIDE.Godot/Resources/SharpIde.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattParkerDev/SharpIDE/HEAD/src/SharpIDE.Godot/Resources/SharpIde.png.import -------------------------------------------------------------------------------- /src/SharpIDE.Godot/Resources/SharpIde.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattParkerDev/SharpIDE/HEAD/src/SharpIDE.Godot/Resources/SharpIde.svg -------------------------------------------------------------------------------- /src/SharpIDE.Godot/Resources/SharpIde.svg.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattParkerDev/SharpIDE/HEAD/src/SharpIDE.Godot/Resources/SharpIde.svg.import -------------------------------------------------------------------------------- /src/SharpIDE.Godot/Resources/SharpIdeSplash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattParkerDev/SharpIDE/HEAD/src/SharpIDE.Godot/Resources/SharpIdeSplash.png -------------------------------------------------------------------------------- /src/SharpIDE.Godot/Resources/SharpIdeSplash.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattParkerDev/SharpIDE/HEAD/src/SharpIDE.Godot/Resources/SharpIdeSplash.png.import -------------------------------------------------------------------------------- /src/SharpIDE.Godot/Resources/SharpIdeSplash.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattParkerDev/SharpIDE/HEAD/src/SharpIDE.Godot/Resources/SharpIdeSplash.svg -------------------------------------------------------------------------------- /src/SharpIDE.Godot/Resources/SharpIdeSplash.svg.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattParkerDev/SharpIDE/HEAD/src/SharpIDE.Godot/Resources/SharpIdeSplash.svg.import -------------------------------------------------------------------------------- /src/SharpIDE.Godot/Resources/SharpIdeV2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattParkerDev/SharpIDE/HEAD/src/SharpIDE.Godot/Resources/SharpIdeV2.svg -------------------------------------------------------------------------------- /src/SharpIDE.Godot/Resources/SharpIdeV2.svg.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattParkerDev/SharpIDE/HEAD/src/SharpIDE.Godot/Resources/SharpIdeV2.svg.import -------------------------------------------------------------------------------- /src/SharpIDE.Godot/Resources/SharpIdeV3.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattParkerDev/SharpIDE/HEAD/src/SharpIDE.Godot/Resources/SharpIdeV3.svg -------------------------------------------------------------------------------- /src/SharpIDE.Godot/Resources/SharpIdeV3.svg.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattParkerDev/SharpIDE/HEAD/src/SharpIDE.Godot/Resources/SharpIdeV3.svg.import -------------------------------------------------------------------------------- /src/SharpIDE.Godot/Resources/refresh.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattParkerDev/SharpIDE/HEAD/src/SharpIDE.Godot/Resources/refresh.svg -------------------------------------------------------------------------------- /src/SharpIDE.Godot/Resources/refresh.svg.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattParkerDev/SharpIDE/HEAD/src/SharpIDE.Godot/Resources/refresh.svg.import -------------------------------------------------------------------------------- /src/SharpIDE.Godot/Resources/settings.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattParkerDev/SharpIDE/HEAD/src/SharpIDE.Godot/Resources/settings.svg -------------------------------------------------------------------------------- /src/SharpIDE.Godot/Resources/settings.svg.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattParkerDev/SharpIDE/HEAD/src/SharpIDE.Godot/Resources/settings.svg.import -------------------------------------------------------------------------------- /src/SharpIDE.Godot/SharpIDE.Godot.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattParkerDev/SharpIDE/HEAD/src/SharpIDE.Godot/SharpIDE.Godot.csproj -------------------------------------------------------------------------------- /src/SharpIDE.Godot/SharpIDE.Godot.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattParkerDev/SharpIDE/HEAD/src/SharpIDE.Godot/SharpIDE.Godot.sln -------------------------------------------------------------------------------- /src/SharpIDE.Godot/SharpIdeSolutionAccessor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattParkerDev/SharpIDE/HEAD/src/SharpIDE.Godot/SharpIdeSolutionAccessor.cs -------------------------------------------------------------------------------- /src/SharpIDE.Godot/SharpIdeSolutionAccessor.cs.uid: -------------------------------------------------------------------------------- 1 | uid://c4yqvlku4akmt 2 | -------------------------------------------------------------------------------- /src/SharpIDE.Godot/Singletons.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattParkerDev/SharpIDE/HEAD/src/SharpIDE.Godot/Singletons.cs -------------------------------------------------------------------------------- /src/SharpIDE.Godot/Singletons.cs.uid: -------------------------------------------------------------------------------- 1 | uid://hgugdj2v8ufh 2 | -------------------------------------------------------------------------------- /src/SharpIDE.Godot/addons/R3.Godot/FrameProviderDispatcher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattParkerDev/SharpIDE/HEAD/src/SharpIDE.Godot/addons/R3.Godot/FrameProviderDispatcher.cs -------------------------------------------------------------------------------- /src/SharpIDE.Godot/addons/R3.Godot/FrameProviderDispatcher.cs.uid: -------------------------------------------------------------------------------- 1 | uid://ngclnv5y220f 2 | -------------------------------------------------------------------------------- /src/SharpIDE.Godot/addons/R3.Godot/GodotFrameProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattParkerDev/SharpIDE/HEAD/src/SharpIDE.Godot/addons/R3.Godot/GodotFrameProvider.cs -------------------------------------------------------------------------------- /src/SharpIDE.Godot/addons/R3.Godot/GodotFrameProvider.cs.uid: -------------------------------------------------------------------------------- 1 | uid://bus13cr6ba71l 2 | -------------------------------------------------------------------------------- /src/SharpIDE.Godot/addons/R3.Godot/GodotNodeExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattParkerDev/SharpIDE/HEAD/src/SharpIDE.Godot/addons/R3.Godot/GodotNodeExtensions.cs -------------------------------------------------------------------------------- /src/SharpIDE.Godot/addons/R3.Godot/GodotNodeExtensions.cs.uid: -------------------------------------------------------------------------------- 1 | uid://cob4ct214hg4v 2 | -------------------------------------------------------------------------------- /src/SharpIDE.Godot/addons/R3.Godot/GodotObservableExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattParkerDev/SharpIDE/HEAD/src/SharpIDE.Godot/addons/R3.Godot/GodotObservableExtensions.cs -------------------------------------------------------------------------------- /src/SharpIDE.Godot/addons/R3.Godot/GodotObservableExtensions.cs.uid: -------------------------------------------------------------------------------- 1 | uid://8lnifa1x4o6e 2 | -------------------------------------------------------------------------------- /src/SharpIDE.Godot/addons/R3.Godot/GodotProviderInitializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattParkerDev/SharpIDE/HEAD/src/SharpIDE.Godot/addons/R3.Godot/GodotProviderInitializer.cs -------------------------------------------------------------------------------- /src/SharpIDE.Godot/addons/R3.Godot/GodotProviderInitializer.cs.uid: -------------------------------------------------------------------------------- 1 | uid://cfm1x8aucvw47 2 | -------------------------------------------------------------------------------- /src/SharpIDE.Godot/addons/R3.Godot/GodotR3Plugin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattParkerDev/SharpIDE/HEAD/src/SharpIDE.Godot/addons/R3.Godot/GodotR3Plugin.cs -------------------------------------------------------------------------------- /src/SharpIDE.Godot/addons/R3.Godot/GodotR3Plugin.cs.uid: -------------------------------------------------------------------------------- 1 | uid://cdglfkymcq38j 2 | -------------------------------------------------------------------------------- /src/SharpIDE.Godot/addons/R3.Godot/GodotSignalMapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattParkerDev/SharpIDE/HEAD/src/SharpIDE.Godot/addons/R3.Godot/GodotSignalMapper.cs -------------------------------------------------------------------------------- /src/SharpIDE.Godot/addons/R3.Godot/GodotSignalMapper.cs.uid: -------------------------------------------------------------------------------- 1 | uid://cwsypls11xo1t 2 | -------------------------------------------------------------------------------- /src/SharpIDE.Godot/addons/R3.Godot/GodotTimeProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattParkerDev/SharpIDE/HEAD/src/SharpIDE.Godot/addons/R3.Godot/GodotTimeProvider.cs -------------------------------------------------------------------------------- /src/SharpIDE.Godot/addons/R3.Godot/GodotTimeProvider.cs.uid: -------------------------------------------------------------------------------- 1 | uid://dvccr1jhyokui 2 | -------------------------------------------------------------------------------- /src/SharpIDE.Godot/addons/R3.Godot/GodotUINodeExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattParkerDev/SharpIDE/HEAD/src/SharpIDE.Godot/addons/R3.Godot/GodotUINodeExtensions.cs -------------------------------------------------------------------------------- /src/SharpIDE.Godot/addons/R3.Godot/GodotUINodeExtensions.cs.uid: -------------------------------------------------------------------------------- 1 | uid://syarh3o2acgh 2 | -------------------------------------------------------------------------------- /src/SharpIDE.Godot/addons/R3.Godot/ObservableTrackerDebuggerPlugin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattParkerDev/SharpIDE/HEAD/src/SharpIDE.Godot/addons/R3.Godot/ObservableTrackerDebuggerPlugin.cs -------------------------------------------------------------------------------- /src/SharpIDE.Godot/addons/R3.Godot/ObservableTrackerDebuggerPlugin.cs.uid: -------------------------------------------------------------------------------- 1 | uid://bhe85bu3rgxja 2 | -------------------------------------------------------------------------------- /src/SharpIDE.Godot/addons/R3.Godot/ObservableTrackerRuntimeHook.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattParkerDev/SharpIDE/HEAD/src/SharpIDE.Godot/addons/R3.Godot/ObservableTrackerRuntimeHook.cs -------------------------------------------------------------------------------- /src/SharpIDE.Godot/addons/R3.Godot/ObservableTrackerRuntimeHook.cs.uid: -------------------------------------------------------------------------------- 1 | uid://dwd2efc46qc0v 2 | -------------------------------------------------------------------------------- /src/SharpIDE.Godot/addons/R3.Godot/ObservableTrackerTab.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattParkerDev/SharpIDE/HEAD/src/SharpIDE.Godot/addons/R3.Godot/ObservableTrackerTab.cs -------------------------------------------------------------------------------- /src/SharpIDE.Godot/addons/R3.Godot/ObservableTrackerTab.cs.uid: -------------------------------------------------------------------------------- 1 | uid://c2u5u8xkqvh1c 2 | -------------------------------------------------------------------------------- /src/SharpIDE.Godot/addons/R3.Godot/ObservableTrackerTree.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattParkerDev/SharpIDE/HEAD/src/SharpIDE.Godot/addons/R3.Godot/ObservableTrackerTree.cs -------------------------------------------------------------------------------- /src/SharpIDE.Godot/addons/R3.Godot/ObservableTrackerTree.cs.uid: -------------------------------------------------------------------------------- 1 | uid://crct8t2w3hcce 2 | -------------------------------------------------------------------------------- /src/SharpIDE.Godot/addons/R3.Godot/plugin.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattParkerDev/SharpIDE/HEAD/src/SharpIDE.Godot/addons/R3.Godot/plugin.cfg -------------------------------------------------------------------------------- /src/SharpIDE.Godot/addons/csharp_gdextension_bindgen/UNLICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattParkerDev/SharpIDE/HEAD/src/SharpIDE.Godot/addons/csharp_gdextension_bindgen/UNLICENSE -------------------------------------------------------------------------------- /src/SharpIDE.Godot/addons/csharp_gdextension_bindgen/cli_entrypoint.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattParkerDev/SharpIDE/HEAD/src/SharpIDE.Godot/addons/csharp_gdextension_bindgen/cli_entrypoint.gd -------------------------------------------------------------------------------- /src/SharpIDE.Godot/addons/csharp_gdextension_bindgen/cli_entrypoint.gd.uid: -------------------------------------------------------------------------------- 1 | uid://najinjv0m445 2 | -------------------------------------------------------------------------------- /src/SharpIDE.Godot/addons/csharp_gdextension_bindgen/csharp_gdextension_bindgen.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattParkerDev/SharpIDE/HEAD/src/SharpIDE.Godot/addons/csharp_gdextension_bindgen/csharp_gdextension_bindgen.gd -------------------------------------------------------------------------------- /src/SharpIDE.Godot/addons/csharp_gdextension_bindgen/csharp_gdextension_bindgen.gd.uid: -------------------------------------------------------------------------------- 1 | uid://cy4tmwy5iyogu 2 | -------------------------------------------------------------------------------- /src/SharpIDE.Godot/addons/csharp_gdextension_bindgen/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattParkerDev/SharpIDE/HEAD/src/SharpIDE.Godot/addons/csharp_gdextension_bindgen/icon.png -------------------------------------------------------------------------------- /src/SharpIDE.Godot/addons/csharp_gdextension_bindgen/icon.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattParkerDev/SharpIDE/HEAD/src/SharpIDE.Godot/addons/csharp_gdextension_bindgen/icon.png.import -------------------------------------------------------------------------------- /src/SharpIDE.Godot/addons/csharp_gdextension_bindgen/plugin.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattParkerDev/SharpIDE/HEAD/src/SharpIDE.Godot/addons/csharp_gdextension_bindgen/plugin.cfg -------------------------------------------------------------------------------- /src/SharpIDE.Godot/addons/godot_xterm/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattParkerDev/SharpIDE/HEAD/src/SharpIDE.Godot/addons/godot_xterm/LICENSE.md -------------------------------------------------------------------------------- /src/SharpIDE.Godot/addons/godot_xterm/THIRDPARTY_NOTICES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattParkerDev/SharpIDE/HEAD/src/SharpIDE.Godot/addons/godot_xterm/THIRDPARTY_NOTICES.txt -------------------------------------------------------------------------------- /src/SharpIDE.Godot/addons/godot_xterm/THIRDPARTY_NOTICES_nopty.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattParkerDev/SharpIDE/HEAD/src/SharpIDE.Godot/addons/godot_xterm/THIRDPARTY_NOTICES_nopty.txt -------------------------------------------------------------------------------- /src/SharpIDE.Godot/addons/godot_xterm/editor_plugins/terminal/editor_terminal.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattParkerDev/SharpIDE/HEAD/src/SharpIDE.Godot/addons/godot_xterm/editor_plugins/terminal/editor_terminal.gd -------------------------------------------------------------------------------- /src/SharpIDE.Godot/addons/godot_xterm/editor_plugins/terminal/editor_terminal.gd.uid: -------------------------------------------------------------------------------- 1 | uid://cgjg4p52appdp 2 | -------------------------------------------------------------------------------- /src/SharpIDE.Godot/addons/godot_xterm/editor_plugins/terminal/editor_terminal.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattParkerDev/SharpIDE/HEAD/src/SharpIDE.Godot/addons/godot_xterm/editor_plugins/terminal/editor_terminal.tscn -------------------------------------------------------------------------------- /src/SharpIDE.Godot/addons/godot_xterm/editor_plugins/terminal/settings/default_copy_shortcut.tres: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattParkerDev/SharpIDE/HEAD/src/SharpIDE.Godot/addons/godot_xterm/editor_plugins/terminal/settings/default_copy_shortcut.tres -------------------------------------------------------------------------------- /src/SharpIDE.Godot/addons/godot_xterm/editor_plugins/terminal/settings/default_kill_terminal_shortcut.tres: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattParkerDev/SharpIDE/HEAD/src/SharpIDE.Godot/addons/godot_xterm/editor_plugins/terminal/settings/default_kill_terminal_shortcut.tres -------------------------------------------------------------------------------- /src/SharpIDE.Godot/addons/godot_xterm/editor_plugins/terminal/settings/default_new_terminal_shortcut.tres: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattParkerDev/SharpIDE/HEAD/src/SharpIDE.Godot/addons/godot_xterm/editor_plugins/terminal/settings/default_new_terminal_shortcut.tres -------------------------------------------------------------------------------- /src/SharpIDE.Godot/addons/godot_xterm/editor_plugins/terminal/settings/default_paste_shortcut.tres: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattParkerDev/SharpIDE/HEAD/src/SharpIDE.Godot/addons/godot_xterm/editor_plugins/terminal/settings/default_paste_shortcut.tres -------------------------------------------------------------------------------- /src/SharpIDE.Godot/addons/godot_xterm/editor_plugins/terminal/settings/default_tab_left_shortcut.tres: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattParkerDev/SharpIDE/HEAD/src/SharpIDE.Godot/addons/godot_xterm/editor_plugins/terminal/settings/default_tab_left_shortcut.tres -------------------------------------------------------------------------------- /src/SharpIDE.Godot/addons/godot_xterm/editor_plugins/terminal/settings/default_tab_right_shortcut.tres: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattParkerDev/SharpIDE/HEAD/src/SharpIDE.Godot/addons/godot_xterm/editor_plugins/terminal/settings/default_tab_right_shortcut.tres -------------------------------------------------------------------------------- /src/SharpIDE.Godot/addons/godot_xterm/editor_plugins/terminal/settings/terminal_settings.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattParkerDev/SharpIDE/HEAD/src/SharpIDE.Godot/addons/godot_xterm/editor_plugins/terminal/settings/terminal_settings.gd -------------------------------------------------------------------------------- /src/SharpIDE.Godot/addons/godot_xterm/editor_plugins/terminal/settings/terminal_settings.gd.uid: -------------------------------------------------------------------------------- 1 | uid://b6t33wgbi4wx5 2 | -------------------------------------------------------------------------------- /src/SharpIDE.Godot/addons/godot_xterm/editor_plugins/terminal/terminal_panel.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattParkerDev/SharpIDE/HEAD/src/SharpIDE.Godot/addons/godot_xterm/editor_plugins/terminal/terminal_panel.gd -------------------------------------------------------------------------------- /src/SharpIDE.Godot/addons/godot_xterm/editor_plugins/terminal/terminal_panel.gd.uid: -------------------------------------------------------------------------------- 1 | uid://cufcnr6pxqofk 2 | -------------------------------------------------------------------------------- /src/SharpIDE.Godot/addons/godot_xterm/editor_plugins/terminal/terminal_panel.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattParkerDev/SharpIDE/HEAD/src/SharpIDE.Godot/addons/godot_xterm/editor_plugins/terminal/terminal_panel.tscn -------------------------------------------------------------------------------- /src/SharpIDE.Godot/addons/godot_xterm/godot-xterm.gdextension: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattParkerDev/SharpIDE/HEAD/src/SharpIDE.Godot/addons/godot_xterm/godot-xterm.gdextension -------------------------------------------------------------------------------- /src/SharpIDE.Godot/addons/godot_xterm/godot-xterm.gdextension.uid: -------------------------------------------------------------------------------- 1 | uid://xlyw0p2epn3l 2 | -------------------------------------------------------------------------------- /src/SharpIDE.Godot/addons/godot_xterm/icons/pty_icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattParkerDev/SharpIDE/HEAD/src/SharpIDE.Godot/addons/godot_xterm/icons/pty_icon.svg -------------------------------------------------------------------------------- /src/SharpIDE.Godot/addons/godot_xterm/icons/pty_icon.svg.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattParkerDev/SharpIDE/HEAD/src/SharpIDE.Godot/addons/godot_xterm/icons/pty_icon.svg.import -------------------------------------------------------------------------------- /src/SharpIDE.Godot/addons/godot_xterm/icons/terminal_icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattParkerDev/SharpIDE/HEAD/src/SharpIDE.Godot/addons/godot_xterm/icons/terminal_icon.svg -------------------------------------------------------------------------------- /src/SharpIDE.Godot/addons/godot_xterm/icons/terminal_icon.svg.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattParkerDev/SharpIDE/HEAD/src/SharpIDE.Godot/addons/godot_xterm/icons/terminal_icon.svg.import -------------------------------------------------------------------------------- /src/SharpIDE.Godot/addons/godot_xterm/import_plugins/asciicast_import_plugin.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattParkerDev/SharpIDE/HEAD/src/SharpIDE.Godot/addons/godot_xterm/import_plugins/asciicast_import_plugin.gd -------------------------------------------------------------------------------- /src/SharpIDE.Godot/addons/godot_xterm/import_plugins/asciicast_import_plugin.gd.uid: -------------------------------------------------------------------------------- 1 | uid://ghf570kuknhi 2 | -------------------------------------------------------------------------------- /src/SharpIDE.Godot/addons/godot_xterm/import_plugins/xrdb_import_plugin.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattParkerDev/SharpIDE/HEAD/src/SharpIDE.Godot/addons/godot_xterm/import_plugins/xrdb_import_plugin.gd -------------------------------------------------------------------------------- /src/SharpIDE.Godot/addons/godot_xterm/import_plugins/xrdb_import_plugin.gd.uid: -------------------------------------------------------------------------------- 1 | uid://dgssqoaaxy4xh 2 | -------------------------------------------------------------------------------- /src/SharpIDE.Godot/addons/godot_xterm/lib/arm32/libstdc++.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattParkerDev/SharpIDE/HEAD/src/SharpIDE.Godot/addons/godot_xterm/lib/arm32/libstdc++.so -------------------------------------------------------------------------------- /src/SharpIDE.Godot/addons/godot_xterm/lib/libgodot-xterm.linux.template_debug.arm32.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattParkerDev/SharpIDE/HEAD/src/SharpIDE.Godot/addons/godot_xterm/lib/libgodot-xterm.linux.template_debug.arm32.so -------------------------------------------------------------------------------- /src/SharpIDE.Godot/addons/godot_xterm/lib/libgodot-xterm.linux.template_debug.arm64.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattParkerDev/SharpIDE/HEAD/src/SharpIDE.Godot/addons/godot_xterm/lib/libgodot-xterm.linux.template_debug.arm64.so -------------------------------------------------------------------------------- /src/SharpIDE.Godot/addons/godot_xterm/lib/libgodot-xterm.linux.template_debug.x86_32.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattParkerDev/SharpIDE/HEAD/src/SharpIDE.Godot/addons/godot_xterm/lib/libgodot-xterm.linux.template_debug.x86_32.so -------------------------------------------------------------------------------- /src/SharpIDE.Godot/addons/godot_xterm/lib/libgodot-xterm.linux.template_debug.x86_64.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattParkerDev/SharpIDE/HEAD/src/SharpIDE.Godot/addons/godot_xterm/lib/libgodot-xterm.linux.template_debug.x86_64.so -------------------------------------------------------------------------------- /src/SharpIDE.Godot/addons/godot_xterm/lib/libgodot-xterm.linux.template_release.arm32.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattParkerDev/SharpIDE/HEAD/src/SharpIDE.Godot/addons/godot_xterm/lib/libgodot-xterm.linux.template_release.arm32.so -------------------------------------------------------------------------------- /src/SharpIDE.Godot/addons/godot_xterm/lib/libgodot-xterm.linux.template_release.arm64.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattParkerDev/SharpIDE/HEAD/src/SharpIDE.Godot/addons/godot_xterm/lib/libgodot-xterm.linux.template_release.arm64.so -------------------------------------------------------------------------------- /src/SharpIDE.Godot/addons/godot_xterm/lib/libgodot-xterm.linux.template_release.x86_32.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattParkerDev/SharpIDE/HEAD/src/SharpIDE.Godot/addons/godot_xterm/lib/libgodot-xterm.linux.template_release.x86_32.so -------------------------------------------------------------------------------- /src/SharpIDE.Godot/addons/godot_xterm/lib/libgodot-xterm.linux.template_release.x86_64.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattParkerDev/SharpIDE/HEAD/src/SharpIDE.Godot/addons/godot_xterm/lib/libgodot-xterm.linux.template_release.x86_64.so -------------------------------------------------------------------------------- /src/SharpIDE.Godot/addons/godot_xterm/lib/libgodot-xterm.macos.template_debug.framework/libgodot-xterm.macos.template_debug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattParkerDev/SharpIDE/HEAD/src/SharpIDE.Godot/addons/godot_xterm/lib/libgodot-xterm.macos.template_debug.framework/libgodot-xterm.macos.template_debug -------------------------------------------------------------------------------- /src/SharpIDE.Godot/addons/godot_xterm/lib/libgodot-xterm.macos.template_release.framework/libgodot-xterm.macos.template_release: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattParkerDev/SharpIDE/HEAD/src/SharpIDE.Godot/addons/godot_xterm/lib/libgodot-xterm.macos.template_release.framework/libgodot-xterm.macos.template_release -------------------------------------------------------------------------------- /src/SharpIDE.Godot/addons/godot_xterm/lib/libgodot-xterm.web.template_debug.wasm32.wasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattParkerDev/SharpIDE/HEAD/src/SharpIDE.Godot/addons/godot_xterm/lib/libgodot-xterm.web.template_debug.wasm32.wasm -------------------------------------------------------------------------------- /src/SharpIDE.Godot/addons/godot_xterm/lib/libgodot-xterm.web.template_release.wasm32.wasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattParkerDev/SharpIDE/HEAD/src/SharpIDE.Godot/addons/godot_xterm/lib/libgodot-xterm.web.template_release.wasm32.wasm -------------------------------------------------------------------------------- /src/SharpIDE.Godot/addons/godot_xterm/lib/libgodot-xterm.windows.template_debug.arm64.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattParkerDev/SharpIDE/HEAD/src/SharpIDE.Godot/addons/godot_xterm/lib/libgodot-xterm.windows.template_debug.arm64.dll -------------------------------------------------------------------------------- /src/SharpIDE.Godot/addons/godot_xterm/lib/libgodot-xterm.windows.template_debug.x86_32.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattParkerDev/SharpIDE/HEAD/src/SharpIDE.Godot/addons/godot_xterm/lib/libgodot-xterm.windows.template_debug.x86_32.dll -------------------------------------------------------------------------------- /src/SharpIDE.Godot/addons/godot_xterm/lib/libgodot-xterm.windows.template_debug.x86_64.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattParkerDev/SharpIDE/HEAD/src/SharpIDE.Godot/addons/godot_xterm/lib/libgodot-xterm.windows.template_debug.x86_64.dll -------------------------------------------------------------------------------- /src/SharpIDE.Godot/addons/godot_xterm/lib/libgodot-xterm.windows.template_release.arm64.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattParkerDev/SharpIDE/HEAD/src/SharpIDE.Godot/addons/godot_xterm/lib/libgodot-xterm.windows.template_release.arm64.dll -------------------------------------------------------------------------------- /src/SharpIDE.Godot/addons/godot_xterm/lib/libgodot-xterm.windows.template_release.x86_32.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattParkerDev/SharpIDE/HEAD/src/SharpIDE.Godot/addons/godot_xterm/lib/libgodot-xterm.windows.template_release.x86_32.dll -------------------------------------------------------------------------------- /src/SharpIDE.Godot/addons/godot_xterm/lib/libgodot-xterm.windows.template_release.x86_64.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattParkerDev/SharpIDE/HEAD/src/SharpIDE.Godot/addons/godot_xterm/lib/libgodot-xterm.windows.template_release.x86_64.dll -------------------------------------------------------------------------------- /src/SharpIDE.Godot/addons/godot_xterm/lib/spawn-helper: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattParkerDev/SharpIDE/HEAD/src/SharpIDE.Godot/addons/godot_xterm/lib/spawn-helper -------------------------------------------------------------------------------- /src/SharpIDE.Godot/addons/godot_xterm/lib/x86_32/libstdc++.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattParkerDev/SharpIDE/HEAD/src/SharpIDE.Godot/addons/godot_xterm/lib/x86_32/libstdc++.so -------------------------------------------------------------------------------- /src/SharpIDE.Godot/addons/godot_xterm/lib/x86_64/libstdc++.so.6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattParkerDev/SharpIDE/HEAD/src/SharpIDE.Godot/addons/godot_xterm/lib/x86_64/libstdc++.so.6 -------------------------------------------------------------------------------- /src/SharpIDE.Godot/addons/godot_xterm/plugin.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattParkerDev/SharpIDE/HEAD/src/SharpIDE.Godot/addons/godot_xterm/plugin.cfg -------------------------------------------------------------------------------- /src/SharpIDE.Godot/addons/godot_xterm/plugin.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattParkerDev/SharpIDE/HEAD/src/SharpIDE.Godot/addons/godot_xterm/plugin.gd -------------------------------------------------------------------------------- /src/SharpIDE.Godot/addons/godot_xterm/plugin.gd.uid: -------------------------------------------------------------------------------- 1 | uid://ds0khigrtnemq 2 | -------------------------------------------------------------------------------- /src/SharpIDE.Godot/addons/godot_xterm/resources/asciicast.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattParkerDev/SharpIDE/HEAD/src/SharpIDE.Godot/addons/godot_xterm/resources/asciicast.gd -------------------------------------------------------------------------------- /src/SharpIDE.Godot/addons/godot_xterm/resources/asciicast.gd.uid: -------------------------------------------------------------------------------- 1 | uid://daqhwrk6s4r7s 2 | -------------------------------------------------------------------------------- /src/SharpIDE.Godot/addons/godot_xterm/resources/xrdb_theme.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattParkerDev/SharpIDE/HEAD/src/SharpIDE.Godot/addons/godot_xterm/resources/xrdb_theme.gd -------------------------------------------------------------------------------- /src/SharpIDE.Godot/addons/godot_xterm/resources/xrdb_theme.gd.uid: -------------------------------------------------------------------------------- 1 | uid://b5w7m5xhi0vba 2 | -------------------------------------------------------------------------------- /src/SharpIDE.Godot/addons/godot_xterm/shaders/background.gdshader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattParkerDev/SharpIDE/HEAD/src/SharpIDE.Godot/addons/godot_xterm/shaders/background.gdshader -------------------------------------------------------------------------------- /src/SharpIDE.Godot/addons/godot_xterm/shaders/background.gdshader.uid: -------------------------------------------------------------------------------- 1 | uid://d3dy6nhv17r6y 2 | -------------------------------------------------------------------------------- /src/SharpIDE.Godot/addons/godot_xterm/shaders/common.gdshaderinc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattParkerDev/SharpIDE/HEAD/src/SharpIDE.Godot/addons/godot_xterm/shaders/common.gdshaderinc -------------------------------------------------------------------------------- /src/SharpIDE.Godot/addons/godot_xterm/shaders/common.gdshaderinc.uid: -------------------------------------------------------------------------------- 1 | uid://ceh0d3iwam1vt 2 | -------------------------------------------------------------------------------- /src/SharpIDE.Godot/addons/godot_xterm/shaders/foreground.gdshader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattParkerDev/SharpIDE/HEAD/src/SharpIDE.Godot/addons/godot_xterm/shaders/foreground.gdshader -------------------------------------------------------------------------------- /src/SharpIDE.Godot/addons/godot_xterm/shaders/foreground.gdshader.uid: -------------------------------------------------------------------------------- 1 | uid://dvtgnfmmhwteh 2 | -------------------------------------------------------------------------------- /src/SharpIDE.Godot/addons/godot_xterm/themes/fonts/jet_brains_mono/AUTHORS.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattParkerDev/SharpIDE/HEAD/src/SharpIDE.Godot/addons/godot_xterm/themes/fonts/jet_brains_mono/AUTHORS.txt -------------------------------------------------------------------------------- /src/SharpIDE.Godot/addons/godot_xterm/themes/fonts/jet_brains_mono/OFL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattParkerDev/SharpIDE/HEAD/src/SharpIDE.Godot/addons/godot_xterm/themes/fonts/jet_brains_mono/OFL.txt -------------------------------------------------------------------------------- /src/SharpIDE.Godot/addons/godot_xterm/themes/fonts/jet_brains_mono/jet_brains_mono_nl-regular-2.304.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattParkerDev/SharpIDE/HEAD/src/SharpIDE.Godot/addons/godot_xterm/themes/fonts/jet_brains_mono/jet_brains_mono_nl-regular-2.304.ttf -------------------------------------------------------------------------------- /src/SharpIDE.Godot/addons/godot_xterm/themes/fonts/jet_brains_mono/jet_brains_mono_nl-regular-2.304.ttf.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattParkerDev/SharpIDE/HEAD/src/SharpIDE.Godot/addons/godot_xterm/themes/fonts/jet_brains_mono/jet_brains_mono_nl-regular-2.304.ttf.import -------------------------------------------------------------------------------- /src/SharpIDE.Godot/addons/godot_xterm/themes/fonts/regular.tres: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattParkerDev/SharpIDE/HEAD/src/SharpIDE.Godot/addons/godot_xterm/themes/fonts/regular.tres -------------------------------------------------------------------------------- /src/SharpIDE.Godot/addons/godot_xterm/util/tput.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattParkerDev/SharpIDE/HEAD/src/SharpIDE.Godot/addons/godot_xterm/util/tput.gd -------------------------------------------------------------------------------- /src/SharpIDE.Godot/addons/godot_xterm/util/tput.gd.uid: -------------------------------------------------------------------------------- 1 | uid://dud4ii1gy5sa 2 | -------------------------------------------------------------------------------- /src/SharpIDE.Godot/export_presets.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattParkerDev/SharpIDE/HEAD/src/SharpIDE.Godot/export_presets.cfg -------------------------------------------------------------------------------- /src/SharpIDE.Godot/icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattParkerDev/SharpIDE/HEAD/src/SharpIDE.Godot/icon.svg -------------------------------------------------------------------------------- /src/SharpIDE.Godot/icon.svg.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattParkerDev/SharpIDE/HEAD/src/SharpIDE.Godot/icon.svg.import -------------------------------------------------------------------------------- /src/SharpIDE.Godot/project.godot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattParkerDev/SharpIDE/HEAD/src/SharpIDE.Godot/project.godot -------------------------------------------------------------------------------- /src/SharpIDE.Godot/version.txt: -------------------------------------------------------------------------------- 1 | 0.1.10 -------------------------------------------------------------------------------- /src/SharpIDE.Photino/App.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattParkerDev/SharpIDE/HEAD/src/SharpIDE.Photino/App.razor -------------------------------------------------------------------------------- /src/SharpIDE.Photino/AppThemeProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattParkerDev/SharpIDE/HEAD/src/SharpIDE.Photino/AppThemeProvider.cs -------------------------------------------------------------------------------- /src/SharpIDE.Photino/Components/BuildOutputDisplay.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattParkerDev/SharpIDE/HEAD/src/SharpIDE.Photino/Components/BuildOutputDisplay.razor -------------------------------------------------------------------------------- /src/SharpIDE.Photino/Components/CodeViewer.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattParkerDev/SharpIDE/HEAD/src/SharpIDE.Photino/Components/CodeViewer.razor -------------------------------------------------------------------------------- /src/SharpIDE.Photino/Components/DisplayNoneComponent.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattParkerDev/SharpIDE/HEAD/src/SharpIDE.Photino/Components/DisplayNoneComponent.razor -------------------------------------------------------------------------------- /src/SharpIDE.Photino/Components/IdeSettingsDialog.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattParkerDev/SharpIDE/HEAD/src/SharpIDE.Photino/Components/IdeSettingsDialog.razor -------------------------------------------------------------------------------- /src/SharpIDE.Photino/Components/Problems/ProblemsPanel.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattParkerDev/SharpIDE/HEAD/src/SharpIDE.Photino/Components/Problems/ProblemsPanel.razor -------------------------------------------------------------------------------- /src/SharpIDE.Photino/Components/Problems/ProjectProblemComponent.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattParkerDev/SharpIDE/HEAD/src/SharpIDE.Photino/Components/Problems/ProjectProblemComponent.razor -------------------------------------------------------------------------------- /src/SharpIDE.Photino/Components/Run/RunOutputDisplay.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattParkerDev/SharpIDE/HEAD/src/SharpIDE.Photino/Components/Run/RunOutputDisplay.razor -------------------------------------------------------------------------------- /src/SharpIDE.Photino/Components/Run/RunPanel.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattParkerDev/SharpIDE/HEAD/src/SharpIDE.Photino/Components/Run/RunPanel.razor -------------------------------------------------------------------------------- /src/SharpIDE.Photino/Components/Run/RunPopover.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattParkerDev/SharpIDE/HEAD/src/SharpIDE.Photino/Components/Run/RunPopover.razor -------------------------------------------------------------------------------- /src/SharpIDE.Photino/Components/SidebarIconButton.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattParkerDev/SharpIDE/HEAD/src/SharpIDE.Photino/Components/SidebarIconButton.razor -------------------------------------------------------------------------------- /src/SharpIDE.Photino/Components/SolutionExplorer.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattParkerDev/SharpIDE/HEAD/src/SharpIDE.Photino/Components/SolutionExplorer.razor -------------------------------------------------------------------------------- /src/SharpIDE.Photino/Components/SolutionPickerDialog.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattParkerDev/SharpIDE/HEAD/src/SharpIDE.Photino/Components/SolutionPickerDialog.razor -------------------------------------------------------------------------------- /src/SharpIDE.Photino/Components/TerminalDisplay.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattParkerDev/SharpIDE/HEAD/src/SharpIDE.Photino/Components/TerminalDisplay.razor -------------------------------------------------------------------------------- /src/SharpIDE.Photino/Layout/MainLayout.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattParkerDev/SharpIDE/HEAD/src/SharpIDE.Photino/Layout/MainLayout.razor -------------------------------------------------------------------------------- /src/SharpIDE.Photino/Layout/NavMenu.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattParkerDev/SharpIDE/HEAD/src/SharpIDE.Photino/Layout/NavMenu.razor -------------------------------------------------------------------------------- /src/SharpIDE.Photino/Models/AppState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattParkerDev/SharpIDE/HEAD/src/SharpIDE.Photino/Models/AppState.cs -------------------------------------------------------------------------------- /src/SharpIDE.Photino/Models/BottomPanelType.cs: -------------------------------------------------------------------------------- 1 | namespace SharpIDE.Photino.Models; 2 | 3 | public enum BottomPanelType 4 | { 5 | Run, 6 | Build, 7 | Problems 8 | } 9 | -------------------------------------------------------------------------------- /src/SharpIDE.Photino/Pages/Home.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattParkerDev/SharpIDE/HEAD/src/SharpIDE.Photino/Pages/Home.razor -------------------------------------------------------------------------------- /src/SharpIDE.Photino/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattParkerDev/SharpIDE/HEAD/src/SharpIDE.Photino/Program.cs -------------------------------------------------------------------------------- /src/SharpIDE.Photino/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattParkerDev/SharpIDE/HEAD/src/SharpIDE.Photino/Properties/launchSettings.json -------------------------------------------------------------------------------- /src/SharpIDE.Photino/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattParkerDev/SharpIDE/HEAD/src/SharpIDE.Photino/README.md -------------------------------------------------------------------------------- /src/SharpIDE.Photino/Services/RefreshOpenFileService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattParkerDev/SharpIDE/HEAD/src/SharpIDE.Photino/Services/RefreshOpenFileService.cs -------------------------------------------------------------------------------- /src/SharpIDE.Photino/SharpIDE.Photino.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattParkerDev/SharpIDE/HEAD/src/SharpIDE.Photino/SharpIDE.Photino.csproj -------------------------------------------------------------------------------- /src/SharpIDE.Photino/_Imports.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattParkerDev/SharpIDE/HEAD/src/SharpIDE.Photino/_Imports.razor -------------------------------------------------------------------------------- /src/SharpIDE.Photino/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattParkerDev/SharpIDE/HEAD/src/SharpIDE.Photino/favicon.ico -------------------------------------------------------------------------------- /src/SharpIDE.Photino/wwwroot/css/app.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/SharpIDE.Photino/wwwroot/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattParkerDev/SharpIDE/HEAD/src/SharpIDE.Photino/wwwroot/index.html -------------------------------------------------------------------------------- /src/SharpIDE.Photino/wwwroot/scripts2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattParkerDev/SharpIDE/HEAD/src/SharpIDE.Photino/wwwroot/scripts2.js -------------------------------------------------------------------------------- /tests/Roslyn.Benchmarks/CreateWorkspaceBenchmarks.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattParkerDev/SharpIDE/HEAD/tests/Roslyn.Benchmarks/CreateWorkspaceBenchmarks.cs -------------------------------------------------------------------------------- /tests/Roslyn.Benchmarks/ParseSolutionBenchmarks.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattParkerDev/SharpIDE/HEAD/tests/Roslyn.Benchmarks/ParseSolutionBenchmarks.cs -------------------------------------------------------------------------------- /tests/Roslyn.Benchmarks/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattParkerDev/SharpIDE/HEAD/tests/Roslyn.Benchmarks/Program.cs -------------------------------------------------------------------------------- /tests/Roslyn.Benchmarks/Roslyn.Benchmarks.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattParkerDev/SharpIDE/HEAD/tests/Roslyn.Benchmarks/Roslyn.Benchmarks.csproj -------------------------------------------------------------------------------- /tests/SharpIDE.Application.IntegrationTests/Features/Analysis/RoslynAnalysisTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattParkerDev/SharpIDE/HEAD/tests/SharpIDE.Application.IntegrationTests/Features/Analysis/RoslynAnalysisTests.cs -------------------------------------------------------------------------------- /tests/SharpIDE.Application.IntegrationTests/GlobalUsings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattParkerDev/SharpIDE/HEAD/tests/SharpIDE.Application.IntegrationTests/GlobalUsings.cs -------------------------------------------------------------------------------- /tests/SharpIDE.Application.IntegrationTests/SharpIDE.Application.IntegrationTests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattParkerDev/SharpIDE/HEAD/tests/SharpIDE.Application.IntegrationTests/SharpIDE.Application.IntegrationTests.csproj -------------------------------------------------------------------------------- /tests/SharpIDE.Application.IntegrationTests/xunit.runner.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattParkerDev/SharpIDE/HEAD/tests/SharpIDE.Application.IntegrationTests/xunit.runner.json -------------------------------------------------------------------------------- /tools/AppHost/AppHost.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattParkerDev/SharpIDE/HEAD/tools/AppHost/AppHost.cs -------------------------------------------------------------------------------- /tools/AppHost/AppHost.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattParkerDev/SharpIDE/HEAD/tools/AppHost/AppHost.csproj -------------------------------------------------------------------------------- /tools/AppHost/GodotExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattParkerDev/SharpIDE/HEAD/tools/AppHost/GodotExtensions.cs -------------------------------------------------------------------------------- /tools/AppHost/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattParkerDev/SharpIDE/HEAD/tools/AppHost/Properties/launchSettings.json -------------------------------------------------------------------------------- /tools/AppHost/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattParkerDev/SharpIDE/HEAD/tools/AppHost/README.md -------------------------------------------------------------------------------- /tools/AppHost/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattParkerDev/SharpIDE/HEAD/tools/AppHost/appsettings.Development.json -------------------------------------------------------------------------------- /tools/AppHost/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattParkerDev/SharpIDE/HEAD/tools/AppHost/appsettings.json -------------------------------------------------------------------------------- /tools/GodotServiceDefaults/GodotOtelExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattParkerDev/SharpIDE/HEAD/tools/GodotServiceDefaults/GodotOtelExtensions.cs -------------------------------------------------------------------------------- /tools/GodotServiceDefaults/GodotServiceDefaults.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattParkerDev/SharpIDE/HEAD/tools/GodotServiceDefaults/GodotServiceDefaults.csproj --------------------------------------------------------------------------------