├── .editorconfig ├── .gitattributes ├── .gitignore ├── CommonAssemblyInfo.cs ├── README.md ├── Rebracer.xml ├── References ├── v11.0 │ ├── Microsoft.VisualStudio.ComponentModelHost.dll │ ├── Microsoft.VisualStudio.CoreUtility.dll │ ├── Microsoft.VisualStudio.CoreUtility.xml │ ├── Microsoft.VisualStudio.Platform.VSEditor.dll │ ├── Microsoft.VisualStudio.Platform.WindowManagement.dll │ ├── Microsoft.VisualStudio.Settings.11.0.dll │ ├── Microsoft.VisualStudio.Settings.11.0.xml │ ├── Microsoft.VisualStudio.Shell.11.0.dll │ ├── Microsoft.VisualStudio.Shell.11.0.xml │ ├── Microsoft.VisualStudio.Shell.UI.Internal.dll │ ├── Microsoft.VisualStudio.Shell.ViewManager.dll │ ├── Microsoft.VisualStudio.Text.Data.dll │ ├── Microsoft.VisualStudio.Text.Data.xml │ ├── Microsoft.VisualStudio.Text.Internal.dll │ ├── Microsoft.VisualStudio.Text.Logic.dll │ ├── Microsoft.VisualStudio.Text.Logic.xml │ ├── Microsoft.VisualStudio.Text.UI.Wpf.dll │ ├── Microsoft.VisualStudio.Text.UI.Wpf.xml │ ├── Microsoft.VisualStudio.Text.UI.dll │ ├── Microsoft.VisualStudio.Text.UI.xml │ └── en │ │ ├── Microsoft.VisualStudio.Debugger.Parallel.resources.dll │ │ ├── Microsoft.VisualStudio.Platform.WindowManagement.resources.dll │ │ ├── Microsoft.VisualStudio.ProductKeyDialog.resources.dll │ │ └── Microsoft.VisualStudio.Shell.UI.Internal.resources.dll └── v14.0 │ ├── Microsoft.VisualStudio.ComponentModelHost.dll │ ├── Microsoft.VisualStudio.Composition.Configuration.dll │ ├── Microsoft.VisualStudio.Composition.dll │ ├── Microsoft.VisualStudio.CoreUtility.dll │ ├── Microsoft.VisualStudio.CoreUtility.xml │ ├── Microsoft.VisualStudio.Editor.dll │ ├── Microsoft.VisualStudio.Editor.xml │ ├── Microsoft.VisualStudio.Language.Intellisense.dll │ ├── Microsoft.VisualStudio.Language.Intellisense.xml │ ├── Microsoft.VisualStudio.LanguageServices.dll │ ├── Microsoft.VisualStudio.Shell.UI.Internal.dll │ ├── Microsoft.VisualStudio.Text.Data.dll │ ├── Microsoft.VisualStudio.Text.Data.xml │ ├── Microsoft.VisualStudio.Text.Internal.dll │ ├── Microsoft.VisualStudio.Text.Logic.dll │ ├── Microsoft.VisualStudio.Text.Logic.xml │ ├── Microsoft.VisualStudio.Text.UI.Wpf.dll │ ├── Microsoft.VisualStudio.Text.UI.Wpf.xml │ ├── Microsoft.VisualStudio.Text.UI.dll │ └── Microsoft.VisualStudio.Text.UI.xml ├── VSEmbed.DemoApp ├── App.config ├── App.xaml ├── App.xaml.cs ├── MainWindow.xaml ├── MainWindow.xaml.cs ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ └── Settings.settings └── VSEmbed.DemoApp.csproj ├── VSEmbed.Roslyn ├── Dev14KeyProcessor.cs ├── EditorWorkspace.cs ├── Properties │ └── AssemblyInfo.cs ├── RoslynBufferListener.cs ├── RoslynKeyProcessor.cs ├── RoslynSetup.cs ├── VSEmbed.Roslyn.csproj ├── XmlDocumentationProvider.cs └── packages.config ├── VSEmbed.sln └── VSEmbed ├── Controls ├── ComboBoxStyles.xaml ├── TextViewHost.cs ├── VsResizeGrip.xaml └── VsResizeGrip.xaml.cs ├── Editor └── ChainedKeyProcessor.cs ├── Exports ├── BasicUndoHistoryRegistry.cs ├── KeyProcessorInvoker.cs ├── Simple Exports.cs └── StandardKeyProcessor.cs ├── NativeMethods.cs ├── Properties └── AssemblyInfo.cs ├── Services ├── SettingsManagerWrapper.cs ├── Simple Services.cs ├── Stub Services.cs └── StubDTE.cs ├── TextViewExtensions.cs ├── VSEmbed.csproj ├── VSEmbed.nuspec ├── VsLoader.cs ├── VsMefContainerBuilder.cs ├── VsResourceKeys.cs ├── VsServiceProvider.cs ├── VsThemeDictionary.cs ├── nuget-pack.cmd └── packages.config /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLaks/VSEmbed/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLaks/VSEmbed/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLaks/VSEmbed/HEAD/.gitignore -------------------------------------------------------------------------------- /CommonAssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLaks/VSEmbed/HEAD/CommonAssemblyInfo.cs -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLaks/VSEmbed/HEAD/README.md -------------------------------------------------------------------------------- /Rebracer.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLaks/VSEmbed/HEAD/Rebracer.xml -------------------------------------------------------------------------------- /References/v11.0/Microsoft.VisualStudio.ComponentModelHost.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLaks/VSEmbed/HEAD/References/v11.0/Microsoft.VisualStudio.ComponentModelHost.dll -------------------------------------------------------------------------------- /References/v11.0/Microsoft.VisualStudio.CoreUtility.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLaks/VSEmbed/HEAD/References/v11.0/Microsoft.VisualStudio.CoreUtility.dll -------------------------------------------------------------------------------- /References/v11.0/Microsoft.VisualStudio.CoreUtility.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLaks/VSEmbed/HEAD/References/v11.0/Microsoft.VisualStudio.CoreUtility.xml -------------------------------------------------------------------------------- /References/v11.0/Microsoft.VisualStudio.Platform.VSEditor.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLaks/VSEmbed/HEAD/References/v11.0/Microsoft.VisualStudio.Platform.VSEditor.dll -------------------------------------------------------------------------------- /References/v11.0/Microsoft.VisualStudio.Platform.WindowManagement.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLaks/VSEmbed/HEAD/References/v11.0/Microsoft.VisualStudio.Platform.WindowManagement.dll -------------------------------------------------------------------------------- /References/v11.0/Microsoft.VisualStudio.Settings.11.0.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLaks/VSEmbed/HEAD/References/v11.0/Microsoft.VisualStudio.Settings.11.0.dll -------------------------------------------------------------------------------- /References/v11.0/Microsoft.VisualStudio.Settings.11.0.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLaks/VSEmbed/HEAD/References/v11.0/Microsoft.VisualStudio.Settings.11.0.xml -------------------------------------------------------------------------------- /References/v11.0/Microsoft.VisualStudio.Shell.11.0.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLaks/VSEmbed/HEAD/References/v11.0/Microsoft.VisualStudio.Shell.11.0.dll -------------------------------------------------------------------------------- /References/v11.0/Microsoft.VisualStudio.Shell.11.0.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLaks/VSEmbed/HEAD/References/v11.0/Microsoft.VisualStudio.Shell.11.0.xml -------------------------------------------------------------------------------- /References/v11.0/Microsoft.VisualStudio.Shell.UI.Internal.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLaks/VSEmbed/HEAD/References/v11.0/Microsoft.VisualStudio.Shell.UI.Internal.dll -------------------------------------------------------------------------------- /References/v11.0/Microsoft.VisualStudio.Shell.ViewManager.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLaks/VSEmbed/HEAD/References/v11.0/Microsoft.VisualStudio.Shell.ViewManager.dll -------------------------------------------------------------------------------- /References/v11.0/Microsoft.VisualStudio.Text.Data.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLaks/VSEmbed/HEAD/References/v11.0/Microsoft.VisualStudio.Text.Data.dll -------------------------------------------------------------------------------- /References/v11.0/Microsoft.VisualStudio.Text.Data.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLaks/VSEmbed/HEAD/References/v11.0/Microsoft.VisualStudio.Text.Data.xml -------------------------------------------------------------------------------- /References/v11.0/Microsoft.VisualStudio.Text.Internal.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLaks/VSEmbed/HEAD/References/v11.0/Microsoft.VisualStudio.Text.Internal.dll -------------------------------------------------------------------------------- /References/v11.0/Microsoft.VisualStudio.Text.Logic.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLaks/VSEmbed/HEAD/References/v11.0/Microsoft.VisualStudio.Text.Logic.dll -------------------------------------------------------------------------------- /References/v11.0/Microsoft.VisualStudio.Text.Logic.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLaks/VSEmbed/HEAD/References/v11.0/Microsoft.VisualStudio.Text.Logic.xml -------------------------------------------------------------------------------- /References/v11.0/Microsoft.VisualStudio.Text.UI.Wpf.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLaks/VSEmbed/HEAD/References/v11.0/Microsoft.VisualStudio.Text.UI.Wpf.dll -------------------------------------------------------------------------------- /References/v11.0/Microsoft.VisualStudio.Text.UI.Wpf.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLaks/VSEmbed/HEAD/References/v11.0/Microsoft.VisualStudio.Text.UI.Wpf.xml -------------------------------------------------------------------------------- /References/v11.0/Microsoft.VisualStudio.Text.UI.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLaks/VSEmbed/HEAD/References/v11.0/Microsoft.VisualStudio.Text.UI.dll -------------------------------------------------------------------------------- /References/v11.0/Microsoft.VisualStudio.Text.UI.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLaks/VSEmbed/HEAD/References/v11.0/Microsoft.VisualStudio.Text.UI.xml -------------------------------------------------------------------------------- /References/v11.0/en/Microsoft.VisualStudio.Debugger.Parallel.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLaks/VSEmbed/HEAD/References/v11.0/en/Microsoft.VisualStudio.Debugger.Parallel.resources.dll -------------------------------------------------------------------------------- /References/v11.0/en/Microsoft.VisualStudio.Platform.WindowManagement.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLaks/VSEmbed/HEAD/References/v11.0/en/Microsoft.VisualStudio.Platform.WindowManagement.resources.dll -------------------------------------------------------------------------------- /References/v11.0/en/Microsoft.VisualStudio.ProductKeyDialog.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLaks/VSEmbed/HEAD/References/v11.0/en/Microsoft.VisualStudio.ProductKeyDialog.resources.dll -------------------------------------------------------------------------------- /References/v11.0/en/Microsoft.VisualStudio.Shell.UI.Internal.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLaks/VSEmbed/HEAD/References/v11.0/en/Microsoft.VisualStudio.Shell.UI.Internal.resources.dll -------------------------------------------------------------------------------- /References/v14.0/Microsoft.VisualStudio.ComponentModelHost.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLaks/VSEmbed/HEAD/References/v14.0/Microsoft.VisualStudio.ComponentModelHost.dll -------------------------------------------------------------------------------- /References/v14.0/Microsoft.VisualStudio.Composition.Configuration.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLaks/VSEmbed/HEAD/References/v14.0/Microsoft.VisualStudio.Composition.Configuration.dll -------------------------------------------------------------------------------- /References/v14.0/Microsoft.VisualStudio.Composition.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLaks/VSEmbed/HEAD/References/v14.0/Microsoft.VisualStudio.Composition.dll -------------------------------------------------------------------------------- /References/v14.0/Microsoft.VisualStudio.CoreUtility.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLaks/VSEmbed/HEAD/References/v14.0/Microsoft.VisualStudio.CoreUtility.dll -------------------------------------------------------------------------------- /References/v14.0/Microsoft.VisualStudio.CoreUtility.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLaks/VSEmbed/HEAD/References/v14.0/Microsoft.VisualStudio.CoreUtility.xml -------------------------------------------------------------------------------- /References/v14.0/Microsoft.VisualStudio.Editor.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLaks/VSEmbed/HEAD/References/v14.0/Microsoft.VisualStudio.Editor.dll -------------------------------------------------------------------------------- /References/v14.0/Microsoft.VisualStudio.Editor.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLaks/VSEmbed/HEAD/References/v14.0/Microsoft.VisualStudio.Editor.xml -------------------------------------------------------------------------------- /References/v14.0/Microsoft.VisualStudio.Language.Intellisense.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLaks/VSEmbed/HEAD/References/v14.0/Microsoft.VisualStudio.Language.Intellisense.dll -------------------------------------------------------------------------------- /References/v14.0/Microsoft.VisualStudio.Language.Intellisense.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLaks/VSEmbed/HEAD/References/v14.0/Microsoft.VisualStudio.Language.Intellisense.xml -------------------------------------------------------------------------------- /References/v14.0/Microsoft.VisualStudio.LanguageServices.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLaks/VSEmbed/HEAD/References/v14.0/Microsoft.VisualStudio.LanguageServices.dll -------------------------------------------------------------------------------- /References/v14.0/Microsoft.VisualStudio.Shell.UI.Internal.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLaks/VSEmbed/HEAD/References/v14.0/Microsoft.VisualStudio.Shell.UI.Internal.dll -------------------------------------------------------------------------------- /References/v14.0/Microsoft.VisualStudio.Text.Data.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLaks/VSEmbed/HEAD/References/v14.0/Microsoft.VisualStudio.Text.Data.dll -------------------------------------------------------------------------------- /References/v14.0/Microsoft.VisualStudio.Text.Data.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLaks/VSEmbed/HEAD/References/v14.0/Microsoft.VisualStudio.Text.Data.xml -------------------------------------------------------------------------------- /References/v14.0/Microsoft.VisualStudio.Text.Internal.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLaks/VSEmbed/HEAD/References/v14.0/Microsoft.VisualStudio.Text.Internal.dll -------------------------------------------------------------------------------- /References/v14.0/Microsoft.VisualStudio.Text.Logic.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLaks/VSEmbed/HEAD/References/v14.0/Microsoft.VisualStudio.Text.Logic.dll -------------------------------------------------------------------------------- /References/v14.0/Microsoft.VisualStudio.Text.Logic.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLaks/VSEmbed/HEAD/References/v14.0/Microsoft.VisualStudio.Text.Logic.xml -------------------------------------------------------------------------------- /References/v14.0/Microsoft.VisualStudio.Text.UI.Wpf.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLaks/VSEmbed/HEAD/References/v14.0/Microsoft.VisualStudio.Text.UI.Wpf.dll -------------------------------------------------------------------------------- /References/v14.0/Microsoft.VisualStudio.Text.UI.Wpf.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLaks/VSEmbed/HEAD/References/v14.0/Microsoft.VisualStudio.Text.UI.Wpf.xml -------------------------------------------------------------------------------- /References/v14.0/Microsoft.VisualStudio.Text.UI.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLaks/VSEmbed/HEAD/References/v14.0/Microsoft.VisualStudio.Text.UI.dll -------------------------------------------------------------------------------- /References/v14.0/Microsoft.VisualStudio.Text.UI.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLaks/VSEmbed/HEAD/References/v14.0/Microsoft.VisualStudio.Text.UI.xml -------------------------------------------------------------------------------- /VSEmbed.DemoApp/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLaks/VSEmbed/HEAD/VSEmbed.DemoApp/App.config -------------------------------------------------------------------------------- /VSEmbed.DemoApp/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLaks/VSEmbed/HEAD/VSEmbed.DemoApp/App.xaml -------------------------------------------------------------------------------- /VSEmbed.DemoApp/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLaks/VSEmbed/HEAD/VSEmbed.DemoApp/App.xaml.cs -------------------------------------------------------------------------------- /VSEmbed.DemoApp/MainWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLaks/VSEmbed/HEAD/VSEmbed.DemoApp/MainWindow.xaml -------------------------------------------------------------------------------- /VSEmbed.DemoApp/MainWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLaks/VSEmbed/HEAD/VSEmbed.DemoApp/MainWindow.xaml.cs -------------------------------------------------------------------------------- /VSEmbed.DemoApp/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLaks/VSEmbed/HEAD/VSEmbed.DemoApp/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /VSEmbed.DemoApp/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLaks/VSEmbed/HEAD/VSEmbed.DemoApp/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /VSEmbed.DemoApp/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLaks/VSEmbed/HEAD/VSEmbed.DemoApp/Properties/Resources.resx -------------------------------------------------------------------------------- /VSEmbed.DemoApp/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLaks/VSEmbed/HEAD/VSEmbed.DemoApp/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /VSEmbed.DemoApp/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLaks/VSEmbed/HEAD/VSEmbed.DemoApp/Properties/Settings.settings -------------------------------------------------------------------------------- /VSEmbed.DemoApp/VSEmbed.DemoApp.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLaks/VSEmbed/HEAD/VSEmbed.DemoApp/VSEmbed.DemoApp.csproj -------------------------------------------------------------------------------- /VSEmbed.Roslyn/Dev14KeyProcessor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLaks/VSEmbed/HEAD/VSEmbed.Roslyn/Dev14KeyProcessor.cs -------------------------------------------------------------------------------- /VSEmbed.Roslyn/EditorWorkspace.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLaks/VSEmbed/HEAD/VSEmbed.Roslyn/EditorWorkspace.cs -------------------------------------------------------------------------------- /VSEmbed.Roslyn/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLaks/VSEmbed/HEAD/VSEmbed.Roslyn/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /VSEmbed.Roslyn/RoslynBufferListener.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLaks/VSEmbed/HEAD/VSEmbed.Roslyn/RoslynBufferListener.cs -------------------------------------------------------------------------------- /VSEmbed.Roslyn/RoslynKeyProcessor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLaks/VSEmbed/HEAD/VSEmbed.Roslyn/RoslynKeyProcessor.cs -------------------------------------------------------------------------------- /VSEmbed.Roslyn/RoslynSetup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLaks/VSEmbed/HEAD/VSEmbed.Roslyn/RoslynSetup.cs -------------------------------------------------------------------------------- /VSEmbed.Roslyn/VSEmbed.Roslyn.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLaks/VSEmbed/HEAD/VSEmbed.Roslyn/VSEmbed.Roslyn.csproj -------------------------------------------------------------------------------- /VSEmbed.Roslyn/XmlDocumentationProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLaks/VSEmbed/HEAD/VSEmbed.Roslyn/XmlDocumentationProvider.cs -------------------------------------------------------------------------------- /VSEmbed.Roslyn/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLaks/VSEmbed/HEAD/VSEmbed.Roslyn/packages.config -------------------------------------------------------------------------------- /VSEmbed.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLaks/VSEmbed/HEAD/VSEmbed.sln -------------------------------------------------------------------------------- /VSEmbed/Controls/ComboBoxStyles.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLaks/VSEmbed/HEAD/VSEmbed/Controls/ComboBoxStyles.xaml -------------------------------------------------------------------------------- /VSEmbed/Controls/TextViewHost.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLaks/VSEmbed/HEAD/VSEmbed/Controls/TextViewHost.cs -------------------------------------------------------------------------------- /VSEmbed/Controls/VsResizeGrip.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLaks/VSEmbed/HEAD/VSEmbed/Controls/VsResizeGrip.xaml -------------------------------------------------------------------------------- /VSEmbed/Controls/VsResizeGrip.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLaks/VSEmbed/HEAD/VSEmbed/Controls/VsResizeGrip.xaml.cs -------------------------------------------------------------------------------- /VSEmbed/Editor/ChainedKeyProcessor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLaks/VSEmbed/HEAD/VSEmbed/Editor/ChainedKeyProcessor.cs -------------------------------------------------------------------------------- /VSEmbed/Exports/BasicUndoHistoryRegistry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLaks/VSEmbed/HEAD/VSEmbed/Exports/BasicUndoHistoryRegistry.cs -------------------------------------------------------------------------------- /VSEmbed/Exports/KeyProcessorInvoker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLaks/VSEmbed/HEAD/VSEmbed/Exports/KeyProcessorInvoker.cs -------------------------------------------------------------------------------- /VSEmbed/Exports/Simple Exports.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLaks/VSEmbed/HEAD/VSEmbed/Exports/Simple Exports.cs -------------------------------------------------------------------------------- /VSEmbed/Exports/StandardKeyProcessor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLaks/VSEmbed/HEAD/VSEmbed/Exports/StandardKeyProcessor.cs -------------------------------------------------------------------------------- /VSEmbed/NativeMethods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLaks/VSEmbed/HEAD/VSEmbed/NativeMethods.cs -------------------------------------------------------------------------------- /VSEmbed/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLaks/VSEmbed/HEAD/VSEmbed/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /VSEmbed/Services/SettingsManagerWrapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLaks/VSEmbed/HEAD/VSEmbed/Services/SettingsManagerWrapper.cs -------------------------------------------------------------------------------- /VSEmbed/Services/Simple Services.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLaks/VSEmbed/HEAD/VSEmbed/Services/Simple Services.cs -------------------------------------------------------------------------------- /VSEmbed/Services/Stub Services.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLaks/VSEmbed/HEAD/VSEmbed/Services/Stub Services.cs -------------------------------------------------------------------------------- /VSEmbed/Services/StubDTE.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLaks/VSEmbed/HEAD/VSEmbed/Services/StubDTE.cs -------------------------------------------------------------------------------- /VSEmbed/TextViewExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLaks/VSEmbed/HEAD/VSEmbed/TextViewExtensions.cs -------------------------------------------------------------------------------- /VSEmbed/VSEmbed.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLaks/VSEmbed/HEAD/VSEmbed/VSEmbed.csproj -------------------------------------------------------------------------------- /VSEmbed/VSEmbed.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLaks/VSEmbed/HEAD/VSEmbed/VSEmbed.nuspec -------------------------------------------------------------------------------- /VSEmbed/VsLoader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLaks/VSEmbed/HEAD/VSEmbed/VsLoader.cs -------------------------------------------------------------------------------- /VSEmbed/VsMefContainerBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLaks/VSEmbed/HEAD/VSEmbed/VsMefContainerBuilder.cs -------------------------------------------------------------------------------- /VSEmbed/VsResourceKeys.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLaks/VSEmbed/HEAD/VSEmbed/VsResourceKeys.cs -------------------------------------------------------------------------------- /VSEmbed/VsServiceProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLaks/VSEmbed/HEAD/VSEmbed/VsServiceProvider.cs -------------------------------------------------------------------------------- /VSEmbed/VsThemeDictionary.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLaks/VSEmbed/HEAD/VSEmbed/VsThemeDictionary.cs -------------------------------------------------------------------------------- /VSEmbed/nuget-pack.cmd: -------------------------------------------------------------------------------- 1 | nuget pack -p Configuration=Release -Symbols VSEmbed.csproj -------------------------------------------------------------------------------- /VSEmbed/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLaks/VSEmbed/HEAD/VSEmbed/packages.config --------------------------------------------------------------------------------