├── .gitattributes ├── .gitignore ├── LICENSE ├── README.md ├── TreeViewControl ├── IntegerToIndentationConverter.cpp ├── IntegerToIndentationConverter.h ├── TreeNode.cpp ├── TreeNode.h ├── TreeView.cpp ├── TreeView.h ├── TreeViewControl.vcxproj ├── TreeViewControl.vcxproj.filters ├── TreeViewItem.cpp ├── TreeViewItem.h ├── TreeViewItemAutomationPeer.cpp ├── TreeViewItemAutomationPeer.h ├── ViewModel.cpp ├── ViewModel.h ├── pch.cpp └── pch.h ├── VisualStudioShell.Controls ├── MenuFlyoutImageItem.cs ├── Properties │ ├── AssemblyInfo.cs │ └── VisualStudioShell.Controls.rd.xml ├── Themes │ └── Generic.xaml ├── VisualStudioShell.Controls.csproj └── project.json ├── VisualStudioShell.sln └── VisualStudioShell ├── App.xaml ├── App.xaml.cs ├── Assets ├── LockScreenLogo.scale-200.png ├── SplashScreen.scale-200.png ├── Square150x150Logo.scale-200.png ├── Square44x44Logo.altform-unplated_targetsize-16.png ├── Square44x44Logo.altform-unplated_targetsize-256.png ├── Square44x44Logo.altform-unplated_targetsize-32.png ├── Square44x44Logo.altform-unplated_targetsize-48.png ├── Square44x44Logo.scale-100.png ├── Square44x44Logo.scale-125.png ├── Square44x44Logo.scale-150.png ├── Square44x44Logo.scale-200.png ├── Square44x44Logo.scale-400.png ├── Square44x44Logo.targetsize-16.png ├── Square44x44Logo.targetsize-24.png ├── Square44x44Logo.targetsize-24_altform-unplated.png ├── Square44x44Logo.targetsize-256.png ├── Square44x44Logo.targetsize-32.png ├── Square44x44Logo.targetsize-48.png ├── StoreLogo.png └── Wide310x150Logo.scale-200.png ├── Controls ├── DiagnosticTools.xaml ├── DiagnosticTools.xaml.cs ├── LiveVisualTree.xaml ├── LiveVisualTree.xaml.cs ├── Notifications.xaml ├── Notifications.xaml.cs ├── SolutionExplorer.xaml ├── SolutionExplorer.xaml.cs ├── Toolbox.xaml ├── Toolbox.xaml.cs └── TreeNodeData.cs ├── Converter ├── BooleanToVisibilityConverter.cs └── GlyphConverter.cs ├── Images ├── Menu │ ├── CloseSolution.png │ ├── Debug.png │ ├── NewProject.png │ ├── NewWebsite.png │ ├── Save.png │ └── SaveAll.png ├── SolutionExplorer │ ├── FileCs.png │ ├── FileXaml.png │ ├── FileXamlCs.png │ ├── HeaderPinned.png │ ├── HeaderUnpinned.png │ ├── ProjectCSharp.png │ ├── References.png │ └── Solution.png ├── Titlebar │ ├── Feedback.png │ └── Notifications.png ├── VisualStudioIcon.png └── thomas.png ├── MainPage.xaml ├── MainPage.xaml.cs ├── Package.appxmanifest ├── Properties ├── AssemblyInfo.cs └── Default.rd.xml ├── Resources ├── Brushes.xaml ├── Button.xaml ├── MenuFlyoutSubItem.xaml ├── Pivot.xaml └── PivotHeaderItem.xaml ├── VisualStudioShell.csproj └── project.json /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasclaudiushuber/Uwp-Visual-Studio-Shell/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasclaudiushuber/Uwp-Visual-Studio-Shell/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasclaudiushuber/Uwp-Visual-Studio-Shell/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasclaudiushuber/Uwp-Visual-Studio-Shell/HEAD/README.md -------------------------------------------------------------------------------- /TreeViewControl/IntegerToIndentationConverter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasclaudiushuber/Uwp-Visual-Studio-Shell/HEAD/TreeViewControl/IntegerToIndentationConverter.cpp -------------------------------------------------------------------------------- /TreeViewControl/IntegerToIndentationConverter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasclaudiushuber/Uwp-Visual-Studio-Shell/HEAD/TreeViewControl/IntegerToIndentationConverter.h -------------------------------------------------------------------------------- /TreeViewControl/TreeNode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasclaudiushuber/Uwp-Visual-Studio-Shell/HEAD/TreeViewControl/TreeNode.cpp -------------------------------------------------------------------------------- /TreeViewControl/TreeNode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasclaudiushuber/Uwp-Visual-Studio-Shell/HEAD/TreeViewControl/TreeNode.h -------------------------------------------------------------------------------- /TreeViewControl/TreeView.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasclaudiushuber/Uwp-Visual-Studio-Shell/HEAD/TreeViewControl/TreeView.cpp -------------------------------------------------------------------------------- /TreeViewControl/TreeView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasclaudiushuber/Uwp-Visual-Studio-Shell/HEAD/TreeViewControl/TreeView.h -------------------------------------------------------------------------------- /TreeViewControl/TreeViewControl.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasclaudiushuber/Uwp-Visual-Studio-Shell/HEAD/TreeViewControl/TreeViewControl.vcxproj -------------------------------------------------------------------------------- /TreeViewControl/TreeViewControl.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasclaudiushuber/Uwp-Visual-Studio-Shell/HEAD/TreeViewControl/TreeViewControl.vcxproj.filters -------------------------------------------------------------------------------- /TreeViewControl/TreeViewItem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasclaudiushuber/Uwp-Visual-Studio-Shell/HEAD/TreeViewControl/TreeViewItem.cpp -------------------------------------------------------------------------------- /TreeViewControl/TreeViewItem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasclaudiushuber/Uwp-Visual-Studio-Shell/HEAD/TreeViewControl/TreeViewItem.h -------------------------------------------------------------------------------- /TreeViewControl/TreeViewItemAutomationPeer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasclaudiushuber/Uwp-Visual-Studio-Shell/HEAD/TreeViewControl/TreeViewItemAutomationPeer.cpp -------------------------------------------------------------------------------- /TreeViewControl/TreeViewItemAutomationPeer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasclaudiushuber/Uwp-Visual-Studio-Shell/HEAD/TreeViewControl/TreeViewItemAutomationPeer.h -------------------------------------------------------------------------------- /TreeViewControl/ViewModel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasclaudiushuber/Uwp-Visual-Studio-Shell/HEAD/TreeViewControl/ViewModel.cpp -------------------------------------------------------------------------------- /TreeViewControl/ViewModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasclaudiushuber/Uwp-Visual-Studio-Shell/HEAD/TreeViewControl/ViewModel.h -------------------------------------------------------------------------------- /TreeViewControl/pch.cpp: -------------------------------------------------------------------------------- 1 | #include "pch.h" 2 | -------------------------------------------------------------------------------- /TreeViewControl/pch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasclaudiushuber/Uwp-Visual-Studio-Shell/HEAD/TreeViewControl/pch.h -------------------------------------------------------------------------------- /VisualStudioShell.Controls/MenuFlyoutImageItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasclaudiushuber/Uwp-Visual-Studio-Shell/HEAD/VisualStudioShell.Controls/MenuFlyoutImageItem.cs -------------------------------------------------------------------------------- /VisualStudioShell.Controls/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasclaudiushuber/Uwp-Visual-Studio-Shell/HEAD/VisualStudioShell.Controls/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /VisualStudioShell.Controls/Properties/VisualStudioShell.Controls.rd.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasclaudiushuber/Uwp-Visual-Studio-Shell/HEAD/VisualStudioShell.Controls/Properties/VisualStudioShell.Controls.rd.xml -------------------------------------------------------------------------------- /VisualStudioShell.Controls/Themes/Generic.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasclaudiushuber/Uwp-Visual-Studio-Shell/HEAD/VisualStudioShell.Controls/Themes/Generic.xaml -------------------------------------------------------------------------------- /VisualStudioShell.Controls/VisualStudioShell.Controls.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasclaudiushuber/Uwp-Visual-Studio-Shell/HEAD/VisualStudioShell.Controls/VisualStudioShell.Controls.csproj -------------------------------------------------------------------------------- /VisualStudioShell.Controls/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasclaudiushuber/Uwp-Visual-Studio-Shell/HEAD/VisualStudioShell.Controls/project.json -------------------------------------------------------------------------------- /VisualStudioShell.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasclaudiushuber/Uwp-Visual-Studio-Shell/HEAD/VisualStudioShell.sln -------------------------------------------------------------------------------- /VisualStudioShell/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasclaudiushuber/Uwp-Visual-Studio-Shell/HEAD/VisualStudioShell/App.xaml -------------------------------------------------------------------------------- /VisualStudioShell/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasclaudiushuber/Uwp-Visual-Studio-Shell/HEAD/VisualStudioShell/App.xaml.cs -------------------------------------------------------------------------------- /VisualStudioShell/Assets/LockScreenLogo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasclaudiushuber/Uwp-Visual-Studio-Shell/HEAD/VisualStudioShell/Assets/LockScreenLogo.scale-200.png -------------------------------------------------------------------------------- /VisualStudioShell/Assets/SplashScreen.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasclaudiushuber/Uwp-Visual-Studio-Shell/HEAD/VisualStudioShell/Assets/SplashScreen.scale-200.png -------------------------------------------------------------------------------- /VisualStudioShell/Assets/Square150x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasclaudiushuber/Uwp-Visual-Studio-Shell/HEAD/VisualStudioShell/Assets/Square150x150Logo.scale-200.png -------------------------------------------------------------------------------- /VisualStudioShell/Assets/Square44x44Logo.altform-unplated_targetsize-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasclaudiushuber/Uwp-Visual-Studio-Shell/HEAD/VisualStudioShell/Assets/Square44x44Logo.altform-unplated_targetsize-16.png -------------------------------------------------------------------------------- /VisualStudioShell/Assets/Square44x44Logo.altform-unplated_targetsize-256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasclaudiushuber/Uwp-Visual-Studio-Shell/HEAD/VisualStudioShell/Assets/Square44x44Logo.altform-unplated_targetsize-256.png -------------------------------------------------------------------------------- /VisualStudioShell/Assets/Square44x44Logo.altform-unplated_targetsize-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasclaudiushuber/Uwp-Visual-Studio-Shell/HEAD/VisualStudioShell/Assets/Square44x44Logo.altform-unplated_targetsize-32.png -------------------------------------------------------------------------------- /VisualStudioShell/Assets/Square44x44Logo.altform-unplated_targetsize-48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasclaudiushuber/Uwp-Visual-Studio-Shell/HEAD/VisualStudioShell/Assets/Square44x44Logo.altform-unplated_targetsize-48.png -------------------------------------------------------------------------------- /VisualStudioShell/Assets/Square44x44Logo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasclaudiushuber/Uwp-Visual-Studio-Shell/HEAD/VisualStudioShell/Assets/Square44x44Logo.scale-100.png -------------------------------------------------------------------------------- /VisualStudioShell/Assets/Square44x44Logo.scale-125.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasclaudiushuber/Uwp-Visual-Studio-Shell/HEAD/VisualStudioShell/Assets/Square44x44Logo.scale-125.png -------------------------------------------------------------------------------- /VisualStudioShell/Assets/Square44x44Logo.scale-150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasclaudiushuber/Uwp-Visual-Studio-Shell/HEAD/VisualStudioShell/Assets/Square44x44Logo.scale-150.png -------------------------------------------------------------------------------- /VisualStudioShell/Assets/Square44x44Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasclaudiushuber/Uwp-Visual-Studio-Shell/HEAD/VisualStudioShell/Assets/Square44x44Logo.scale-200.png -------------------------------------------------------------------------------- /VisualStudioShell/Assets/Square44x44Logo.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasclaudiushuber/Uwp-Visual-Studio-Shell/HEAD/VisualStudioShell/Assets/Square44x44Logo.scale-400.png -------------------------------------------------------------------------------- /VisualStudioShell/Assets/Square44x44Logo.targetsize-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasclaudiushuber/Uwp-Visual-Studio-Shell/HEAD/VisualStudioShell/Assets/Square44x44Logo.targetsize-16.png -------------------------------------------------------------------------------- /VisualStudioShell/Assets/Square44x44Logo.targetsize-24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasclaudiushuber/Uwp-Visual-Studio-Shell/HEAD/VisualStudioShell/Assets/Square44x44Logo.targetsize-24.png -------------------------------------------------------------------------------- /VisualStudioShell/Assets/Square44x44Logo.targetsize-24_altform-unplated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasclaudiushuber/Uwp-Visual-Studio-Shell/HEAD/VisualStudioShell/Assets/Square44x44Logo.targetsize-24_altform-unplated.png -------------------------------------------------------------------------------- /VisualStudioShell/Assets/Square44x44Logo.targetsize-256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasclaudiushuber/Uwp-Visual-Studio-Shell/HEAD/VisualStudioShell/Assets/Square44x44Logo.targetsize-256.png -------------------------------------------------------------------------------- /VisualStudioShell/Assets/Square44x44Logo.targetsize-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasclaudiushuber/Uwp-Visual-Studio-Shell/HEAD/VisualStudioShell/Assets/Square44x44Logo.targetsize-32.png -------------------------------------------------------------------------------- /VisualStudioShell/Assets/Square44x44Logo.targetsize-48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasclaudiushuber/Uwp-Visual-Studio-Shell/HEAD/VisualStudioShell/Assets/Square44x44Logo.targetsize-48.png -------------------------------------------------------------------------------- /VisualStudioShell/Assets/StoreLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasclaudiushuber/Uwp-Visual-Studio-Shell/HEAD/VisualStudioShell/Assets/StoreLogo.png -------------------------------------------------------------------------------- /VisualStudioShell/Assets/Wide310x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasclaudiushuber/Uwp-Visual-Studio-Shell/HEAD/VisualStudioShell/Assets/Wide310x150Logo.scale-200.png -------------------------------------------------------------------------------- /VisualStudioShell/Controls/DiagnosticTools.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasclaudiushuber/Uwp-Visual-Studio-Shell/HEAD/VisualStudioShell/Controls/DiagnosticTools.xaml -------------------------------------------------------------------------------- /VisualStudioShell/Controls/DiagnosticTools.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasclaudiushuber/Uwp-Visual-Studio-Shell/HEAD/VisualStudioShell/Controls/DiagnosticTools.xaml.cs -------------------------------------------------------------------------------- /VisualStudioShell/Controls/LiveVisualTree.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasclaudiushuber/Uwp-Visual-Studio-Shell/HEAD/VisualStudioShell/Controls/LiveVisualTree.xaml -------------------------------------------------------------------------------- /VisualStudioShell/Controls/LiveVisualTree.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasclaudiushuber/Uwp-Visual-Studio-Shell/HEAD/VisualStudioShell/Controls/LiveVisualTree.xaml.cs -------------------------------------------------------------------------------- /VisualStudioShell/Controls/Notifications.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasclaudiushuber/Uwp-Visual-Studio-Shell/HEAD/VisualStudioShell/Controls/Notifications.xaml -------------------------------------------------------------------------------- /VisualStudioShell/Controls/Notifications.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasclaudiushuber/Uwp-Visual-Studio-Shell/HEAD/VisualStudioShell/Controls/Notifications.xaml.cs -------------------------------------------------------------------------------- /VisualStudioShell/Controls/SolutionExplorer.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasclaudiushuber/Uwp-Visual-Studio-Shell/HEAD/VisualStudioShell/Controls/SolutionExplorer.xaml -------------------------------------------------------------------------------- /VisualStudioShell/Controls/SolutionExplorer.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasclaudiushuber/Uwp-Visual-Studio-Shell/HEAD/VisualStudioShell/Controls/SolutionExplorer.xaml.cs -------------------------------------------------------------------------------- /VisualStudioShell/Controls/Toolbox.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasclaudiushuber/Uwp-Visual-Studio-Shell/HEAD/VisualStudioShell/Controls/Toolbox.xaml -------------------------------------------------------------------------------- /VisualStudioShell/Controls/Toolbox.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasclaudiushuber/Uwp-Visual-Studio-Shell/HEAD/VisualStudioShell/Controls/Toolbox.xaml.cs -------------------------------------------------------------------------------- /VisualStudioShell/Controls/TreeNodeData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasclaudiushuber/Uwp-Visual-Studio-Shell/HEAD/VisualStudioShell/Controls/TreeNodeData.cs -------------------------------------------------------------------------------- /VisualStudioShell/Converter/BooleanToVisibilityConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasclaudiushuber/Uwp-Visual-Studio-Shell/HEAD/VisualStudioShell/Converter/BooleanToVisibilityConverter.cs -------------------------------------------------------------------------------- /VisualStudioShell/Converter/GlyphConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasclaudiushuber/Uwp-Visual-Studio-Shell/HEAD/VisualStudioShell/Converter/GlyphConverter.cs -------------------------------------------------------------------------------- /VisualStudioShell/Images/Menu/CloseSolution.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasclaudiushuber/Uwp-Visual-Studio-Shell/HEAD/VisualStudioShell/Images/Menu/CloseSolution.png -------------------------------------------------------------------------------- /VisualStudioShell/Images/Menu/Debug.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasclaudiushuber/Uwp-Visual-Studio-Shell/HEAD/VisualStudioShell/Images/Menu/Debug.png -------------------------------------------------------------------------------- /VisualStudioShell/Images/Menu/NewProject.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasclaudiushuber/Uwp-Visual-Studio-Shell/HEAD/VisualStudioShell/Images/Menu/NewProject.png -------------------------------------------------------------------------------- /VisualStudioShell/Images/Menu/NewWebsite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasclaudiushuber/Uwp-Visual-Studio-Shell/HEAD/VisualStudioShell/Images/Menu/NewWebsite.png -------------------------------------------------------------------------------- /VisualStudioShell/Images/Menu/Save.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasclaudiushuber/Uwp-Visual-Studio-Shell/HEAD/VisualStudioShell/Images/Menu/Save.png -------------------------------------------------------------------------------- /VisualStudioShell/Images/Menu/SaveAll.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasclaudiushuber/Uwp-Visual-Studio-Shell/HEAD/VisualStudioShell/Images/Menu/SaveAll.png -------------------------------------------------------------------------------- /VisualStudioShell/Images/SolutionExplorer/FileCs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasclaudiushuber/Uwp-Visual-Studio-Shell/HEAD/VisualStudioShell/Images/SolutionExplorer/FileCs.png -------------------------------------------------------------------------------- /VisualStudioShell/Images/SolutionExplorer/FileXaml.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasclaudiushuber/Uwp-Visual-Studio-Shell/HEAD/VisualStudioShell/Images/SolutionExplorer/FileXaml.png -------------------------------------------------------------------------------- /VisualStudioShell/Images/SolutionExplorer/FileXamlCs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasclaudiushuber/Uwp-Visual-Studio-Shell/HEAD/VisualStudioShell/Images/SolutionExplorer/FileXamlCs.png -------------------------------------------------------------------------------- /VisualStudioShell/Images/SolutionExplorer/HeaderPinned.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasclaudiushuber/Uwp-Visual-Studio-Shell/HEAD/VisualStudioShell/Images/SolutionExplorer/HeaderPinned.png -------------------------------------------------------------------------------- /VisualStudioShell/Images/SolutionExplorer/HeaderUnpinned.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasclaudiushuber/Uwp-Visual-Studio-Shell/HEAD/VisualStudioShell/Images/SolutionExplorer/HeaderUnpinned.png -------------------------------------------------------------------------------- /VisualStudioShell/Images/SolutionExplorer/ProjectCSharp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasclaudiushuber/Uwp-Visual-Studio-Shell/HEAD/VisualStudioShell/Images/SolutionExplorer/ProjectCSharp.png -------------------------------------------------------------------------------- /VisualStudioShell/Images/SolutionExplorer/References.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasclaudiushuber/Uwp-Visual-Studio-Shell/HEAD/VisualStudioShell/Images/SolutionExplorer/References.png -------------------------------------------------------------------------------- /VisualStudioShell/Images/SolutionExplorer/Solution.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasclaudiushuber/Uwp-Visual-Studio-Shell/HEAD/VisualStudioShell/Images/SolutionExplorer/Solution.png -------------------------------------------------------------------------------- /VisualStudioShell/Images/Titlebar/Feedback.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasclaudiushuber/Uwp-Visual-Studio-Shell/HEAD/VisualStudioShell/Images/Titlebar/Feedback.png -------------------------------------------------------------------------------- /VisualStudioShell/Images/Titlebar/Notifications.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasclaudiushuber/Uwp-Visual-Studio-Shell/HEAD/VisualStudioShell/Images/Titlebar/Notifications.png -------------------------------------------------------------------------------- /VisualStudioShell/Images/VisualStudioIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasclaudiushuber/Uwp-Visual-Studio-Shell/HEAD/VisualStudioShell/Images/VisualStudioIcon.png -------------------------------------------------------------------------------- /VisualStudioShell/Images/thomas.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasclaudiushuber/Uwp-Visual-Studio-Shell/HEAD/VisualStudioShell/Images/thomas.png -------------------------------------------------------------------------------- /VisualStudioShell/MainPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasclaudiushuber/Uwp-Visual-Studio-Shell/HEAD/VisualStudioShell/MainPage.xaml -------------------------------------------------------------------------------- /VisualStudioShell/MainPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasclaudiushuber/Uwp-Visual-Studio-Shell/HEAD/VisualStudioShell/MainPage.xaml.cs -------------------------------------------------------------------------------- /VisualStudioShell/Package.appxmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasclaudiushuber/Uwp-Visual-Studio-Shell/HEAD/VisualStudioShell/Package.appxmanifest -------------------------------------------------------------------------------- /VisualStudioShell/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasclaudiushuber/Uwp-Visual-Studio-Shell/HEAD/VisualStudioShell/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /VisualStudioShell/Properties/Default.rd.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasclaudiushuber/Uwp-Visual-Studio-Shell/HEAD/VisualStudioShell/Properties/Default.rd.xml -------------------------------------------------------------------------------- /VisualStudioShell/Resources/Brushes.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasclaudiushuber/Uwp-Visual-Studio-Shell/HEAD/VisualStudioShell/Resources/Brushes.xaml -------------------------------------------------------------------------------- /VisualStudioShell/Resources/Button.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasclaudiushuber/Uwp-Visual-Studio-Shell/HEAD/VisualStudioShell/Resources/Button.xaml -------------------------------------------------------------------------------- /VisualStudioShell/Resources/MenuFlyoutSubItem.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasclaudiushuber/Uwp-Visual-Studio-Shell/HEAD/VisualStudioShell/Resources/MenuFlyoutSubItem.xaml -------------------------------------------------------------------------------- /VisualStudioShell/Resources/Pivot.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasclaudiushuber/Uwp-Visual-Studio-Shell/HEAD/VisualStudioShell/Resources/Pivot.xaml -------------------------------------------------------------------------------- /VisualStudioShell/Resources/PivotHeaderItem.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasclaudiushuber/Uwp-Visual-Studio-Shell/HEAD/VisualStudioShell/Resources/PivotHeaderItem.xaml -------------------------------------------------------------------------------- /VisualStudioShell/VisualStudioShell.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasclaudiushuber/Uwp-Visual-Studio-Shell/HEAD/VisualStudioShell/VisualStudioShell.csproj -------------------------------------------------------------------------------- /VisualStudioShell/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasclaudiushuber/Uwp-Visual-Studio-Shell/HEAD/VisualStudioShell/project.json --------------------------------------------------------------------------------