├── art ├── context-menu.png ├── nested-files.png └── nested-files-dark.png ├── src ├── Resources │ ├── logo.png │ ├── Images.png │ └── preview.png ├── source.extension.ico ├── Nesters │ ├── IFileNester.cs │ ├── Automated │ │ ├── AddedExtensionNester.cs │ │ ├── VsDocNester.cs │ │ ├── BundleNester.cs │ │ ├── SpriteNester.cs │ │ ├── KnownFileTypeNester.cs │ │ ├── PathSegmentFileNester.cs │ │ └── InterfaceImplementationNester.cs │ ├── FileNestingFactory.cs │ └── ManualNester.cs ├── Properties │ └── AssemblyInfo.cs ├── source.extension.cs ├── Dialogs │ ├── ItemSelector.xaml │ ├── NestingOptions.cs │ └── ItemSelector.xaml.cs ├── MenuItems │ ├── RunAutoNestingButton.cs │ ├── NestButton.cs │ ├── EnableAutoNestButton.cs │ └── UnNestButton.cs ├── Helpers │ ├── Logger.cs │ └── Helpers.cs ├── source.extension.vsixmanifest ├── VSCommandTable.cs ├── VSPackage.cs ├── website.pkgdef ├── VSCommandTable.vsct ├── source.extension.resx └── FileNesting.csproj ├── .editorconfig ├── .gitignore ├── .github ├── ISSUE_TEMPLATE.md └── CONTRIBUTING.md ├── LICENSE ├── .gitattributes ├── appveyor.yml ├── FileNesting.sln └── README.md /art/context-menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madskristensen/FileNesting/master/art/context-menu.png -------------------------------------------------------------------------------- /art/nested-files.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madskristensen/FileNesting/master/art/nested-files.png -------------------------------------------------------------------------------- /src/Resources/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madskristensen/FileNesting/master/src/Resources/logo.png -------------------------------------------------------------------------------- /src/Resources/Images.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madskristensen/FileNesting/master/src/Resources/Images.png -------------------------------------------------------------------------------- /src/source.extension.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madskristensen/FileNesting/master/src/source.extension.ico -------------------------------------------------------------------------------- /art/nested-files-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madskristensen/FileNesting/master/art/nested-files-dark.png -------------------------------------------------------------------------------- /src/Resources/preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madskristensen/FileNesting/master/src/Resources/preview.png -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- 1 | # Top-most EditorConfig file 2 | root = true 3 | 4 | [*] 5 | indent_style = space 6 | end_of_line = crlf 7 | indent_size = 4 8 | 9 | [*.json] 10 | indent_style = space 11 | indent_size = 2 -------------------------------------------------------------------------------- /src/Nesters/IFileNester.cs: -------------------------------------------------------------------------------- 1 | 2 | namespace MadsKristensen.FileNesting 3 | { 4 | public interface IFileNester 5 | { 6 | NestingResult Nest(string fileName); 7 | bool IsEnabled(); 8 | } 9 | 10 | public enum NestingResult 11 | { 12 | Continue, 13 | StopProcessing, 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | packages 2 | .vs 3 | 4 | # User files 5 | *.suo 6 | *.user 7 | *.sln.docstates 8 | .vs/ 9 | 10 | # Build results 11 | 12 | [Dd]ebug/ 13 | [Rr]elease/ 14 | x64/ 15 | [Bb]in/ 16 | [Oo]bj/ 17 | 18 | # MSTest test Results 19 | [Tt]est[Rr]esult*/ 20 | [Bb]uild[Ll]og.* 21 | 22 | # NCrunch 23 | *.ncrunchsolution 24 | *.ncrunchproject 25 | _NCrunch_WebCompiler -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- 1 | ### Installed product versions 2 | - Visual Studio: [example 2015 Professional] 3 | - This extension: [example 1.1.21] 4 | 5 | ### Description 6 | Replace this text with a short description 7 | 8 | ### Steps to recreate 9 | 1. Replace this 10 | 2. text with 11 | 3. the steps 12 | 4. to recreate 13 | 14 | ### Current behavior 15 | Explain what it's doing and why it's wrong 16 | 17 | ### Expected behavior 18 | Explain what it should be doing after it's fixed. -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | Copyright 2014 Mads Kristensen 2 | 3 | Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at 4 | 5 | http://www.apache.org/licenses/LICENSE-2.0 6 | 7 | Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | # Auto detect text files and perform LF normalization 2 | * text=auto 3 | 4 | # Custom for Visual Studio 5 | *.cs diff=csharp 6 | *.sln merge=union 7 | *.csproj merge=union 8 | *.vbproj merge=union 9 | *.fsproj merge=union 10 | *.dbproj merge=union 11 | 12 | # Standard to msysgit 13 | *.doc diff=astextplain 14 | *.DOC diff=astextplain 15 | *.docx diff=astextplain 16 | *.DOCX diff=astextplain 17 | *.dot diff=astextplain 18 | *.DOT diff=astextplain 19 | *.pdf diff=astextplain 20 | *.PDF diff=astextplain 21 | *.rtf diff=astextplain 22 | *.RTF diff=astextplain 23 | -------------------------------------------------------------------------------- /src/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Reflection; 3 | using System.Resources; 4 | using System.Runtime.InteropServices; 5 | using MadsKristensen.FileNesting; 6 | 7 | [assembly: AssemblyTitle(Vsix.Name)] 8 | [assembly: AssemblyDescription(Vsix.Description)] 9 | [assembly: AssemblyConfiguration("")] 10 | [assembly: AssemblyCompany(Vsix.Author)] 11 | [assembly: AssemblyProduct(Vsix.Name)] 12 | [assembly: AssemblyCopyright(Vsix.Author)] 13 | [assembly: AssemblyTrademark("")] 14 | [assembly: AssemblyCulture("")] 15 | [assembly: ComVisible(false)] 16 | [assembly: CLSCompliant(false)] 17 | [assembly: NeutralResourcesLanguage(Vsix.Language)] 18 | 19 | [assembly: AssemblyVersion(Vsix.Version)] 20 | [assembly: AssemblyFileVersion(Vsix.Version)] 21 | 22 | 23 | 24 | -------------------------------------------------------------------------------- /src/Nesters/Automated/AddedExtensionNester.cs: -------------------------------------------------------------------------------- 1 | using System.IO; 2 | using EnvDTE; 3 | 4 | namespace MadsKristensen.FileNesting 5 | { 6 | internal class AddedExtensionNester : IFileNester 7 | { 8 | public NestingResult Nest(string fileName) 9 | { 10 | string trimmed = Path.GetFileNameWithoutExtension(fileName); 11 | ProjectItem item = FileNestingPackage.DTE.Solution.FindProjectItem(trimmed); 12 | 13 | if (item != null) 14 | { 15 | item.ProjectItems.AddFromFile(fileName); 16 | return NestingResult.StopProcessing; 17 | } 18 | 19 | return NestingResult.Continue; 20 | } 21 | 22 | 23 | public bool IsEnabled() 24 | { 25 | return FileNestingPackage.Options.EnableExtensionRule; 26 | } 27 | } 28 | } 29 | -------------------------------------------------------------------------------- /appveyor.yml: -------------------------------------------------------------------------------- 1 | image: Visual Studio 2022 2 | 3 | install: 4 | - ps: (new-object Net.WebClient).DownloadString("https://raw.github.com/madskristensen/ExtensionScripts/master/AppVeyor/vsix.ps1") | iex 5 | 6 | before_build: 7 | - ps: Vsix-IncrementVsixVersion | Vsix-UpdateBuildVersion 8 | - ps: Vsix-TokenReplacement src\source.extension.cs 'Version = "([0-9\\.]+)"' 'Version = "{version}"' 9 | 10 | build_script: 11 | - nuget restore -verbosity quiet 12 | - msbuild /p:configuration=Release /p:DeployExtension=false /p:ZipPackageCompressionLevel=normal /v:m 13 | 14 | after_test: 15 | - ps: Vsix-PushArtifacts | Vsix-PublishToGallery 16 | 17 | before_deploy: 18 | - ps: Vsix-CreateChocolatyPackage -packageId filenesting 19 | 20 | deploy: 21 | - provider: Environment 22 | name: Chocolatey 23 | on: 24 | branch: master 25 | appveyor_repo_commit_message_extended: /\[release\]/ 26 | -------------------------------------------------------------------------------- /src/source.extension.cs: -------------------------------------------------------------------------------- 1 | // ------------------------------------------------------------------------------ 2 | // 3 | // This file was generated by Extensibility Tools v1.10.211 4 | // 5 | // ------------------------------------------------------------------------------ 6 | namespace MadsKristensen.FileNesting 7 | { 8 | static class Vsix 9 | { 10 | public const string Id = "6c799bc4-0d4c-4172-98bc-5d464b612dca"; 11 | public const string Name = "File Nesting"; 12 | public const string Description = @"Automatically nest files based on file name and enables developers to nest and unnest any file manually"; 13 | public const string Language = "en-US"; 14 | public const string Version = "2.7.1"; 15 | public const string Author = "Mads Kristensen"; 16 | public const string Tags = "file, nesting, solution explorer"; 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /src/Nesters/Automated/VsDocNester.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using EnvDTE; 3 | 4 | namespace MadsKristensen.FileNesting 5 | { 6 | internal class VsDocNester : IFileNester 7 | { 8 | public NestingResult Nest(string fileName) 9 | { 10 | if (!fileName.EndsWith("-vsdoc.js", StringComparison.OrdinalIgnoreCase)) 11 | return NestingResult.Continue; 12 | 13 | string parent = fileName.Replace("-vsdoc.js", ".js"); 14 | ProjectItem item = FileNestingPackage.DTE.Solution.FindProjectItem(parent); 15 | 16 | if (item != null) 17 | { 18 | item.ProjectItems.AddFromFile(fileName); 19 | return NestingResult.StopProcessing; 20 | } 21 | 22 | return NestingResult.Continue; 23 | } 24 | 25 | 26 | public bool IsEnabled() 27 | { 28 | return FileNestingPackage.Options.EnableVsDocRule; 29 | } 30 | } 31 | } 32 | -------------------------------------------------------------------------------- /src/Dialogs/ItemSelector.xaml: -------------------------------------------------------------------------------- 1 | 5 | 6 | 7 | 8 | 36 | 37 | 45 | 46 | 53 | 54 | 61 | 62 | 63 | 64 | 65 | 66 | 67 | 68 | 69 | 70 | 71 | 72 | 73 | 74 | 75 | 76 | 77 | 78 | 79 | 80 | 81 | 82 | 83 | 84 | 85 | 86 | 87 | 88 | 89 | 90 | 91 | 92 | 93 | 94 | -------------------------------------------------------------------------------- /src/Nesters/ManualNester.cs: -------------------------------------------------------------------------------- 1 | using System.Collections.Generic; 2 | using System.IO; 3 | using EnvDTE; 4 | 5 | namespace MadsKristensen.FileNesting 6 | { 7 | static class ManualNester 8 | { 9 | private const string CordovaKind = "{262852C6-CD72-467D-83FE-5EEB1973A190}"; 10 | public static void Nest(IEnumerable items) 11 | { 12 | ItemSelector selector = new ItemSelector(items); 13 | 14 | if (!selector.ShowDialog().Value) 15 | { 16 | return; 17 | } 18 | 19 | foreach (ProjectItem item in items) 20 | { 21 | string path = item.FileNames[0]; 22 | ProjectItem parent = item.DTE.Solution.FindProjectItem(selector.SelectedFile); 23 | if (parent == null) continue; 24 | 25 | bool mayNeedAttributeSet = item.ContainingProject.IsKind( 26 | ProjectTypes.DOTNET_Core, 27 | ProjectTypes.UNIVERSAL_APP, 28 | ProjectTypes.SHARED_PROJECT, 29 | ProjectTypes.NETSTANDARD); 30 | 31 | if (!(mayNeedAttributeSet && SetDependentUpon(item, parent.Name))) 32 | { 33 | item.Remove(); 34 | parent.ProjectItems.AddFromFile(path); 35 | } 36 | } 37 | } 38 | 39 | public static void UnNest(ProjectItem item) 40 | { 41 | foreach (ProjectItem child in item.ProjectItems) 42 | { 43 | UnNest(child); 44 | } 45 | 46 | UnNestItem(item); 47 | } 48 | 49 | private static void UnNestItem(ProjectItem item) 50 | { 51 | string path = item.FileNames[0]; 52 | object parent = item.Collection.Parent; 53 | 54 | bool shouldAddToParentItem = item.ContainingProject.Kind == CordovaKind; 55 | 56 | while (parent != null) 57 | { 58 | var pi = parent as ProjectItem; 59 | 60 | if (pi != null) 61 | { 62 | if (!Path.HasExtension(pi.FileNames[0])) 63 | { 64 | object itemType = item.Properties.Item("ItemType").Value; 65 | 66 | DeleteAndAdd(item, path); 67 | 68 | ProjectItem newItem; 69 | if (shouldAddToParentItem) 70 | { 71 | newItem = pi.ProjectItems.AddFromFile(path); 72 | } 73 | else 74 | { 75 | newItem = pi.ContainingProject.ProjectItems.AddFromFile(path); 76 | } 77 | newItem.Properties.Item("ItemType").Value = itemType; 78 | break; 79 | } 80 | 81 | parent = pi.Collection.Parent; 82 | } 83 | else 84 | { 85 | var pj = parent as Project; 86 | if (pj != null) 87 | { 88 | object itemType = item.Properties.Item("ItemType").Value; 89 | 90 | DeleteAndAdd(item, path); 91 | 92 | ProjectItem newItem = pj.ProjectItems.AddFromFile(path); 93 | newItem.Properties.Item("ItemType").Value = itemType; 94 | break; 95 | } 96 | } 97 | } 98 | } 99 | 100 | private static void DeleteAndAdd(ProjectItem item, string path) 101 | { 102 | if (!File.Exists(path)) 103 | return; 104 | 105 | string temp = Path.GetTempFileName(); 106 | File.Copy(path, temp, true); 107 | item.Delete(); 108 | File.Copy(temp, path); 109 | File.Delete(temp); 110 | } 111 | 112 | private static void RemoveDependentUpon(ProjectItem item) 113 | { 114 | SetDependentUpon(item, null); 115 | } 116 | 117 | private static bool SetDependentUpon(ProjectItem item, string value) 118 | { 119 | if (item.ContainsProperty("DependentUpon")) 120 | { 121 | item.Properties.Item("DependentUpon").Value = value; 122 | return true; 123 | } 124 | 125 | return false; 126 | } 127 | } 128 | } 129 | -------------------------------------------------------------------------------- /.github/CONTRIBUTING.md: -------------------------------------------------------------------------------- 1 | # Contributing 2 | 3 | Looking to contribute something? **Here's how you can help.** 4 | 5 | Please take a moment to review this document in order to make the contribution 6 | process easy and effective for everyone involved. 7 | 8 | Following these guidelines helps to communicate that you respect the time of 9 | the developers managing and developing this open source project. In return, 10 | they should reciprocate that respect in addressing your issue or assessing 11 | patches and features. 12 | 13 | 14 | ## Using the issue tracker 15 | 16 | The issue tracker is the preferred channel for [bug reports](#bug-reports), 17 | [features requests](#feature-requests) and 18 | [submitting pull requests](#pull-requests), but please respect the 19 | following restrictions: 20 | 21 | * Please **do not** use the issue tracker for personal support requests. Stack 22 | Overflow is a better place to get help. 23 | 24 | * Please **do not** derail or troll issues. Keep the discussion on topic and 25 | respect the opinions of others. 26 | 27 | * Please **do not** open issues or pull requests which *belongs to* third party 28 | components. 29 | 30 | 31 | ## Bug reports 32 | 33 | A bug is a _demonstrable problem_ that is caused by the code in the repository. 34 | Good bug reports are extremely helpful, so thanks! 35 | 36 | Guidelines for bug reports: 37 | 38 | 1. **Use the GitHub issue search** — check if the issue has already been 39 | reported. 40 | 41 | 2. **Check if the issue has been fixed** — try to reproduce it using the 42 | latest `master` or development branch in the repository. 43 | 44 | 3. **Isolate the problem** — ideally create an 45 | [SSCCE](http://www.sscce.org/) and a live example. 46 | Uploading the project on cloud storage (OneDrive, DropBox, et el.) 47 | or creating a sample GitHub repository is also helpful. 48 | 49 | 50 | A good bug report shouldn't leave others needing to chase you up for more 51 | information. Please try to be as detailed as possible in your report. What is 52 | your environment? What steps will reproduce the issue? What browser(s) and OS 53 | experience the problem? Do other browsers show the bug differently? What 54 | would you expect to be the outcome? All these details will help people to fix 55 | any potential bugs. 56 | 57 | Example: 58 | 59 | > Short and descriptive example bug report title 60 | > 61 | > A summary of the issue and the Visual Studio, browser, OS environments 62 | > in which it occurs. If suitable, include the steps required to reproduce the bug. 63 | > 64 | > 1. This is the first step 65 | > 2. This is the second step 66 | > 3. Further steps, etc. 67 | > 68 | > `` - a link to the project/file uploaded on cloud storage or other publicly accessible medium. 69 | > 70 | > Any other information you want to share that is relevant to the issue being 71 | > reported. This might include the lines of code that you have identified as 72 | > causing the bug, and potential solutions (and your opinions on their 73 | > merits). 74 | 75 | 76 | ## Feature requests 77 | 78 | Feature requests are welcome. But take a moment to find out whether your idea 79 | fits with the scope and aims of the project. It's up to *you* to make a strong 80 | case to convince the project's developers of the merits of this feature. Please 81 | provide as much detail and context as possible. 82 | 83 | 84 | ## Pull requests 85 | 86 | Good pull requests, patches, improvements and new features are a fantastic 87 | help. They should remain focused in scope and avoid containing unrelated 88 | commits. 89 | 90 | **Please ask first** before embarking on any significant pull request (e.g. 91 | implementing features, refactoring code, porting to a different language), 92 | otherwise you risk spending a lot of time working on something that the 93 | project's developers might not want to merge into the project. 94 | 95 | Please adhere to the [coding guidelines](#code-guidelines) used throughout the 96 | project (indentation, accurate comments, etc.) and any other requirements 97 | (such as test coverage). 98 | 99 | Adhering to the following process is the best way to get your work 100 | included in the project: 101 | 102 | 1. [Fork](http://help.github.com/fork-a-repo/) the project, clone your fork, 103 | and configure the remotes: 104 | 105 | ```bash 106 | # Clone your fork of the repo into the current directory 107 | git clone https://github.com//.git 108 | # Navigate to the newly cloned directory 109 | cd 110 | # Assign the original repo to a remote called "upstream" 111 | git remote add upstream https://github.com/madskristensen/.git 112 | ``` 113 | 114 | 2. If you cloned a while ago, get the latest changes from upstream: 115 | 116 | ```bash 117 | git checkout master 118 | git pull upstream master 119 | ``` 120 | 121 | 3. Create a new topic branch (off the main project development branch) to 122 | contain your feature, change, or fix: 123 | 124 | ```bash 125 | git checkout -b 126 | ``` 127 | 128 | 4. Commit your changes in logical chunks. Please adhere to these [git commit 129 | message guidelines](http://tbaggery.com/2008/04/19/a-note-about-git-commit-messages.html) 130 | or your code is unlikely be merged into the main project. Use Git's 131 | [interactive rebase](https://help.github.com/articles/interactive-rebase) 132 | feature to tidy up your commits before making them public. Also, prepend name of the feature 133 | to the commit message. For instance: "SCSS: Fixes compiler results for IFileListener.\nFixes `#123`" 134 | 135 | 5. Locally merge (or rebase) the upstream development branch into your topic branch: 136 | 137 | ```bash 138 | git pull [--rebase] upstream master 139 | ``` 140 | 141 | 6. Push your topic branch up to your fork: 142 | 143 | ```bash 144 | git push origin 145 | ``` 146 | 147 | 7. [Open a Pull Request](https://help.github.com/articles/using-pull-requests/) 148 | with a clear title and description against the `master` branch. 149 | 150 | 151 | ## Code guidelines 152 | 153 | - Always use proper indentation. 154 | - In Visual Studio under `Tools > Options > Text Editor > C# > Advanced`, make sure 155 | `Place 'System' directives first when sorting usings` option is enabled (checked). 156 | - Before committing, organize usings for each updated C# source file. Either you can 157 | right-click editor and select `Organize Usings > Remove and sort` OR use extension 158 | like [BatchFormat](http://visualstudiogallery.msdn.microsoft.com/a7f75c34-82b4-4357-9c66-c18e32b9393e). 159 | - Before committing, run Code Analysis in `Debug` configuration and follow the guidelines 160 | to fix CA issues. Code Analysis commits can be made separately. 161 | -------------------------------------------------------------------------------- /src/source.extension.resx: -------------------------------------------------------------------------------- 1 | 2 | 3 | 62 | 63 | 64 | 65 | 66 | 67 | 68 | 69 | 70 | 71 | 72 | 73 | 74 | 75 | 76 | 77 | 78 | 79 | 80 | 81 | 82 | 83 | 84 | 85 | 86 | 87 | 88 | 89 | 90 | 91 | 92 | 93 | 94 | 95 | 96 | 97 | 98 | 99 | 100 | 101 | 102 | 103 | 104 | 105 | 106 | 107 | 108 | 109 | text/microsoft-resx 110 | 111 | 112 | 2.0 113 | 114 | 115 | System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 116 | 117 | 118 | System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 119 | 120 | 121 | File Nesting 122 | 123 | 124 | Automatically nest files based on file name and enables developers to nest and unnest any file manually 125 | 126 | 127 | 128 | source.extension.ico;System.Drawing.Icon, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a 129 | 130 | -------------------------------------------------------------------------------- /src/FileNesting.csproj: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | $(VisualStudioVersion) 5 | $(MSBuildExtensionsPath32)\Microsoft\VisualStudio\v$(VisualStudioVersion) 6 | Program 7 | $(DevEnvDir)\devenv.exe 8 | /rootsuffix Exp 9 | true 10 | 11 | 12 | 13 | 14 | 15 | 16 | Debug 17 | AnyCPU 18 | 2.0 19 | {25F9FD9B-5EB2-4B27-93FB-05955B7D115F} 20 | {82b43b9b-a64c-4715-b499-d71e9ca2bd60};{60dc8134-eba5-43b8-bcc9-bb4bc16c2548};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} 21 | Library 22 | Properties 23 | MadsKristensen.FileNesting 24 | FileNesting 25 | True 26 | 27 | 28 | v4.8 29 | 30 | 31 | true 32 | full 33 | false 34 | bin\Debug\ 35 | DEBUG;TRACE 36 | prompt 37 | 4 38 | 39 | 40 | pdbonly 41 | true 42 | bin\Release\ 43 | TRACE 44 | prompt 45 | 4 46 | false 47 | AllRules.ruleset 48 | 49 | 50 | 51 | 52 | ..\packages\Microsoft.VisualStudio.CoreUtility.14.0.23205\lib\net45\Microsoft.VisualStudio.CoreUtility.dll 53 | 54 | 55 | ..\packages\Microsoft.VisualStudio.ImageCatalog.14.0.23205\lib\net45\Microsoft.VisualStudio.ImageCatalog.dll 56 | 57 | 58 | ..\packages\Microsoft.VisualStudio.Imaging.14.0.23205\lib\net45\Microsoft.VisualStudio.Imaging.dll 59 | 60 | 61 | ..\packages\Microsoft.VisualStudio.OLE.Interop.7.10.6071\lib\Microsoft.VisualStudio.OLE.Interop.dll 62 | True 63 | 64 | 65 | ..\packages\Microsoft.VisualStudio.Shell.14.0.14.0.23205\lib\Microsoft.VisualStudio.Shell.14.0.dll 66 | True 67 | 68 | 69 | ..\packages\Microsoft.VisualStudio.Shell.Immutable.10.0.10.0.30319\lib\net40\Microsoft.VisualStudio.Shell.Immutable.10.0.dll 70 | 71 | 72 | ..\packages\Microsoft.VisualStudio.Shell.Immutable.11.0.11.0.50727\lib\net45\Microsoft.VisualStudio.Shell.Immutable.11.0.dll 73 | 74 | 75 | ..\packages\Microsoft.VisualStudio.Shell.Immutable.12.0.12.0.21003\lib\net45\Microsoft.VisualStudio.Shell.Immutable.12.0.dll 76 | 77 | 78 | ..\packages\Microsoft.VisualStudio.Shell.Immutable.14.0.14.0.23205\lib\net45\Microsoft.VisualStudio.Shell.Immutable.14.0.dll 79 | 80 | 81 | ..\packages\Microsoft.VisualStudio.Shell.Interop.7.10.6072\lib\net11\Microsoft.VisualStudio.Shell.Interop.dll 82 | True 83 | 84 | 85 | True 86 | ..\packages\Microsoft.VisualStudio.Shell.Interop.10.0.10.0.30320\lib\net20\Microsoft.VisualStudio.Shell.Interop.10.0.dll 87 | True 88 | 89 | 90 | True 91 | ..\packages\Microsoft.VisualStudio.Shell.Interop.11.0.11.0.61031\lib\net20\Microsoft.VisualStudio.Shell.Interop.11.0.dll 92 | True 93 | 94 | 95 | True 96 | ..\packages\Microsoft.VisualStudio.Shell.Interop.12.0.12.0.30111\lib\net20\Microsoft.VisualStudio.Shell.Interop.12.0.dll 97 | True 98 | 99 | 100 | ..\packages\Microsoft.VisualStudio.Shell.Interop.8.0.8.0.50728\lib\net11\Microsoft.VisualStudio.Shell.Interop.8.0.dll 101 | True 102 | 103 | 104 | ..\packages\Microsoft.VisualStudio.Shell.Interop.9.0.9.0.30730\lib\net11\Microsoft.VisualStudio.Shell.Interop.9.0.dll 105 | True 106 | 107 | 108 | ..\packages\Microsoft.VisualStudio.TextManager.Interop.7.10.6071\lib\net11\Microsoft.VisualStudio.TextManager.Interop.dll 109 | True 110 | 111 | 112 | ..\packages\Microsoft.VisualStudio.TextManager.Interop.8.0.8.0.50728\lib\net11\Microsoft.VisualStudio.TextManager.Interop.8.0.dll 113 | True 114 | 115 | 116 | ..\packages\Microsoft.VisualStudio.Threading.14.0.51107\lib\net45\Microsoft.VisualStudio.Threading.dll 117 | 118 | 119 | ..\packages\Microsoft.VisualStudio.Utilities.14.0.23205\lib\net45\Microsoft.VisualStudio.Utilities.dll 120 | 121 | 122 | ..\packages\Microsoft.VisualStudio.Validation.14.0.51103\lib\net45\Microsoft.VisualStudio.Validation.dll 123 | 124 | 125 | 126 | 127 | True 128 | ..\packages\stdole.7.0.3302\lib\net10\stdole.dll 129 | True 130 | 131 | 132 | 133 | 134 | 135 | 136 | 137 | 138 | 139 | 140 | 141 | 142 | 143 | 144 | 145 | ItemSelector.xaml 146 | 147 | 148 | 149 | True 150 | True 151 | VSCommandTable.vsct 152 | 153 | 154 | 155 | 156 | 157 | 158 | 159 | 160 | 161 | 162 | 163 | 164 | 165 | Component 166 | 167 | 168 | 169 | 170 | 171 | 172 | 173 | 174 | source.extension.vsixmanifest 175 | 176 | 177 | 178 | 179 | Resources\LICENSE 180 | true 181 | 182 | 183 | true 184 | 185 | 186 | source.extension.vsixmanifest 187 | 188 | 189 | Designer 190 | VsixManifestGenerator 191 | source.extension.resx 192 | 193 | 194 | 195 | 196 | Menus.ctmenu 197 | Designer 198 | VsctGenerator 199 | VSCommandTable.cs 200 | 201 | 202 | 203 | 204 | 205 | 206 | 207 | true 208 | 209 | 210 | true 211 | 212 | 213 | 214 | 215 | Designer 216 | MSBuild:Compile 217 | 218 | 219 | 220 | 221 | True 222 | True 223 | source.extension.vsixmanifest 224 | true 225 | VSPackage 226 | 227 | 228 | 229 | 230 | 17.1.32210.191 231 | 232 | 233 | 17.1.4057 234 | runtime; build; native; contentfiles; analyzers; buildtransitive 235 | all 236 | 237 | 238 | 239 | true 240 | 241 | 242 | 243 | 250 | --------------------------------------------------------------------------------