├── .gitattributes ├── .gitignore ├── CHANGELOG.md ├── ConEmuIntegration.sln ├── ConEmuIntegration ├── ConEmuIntegration.csproj ├── ConEmuProduct │ ├── OpenInConEmu.cs │ └── ProductEnvironment.cs ├── ConEmuWindowPackage.cs ├── ConEmuWindowPackage.de-DE.vsct ├── ConEmuWindowPackage.en-US.vsct ├── ExceptionMessageBox.xaml ├── ExceptionMessageBox.xaml.cs ├── Key.snk ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.de-DE.Designer.cs │ ├── Resources.de-DE.resx │ ├── Resources.en-US.Designer.cs │ ├── Resources.en-US.resx │ └── Resources.resx ├── Resources │ ├── ConEmu.xml │ ├── Icon.png │ ├── Preview.png │ └── alert.png ├── Settings │ ├── OptionPageGridConEmuPaths.cs │ ├── OptionPageGridConEmuPathsControl.Designer.cs │ ├── OptionPageGridConEmuPathsControl.cs │ └── OptionPageGridConEmuPathsControl.resx ├── SolutionExplorer │ ├── ExecuteInConEmu.cs │ ├── OpenFolderButtonItemNode.cs │ ├── OpenFolderButtonProjectNode.cs │ ├── OpenFolderButtonSolutionNode.cs │ └── OpenOutDirectoryButtonProjectNode.cs ├── ToolWindow │ ├── ConEmuWindow.cs │ ├── ConEmuWindowCommand.cs │ ├── ConEmuWindowControl.xaml │ └── ConEmuWindowControl.xaml.cs ├── VSPackage.de-DE.resx ├── VSPackage.en-US.resx ├── VisualStudio │ └── ProjectSettings.cs ├── app.config └── source.extension.vsixmanifest ├── Images ├── ComEmuInViewMenu.png ├── ConEmuFolderView.png ├── ConEmuSolutionExplorer.png ├── ConEmuVisualStudio.png ├── SettingsConEmu.png └── extension.png ├── LICENSE └── README.md /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Therena/ConEmuIntegration/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Therena/ConEmuIntegration/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Therena/ConEmuIntegration/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /ConEmuIntegration.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Therena/ConEmuIntegration/HEAD/ConEmuIntegration.sln -------------------------------------------------------------------------------- /ConEmuIntegration/ConEmuIntegration.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Therena/ConEmuIntegration/HEAD/ConEmuIntegration/ConEmuIntegration.csproj -------------------------------------------------------------------------------- /ConEmuIntegration/ConEmuProduct/OpenInConEmu.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Therena/ConEmuIntegration/HEAD/ConEmuIntegration/ConEmuProduct/OpenInConEmu.cs -------------------------------------------------------------------------------- /ConEmuIntegration/ConEmuProduct/ProductEnvironment.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Therena/ConEmuIntegration/HEAD/ConEmuIntegration/ConEmuProduct/ProductEnvironment.cs -------------------------------------------------------------------------------- /ConEmuIntegration/ConEmuWindowPackage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Therena/ConEmuIntegration/HEAD/ConEmuIntegration/ConEmuWindowPackage.cs -------------------------------------------------------------------------------- /ConEmuIntegration/ConEmuWindowPackage.de-DE.vsct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Therena/ConEmuIntegration/HEAD/ConEmuIntegration/ConEmuWindowPackage.de-DE.vsct -------------------------------------------------------------------------------- /ConEmuIntegration/ConEmuWindowPackage.en-US.vsct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Therena/ConEmuIntegration/HEAD/ConEmuIntegration/ConEmuWindowPackage.en-US.vsct -------------------------------------------------------------------------------- /ConEmuIntegration/ExceptionMessageBox.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Therena/ConEmuIntegration/HEAD/ConEmuIntegration/ExceptionMessageBox.xaml -------------------------------------------------------------------------------- /ConEmuIntegration/ExceptionMessageBox.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Therena/ConEmuIntegration/HEAD/ConEmuIntegration/ExceptionMessageBox.xaml.cs -------------------------------------------------------------------------------- /ConEmuIntegration/Key.snk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Therena/ConEmuIntegration/HEAD/ConEmuIntegration/Key.snk -------------------------------------------------------------------------------- /ConEmuIntegration/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Therena/ConEmuIntegration/HEAD/ConEmuIntegration/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /ConEmuIntegration/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Therena/ConEmuIntegration/HEAD/ConEmuIntegration/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /ConEmuIntegration/Properties/Resources.de-DE.Designer.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ConEmuIntegration/Properties/Resources.de-DE.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Therena/ConEmuIntegration/HEAD/ConEmuIntegration/Properties/Resources.de-DE.resx -------------------------------------------------------------------------------- /ConEmuIntegration/Properties/Resources.en-US.Designer.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ConEmuIntegration/Properties/Resources.en-US.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Therena/ConEmuIntegration/HEAD/ConEmuIntegration/Properties/Resources.en-US.resx -------------------------------------------------------------------------------- /ConEmuIntegration/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Therena/ConEmuIntegration/HEAD/ConEmuIntegration/Properties/Resources.resx -------------------------------------------------------------------------------- /ConEmuIntegration/Resources/ConEmu.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Therena/ConEmuIntegration/HEAD/ConEmuIntegration/Resources/ConEmu.xml -------------------------------------------------------------------------------- /ConEmuIntegration/Resources/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Therena/ConEmuIntegration/HEAD/ConEmuIntegration/Resources/Icon.png -------------------------------------------------------------------------------- /ConEmuIntegration/Resources/Preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Therena/ConEmuIntegration/HEAD/ConEmuIntegration/Resources/Preview.png -------------------------------------------------------------------------------- /ConEmuIntegration/Resources/alert.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Therena/ConEmuIntegration/HEAD/ConEmuIntegration/Resources/alert.png -------------------------------------------------------------------------------- /ConEmuIntegration/Settings/OptionPageGridConEmuPaths.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Therena/ConEmuIntegration/HEAD/ConEmuIntegration/Settings/OptionPageGridConEmuPaths.cs -------------------------------------------------------------------------------- /ConEmuIntegration/Settings/OptionPageGridConEmuPathsControl.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Therena/ConEmuIntegration/HEAD/ConEmuIntegration/Settings/OptionPageGridConEmuPathsControl.Designer.cs -------------------------------------------------------------------------------- /ConEmuIntegration/Settings/OptionPageGridConEmuPathsControl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Therena/ConEmuIntegration/HEAD/ConEmuIntegration/Settings/OptionPageGridConEmuPathsControl.cs -------------------------------------------------------------------------------- /ConEmuIntegration/Settings/OptionPageGridConEmuPathsControl.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Therena/ConEmuIntegration/HEAD/ConEmuIntegration/Settings/OptionPageGridConEmuPathsControl.resx -------------------------------------------------------------------------------- /ConEmuIntegration/SolutionExplorer/ExecuteInConEmu.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Therena/ConEmuIntegration/HEAD/ConEmuIntegration/SolutionExplorer/ExecuteInConEmu.cs -------------------------------------------------------------------------------- /ConEmuIntegration/SolutionExplorer/OpenFolderButtonItemNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Therena/ConEmuIntegration/HEAD/ConEmuIntegration/SolutionExplorer/OpenFolderButtonItemNode.cs -------------------------------------------------------------------------------- /ConEmuIntegration/SolutionExplorer/OpenFolderButtonProjectNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Therena/ConEmuIntegration/HEAD/ConEmuIntegration/SolutionExplorer/OpenFolderButtonProjectNode.cs -------------------------------------------------------------------------------- /ConEmuIntegration/SolutionExplorer/OpenFolderButtonSolutionNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Therena/ConEmuIntegration/HEAD/ConEmuIntegration/SolutionExplorer/OpenFolderButtonSolutionNode.cs -------------------------------------------------------------------------------- /ConEmuIntegration/SolutionExplorer/OpenOutDirectoryButtonProjectNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Therena/ConEmuIntegration/HEAD/ConEmuIntegration/SolutionExplorer/OpenOutDirectoryButtonProjectNode.cs -------------------------------------------------------------------------------- /ConEmuIntegration/ToolWindow/ConEmuWindow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Therena/ConEmuIntegration/HEAD/ConEmuIntegration/ToolWindow/ConEmuWindow.cs -------------------------------------------------------------------------------- /ConEmuIntegration/ToolWindow/ConEmuWindowCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Therena/ConEmuIntegration/HEAD/ConEmuIntegration/ToolWindow/ConEmuWindowCommand.cs -------------------------------------------------------------------------------- /ConEmuIntegration/ToolWindow/ConEmuWindowControl.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Therena/ConEmuIntegration/HEAD/ConEmuIntegration/ToolWindow/ConEmuWindowControl.xaml -------------------------------------------------------------------------------- /ConEmuIntegration/ToolWindow/ConEmuWindowControl.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Therena/ConEmuIntegration/HEAD/ConEmuIntegration/ToolWindow/ConEmuWindowControl.xaml.cs -------------------------------------------------------------------------------- /ConEmuIntegration/VSPackage.de-DE.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Therena/ConEmuIntegration/HEAD/ConEmuIntegration/VSPackage.de-DE.resx -------------------------------------------------------------------------------- /ConEmuIntegration/VSPackage.en-US.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Therena/ConEmuIntegration/HEAD/ConEmuIntegration/VSPackage.en-US.resx -------------------------------------------------------------------------------- /ConEmuIntegration/VisualStudio/ProjectSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Therena/ConEmuIntegration/HEAD/ConEmuIntegration/VisualStudio/ProjectSettings.cs -------------------------------------------------------------------------------- /ConEmuIntegration/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Therena/ConEmuIntegration/HEAD/ConEmuIntegration/app.config -------------------------------------------------------------------------------- /ConEmuIntegration/source.extension.vsixmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Therena/ConEmuIntegration/HEAD/ConEmuIntegration/source.extension.vsixmanifest -------------------------------------------------------------------------------- /Images/ComEmuInViewMenu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Therena/ConEmuIntegration/HEAD/Images/ComEmuInViewMenu.png -------------------------------------------------------------------------------- /Images/ConEmuFolderView.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Therena/ConEmuIntegration/HEAD/Images/ConEmuFolderView.png -------------------------------------------------------------------------------- /Images/ConEmuSolutionExplorer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Therena/ConEmuIntegration/HEAD/Images/ConEmuSolutionExplorer.png -------------------------------------------------------------------------------- /Images/ConEmuVisualStudio.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Therena/ConEmuIntegration/HEAD/Images/ConEmuVisualStudio.png -------------------------------------------------------------------------------- /Images/SettingsConEmu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Therena/ConEmuIntegration/HEAD/Images/SettingsConEmu.png -------------------------------------------------------------------------------- /Images/extension.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Therena/ConEmuIntegration/HEAD/Images/extension.png -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Therena/ConEmuIntegration/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Therena/ConEmuIntegration/HEAD/README.md --------------------------------------------------------------------------------