├── .gitignore ├── .gitmodules ├── MonoDevelop.DBinding.sln ├── MonoDevelop.DBinding ├── AssemblyInfo.cs ├── Building │ ├── ArgumentMacroProvider.cs │ ├── CompilerPresets │ │ ├── ConfigPresets.resources │ │ ├── PresetLoader.cs │ │ ├── dmd.xml │ │ ├── gdc.xml │ │ └── ldc2.xml │ ├── DCompilerConfiguration.cs │ ├── DCompilerService.cs │ ├── ErrorExtracting.cs │ └── ProjectBuilder.cs ├── Completion │ ├── AstUpdater.cs │ ├── DCodeCompletionSupport.cs │ ├── DCompletionDataList.cs │ ├── DIcons.cs │ ├── DParameterDataProvider.cs │ ├── EditorCompletionExtension.cs │ ├── TooltipInfoGen.cs │ └── TooltipMarkupGen.cs ├── DLanguageBinding.cs ├── DSyntaxHighlightingMode.xml ├── Debugging │ ├── DExecutionCommand.cs │ ├── DLocalExamBacktrace.Evaluation.cs │ ├── DLocalExamBacktrace.cs │ ├── DebugSymbolTypeEvalVisitor.cs │ ├── DebugSymbolValueProvider.cs │ ├── ExamHelpers.cs │ ├── IDBacktraceHelpers.cs │ ├── LazyEvaluationValue.cs │ └── ObjectCacheNode.cs ├── DietTemplateSyntaxDefinition.xml ├── Formatting │ ├── DCodeFormatter.cs │ ├── DFormattingPolicy.cs │ ├── DPolicy.xml │ ├── DietTemplateFormattingPanel.cs │ ├── FormattingPanel.cs │ ├── FormattingPanelWidget.cs │ └── Indentation │ │ ├── DIndentEngine.cs │ │ ├── DIndentationTracker.cs │ │ ├── DTextEditorIndentation.cs │ │ └── doc.txt ├── Gui │ ├── DModuleOutlineExtension.cs │ ├── DToolTipProvider.cs │ ├── DTypeSearchCategory.cs │ ├── EditorPathBarExtension.cs │ ├── EditorPathbarProvider.cs │ ├── ExpressionEvaluationWidget.cs │ ├── MixinInsightExtension.cs │ └── MixinInsightPad.cs ├── GuiBuilder │ ├── GtkDProjectServiceExtension.cs │ ├── GtkDesignInfo.cs │ ├── GuiBuilderDisplayBinding.cs │ ├── GuiBuilderProject.cs │ ├── GuiBuilderView.cs │ ├── GuiBuilderWindow.cs │ └── ProjectResourceProvider.cs ├── Highlighting │ ├── DSyntaxMode.cs │ ├── DietTemplateSyntaxMode.cs │ ├── DiffbasedHighlighting.cs │ └── HighlightUsagesExtension.cs ├── MonoDevelop.D.addin.xml ├── MonoDevelop.D.csproj ├── OptionPanels │ ├── BuildArgumentOptions.cs │ ├── CompilerOptions.cs │ ├── DCompilerOptions.cs │ ├── DGlobalOptions.cs │ ├── DubOptionPanel.cs │ ├── EditCompilerName.cs │ ├── ProjectDependenciesWidget.cs │ ├── ProjectDependencyPanelBinding.cs │ ├── ProjectIncludesWidget.cs │ ├── ProjectIncludesWidgetBinding.cs │ ├── ProjectOptions.cs │ ├── ResourcesCompilerOptions.cs │ └── UnittestOptions.cs ├── Parser │ ├── DParserWrapper.cs │ ├── DPseudoUnresolvedFile.cs │ ├── FoldingParser.cs │ └── ParsedDModule.cs ├── Profiler │ ├── Commands │ │ ├── ProfilerCommands.cs │ │ └── ProfilerModeHandler.cs │ ├── Gui │ │ ├── CodeCoverageEditorExtension.cs │ │ ├── CodeCoverageView.cs │ │ ├── DProfilerPad.cs │ │ └── ProfilerPadWidget.cs │ └── TraceLogParser.cs ├── ProjectFormats.xml ├── Projects │ ├── AbstractDProject.cs │ ├── DConfigurationMode.cs │ ├── DProject.cs │ ├── DProjectBinding.cs │ ├── DProjectConfiguration.cs │ ├── DProjectReferenceCollection.cs │ ├── DefaultDReferencesCollection.cs │ ├── Dub │ │ ├── DefinitionFormats │ │ │ ├── DubFileFormat.cs │ │ │ ├── DubFileManager.cs │ │ │ ├── DubFileReader.cs │ │ │ ├── DubJson.cs │ │ │ ├── DubSdl.cs │ │ │ ├── JSON │ │ │ │ ├── JSONArray.cs │ │ │ │ ├── JSONObject.cs │ │ │ │ ├── JSONThing.cs │ │ │ │ ├── JSONThingDeserializer.cs │ │ │ │ └── JSONValueLeaf.cs │ │ │ ├── PackageJson.cs │ │ │ └── SDL │ │ │ │ ├── SDLDeclaration.cs │ │ │ │ ├── SDLObject.cs │ │ │ │ ├── SdlLexer.cs │ │ │ │ └── SdlParser.cs │ │ ├── DubBuildSettings.cs │ │ ├── DubBuilder.cs │ │ ├── DubProject.cs │ │ ├── DubProjectConfiguration.cs │ │ ├── DubProjectItemTypeHandler.cs │ │ ├── DubReferencesCollection.cs │ │ ├── DubSettings.cs │ │ ├── DubSolution.cs │ │ └── DubSubPackage.cs │ ├── ProjectJsonConfig.cs │ ├── ProjectPad │ │ ├── DPrjRefNode.cs │ │ ├── DProjectNodeExtension.cs │ │ ├── DProjectReference.cs │ │ └── DProjectReferenceFolderNodeBuilder.cs │ └── VisualD │ │ ├── VisualDPrjConfig.cs │ │ ├── VisualDProjFormat.cs │ │ ├── VisualDProject.cs │ │ └── VisualDProjectReferenceCollection.cs ├── Refactoring │ ├── CodeActions │ │ └── DCodeActionSource.cs │ ├── ContextMenuRefactoringCommandHandler.cs │ ├── DRefactoringContext.cs │ ├── DustMiteIntegration │ │ ├── DustMite.cs │ │ └── DustMiteArgDlg.cs │ ├── ImportSymbolSelectionDlg.cs │ ├── RefactoringCommandCapsule.cs │ ├── RefactoringCommandsExtension.cs │ ├── ReferenceFinding.cs │ ├── Renaming │ │ ├── DRenameHandler.cs │ │ ├── DRenameNameDialog.cs │ │ └── DRenameRefactoring.cs │ ├── SortImportsCommandHandler.cs │ └── TextDocumentAdapter.cs ├── Resolver │ ├── DResolverWrapper.cs │ └── MonoDParseCacheView.cs ├── Unittest │ ├── Commands │ │ ├── UnittestCommandHandler.cs │ │ └── UnittestCommands.cs │ ├── UnittestCore.cs │ └── UnittestSettings.cs ├── gtk-gui │ ├── MonoDevelop.D.DRenameNameDialog.cs │ ├── MonoDevelop.D.Formatting.FormattingPanelWidget.cs │ ├── MonoDevelop.D.ImportSymbolSelectionDlg.cs │ ├── MonoDevelop.D.OptionPanels.BuildArgumentOptions.cs │ ├── MonoDevelop.D.OptionPanels.DCompilerOptions.cs │ ├── MonoDevelop.D.OptionPanels.DGlobalOptions.cs │ ├── MonoDevelop.D.OptionPanels.DubOptionPanel.cs │ ├── MonoDevelop.D.OptionPanels.EditCompilerName.cs │ ├── MonoDevelop.D.OptionPanels.ProjectOptions.cs │ ├── MonoDevelop.D.OptionPanels.UnittestOptions.cs │ ├── MonoDevelop.D.Profiler.Gui.ProfilerPadWidget.cs │ ├── MonoDevelop.D.ProjectDependenciesWidget.cs │ ├── MonoDevelop.D.ProjectIncludesWidget.cs │ ├── MonoDevelop.D.Refactoring.DustMiteArgDlg.cs │ ├── MonoDevelop.D.ResourcesCompilerOptionsPanel.cs │ ├── generated.cs │ └── gui.stetic ├── icons │ ├── d-asm-avx-16.png │ ├── d-asm-fpu-16.png │ ├── d-asm-mmx-16.png │ ├── d-asm-sse-16.png │ ├── d-asm-sse2-16.png │ ├── d-asm-sse3-16.png │ ├── d-asm-sse4.1-16.png │ ├── d-asm-sse4.2-16.png │ ├── d-asm-ssse3-16.png │ ├── d-asm-x64-16.png │ ├── d-asm-x86-16.png │ ├── dfile16.png │ ├── dfile32.png │ ├── dproj16.png │ ├── dproj32.png │ ├── element-abstract-class-16.png │ ├── element-abstract-method-16.png │ ├── element-alias-16.png │ ├── element-local-16.png │ ├── element-local-16.psd │ ├── element-parameter-16.png │ ├── element-union-16.png │ ├── lazy-16.png │ ├── out-16.png │ ├── ref-16.png │ └── static-16.png └── templates │ ├── AnsiFile.cs │ ├── ConsoleProject.xpt.xml │ ├── DFileDescriptionTemplate.cs │ ├── EmptyDClass.xft.xml │ ├── EmptyDFile.xft.xml │ ├── EmptyProject.xpt.xml │ ├── EmptyRCFile.xft.xml │ ├── SharedLibrary.xpt.xml │ ├── StaticLibrary.xpt.xml │ └── Win32Project.xpt.xml ├── addin-project.xml ├── ext ├── ICSharpCode.NRefactory.CSharp.dll ├── ICSharpCode.NRefactory.dll ├── ICSharpCode.SharpZipLib.dll ├── Mono.Addins.Setup.dll ├── Mono.Addins.dll ├── Mono.Debugging.dll ├── Mono.TextEditor.dll ├── MonoDevelop.Core.dll ├── MonoDevelop.Debugger.dll ├── MonoDevelop.DesignerSupport.dll ├── MonoDevelop.GtkCore.dll ├── MonoDevelop.Ide.dll ├── MonoDevelop.Refactoring.dll ├── MonoDevelop.SourceEditor2.dll ├── Newtonsoft.Json.dll ├── Xwt.dll ├── libstetic.dll ├── libsteticui.dll └── update deps.bat ├── license.txt ├── make symlink.bat └── readme.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aBothe/Mono-D/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aBothe/Mono-D/HEAD/.gitmodules -------------------------------------------------------------------------------- /MonoDevelop.DBinding.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aBothe/Mono-D/HEAD/MonoDevelop.DBinding.sln -------------------------------------------------------------------------------- /MonoDevelop.DBinding/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aBothe/Mono-D/HEAD/MonoDevelop.DBinding/AssemblyInfo.cs -------------------------------------------------------------------------------- /MonoDevelop.DBinding/Building/ArgumentMacroProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aBothe/Mono-D/HEAD/MonoDevelop.DBinding/Building/ArgumentMacroProvider.cs -------------------------------------------------------------------------------- /MonoDevelop.DBinding/Building/CompilerPresets/ConfigPresets.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aBothe/Mono-D/HEAD/MonoDevelop.DBinding/Building/CompilerPresets/ConfigPresets.resources -------------------------------------------------------------------------------- /MonoDevelop.DBinding/Building/CompilerPresets/PresetLoader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aBothe/Mono-D/HEAD/MonoDevelop.DBinding/Building/CompilerPresets/PresetLoader.cs -------------------------------------------------------------------------------- /MonoDevelop.DBinding/Building/CompilerPresets/dmd.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aBothe/Mono-D/HEAD/MonoDevelop.DBinding/Building/CompilerPresets/dmd.xml -------------------------------------------------------------------------------- /MonoDevelop.DBinding/Building/CompilerPresets/gdc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aBothe/Mono-D/HEAD/MonoDevelop.DBinding/Building/CompilerPresets/gdc.xml -------------------------------------------------------------------------------- /MonoDevelop.DBinding/Building/CompilerPresets/ldc2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aBothe/Mono-D/HEAD/MonoDevelop.DBinding/Building/CompilerPresets/ldc2.xml -------------------------------------------------------------------------------- /MonoDevelop.DBinding/Building/DCompilerConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aBothe/Mono-D/HEAD/MonoDevelop.DBinding/Building/DCompilerConfiguration.cs -------------------------------------------------------------------------------- /MonoDevelop.DBinding/Building/DCompilerService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aBothe/Mono-D/HEAD/MonoDevelop.DBinding/Building/DCompilerService.cs -------------------------------------------------------------------------------- /MonoDevelop.DBinding/Building/ErrorExtracting.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aBothe/Mono-D/HEAD/MonoDevelop.DBinding/Building/ErrorExtracting.cs -------------------------------------------------------------------------------- /MonoDevelop.DBinding/Building/ProjectBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aBothe/Mono-D/HEAD/MonoDevelop.DBinding/Building/ProjectBuilder.cs -------------------------------------------------------------------------------- /MonoDevelop.DBinding/Completion/AstUpdater.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aBothe/Mono-D/HEAD/MonoDevelop.DBinding/Completion/AstUpdater.cs -------------------------------------------------------------------------------- /MonoDevelop.DBinding/Completion/DCodeCompletionSupport.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aBothe/Mono-D/HEAD/MonoDevelop.DBinding/Completion/DCodeCompletionSupport.cs -------------------------------------------------------------------------------- /MonoDevelop.DBinding/Completion/DCompletionDataList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aBothe/Mono-D/HEAD/MonoDevelop.DBinding/Completion/DCompletionDataList.cs -------------------------------------------------------------------------------- /MonoDevelop.DBinding/Completion/DIcons.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aBothe/Mono-D/HEAD/MonoDevelop.DBinding/Completion/DIcons.cs -------------------------------------------------------------------------------- /MonoDevelop.DBinding/Completion/DParameterDataProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aBothe/Mono-D/HEAD/MonoDevelop.DBinding/Completion/DParameterDataProvider.cs -------------------------------------------------------------------------------- /MonoDevelop.DBinding/Completion/EditorCompletionExtension.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aBothe/Mono-D/HEAD/MonoDevelop.DBinding/Completion/EditorCompletionExtension.cs -------------------------------------------------------------------------------- /MonoDevelop.DBinding/Completion/TooltipInfoGen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aBothe/Mono-D/HEAD/MonoDevelop.DBinding/Completion/TooltipInfoGen.cs -------------------------------------------------------------------------------- /MonoDevelop.DBinding/Completion/TooltipMarkupGen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aBothe/Mono-D/HEAD/MonoDevelop.DBinding/Completion/TooltipMarkupGen.cs -------------------------------------------------------------------------------- /MonoDevelop.DBinding/DLanguageBinding.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aBothe/Mono-D/HEAD/MonoDevelop.DBinding/DLanguageBinding.cs -------------------------------------------------------------------------------- /MonoDevelop.DBinding/DSyntaxHighlightingMode.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aBothe/Mono-D/HEAD/MonoDevelop.DBinding/DSyntaxHighlightingMode.xml -------------------------------------------------------------------------------- /MonoDevelop.DBinding/Debugging/DExecutionCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aBothe/Mono-D/HEAD/MonoDevelop.DBinding/Debugging/DExecutionCommand.cs -------------------------------------------------------------------------------- /MonoDevelop.DBinding/Debugging/DLocalExamBacktrace.Evaluation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aBothe/Mono-D/HEAD/MonoDevelop.DBinding/Debugging/DLocalExamBacktrace.Evaluation.cs -------------------------------------------------------------------------------- /MonoDevelop.DBinding/Debugging/DLocalExamBacktrace.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aBothe/Mono-D/HEAD/MonoDevelop.DBinding/Debugging/DLocalExamBacktrace.cs -------------------------------------------------------------------------------- /MonoDevelop.DBinding/Debugging/DebugSymbolTypeEvalVisitor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aBothe/Mono-D/HEAD/MonoDevelop.DBinding/Debugging/DebugSymbolTypeEvalVisitor.cs -------------------------------------------------------------------------------- /MonoDevelop.DBinding/Debugging/DebugSymbolValueProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aBothe/Mono-D/HEAD/MonoDevelop.DBinding/Debugging/DebugSymbolValueProvider.cs -------------------------------------------------------------------------------- /MonoDevelop.DBinding/Debugging/ExamHelpers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aBothe/Mono-D/HEAD/MonoDevelop.DBinding/Debugging/ExamHelpers.cs -------------------------------------------------------------------------------- /MonoDevelop.DBinding/Debugging/IDBacktraceHelpers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aBothe/Mono-D/HEAD/MonoDevelop.DBinding/Debugging/IDBacktraceHelpers.cs -------------------------------------------------------------------------------- /MonoDevelop.DBinding/Debugging/LazyEvaluationValue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aBothe/Mono-D/HEAD/MonoDevelop.DBinding/Debugging/LazyEvaluationValue.cs -------------------------------------------------------------------------------- /MonoDevelop.DBinding/Debugging/ObjectCacheNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aBothe/Mono-D/HEAD/MonoDevelop.DBinding/Debugging/ObjectCacheNode.cs -------------------------------------------------------------------------------- /MonoDevelop.DBinding/DietTemplateSyntaxDefinition.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aBothe/Mono-D/HEAD/MonoDevelop.DBinding/DietTemplateSyntaxDefinition.xml -------------------------------------------------------------------------------- /MonoDevelop.DBinding/Formatting/DCodeFormatter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aBothe/Mono-D/HEAD/MonoDevelop.DBinding/Formatting/DCodeFormatter.cs -------------------------------------------------------------------------------- /MonoDevelop.DBinding/Formatting/DFormattingPolicy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aBothe/Mono-D/HEAD/MonoDevelop.DBinding/Formatting/DFormattingPolicy.cs -------------------------------------------------------------------------------- /MonoDevelop.DBinding/Formatting/DPolicy.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aBothe/Mono-D/HEAD/MonoDevelop.DBinding/Formatting/DPolicy.xml -------------------------------------------------------------------------------- /MonoDevelop.DBinding/Formatting/DietTemplateFormattingPanel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aBothe/Mono-D/HEAD/MonoDevelop.DBinding/Formatting/DietTemplateFormattingPanel.cs -------------------------------------------------------------------------------- /MonoDevelop.DBinding/Formatting/FormattingPanel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aBothe/Mono-D/HEAD/MonoDevelop.DBinding/Formatting/FormattingPanel.cs -------------------------------------------------------------------------------- /MonoDevelop.DBinding/Formatting/FormattingPanelWidget.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aBothe/Mono-D/HEAD/MonoDevelop.DBinding/Formatting/FormattingPanelWidget.cs -------------------------------------------------------------------------------- /MonoDevelop.DBinding/Formatting/Indentation/DIndentEngine.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aBothe/Mono-D/HEAD/MonoDevelop.DBinding/Formatting/Indentation/DIndentEngine.cs -------------------------------------------------------------------------------- /MonoDevelop.DBinding/Formatting/Indentation/DIndentationTracker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aBothe/Mono-D/HEAD/MonoDevelop.DBinding/Formatting/Indentation/DIndentationTracker.cs -------------------------------------------------------------------------------- /MonoDevelop.DBinding/Formatting/Indentation/DTextEditorIndentation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aBothe/Mono-D/HEAD/MonoDevelop.DBinding/Formatting/Indentation/DTextEditorIndentation.cs -------------------------------------------------------------------------------- /MonoDevelop.DBinding/Formatting/Indentation/doc.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aBothe/Mono-D/HEAD/MonoDevelop.DBinding/Formatting/Indentation/doc.txt -------------------------------------------------------------------------------- /MonoDevelop.DBinding/Gui/DModuleOutlineExtension.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aBothe/Mono-D/HEAD/MonoDevelop.DBinding/Gui/DModuleOutlineExtension.cs -------------------------------------------------------------------------------- /MonoDevelop.DBinding/Gui/DToolTipProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aBothe/Mono-D/HEAD/MonoDevelop.DBinding/Gui/DToolTipProvider.cs -------------------------------------------------------------------------------- /MonoDevelop.DBinding/Gui/DTypeSearchCategory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aBothe/Mono-D/HEAD/MonoDevelop.DBinding/Gui/DTypeSearchCategory.cs -------------------------------------------------------------------------------- /MonoDevelop.DBinding/Gui/EditorPathBarExtension.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aBothe/Mono-D/HEAD/MonoDevelop.DBinding/Gui/EditorPathBarExtension.cs -------------------------------------------------------------------------------- /MonoDevelop.DBinding/Gui/EditorPathbarProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aBothe/Mono-D/HEAD/MonoDevelop.DBinding/Gui/EditorPathbarProvider.cs -------------------------------------------------------------------------------- /MonoDevelop.DBinding/Gui/ExpressionEvaluationWidget.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aBothe/Mono-D/HEAD/MonoDevelop.DBinding/Gui/ExpressionEvaluationWidget.cs -------------------------------------------------------------------------------- /MonoDevelop.DBinding/Gui/MixinInsightExtension.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aBothe/Mono-D/HEAD/MonoDevelop.DBinding/Gui/MixinInsightExtension.cs -------------------------------------------------------------------------------- /MonoDevelop.DBinding/Gui/MixinInsightPad.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aBothe/Mono-D/HEAD/MonoDevelop.DBinding/Gui/MixinInsightPad.cs -------------------------------------------------------------------------------- /MonoDevelop.DBinding/GuiBuilder/GtkDProjectServiceExtension.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aBothe/Mono-D/HEAD/MonoDevelop.DBinding/GuiBuilder/GtkDProjectServiceExtension.cs -------------------------------------------------------------------------------- /MonoDevelop.DBinding/GuiBuilder/GtkDesignInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aBothe/Mono-D/HEAD/MonoDevelop.DBinding/GuiBuilder/GtkDesignInfo.cs -------------------------------------------------------------------------------- /MonoDevelop.DBinding/GuiBuilder/GuiBuilderDisplayBinding.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aBothe/Mono-D/HEAD/MonoDevelop.DBinding/GuiBuilder/GuiBuilderDisplayBinding.cs -------------------------------------------------------------------------------- /MonoDevelop.DBinding/GuiBuilder/GuiBuilderProject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aBothe/Mono-D/HEAD/MonoDevelop.DBinding/GuiBuilder/GuiBuilderProject.cs -------------------------------------------------------------------------------- /MonoDevelop.DBinding/GuiBuilder/GuiBuilderView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aBothe/Mono-D/HEAD/MonoDevelop.DBinding/GuiBuilder/GuiBuilderView.cs -------------------------------------------------------------------------------- /MonoDevelop.DBinding/GuiBuilder/GuiBuilderWindow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aBothe/Mono-D/HEAD/MonoDevelop.DBinding/GuiBuilder/GuiBuilderWindow.cs -------------------------------------------------------------------------------- /MonoDevelop.DBinding/GuiBuilder/ProjectResourceProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aBothe/Mono-D/HEAD/MonoDevelop.DBinding/GuiBuilder/ProjectResourceProvider.cs -------------------------------------------------------------------------------- /MonoDevelop.DBinding/Highlighting/DSyntaxMode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aBothe/Mono-D/HEAD/MonoDevelop.DBinding/Highlighting/DSyntaxMode.cs -------------------------------------------------------------------------------- /MonoDevelop.DBinding/Highlighting/DietTemplateSyntaxMode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aBothe/Mono-D/HEAD/MonoDevelop.DBinding/Highlighting/DietTemplateSyntaxMode.cs -------------------------------------------------------------------------------- /MonoDevelop.DBinding/Highlighting/DiffbasedHighlighting.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aBothe/Mono-D/HEAD/MonoDevelop.DBinding/Highlighting/DiffbasedHighlighting.cs -------------------------------------------------------------------------------- /MonoDevelop.DBinding/Highlighting/HighlightUsagesExtension.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aBothe/Mono-D/HEAD/MonoDevelop.DBinding/Highlighting/HighlightUsagesExtension.cs -------------------------------------------------------------------------------- /MonoDevelop.DBinding/MonoDevelop.D.addin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aBothe/Mono-D/HEAD/MonoDevelop.DBinding/MonoDevelop.D.addin.xml -------------------------------------------------------------------------------- /MonoDevelop.DBinding/MonoDevelop.D.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aBothe/Mono-D/HEAD/MonoDevelop.DBinding/MonoDevelop.D.csproj -------------------------------------------------------------------------------- /MonoDevelop.DBinding/OptionPanels/BuildArgumentOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aBothe/Mono-D/HEAD/MonoDevelop.DBinding/OptionPanels/BuildArgumentOptions.cs -------------------------------------------------------------------------------- /MonoDevelop.DBinding/OptionPanels/CompilerOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aBothe/Mono-D/HEAD/MonoDevelop.DBinding/OptionPanels/CompilerOptions.cs -------------------------------------------------------------------------------- /MonoDevelop.DBinding/OptionPanels/DCompilerOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aBothe/Mono-D/HEAD/MonoDevelop.DBinding/OptionPanels/DCompilerOptions.cs -------------------------------------------------------------------------------- /MonoDevelop.DBinding/OptionPanels/DGlobalOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aBothe/Mono-D/HEAD/MonoDevelop.DBinding/OptionPanels/DGlobalOptions.cs -------------------------------------------------------------------------------- /MonoDevelop.DBinding/OptionPanels/DubOptionPanel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aBothe/Mono-D/HEAD/MonoDevelop.DBinding/OptionPanels/DubOptionPanel.cs -------------------------------------------------------------------------------- /MonoDevelop.DBinding/OptionPanels/EditCompilerName.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aBothe/Mono-D/HEAD/MonoDevelop.DBinding/OptionPanels/EditCompilerName.cs -------------------------------------------------------------------------------- /MonoDevelop.DBinding/OptionPanels/ProjectDependenciesWidget.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aBothe/Mono-D/HEAD/MonoDevelop.DBinding/OptionPanels/ProjectDependenciesWidget.cs -------------------------------------------------------------------------------- /MonoDevelop.DBinding/OptionPanels/ProjectDependencyPanelBinding.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aBothe/Mono-D/HEAD/MonoDevelop.DBinding/OptionPanels/ProjectDependencyPanelBinding.cs -------------------------------------------------------------------------------- /MonoDevelop.DBinding/OptionPanels/ProjectIncludesWidget.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aBothe/Mono-D/HEAD/MonoDevelop.DBinding/OptionPanels/ProjectIncludesWidget.cs -------------------------------------------------------------------------------- /MonoDevelop.DBinding/OptionPanels/ProjectIncludesWidgetBinding.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aBothe/Mono-D/HEAD/MonoDevelop.DBinding/OptionPanels/ProjectIncludesWidgetBinding.cs -------------------------------------------------------------------------------- /MonoDevelop.DBinding/OptionPanels/ProjectOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aBothe/Mono-D/HEAD/MonoDevelop.DBinding/OptionPanels/ProjectOptions.cs -------------------------------------------------------------------------------- /MonoDevelop.DBinding/OptionPanels/ResourcesCompilerOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aBothe/Mono-D/HEAD/MonoDevelop.DBinding/OptionPanels/ResourcesCompilerOptions.cs -------------------------------------------------------------------------------- /MonoDevelop.DBinding/OptionPanels/UnittestOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aBothe/Mono-D/HEAD/MonoDevelop.DBinding/OptionPanels/UnittestOptions.cs -------------------------------------------------------------------------------- /MonoDevelop.DBinding/Parser/DParserWrapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aBothe/Mono-D/HEAD/MonoDevelop.DBinding/Parser/DParserWrapper.cs -------------------------------------------------------------------------------- /MonoDevelop.DBinding/Parser/DPseudoUnresolvedFile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aBothe/Mono-D/HEAD/MonoDevelop.DBinding/Parser/DPseudoUnresolvedFile.cs -------------------------------------------------------------------------------- /MonoDevelop.DBinding/Parser/FoldingParser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aBothe/Mono-D/HEAD/MonoDevelop.DBinding/Parser/FoldingParser.cs -------------------------------------------------------------------------------- /MonoDevelop.DBinding/Parser/ParsedDModule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aBothe/Mono-D/HEAD/MonoDevelop.DBinding/Parser/ParsedDModule.cs -------------------------------------------------------------------------------- /MonoDevelop.DBinding/Profiler/Commands/ProfilerCommands.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aBothe/Mono-D/HEAD/MonoDevelop.DBinding/Profiler/Commands/ProfilerCommands.cs -------------------------------------------------------------------------------- /MonoDevelop.DBinding/Profiler/Commands/ProfilerModeHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aBothe/Mono-D/HEAD/MonoDevelop.DBinding/Profiler/Commands/ProfilerModeHandler.cs -------------------------------------------------------------------------------- /MonoDevelop.DBinding/Profiler/Gui/CodeCoverageEditorExtension.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aBothe/Mono-D/HEAD/MonoDevelop.DBinding/Profiler/Gui/CodeCoverageEditorExtension.cs -------------------------------------------------------------------------------- /MonoDevelop.DBinding/Profiler/Gui/CodeCoverageView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aBothe/Mono-D/HEAD/MonoDevelop.DBinding/Profiler/Gui/CodeCoverageView.cs -------------------------------------------------------------------------------- /MonoDevelop.DBinding/Profiler/Gui/DProfilerPad.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aBothe/Mono-D/HEAD/MonoDevelop.DBinding/Profiler/Gui/DProfilerPad.cs -------------------------------------------------------------------------------- /MonoDevelop.DBinding/Profiler/Gui/ProfilerPadWidget.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aBothe/Mono-D/HEAD/MonoDevelop.DBinding/Profiler/Gui/ProfilerPadWidget.cs -------------------------------------------------------------------------------- /MonoDevelop.DBinding/Profiler/TraceLogParser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aBothe/Mono-D/HEAD/MonoDevelop.DBinding/Profiler/TraceLogParser.cs -------------------------------------------------------------------------------- /MonoDevelop.DBinding/ProjectFormats.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aBothe/Mono-D/HEAD/MonoDevelop.DBinding/ProjectFormats.xml -------------------------------------------------------------------------------- /MonoDevelop.DBinding/Projects/AbstractDProject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aBothe/Mono-D/HEAD/MonoDevelop.DBinding/Projects/AbstractDProject.cs -------------------------------------------------------------------------------- /MonoDevelop.DBinding/Projects/DConfigurationMode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aBothe/Mono-D/HEAD/MonoDevelop.DBinding/Projects/DConfigurationMode.cs -------------------------------------------------------------------------------- /MonoDevelop.DBinding/Projects/DProject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aBothe/Mono-D/HEAD/MonoDevelop.DBinding/Projects/DProject.cs -------------------------------------------------------------------------------- /MonoDevelop.DBinding/Projects/DProjectBinding.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aBothe/Mono-D/HEAD/MonoDevelop.DBinding/Projects/DProjectBinding.cs -------------------------------------------------------------------------------- /MonoDevelop.DBinding/Projects/DProjectConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aBothe/Mono-D/HEAD/MonoDevelop.DBinding/Projects/DProjectConfiguration.cs -------------------------------------------------------------------------------- /MonoDevelop.DBinding/Projects/DProjectReferenceCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aBothe/Mono-D/HEAD/MonoDevelop.DBinding/Projects/DProjectReferenceCollection.cs -------------------------------------------------------------------------------- /MonoDevelop.DBinding/Projects/DefaultDReferencesCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aBothe/Mono-D/HEAD/MonoDevelop.DBinding/Projects/DefaultDReferencesCollection.cs -------------------------------------------------------------------------------- /MonoDevelop.DBinding/Projects/Dub/DefinitionFormats/DubFileFormat.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aBothe/Mono-D/HEAD/MonoDevelop.DBinding/Projects/Dub/DefinitionFormats/DubFileFormat.cs -------------------------------------------------------------------------------- /MonoDevelop.DBinding/Projects/Dub/DefinitionFormats/DubFileManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aBothe/Mono-D/HEAD/MonoDevelop.DBinding/Projects/Dub/DefinitionFormats/DubFileManager.cs -------------------------------------------------------------------------------- /MonoDevelop.DBinding/Projects/Dub/DefinitionFormats/DubFileReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aBothe/Mono-D/HEAD/MonoDevelop.DBinding/Projects/Dub/DefinitionFormats/DubFileReader.cs -------------------------------------------------------------------------------- /MonoDevelop.DBinding/Projects/Dub/DefinitionFormats/DubJson.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aBothe/Mono-D/HEAD/MonoDevelop.DBinding/Projects/Dub/DefinitionFormats/DubJson.cs -------------------------------------------------------------------------------- /MonoDevelop.DBinding/Projects/Dub/DefinitionFormats/DubSdl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aBothe/Mono-D/HEAD/MonoDevelop.DBinding/Projects/Dub/DefinitionFormats/DubSdl.cs -------------------------------------------------------------------------------- /MonoDevelop.DBinding/Projects/Dub/DefinitionFormats/JSON/JSONArray.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aBothe/Mono-D/HEAD/MonoDevelop.DBinding/Projects/Dub/DefinitionFormats/JSON/JSONArray.cs -------------------------------------------------------------------------------- /MonoDevelop.DBinding/Projects/Dub/DefinitionFormats/JSON/JSONObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aBothe/Mono-D/HEAD/MonoDevelop.DBinding/Projects/Dub/DefinitionFormats/JSON/JSONObject.cs -------------------------------------------------------------------------------- /MonoDevelop.DBinding/Projects/Dub/DefinitionFormats/JSON/JSONThing.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aBothe/Mono-D/HEAD/MonoDevelop.DBinding/Projects/Dub/DefinitionFormats/JSON/JSONThing.cs -------------------------------------------------------------------------------- /MonoDevelop.DBinding/Projects/Dub/DefinitionFormats/JSON/JSONThingDeserializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aBothe/Mono-D/HEAD/MonoDevelop.DBinding/Projects/Dub/DefinitionFormats/JSON/JSONThingDeserializer.cs -------------------------------------------------------------------------------- /MonoDevelop.DBinding/Projects/Dub/DefinitionFormats/JSON/JSONValueLeaf.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aBothe/Mono-D/HEAD/MonoDevelop.DBinding/Projects/Dub/DefinitionFormats/JSON/JSONValueLeaf.cs -------------------------------------------------------------------------------- /MonoDevelop.DBinding/Projects/Dub/DefinitionFormats/PackageJson.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aBothe/Mono-D/HEAD/MonoDevelop.DBinding/Projects/Dub/DefinitionFormats/PackageJson.cs -------------------------------------------------------------------------------- /MonoDevelop.DBinding/Projects/Dub/DefinitionFormats/SDL/SDLDeclaration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aBothe/Mono-D/HEAD/MonoDevelop.DBinding/Projects/Dub/DefinitionFormats/SDL/SDLDeclaration.cs -------------------------------------------------------------------------------- /MonoDevelop.DBinding/Projects/Dub/DefinitionFormats/SDL/SDLObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aBothe/Mono-D/HEAD/MonoDevelop.DBinding/Projects/Dub/DefinitionFormats/SDL/SDLObject.cs -------------------------------------------------------------------------------- /MonoDevelop.DBinding/Projects/Dub/DefinitionFormats/SDL/SdlLexer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aBothe/Mono-D/HEAD/MonoDevelop.DBinding/Projects/Dub/DefinitionFormats/SDL/SdlLexer.cs -------------------------------------------------------------------------------- /MonoDevelop.DBinding/Projects/Dub/DefinitionFormats/SDL/SdlParser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aBothe/Mono-D/HEAD/MonoDevelop.DBinding/Projects/Dub/DefinitionFormats/SDL/SdlParser.cs -------------------------------------------------------------------------------- /MonoDevelop.DBinding/Projects/Dub/DubBuildSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aBothe/Mono-D/HEAD/MonoDevelop.DBinding/Projects/Dub/DubBuildSettings.cs -------------------------------------------------------------------------------- /MonoDevelop.DBinding/Projects/Dub/DubBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aBothe/Mono-D/HEAD/MonoDevelop.DBinding/Projects/Dub/DubBuilder.cs -------------------------------------------------------------------------------- /MonoDevelop.DBinding/Projects/Dub/DubProject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aBothe/Mono-D/HEAD/MonoDevelop.DBinding/Projects/Dub/DubProject.cs -------------------------------------------------------------------------------- /MonoDevelop.DBinding/Projects/Dub/DubProjectConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aBothe/Mono-D/HEAD/MonoDevelop.DBinding/Projects/Dub/DubProjectConfiguration.cs -------------------------------------------------------------------------------- /MonoDevelop.DBinding/Projects/Dub/DubProjectItemTypeHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aBothe/Mono-D/HEAD/MonoDevelop.DBinding/Projects/Dub/DubProjectItemTypeHandler.cs -------------------------------------------------------------------------------- /MonoDevelop.DBinding/Projects/Dub/DubReferencesCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aBothe/Mono-D/HEAD/MonoDevelop.DBinding/Projects/Dub/DubReferencesCollection.cs -------------------------------------------------------------------------------- /MonoDevelop.DBinding/Projects/Dub/DubSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aBothe/Mono-D/HEAD/MonoDevelop.DBinding/Projects/Dub/DubSettings.cs -------------------------------------------------------------------------------- /MonoDevelop.DBinding/Projects/Dub/DubSolution.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aBothe/Mono-D/HEAD/MonoDevelop.DBinding/Projects/Dub/DubSolution.cs -------------------------------------------------------------------------------- /MonoDevelop.DBinding/Projects/Dub/DubSubPackage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aBothe/Mono-D/HEAD/MonoDevelop.DBinding/Projects/Dub/DubSubPackage.cs -------------------------------------------------------------------------------- /MonoDevelop.DBinding/Projects/ProjectJsonConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aBothe/Mono-D/HEAD/MonoDevelop.DBinding/Projects/ProjectJsonConfig.cs -------------------------------------------------------------------------------- /MonoDevelop.DBinding/Projects/ProjectPad/DPrjRefNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aBothe/Mono-D/HEAD/MonoDevelop.DBinding/Projects/ProjectPad/DPrjRefNode.cs -------------------------------------------------------------------------------- /MonoDevelop.DBinding/Projects/ProjectPad/DProjectNodeExtension.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aBothe/Mono-D/HEAD/MonoDevelop.DBinding/Projects/ProjectPad/DProjectNodeExtension.cs -------------------------------------------------------------------------------- /MonoDevelop.DBinding/Projects/ProjectPad/DProjectReference.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aBothe/Mono-D/HEAD/MonoDevelop.DBinding/Projects/ProjectPad/DProjectReference.cs -------------------------------------------------------------------------------- /MonoDevelop.DBinding/Projects/ProjectPad/DProjectReferenceFolderNodeBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aBothe/Mono-D/HEAD/MonoDevelop.DBinding/Projects/ProjectPad/DProjectReferenceFolderNodeBuilder.cs -------------------------------------------------------------------------------- /MonoDevelop.DBinding/Projects/VisualD/VisualDPrjConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aBothe/Mono-D/HEAD/MonoDevelop.DBinding/Projects/VisualD/VisualDPrjConfig.cs -------------------------------------------------------------------------------- /MonoDevelop.DBinding/Projects/VisualD/VisualDProjFormat.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aBothe/Mono-D/HEAD/MonoDevelop.DBinding/Projects/VisualD/VisualDProjFormat.cs -------------------------------------------------------------------------------- /MonoDevelop.DBinding/Projects/VisualD/VisualDProject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aBothe/Mono-D/HEAD/MonoDevelop.DBinding/Projects/VisualD/VisualDProject.cs -------------------------------------------------------------------------------- /MonoDevelop.DBinding/Projects/VisualD/VisualDProjectReferenceCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aBothe/Mono-D/HEAD/MonoDevelop.DBinding/Projects/VisualD/VisualDProjectReferenceCollection.cs -------------------------------------------------------------------------------- /MonoDevelop.DBinding/Refactoring/CodeActions/DCodeActionSource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aBothe/Mono-D/HEAD/MonoDevelop.DBinding/Refactoring/CodeActions/DCodeActionSource.cs -------------------------------------------------------------------------------- /MonoDevelop.DBinding/Refactoring/ContextMenuRefactoringCommandHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aBothe/Mono-D/HEAD/MonoDevelop.DBinding/Refactoring/ContextMenuRefactoringCommandHandler.cs -------------------------------------------------------------------------------- /MonoDevelop.DBinding/Refactoring/DRefactoringContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aBothe/Mono-D/HEAD/MonoDevelop.DBinding/Refactoring/DRefactoringContext.cs -------------------------------------------------------------------------------- /MonoDevelop.DBinding/Refactoring/DustMiteIntegration/DustMite.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aBothe/Mono-D/HEAD/MonoDevelop.DBinding/Refactoring/DustMiteIntegration/DustMite.cs -------------------------------------------------------------------------------- /MonoDevelop.DBinding/Refactoring/DustMiteIntegration/DustMiteArgDlg.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aBothe/Mono-D/HEAD/MonoDevelop.DBinding/Refactoring/DustMiteIntegration/DustMiteArgDlg.cs -------------------------------------------------------------------------------- /MonoDevelop.DBinding/Refactoring/ImportSymbolSelectionDlg.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aBothe/Mono-D/HEAD/MonoDevelop.DBinding/Refactoring/ImportSymbolSelectionDlg.cs -------------------------------------------------------------------------------- /MonoDevelop.DBinding/Refactoring/RefactoringCommandCapsule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aBothe/Mono-D/HEAD/MonoDevelop.DBinding/Refactoring/RefactoringCommandCapsule.cs -------------------------------------------------------------------------------- /MonoDevelop.DBinding/Refactoring/RefactoringCommandsExtension.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aBothe/Mono-D/HEAD/MonoDevelop.DBinding/Refactoring/RefactoringCommandsExtension.cs -------------------------------------------------------------------------------- /MonoDevelop.DBinding/Refactoring/ReferenceFinding.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aBothe/Mono-D/HEAD/MonoDevelop.DBinding/Refactoring/ReferenceFinding.cs -------------------------------------------------------------------------------- /MonoDevelop.DBinding/Refactoring/Renaming/DRenameHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aBothe/Mono-D/HEAD/MonoDevelop.DBinding/Refactoring/Renaming/DRenameHandler.cs -------------------------------------------------------------------------------- /MonoDevelop.DBinding/Refactoring/Renaming/DRenameNameDialog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aBothe/Mono-D/HEAD/MonoDevelop.DBinding/Refactoring/Renaming/DRenameNameDialog.cs -------------------------------------------------------------------------------- /MonoDevelop.DBinding/Refactoring/Renaming/DRenameRefactoring.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aBothe/Mono-D/HEAD/MonoDevelop.DBinding/Refactoring/Renaming/DRenameRefactoring.cs -------------------------------------------------------------------------------- /MonoDevelop.DBinding/Refactoring/SortImportsCommandHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aBothe/Mono-D/HEAD/MonoDevelop.DBinding/Refactoring/SortImportsCommandHandler.cs -------------------------------------------------------------------------------- /MonoDevelop.DBinding/Refactoring/TextDocumentAdapter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aBothe/Mono-D/HEAD/MonoDevelop.DBinding/Refactoring/TextDocumentAdapter.cs -------------------------------------------------------------------------------- /MonoDevelop.DBinding/Resolver/DResolverWrapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aBothe/Mono-D/HEAD/MonoDevelop.DBinding/Resolver/DResolverWrapper.cs -------------------------------------------------------------------------------- /MonoDevelop.DBinding/Resolver/MonoDParseCacheView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aBothe/Mono-D/HEAD/MonoDevelop.DBinding/Resolver/MonoDParseCacheView.cs -------------------------------------------------------------------------------- /MonoDevelop.DBinding/Unittest/Commands/UnittestCommandHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aBothe/Mono-D/HEAD/MonoDevelop.DBinding/Unittest/Commands/UnittestCommandHandler.cs -------------------------------------------------------------------------------- /MonoDevelop.DBinding/Unittest/Commands/UnittestCommands.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aBothe/Mono-D/HEAD/MonoDevelop.DBinding/Unittest/Commands/UnittestCommands.cs -------------------------------------------------------------------------------- /MonoDevelop.DBinding/Unittest/UnittestCore.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aBothe/Mono-D/HEAD/MonoDevelop.DBinding/Unittest/UnittestCore.cs -------------------------------------------------------------------------------- /MonoDevelop.DBinding/Unittest/UnittestSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aBothe/Mono-D/HEAD/MonoDevelop.DBinding/Unittest/UnittestSettings.cs -------------------------------------------------------------------------------- /MonoDevelop.DBinding/gtk-gui/MonoDevelop.D.DRenameNameDialog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aBothe/Mono-D/HEAD/MonoDevelop.DBinding/gtk-gui/MonoDevelop.D.DRenameNameDialog.cs -------------------------------------------------------------------------------- /MonoDevelop.DBinding/gtk-gui/MonoDevelop.D.Formatting.FormattingPanelWidget.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aBothe/Mono-D/HEAD/MonoDevelop.DBinding/gtk-gui/MonoDevelop.D.Formatting.FormattingPanelWidget.cs -------------------------------------------------------------------------------- /MonoDevelop.DBinding/gtk-gui/MonoDevelop.D.ImportSymbolSelectionDlg.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aBothe/Mono-D/HEAD/MonoDevelop.DBinding/gtk-gui/MonoDevelop.D.ImportSymbolSelectionDlg.cs -------------------------------------------------------------------------------- /MonoDevelop.DBinding/gtk-gui/MonoDevelop.D.OptionPanels.BuildArgumentOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aBothe/Mono-D/HEAD/MonoDevelop.DBinding/gtk-gui/MonoDevelop.D.OptionPanels.BuildArgumentOptions.cs -------------------------------------------------------------------------------- /MonoDevelop.DBinding/gtk-gui/MonoDevelop.D.OptionPanels.DCompilerOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aBothe/Mono-D/HEAD/MonoDevelop.DBinding/gtk-gui/MonoDevelop.D.OptionPanels.DCompilerOptions.cs -------------------------------------------------------------------------------- /MonoDevelop.DBinding/gtk-gui/MonoDevelop.D.OptionPanels.DGlobalOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aBothe/Mono-D/HEAD/MonoDevelop.DBinding/gtk-gui/MonoDevelop.D.OptionPanels.DGlobalOptions.cs -------------------------------------------------------------------------------- /MonoDevelop.DBinding/gtk-gui/MonoDevelop.D.OptionPanels.DubOptionPanel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aBothe/Mono-D/HEAD/MonoDevelop.DBinding/gtk-gui/MonoDevelop.D.OptionPanels.DubOptionPanel.cs -------------------------------------------------------------------------------- /MonoDevelop.DBinding/gtk-gui/MonoDevelop.D.OptionPanels.EditCompilerName.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aBothe/Mono-D/HEAD/MonoDevelop.DBinding/gtk-gui/MonoDevelop.D.OptionPanels.EditCompilerName.cs -------------------------------------------------------------------------------- /MonoDevelop.DBinding/gtk-gui/MonoDevelop.D.OptionPanels.ProjectOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aBothe/Mono-D/HEAD/MonoDevelop.DBinding/gtk-gui/MonoDevelop.D.OptionPanels.ProjectOptions.cs -------------------------------------------------------------------------------- /MonoDevelop.DBinding/gtk-gui/MonoDevelop.D.OptionPanels.UnittestOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aBothe/Mono-D/HEAD/MonoDevelop.DBinding/gtk-gui/MonoDevelop.D.OptionPanels.UnittestOptions.cs -------------------------------------------------------------------------------- /MonoDevelop.DBinding/gtk-gui/MonoDevelop.D.Profiler.Gui.ProfilerPadWidget.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aBothe/Mono-D/HEAD/MonoDevelop.DBinding/gtk-gui/MonoDevelop.D.Profiler.Gui.ProfilerPadWidget.cs -------------------------------------------------------------------------------- /MonoDevelop.DBinding/gtk-gui/MonoDevelop.D.ProjectDependenciesWidget.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aBothe/Mono-D/HEAD/MonoDevelop.DBinding/gtk-gui/MonoDevelop.D.ProjectDependenciesWidget.cs -------------------------------------------------------------------------------- /MonoDevelop.DBinding/gtk-gui/MonoDevelop.D.ProjectIncludesWidget.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aBothe/Mono-D/HEAD/MonoDevelop.DBinding/gtk-gui/MonoDevelop.D.ProjectIncludesWidget.cs -------------------------------------------------------------------------------- /MonoDevelop.DBinding/gtk-gui/MonoDevelop.D.Refactoring.DustMiteArgDlg.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aBothe/Mono-D/HEAD/MonoDevelop.DBinding/gtk-gui/MonoDevelop.D.Refactoring.DustMiteArgDlg.cs -------------------------------------------------------------------------------- /MonoDevelop.DBinding/gtk-gui/MonoDevelop.D.ResourcesCompilerOptionsPanel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aBothe/Mono-D/HEAD/MonoDevelop.DBinding/gtk-gui/MonoDevelop.D.ResourcesCompilerOptionsPanel.cs -------------------------------------------------------------------------------- /MonoDevelop.DBinding/gtk-gui/generated.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aBothe/Mono-D/HEAD/MonoDevelop.DBinding/gtk-gui/generated.cs -------------------------------------------------------------------------------- /MonoDevelop.DBinding/gtk-gui/gui.stetic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aBothe/Mono-D/HEAD/MonoDevelop.DBinding/gtk-gui/gui.stetic -------------------------------------------------------------------------------- /MonoDevelop.DBinding/icons/d-asm-avx-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aBothe/Mono-D/HEAD/MonoDevelop.DBinding/icons/d-asm-avx-16.png -------------------------------------------------------------------------------- /MonoDevelop.DBinding/icons/d-asm-fpu-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aBothe/Mono-D/HEAD/MonoDevelop.DBinding/icons/d-asm-fpu-16.png -------------------------------------------------------------------------------- /MonoDevelop.DBinding/icons/d-asm-mmx-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aBothe/Mono-D/HEAD/MonoDevelop.DBinding/icons/d-asm-mmx-16.png -------------------------------------------------------------------------------- /MonoDevelop.DBinding/icons/d-asm-sse-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aBothe/Mono-D/HEAD/MonoDevelop.DBinding/icons/d-asm-sse-16.png -------------------------------------------------------------------------------- /MonoDevelop.DBinding/icons/d-asm-sse2-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aBothe/Mono-D/HEAD/MonoDevelop.DBinding/icons/d-asm-sse2-16.png -------------------------------------------------------------------------------- /MonoDevelop.DBinding/icons/d-asm-sse3-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aBothe/Mono-D/HEAD/MonoDevelop.DBinding/icons/d-asm-sse3-16.png -------------------------------------------------------------------------------- /MonoDevelop.DBinding/icons/d-asm-sse4.1-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aBothe/Mono-D/HEAD/MonoDevelop.DBinding/icons/d-asm-sse4.1-16.png -------------------------------------------------------------------------------- /MonoDevelop.DBinding/icons/d-asm-sse4.2-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aBothe/Mono-D/HEAD/MonoDevelop.DBinding/icons/d-asm-sse4.2-16.png -------------------------------------------------------------------------------- /MonoDevelop.DBinding/icons/d-asm-ssse3-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aBothe/Mono-D/HEAD/MonoDevelop.DBinding/icons/d-asm-ssse3-16.png -------------------------------------------------------------------------------- /MonoDevelop.DBinding/icons/d-asm-x64-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aBothe/Mono-D/HEAD/MonoDevelop.DBinding/icons/d-asm-x64-16.png -------------------------------------------------------------------------------- /MonoDevelop.DBinding/icons/d-asm-x86-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aBothe/Mono-D/HEAD/MonoDevelop.DBinding/icons/d-asm-x86-16.png -------------------------------------------------------------------------------- /MonoDevelop.DBinding/icons/dfile16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aBothe/Mono-D/HEAD/MonoDevelop.DBinding/icons/dfile16.png -------------------------------------------------------------------------------- /MonoDevelop.DBinding/icons/dfile32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aBothe/Mono-D/HEAD/MonoDevelop.DBinding/icons/dfile32.png -------------------------------------------------------------------------------- /MonoDevelop.DBinding/icons/dproj16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aBothe/Mono-D/HEAD/MonoDevelop.DBinding/icons/dproj16.png -------------------------------------------------------------------------------- /MonoDevelop.DBinding/icons/dproj32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aBothe/Mono-D/HEAD/MonoDevelop.DBinding/icons/dproj32.png -------------------------------------------------------------------------------- /MonoDevelop.DBinding/icons/element-abstract-class-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aBothe/Mono-D/HEAD/MonoDevelop.DBinding/icons/element-abstract-class-16.png -------------------------------------------------------------------------------- /MonoDevelop.DBinding/icons/element-abstract-method-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aBothe/Mono-D/HEAD/MonoDevelop.DBinding/icons/element-abstract-method-16.png -------------------------------------------------------------------------------- /MonoDevelop.DBinding/icons/element-alias-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aBothe/Mono-D/HEAD/MonoDevelop.DBinding/icons/element-alias-16.png -------------------------------------------------------------------------------- /MonoDevelop.DBinding/icons/element-local-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aBothe/Mono-D/HEAD/MonoDevelop.DBinding/icons/element-local-16.png -------------------------------------------------------------------------------- /MonoDevelop.DBinding/icons/element-local-16.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aBothe/Mono-D/HEAD/MonoDevelop.DBinding/icons/element-local-16.psd -------------------------------------------------------------------------------- /MonoDevelop.DBinding/icons/element-parameter-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aBothe/Mono-D/HEAD/MonoDevelop.DBinding/icons/element-parameter-16.png -------------------------------------------------------------------------------- /MonoDevelop.DBinding/icons/element-union-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aBothe/Mono-D/HEAD/MonoDevelop.DBinding/icons/element-union-16.png -------------------------------------------------------------------------------- /MonoDevelop.DBinding/icons/lazy-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aBothe/Mono-D/HEAD/MonoDevelop.DBinding/icons/lazy-16.png -------------------------------------------------------------------------------- /MonoDevelop.DBinding/icons/out-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aBothe/Mono-D/HEAD/MonoDevelop.DBinding/icons/out-16.png -------------------------------------------------------------------------------- /MonoDevelop.DBinding/icons/ref-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aBothe/Mono-D/HEAD/MonoDevelop.DBinding/icons/ref-16.png -------------------------------------------------------------------------------- /MonoDevelop.DBinding/icons/static-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aBothe/Mono-D/HEAD/MonoDevelop.DBinding/icons/static-16.png -------------------------------------------------------------------------------- /MonoDevelop.DBinding/templates/AnsiFile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aBothe/Mono-D/HEAD/MonoDevelop.DBinding/templates/AnsiFile.cs -------------------------------------------------------------------------------- /MonoDevelop.DBinding/templates/ConsoleProject.xpt.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aBothe/Mono-D/HEAD/MonoDevelop.DBinding/templates/ConsoleProject.xpt.xml -------------------------------------------------------------------------------- /MonoDevelop.DBinding/templates/DFileDescriptionTemplate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aBothe/Mono-D/HEAD/MonoDevelop.DBinding/templates/DFileDescriptionTemplate.cs -------------------------------------------------------------------------------- /MonoDevelop.DBinding/templates/EmptyDClass.xft.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aBothe/Mono-D/HEAD/MonoDevelop.DBinding/templates/EmptyDClass.xft.xml -------------------------------------------------------------------------------- /MonoDevelop.DBinding/templates/EmptyDFile.xft.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aBothe/Mono-D/HEAD/MonoDevelop.DBinding/templates/EmptyDFile.xft.xml -------------------------------------------------------------------------------- /MonoDevelop.DBinding/templates/EmptyProject.xpt.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aBothe/Mono-D/HEAD/MonoDevelop.DBinding/templates/EmptyProject.xpt.xml -------------------------------------------------------------------------------- /MonoDevelop.DBinding/templates/EmptyRCFile.xft.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aBothe/Mono-D/HEAD/MonoDevelop.DBinding/templates/EmptyRCFile.xft.xml -------------------------------------------------------------------------------- /MonoDevelop.DBinding/templates/SharedLibrary.xpt.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aBothe/Mono-D/HEAD/MonoDevelop.DBinding/templates/SharedLibrary.xpt.xml -------------------------------------------------------------------------------- /MonoDevelop.DBinding/templates/StaticLibrary.xpt.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aBothe/Mono-D/HEAD/MonoDevelop.DBinding/templates/StaticLibrary.xpt.xml -------------------------------------------------------------------------------- /MonoDevelop.DBinding/templates/Win32Project.xpt.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aBothe/Mono-D/HEAD/MonoDevelop.DBinding/templates/Win32Project.xpt.xml -------------------------------------------------------------------------------- /addin-project.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aBothe/Mono-D/HEAD/addin-project.xml -------------------------------------------------------------------------------- /ext/ICSharpCode.NRefactory.CSharp.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aBothe/Mono-D/HEAD/ext/ICSharpCode.NRefactory.CSharp.dll -------------------------------------------------------------------------------- /ext/ICSharpCode.NRefactory.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aBothe/Mono-D/HEAD/ext/ICSharpCode.NRefactory.dll -------------------------------------------------------------------------------- /ext/ICSharpCode.SharpZipLib.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aBothe/Mono-D/HEAD/ext/ICSharpCode.SharpZipLib.dll -------------------------------------------------------------------------------- /ext/Mono.Addins.Setup.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aBothe/Mono-D/HEAD/ext/Mono.Addins.Setup.dll -------------------------------------------------------------------------------- /ext/Mono.Addins.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aBothe/Mono-D/HEAD/ext/Mono.Addins.dll -------------------------------------------------------------------------------- /ext/Mono.Debugging.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aBothe/Mono-D/HEAD/ext/Mono.Debugging.dll -------------------------------------------------------------------------------- /ext/Mono.TextEditor.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aBothe/Mono-D/HEAD/ext/Mono.TextEditor.dll -------------------------------------------------------------------------------- /ext/MonoDevelop.Core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aBothe/Mono-D/HEAD/ext/MonoDevelop.Core.dll -------------------------------------------------------------------------------- /ext/MonoDevelop.Debugger.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aBothe/Mono-D/HEAD/ext/MonoDevelop.Debugger.dll -------------------------------------------------------------------------------- /ext/MonoDevelop.DesignerSupport.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aBothe/Mono-D/HEAD/ext/MonoDevelop.DesignerSupport.dll -------------------------------------------------------------------------------- /ext/MonoDevelop.GtkCore.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aBothe/Mono-D/HEAD/ext/MonoDevelop.GtkCore.dll -------------------------------------------------------------------------------- /ext/MonoDevelop.Ide.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aBothe/Mono-D/HEAD/ext/MonoDevelop.Ide.dll -------------------------------------------------------------------------------- /ext/MonoDevelop.Refactoring.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aBothe/Mono-D/HEAD/ext/MonoDevelop.Refactoring.dll -------------------------------------------------------------------------------- /ext/MonoDevelop.SourceEditor2.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aBothe/Mono-D/HEAD/ext/MonoDevelop.SourceEditor2.dll -------------------------------------------------------------------------------- /ext/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aBothe/Mono-D/HEAD/ext/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /ext/Xwt.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aBothe/Mono-D/HEAD/ext/Xwt.dll -------------------------------------------------------------------------------- /ext/libstetic.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aBothe/Mono-D/HEAD/ext/libstetic.dll -------------------------------------------------------------------------------- /ext/libsteticui.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aBothe/Mono-D/HEAD/ext/libsteticui.dll -------------------------------------------------------------------------------- /ext/update deps.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aBothe/Mono-D/HEAD/ext/update deps.bat -------------------------------------------------------------------------------- /license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aBothe/Mono-D/HEAD/license.txt -------------------------------------------------------------------------------- /make symlink.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aBothe/Mono-D/HEAD/make symlink.bat -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aBothe/Mono-D/HEAD/readme.md --------------------------------------------------------------------------------