├── .gitignore ├── .nuget └── NuGet.exe ├── Assets ├── BuildConfiguration.png ├── Dependencies.png ├── Fody.png ├── Icon.pdn ├── ProjectProperties.png ├── ProjectTypes.png └── SolutionToolsMenu.png ├── CodeContracts.ruleset ├── CustomDictionary.xml ├── IntegrationTests.testsettings ├── Key.snk ├── LICENSE ├── ProjectConfigurationManager.Model ├── Configuration.cs ├── ExtensionMethods.cs ├── FodyWeavers.xml ├── FodyWeavers.xsd ├── IIndexer.cs ├── IProjectProperty.cs ├── IPropertyGroup.cs ├── ITracer.cs ├── IVsServiceProvider.cs ├── ItemKind.cs ├── OutputWindowTracer.cs ├── PerformanceTracer.cs ├── Project.cs ├── ProjectConfiguration.cs ├── ProjectConfigurationManager.Model.ExternalAnnotations.xml ├── ProjectConfigurationManager.Model.csproj ├── ProjectFile.cs ├── ProjectPropertyName.cs ├── ProjectTypeGuid.cs ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ └── Settings.settings ├── PropertyGroupName.cs ├── RetryException.cs ├── Solution.cs ├── SolutionConfiguration.cs └── SolutionContext.cs ├── ProjectConfigurationManager.View ├── BackgroundColors.cs ├── BuildConfigurationColumnsManager.cs ├── BuildConfigurationView.xaml ├── BuildConfigurationView.xaml.cs ├── BuildConfigurationViewModel.cs ├── CellToBackgroundBrushConverter.cs ├── DataGridTryBeginEditBehavior.cs ├── FodyConfigurationMapping.cs ├── FodyProjectColumnsManagerBehavior.cs ├── FodyView.xaml ├── FodyView.xaml.cs ├── FodyViewModel.cs ├── FodyWeaver.cs ├── FodyWeaverColumnsManagerBehavior.cs ├── FodyWeaverConfiguration.cs ├── FodyWeavers.xml ├── FodyWeavers.xsd ├── GlobalId.cs ├── IndexToBrushConverter.cs ├── MultipleChoiceFilter.cs ├── MultipleChoiceFilterBase.cs ├── MultipleChoiceTagFilter.cs ├── ProjectConfigurationManager.View.ExternalAnnotations.xml ├── ProjectConfigurationManager.View.csproj ├── ProjectDependenciesView.xaml ├── ProjectDependenciesView.xaml.cs ├── ProjectDependenciesViewModel.cs ├── ProjectTypeGuidToDisplayNameConverter.cs ├── ProjectTypesColumnManager.cs ├── ProjectTypesView.xaml ├── ProjectTypesView.xaml.cs ├── ProjectTypesViewModel.cs ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ └── Settings.settings ├── PropertiesColumnsManagerBehavior.cs ├── PropertiesView.xaml ├── PropertiesView.xaml.cs ├── PropertiesViewModel.cs ├── ShellView.xaml ├── ShellView.xaml.cs ├── ThemeManager.cs ├── ThemeResourceProvider.cs ├── Themes │ ├── Generic.xaml │ └── ResourceKeys.cs └── VSColorScheme.xaml ├── ProjectConfigurationManager.sln ├── ProjectConfigurationManager ├── FodyWeavers.xml ├── FodyWeavers.xsd ├── Guids.cs ├── MyToolWindow.cs ├── PkgCmdID.cs ├── ProjectConfigurationManager.ExternalAnnotations.xml ├── ProjectConfigurationManager.csproj ├── ProjectConfigurationManager.vsct ├── ProjectConfigurationManagerPackage.cs ├── Properties │ └── AssemblyInfo.cs ├── Resources.Designer.cs ├── Resources.resx ├── Resources │ ├── Icon.png │ ├── Icon64.png │ ├── Images.png │ └── ScreenShot.png ├── VSPackage.resx └── source.extension.vsixmanifest ├── README.md ├── ReleaseNotes.md ├── SharedAssemblyInfo.cs ├── UnitTests.testsettings └── Version.cs /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tom-englert/ProjectConfigurationManager/HEAD/.gitignore -------------------------------------------------------------------------------- /.nuget/NuGet.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tom-englert/ProjectConfigurationManager/HEAD/.nuget/NuGet.exe -------------------------------------------------------------------------------- /Assets/BuildConfiguration.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tom-englert/ProjectConfigurationManager/HEAD/Assets/BuildConfiguration.png -------------------------------------------------------------------------------- /Assets/Dependencies.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tom-englert/ProjectConfigurationManager/HEAD/Assets/Dependencies.png -------------------------------------------------------------------------------- /Assets/Fody.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tom-englert/ProjectConfigurationManager/HEAD/Assets/Fody.png -------------------------------------------------------------------------------- /Assets/Icon.pdn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tom-englert/ProjectConfigurationManager/HEAD/Assets/Icon.pdn -------------------------------------------------------------------------------- /Assets/ProjectProperties.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tom-englert/ProjectConfigurationManager/HEAD/Assets/ProjectProperties.png -------------------------------------------------------------------------------- /Assets/ProjectTypes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tom-englert/ProjectConfigurationManager/HEAD/Assets/ProjectTypes.png -------------------------------------------------------------------------------- /Assets/SolutionToolsMenu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tom-englert/ProjectConfigurationManager/HEAD/Assets/SolutionToolsMenu.png -------------------------------------------------------------------------------- /CodeContracts.ruleset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tom-englert/ProjectConfigurationManager/HEAD/CodeContracts.ruleset -------------------------------------------------------------------------------- /CustomDictionary.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tom-englert/ProjectConfigurationManager/HEAD/CustomDictionary.xml -------------------------------------------------------------------------------- /IntegrationTests.testsettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tom-englert/ProjectConfigurationManager/HEAD/IntegrationTests.testsettings -------------------------------------------------------------------------------- /Key.snk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tom-englert/ProjectConfigurationManager/HEAD/Key.snk -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tom-englert/ProjectConfigurationManager/HEAD/LICENSE -------------------------------------------------------------------------------- /ProjectConfigurationManager.Model/Configuration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tom-englert/ProjectConfigurationManager/HEAD/ProjectConfigurationManager.Model/Configuration.cs -------------------------------------------------------------------------------- /ProjectConfigurationManager.Model/ExtensionMethods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tom-englert/ProjectConfigurationManager/HEAD/ProjectConfigurationManager.Model/ExtensionMethods.cs -------------------------------------------------------------------------------- /ProjectConfigurationManager.Model/FodyWeavers.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tom-englert/ProjectConfigurationManager/HEAD/ProjectConfigurationManager.Model/FodyWeavers.xml -------------------------------------------------------------------------------- /ProjectConfigurationManager.Model/FodyWeavers.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tom-englert/ProjectConfigurationManager/HEAD/ProjectConfigurationManager.Model/FodyWeavers.xsd -------------------------------------------------------------------------------- /ProjectConfigurationManager.Model/IIndexer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tom-englert/ProjectConfigurationManager/HEAD/ProjectConfigurationManager.Model/IIndexer.cs -------------------------------------------------------------------------------- /ProjectConfigurationManager.Model/IProjectProperty.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tom-englert/ProjectConfigurationManager/HEAD/ProjectConfigurationManager.Model/IProjectProperty.cs -------------------------------------------------------------------------------- /ProjectConfigurationManager.Model/IPropertyGroup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tom-englert/ProjectConfigurationManager/HEAD/ProjectConfigurationManager.Model/IPropertyGroup.cs -------------------------------------------------------------------------------- /ProjectConfigurationManager.Model/ITracer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tom-englert/ProjectConfigurationManager/HEAD/ProjectConfigurationManager.Model/ITracer.cs -------------------------------------------------------------------------------- /ProjectConfigurationManager.Model/IVsServiceProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tom-englert/ProjectConfigurationManager/HEAD/ProjectConfigurationManager.Model/IVsServiceProvider.cs -------------------------------------------------------------------------------- /ProjectConfigurationManager.Model/ItemKind.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tom-englert/ProjectConfigurationManager/HEAD/ProjectConfigurationManager.Model/ItemKind.cs -------------------------------------------------------------------------------- /ProjectConfigurationManager.Model/OutputWindowTracer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tom-englert/ProjectConfigurationManager/HEAD/ProjectConfigurationManager.Model/OutputWindowTracer.cs -------------------------------------------------------------------------------- /ProjectConfigurationManager.Model/PerformanceTracer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tom-englert/ProjectConfigurationManager/HEAD/ProjectConfigurationManager.Model/PerformanceTracer.cs -------------------------------------------------------------------------------- /ProjectConfigurationManager.Model/Project.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tom-englert/ProjectConfigurationManager/HEAD/ProjectConfigurationManager.Model/Project.cs -------------------------------------------------------------------------------- /ProjectConfigurationManager.Model/ProjectConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tom-englert/ProjectConfigurationManager/HEAD/ProjectConfigurationManager.Model/ProjectConfiguration.cs -------------------------------------------------------------------------------- /ProjectConfigurationManager.Model/ProjectConfigurationManager.Model.ExternalAnnotations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tom-englert/ProjectConfigurationManager/HEAD/ProjectConfigurationManager.Model/ProjectConfigurationManager.Model.ExternalAnnotations.xml -------------------------------------------------------------------------------- /ProjectConfigurationManager.Model/ProjectConfigurationManager.Model.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tom-englert/ProjectConfigurationManager/HEAD/ProjectConfigurationManager.Model/ProjectConfigurationManager.Model.csproj -------------------------------------------------------------------------------- /ProjectConfigurationManager.Model/ProjectFile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tom-englert/ProjectConfigurationManager/HEAD/ProjectConfigurationManager.Model/ProjectFile.cs -------------------------------------------------------------------------------- /ProjectConfigurationManager.Model/ProjectPropertyName.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tom-englert/ProjectConfigurationManager/HEAD/ProjectConfigurationManager.Model/ProjectPropertyName.cs -------------------------------------------------------------------------------- /ProjectConfigurationManager.Model/ProjectTypeGuid.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tom-englert/ProjectConfigurationManager/HEAD/ProjectConfigurationManager.Model/ProjectTypeGuid.cs -------------------------------------------------------------------------------- /ProjectConfigurationManager.Model/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tom-englert/ProjectConfigurationManager/HEAD/ProjectConfigurationManager.Model/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /ProjectConfigurationManager.Model/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tom-englert/ProjectConfigurationManager/HEAD/ProjectConfigurationManager.Model/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /ProjectConfigurationManager.Model/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tom-englert/ProjectConfigurationManager/HEAD/ProjectConfigurationManager.Model/Properties/Resources.resx -------------------------------------------------------------------------------- /ProjectConfigurationManager.Model/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tom-englert/ProjectConfigurationManager/HEAD/ProjectConfigurationManager.Model/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /ProjectConfigurationManager.Model/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tom-englert/ProjectConfigurationManager/HEAD/ProjectConfigurationManager.Model/Properties/Settings.settings -------------------------------------------------------------------------------- /ProjectConfigurationManager.Model/PropertyGroupName.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tom-englert/ProjectConfigurationManager/HEAD/ProjectConfigurationManager.Model/PropertyGroupName.cs -------------------------------------------------------------------------------- /ProjectConfigurationManager.Model/RetryException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tom-englert/ProjectConfigurationManager/HEAD/ProjectConfigurationManager.Model/RetryException.cs -------------------------------------------------------------------------------- /ProjectConfigurationManager.Model/Solution.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tom-englert/ProjectConfigurationManager/HEAD/ProjectConfigurationManager.Model/Solution.cs -------------------------------------------------------------------------------- /ProjectConfigurationManager.Model/SolutionConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tom-englert/ProjectConfigurationManager/HEAD/ProjectConfigurationManager.Model/SolutionConfiguration.cs -------------------------------------------------------------------------------- /ProjectConfigurationManager.Model/SolutionContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tom-englert/ProjectConfigurationManager/HEAD/ProjectConfigurationManager.Model/SolutionContext.cs -------------------------------------------------------------------------------- /ProjectConfigurationManager.View/BackgroundColors.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tom-englert/ProjectConfigurationManager/HEAD/ProjectConfigurationManager.View/BackgroundColors.cs -------------------------------------------------------------------------------- /ProjectConfigurationManager.View/BuildConfigurationColumnsManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tom-englert/ProjectConfigurationManager/HEAD/ProjectConfigurationManager.View/BuildConfigurationColumnsManager.cs -------------------------------------------------------------------------------- /ProjectConfigurationManager.View/BuildConfigurationView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tom-englert/ProjectConfigurationManager/HEAD/ProjectConfigurationManager.View/BuildConfigurationView.xaml -------------------------------------------------------------------------------- /ProjectConfigurationManager.View/BuildConfigurationView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tom-englert/ProjectConfigurationManager/HEAD/ProjectConfigurationManager.View/BuildConfigurationView.xaml.cs -------------------------------------------------------------------------------- /ProjectConfigurationManager.View/BuildConfigurationViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tom-englert/ProjectConfigurationManager/HEAD/ProjectConfigurationManager.View/BuildConfigurationViewModel.cs -------------------------------------------------------------------------------- /ProjectConfigurationManager.View/CellToBackgroundBrushConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tom-englert/ProjectConfigurationManager/HEAD/ProjectConfigurationManager.View/CellToBackgroundBrushConverter.cs -------------------------------------------------------------------------------- /ProjectConfigurationManager.View/DataGridTryBeginEditBehavior.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tom-englert/ProjectConfigurationManager/HEAD/ProjectConfigurationManager.View/DataGridTryBeginEditBehavior.cs -------------------------------------------------------------------------------- /ProjectConfigurationManager.View/FodyConfigurationMapping.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tom-englert/ProjectConfigurationManager/HEAD/ProjectConfigurationManager.View/FodyConfigurationMapping.cs -------------------------------------------------------------------------------- /ProjectConfigurationManager.View/FodyProjectColumnsManagerBehavior.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tom-englert/ProjectConfigurationManager/HEAD/ProjectConfigurationManager.View/FodyProjectColumnsManagerBehavior.cs -------------------------------------------------------------------------------- /ProjectConfigurationManager.View/FodyView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tom-englert/ProjectConfigurationManager/HEAD/ProjectConfigurationManager.View/FodyView.xaml -------------------------------------------------------------------------------- /ProjectConfigurationManager.View/FodyView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tom-englert/ProjectConfigurationManager/HEAD/ProjectConfigurationManager.View/FodyView.xaml.cs -------------------------------------------------------------------------------- /ProjectConfigurationManager.View/FodyViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tom-englert/ProjectConfigurationManager/HEAD/ProjectConfigurationManager.View/FodyViewModel.cs -------------------------------------------------------------------------------- /ProjectConfigurationManager.View/FodyWeaver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tom-englert/ProjectConfigurationManager/HEAD/ProjectConfigurationManager.View/FodyWeaver.cs -------------------------------------------------------------------------------- /ProjectConfigurationManager.View/FodyWeaverColumnsManagerBehavior.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tom-englert/ProjectConfigurationManager/HEAD/ProjectConfigurationManager.View/FodyWeaverColumnsManagerBehavior.cs -------------------------------------------------------------------------------- /ProjectConfigurationManager.View/FodyWeaverConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tom-englert/ProjectConfigurationManager/HEAD/ProjectConfigurationManager.View/FodyWeaverConfiguration.cs -------------------------------------------------------------------------------- /ProjectConfigurationManager.View/FodyWeavers.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tom-englert/ProjectConfigurationManager/HEAD/ProjectConfigurationManager.View/FodyWeavers.xml -------------------------------------------------------------------------------- /ProjectConfigurationManager.View/FodyWeavers.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tom-englert/ProjectConfigurationManager/HEAD/ProjectConfigurationManager.View/FodyWeavers.xsd -------------------------------------------------------------------------------- /ProjectConfigurationManager.View/GlobalId.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tom-englert/ProjectConfigurationManager/HEAD/ProjectConfigurationManager.View/GlobalId.cs -------------------------------------------------------------------------------- /ProjectConfigurationManager.View/IndexToBrushConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tom-englert/ProjectConfigurationManager/HEAD/ProjectConfigurationManager.View/IndexToBrushConverter.cs -------------------------------------------------------------------------------- /ProjectConfigurationManager.View/MultipleChoiceFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tom-englert/ProjectConfigurationManager/HEAD/ProjectConfigurationManager.View/MultipleChoiceFilter.cs -------------------------------------------------------------------------------- /ProjectConfigurationManager.View/MultipleChoiceFilterBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tom-englert/ProjectConfigurationManager/HEAD/ProjectConfigurationManager.View/MultipleChoiceFilterBase.cs -------------------------------------------------------------------------------- /ProjectConfigurationManager.View/MultipleChoiceTagFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tom-englert/ProjectConfigurationManager/HEAD/ProjectConfigurationManager.View/MultipleChoiceTagFilter.cs -------------------------------------------------------------------------------- /ProjectConfigurationManager.View/ProjectConfigurationManager.View.ExternalAnnotations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tom-englert/ProjectConfigurationManager/HEAD/ProjectConfigurationManager.View/ProjectConfigurationManager.View.ExternalAnnotations.xml -------------------------------------------------------------------------------- /ProjectConfigurationManager.View/ProjectConfigurationManager.View.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tom-englert/ProjectConfigurationManager/HEAD/ProjectConfigurationManager.View/ProjectConfigurationManager.View.csproj -------------------------------------------------------------------------------- /ProjectConfigurationManager.View/ProjectDependenciesView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tom-englert/ProjectConfigurationManager/HEAD/ProjectConfigurationManager.View/ProjectDependenciesView.xaml -------------------------------------------------------------------------------- /ProjectConfigurationManager.View/ProjectDependenciesView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tom-englert/ProjectConfigurationManager/HEAD/ProjectConfigurationManager.View/ProjectDependenciesView.xaml.cs -------------------------------------------------------------------------------- /ProjectConfigurationManager.View/ProjectDependenciesViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tom-englert/ProjectConfigurationManager/HEAD/ProjectConfigurationManager.View/ProjectDependenciesViewModel.cs -------------------------------------------------------------------------------- /ProjectConfigurationManager.View/ProjectTypeGuidToDisplayNameConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tom-englert/ProjectConfigurationManager/HEAD/ProjectConfigurationManager.View/ProjectTypeGuidToDisplayNameConverter.cs -------------------------------------------------------------------------------- /ProjectConfigurationManager.View/ProjectTypesColumnManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tom-englert/ProjectConfigurationManager/HEAD/ProjectConfigurationManager.View/ProjectTypesColumnManager.cs -------------------------------------------------------------------------------- /ProjectConfigurationManager.View/ProjectTypesView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tom-englert/ProjectConfigurationManager/HEAD/ProjectConfigurationManager.View/ProjectTypesView.xaml -------------------------------------------------------------------------------- /ProjectConfigurationManager.View/ProjectTypesView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tom-englert/ProjectConfigurationManager/HEAD/ProjectConfigurationManager.View/ProjectTypesView.xaml.cs -------------------------------------------------------------------------------- /ProjectConfigurationManager.View/ProjectTypesViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tom-englert/ProjectConfigurationManager/HEAD/ProjectConfigurationManager.View/ProjectTypesViewModel.cs -------------------------------------------------------------------------------- /ProjectConfigurationManager.View/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tom-englert/ProjectConfigurationManager/HEAD/ProjectConfigurationManager.View/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /ProjectConfigurationManager.View/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tom-englert/ProjectConfigurationManager/HEAD/ProjectConfigurationManager.View/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /ProjectConfigurationManager.View/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tom-englert/ProjectConfigurationManager/HEAD/ProjectConfigurationManager.View/Properties/Resources.resx -------------------------------------------------------------------------------- /ProjectConfigurationManager.View/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tom-englert/ProjectConfigurationManager/HEAD/ProjectConfigurationManager.View/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /ProjectConfigurationManager.View/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tom-englert/ProjectConfigurationManager/HEAD/ProjectConfigurationManager.View/Properties/Settings.settings -------------------------------------------------------------------------------- /ProjectConfigurationManager.View/PropertiesColumnsManagerBehavior.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tom-englert/ProjectConfigurationManager/HEAD/ProjectConfigurationManager.View/PropertiesColumnsManagerBehavior.cs -------------------------------------------------------------------------------- /ProjectConfigurationManager.View/PropertiesView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tom-englert/ProjectConfigurationManager/HEAD/ProjectConfigurationManager.View/PropertiesView.xaml -------------------------------------------------------------------------------- /ProjectConfigurationManager.View/PropertiesView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tom-englert/ProjectConfigurationManager/HEAD/ProjectConfigurationManager.View/PropertiesView.xaml.cs -------------------------------------------------------------------------------- /ProjectConfigurationManager.View/PropertiesViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tom-englert/ProjectConfigurationManager/HEAD/ProjectConfigurationManager.View/PropertiesViewModel.cs -------------------------------------------------------------------------------- /ProjectConfigurationManager.View/ShellView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tom-englert/ProjectConfigurationManager/HEAD/ProjectConfigurationManager.View/ShellView.xaml -------------------------------------------------------------------------------- /ProjectConfigurationManager.View/ShellView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tom-englert/ProjectConfigurationManager/HEAD/ProjectConfigurationManager.View/ShellView.xaml.cs -------------------------------------------------------------------------------- /ProjectConfigurationManager.View/ThemeManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tom-englert/ProjectConfigurationManager/HEAD/ProjectConfigurationManager.View/ThemeManager.cs -------------------------------------------------------------------------------- /ProjectConfigurationManager.View/ThemeResourceProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tom-englert/ProjectConfigurationManager/HEAD/ProjectConfigurationManager.View/ThemeResourceProvider.cs -------------------------------------------------------------------------------- /ProjectConfigurationManager.View/Themes/Generic.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tom-englert/ProjectConfigurationManager/HEAD/ProjectConfigurationManager.View/Themes/Generic.xaml -------------------------------------------------------------------------------- /ProjectConfigurationManager.View/Themes/ResourceKeys.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tom-englert/ProjectConfigurationManager/HEAD/ProjectConfigurationManager.View/Themes/ResourceKeys.cs -------------------------------------------------------------------------------- /ProjectConfigurationManager.View/VSColorScheme.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tom-englert/ProjectConfigurationManager/HEAD/ProjectConfigurationManager.View/VSColorScheme.xaml -------------------------------------------------------------------------------- /ProjectConfigurationManager.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tom-englert/ProjectConfigurationManager/HEAD/ProjectConfigurationManager.sln -------------------------------------------------------------------------------- /ProjectConfigurationManager/FodyWeavers.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tom-englert/ProjectConfigurationManager/HEAD/ProjectConfigurationManager/FodyWeavers.xml -------------------------------------------------------------------------------- /ProjectConfigurationManager/FodyWeavers.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tom-englert/ProjectConfigurationManager/HEAD/ProjectConfigurationManager/FodyWeavers.xsd -------------------------------------------------------------------------------- /ProjectConfigurationManager/Guids.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tom-englert/ProjectConfigurationManager/HEAD/ProjectConfigurationManager/Guids.cs -------------------------------------------------------------------------------- /ProjectConfigurationManager/MyToolWindow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tom-englert/ProjectConfigurationManager/HEAD/ProjectConfigurationManager/MyToolWindow.cs -------------------------------------------------------------------------------- /ProjectConfigurationManager/PkgCmdID.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tom-englert/ProjectConfigurationManager/HEAD/ProjectConfigurationManager/PkgCmdID.cs -------------------------------------------------------------------------------- /ProjectConfigurationManager/ProjectConfigurationManager.ExternalAnnotations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tom-englert/ProjectConfigurationManager/HEAD/ProjectConfigurationManager/ProjectConfigurationManager.ExternalAnnotations.xml -------------------------------------------------------------------------------- /ProjectConfigurationManager/ProjectConfigurationManager.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tom-englert/ProjectConfigurationManager/HEAD/ProjectConfigurationManager/ProjectConfigurationManager.csproj -------------------------------------------------------------------------------- /ProjectConfigurationManager/ProjectConfigurationManager.vsct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tom-englert/ProjectConfigurationManager/HEAD/ProjectConfigurationManager/ProjectConfigurationManager.vsct -------------------------------------------------------------------------------- /ProjectConfigurationManager/ProjectConfigurationManagerPackage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tom-englert/ProjectConfigurationManager/HEAD/ProjectConfigurationManager/ProjectConfigurationManagerPackage.cs -------------------------------------------------------------------------------- /ProjectConfigurationManager/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tom-englert/ProjectConfigurationManager/HEAD/ProjectConfigurationManager/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /ProjectConfigurationManager/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tom-englert/ProjectConfigurationManager/HEAD/ProjectConfigurationManager/Resources.Designer.cs -------------------------------------------------------------------------------- /ProjectConfigurationManager/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tom-englert/ProjectConfigurationManager/HEAD/ProjectConfigurationManager/Resources.resx -------------------------------------------------------------------------------- /ProjectConfigurationManager/Resources/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tom-englert/ProjectConfigurationManager/HEAD/ProjectConfigurationManager/Resources/Icon.png -------------------------------------------------------------------------------- /ProjectConfigurationManager/Resources/Icon64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tom-englert/ProjectConfigurationManager/HEAD/ProjectConfigurationManager/Resources/Icon64.png -------------------------------------------------------------------------------- /ProjectConfigurationManager/Resources/Images.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tom-englert/ProjectConfigurationManager/HEAD/ProjectConfigurationManager/Resources/Images.png -------------------------------------------------------------------------------- /ProjectConfigurationManager/Resources/ScreenShot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tom-englert/ProjectConfigurationManager/HEAD/ProjectConfigurationManager/Resources/ScreenShot.png -------------------------------------------------------------------------------- /ProjectConfigurationManager/VSPackage.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tom-englert/ProjectConfigurationManager/HEAD/ProjectConfigurationManager/VSPackage.resx -------------------------------------------------------------------------------- /ProjectConfigurationManager/source.extension.vsixmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tom-englert/ProjectConfigurationManager/HEAD/ProjectConfigurationManager/source.extension.vsixmanifest -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tom-englert/ProjectConfigurationManager/HEAD/README.md -------------------------------------------------------------------------------- /ReleaseNotes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tom-englert/ProjectConfigurationManager/HEAD/ReleaseNotes.md -------------------------------------------------------------------------------- /SharedAssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tom-englert/ProjectConfigurationManager/HEAD/SharedAssemblyInfo.cs -------------------------------------------------------------------------------- /UnitTests.testsettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tom-englert/ProjectConfigurationManager/HEAD/UnitTests.testsettings -------------------------------------------------------------------------------- /Version.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tom-englert/ProjectConfigurationManager/HEAD/Version.cs --------------------------------------------------------------------------------