├── .editorconfig ├── .gitattributes ├── .github ├── CONTRIBUTING.md └── ISSUE_TEMPLATE.md ├── .gitignore ├── FileNesting.sln ├── LICENSE ├── README.md ├── appveyor.yml ├── art ├── context-menu.png ├── nested-files-dark.png └── nested-files.png └── src ├── Dialogs ├── ItemSelector.xaml ├── ItemSelector.xaml.cs └── NestingOptions.cs ├── FileNesting.csproj ├── Helpers ├── Helpers.cs └── Logger.cs ├── MenuItems ├── EnableAutoNestButton.cs ├── NestButton.cs ├── RunAutoNestingButton.cs └── UnNestButton.cs ├── Nesters ├── Automated │ ├── AddedExtensionNester.cs │ ├── BundleNester.cs │ ├── InterfaceImplementationNester.cs │ ├── KnownFileTypeNester.cs │ ├── PathSegmentFileNester.cs │ ├── SpriteNester.cs │ └── VsDocNester.cs ├── FileNestingFactory.cs ├── IFileNester.cs └── ManualNester.cs ├── Properties └── AssemblyInfo.cs ├── Resources ├── Images.png ├── logo.png └── preview.png ├── VSCommandTable.cs ├── VSCommandTable.vsct ├── VSPackage.cs ├── source.extension.cs ├── source.extension.ico ├── source.extension.resx ├── source.extension.vsixmanifest └── website.pkgdef /.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 -------------------------------------------------------------------------------- /.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 | -------------------------------------------------------------------------------- /.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 | -------------------------------------------------------------------------------- /.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. -------------------------------------------------------------------------------- /.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 -------------------------------------------------------------------------------- /FileNesting.sln: -------------------------------------------------------------------------------- 1 |  2 | Microsoft Visual Studio Solution File, Format Version 12.00 3 | # Visual Studio 14 4 | VisualStudioVersion = 14.0.24720.0 5 | MinimumVisualStudioVersion = 10.0.40219.1 6 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "FileNesting", "src\FileNesting.csproj", "{25F9FD9B-5EB2-4B27-93FB-05955B7D115F}" 7 | EndProject 8 | Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution Items", "{B1D58043-DD3B-4BC0-9857-EB9EAE43D9A9}" 9 | ProjectSection(SolutionItems) = preProject 10 | appveyor.yml = appveyor.yml 11 | README.md = README.md 12 | EndProjectSection 13 | EndProject 14 | Global 15 | GlobalSection(SolutionConfigurationPlatforms) = preSolution 16 | Debug|Any CPU = Debug|Any CPU 17 | Release|Any CPU = Release|Any CPU 18 | EndGlobalSection 19 | GlobalSection(ProjectConfigurationPlatforms) = postSolution 20 | {25F9FD9B-5EB2-4B27-93FB-05955B7D115F}.Debug|Any CPU.ActiveCfg = Debug|Any CPU 21 | {25F9FD9B-5EB2-4B27-93FB-05955B7D115F}.Debug|Any CPU.Build.0 = Debug|Any CPU 22 | {25F9FD9B-5EB2-4B27-93FB-05955B7D115F}.Release|Any CPU.ActiveCfg = Release|Any CPU 23 | {25F9FD9B-5EB2-4B27-93FB-05955B7D115F}.Release|Any CPU.Build.0 = Release|Any CPU 24 | EndGlobalSection 25 | GlobalSection(SolutionProperties) = preSolution 26 | HideSolutionNode = FALSE 27 | EndGlobalSection 28 | EndGlobal 29 | -------------------------------------------------------------------------------- /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. -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # File Nesting 2 | 3 | [![Build status](https://ci.appveyor.com/api/projects/status/kk45dmfauis2llkm?svg=true)](https://ci.appveyor.com/project/madskristensen/filenesting) 4 | 5 | Download File Nesting from the [VS Gallery](http://visualstudiogallery.msdn.microsoft.com/3ebde8fb-26d8-4374-a0eb-1e4e2665070c) 6 | or get the [CI build](http://vsixgallery.com/extension/6c799bc4-0d4c-4172-98bc-5d464b612dca/). 7 | 8 | --------------------------------------------------------------- 9 | 10 | Automatically nest files based on file name and enables 11 | developers to nest and unnest any file manually 12 | 13 | See the 14 | [demo video](http://channel9.msdn.com/Blogs/MadsKristensen/Introducing-File-Nestor-for-Visual-Studio) 15 | on Channel 9. 16 | 17 | **Announcement:** Visual Studio 2017 15.6 introduced support for [customizing how files are nested in ASP.NET Core projects](https://blogs.msdn.microsoft.com/webdev/2018/02/07/file-nesting-in-solution-explorer/) 18 | 19 | ## Features 20 | 21 | - Manually nest files 22 | - Manually un-nest files 23 | - Auto-nesting based on naming conventions 24 | - Option to enable auto-nesting when files are added or renamed 25 | - Options to specify which naming conventions to apply 26 | - Keyboard shortcut for manual nesting (Ctrl+Alt+N) 27 | 28 | You can both nest and un-nest any file with ease. 29 | 30 | ![context menu](art/context-menu.png) 31 | 32 | File Nesting also gives you the option to automatically nest 33 | based on file naming rules. You can then apply those rules to 34 | any files, folders or entire projects. 35 | 36 | Here's a screenshot of that: 37 | 38 | ![nested files](art/nested-files.png) 39 | ![nested files dark theme](art/nested-files-dark.png) 40 | 41 | ## Known issues 42 | 43 | Due to missing or limited support for file nesting in certain 44 | project types, this extension will have no effect or be 45 | disabled. The project types are: 46 | 47 | - Node.js projects (NTVS) 48 | - ASP.NET Core 49 | - Apache Cordova 50 | - Shared projects 51 | 52 | There is nothing this extension can do to provide nesting 53 | in those project types. The support has to be added to the 54 | project type itself before support can be added. 55 | 56 | ## Contribute 57 | Check out the [contribution guidelines](.github/CONTRIBUTING.md) 58 | if you want to contribute to this project. 59 | 60 | For cloning and building this project yourself, make sure 61 | to install the 62 | [Extensibility Tools 2015](https://visualstudiogallery.msdn.microsoft.com/ab39a092-1343-46e2-b0f1-6a3f91155aa6) 63 | extension for Visual Studio which enables some features 64 | used by this project. 65 | 66 | ## License 67 | [Apache 2.0](LICENSE) 68 | -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /art/context-menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madskristensen/FileNesting/7fa42363c564b3210bef2ebbc85c3cd517a07d4a/art/context-menu.png -------------------------------------------------------------------------------- /art/nested-files-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madskristensen/FileNesting/7fa42363c564b3210bef2ebbc85c3cd517a07d4a/art/nested-files-dark.png -------------------------------------------------------------------------------- /art/nested-files.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madskristensen/FileNesting/7fa42363c564b3210bef2ebbc85c3cd517a07d4a/art/nested-files.png -------------------------------------------------------------------------------- /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/VSPackage.cs: -------------------------------------------------------------------------------- 1 | using EnvDTE; 2 | using EnvDTE80; 3 | using Microsoft.VisualStudio.Shell; 4 | using Microsoft.VisualStudio.Shell.Interop; 5 | using System; 6 | using System.ComponentModel.Design; 7 | using System.Linq; 8 | using System.Runtime.InteropServices; 9 | using System.Threading; 10 | using Task = System.Threading.Tasks.Task; 11 | 12 | namespace MadsKristensen.FileNesting 13 | { 14 | [PackageRegistration(UseManagedResourcesOnly = true, AllowsBackgroundLoading = true)] 15 | [InstalledProductRegistration("#110", "#112", Vsix.Version, IconResourceID = 400)] 16 | [ProvideMenuResource("Menus.ctmenu", 1)] 17 | [Guid(PackageGuids.guidFileNestingPkgString)] 18 | [ProvideAutoLoad(UIContextGuids80.SolutionHasSingleProject, PackageAutoLoadFlags.BackgroundLoad)] 19 | [ProvideAutoLoad(UIContextGuids80.SolutionHasMultipleProjects, PackageAutoLoadFlags.BackgroundLoad)] 20 | [ProvideOptionPage(typeof(NestingOptions), Vsix.Name, "General", 101, 100, true, new[] { "File Nesting in Solution Explorer" })] 21 | public sealed class FileNestingPackage : AsyncPackage 22 | { 23 | public static DTE2 DTE { get; private set; } 24 | public static NestingOptions Options { get; private set; } 25 | 26 | protected override async Task InitializeAsync(CancellationToken cancellationToken, IProgress progress) 27 | { 28 | DTE = await GetServiceAsync(typeof(DTE)) as DTE2; 29 | FileNestingFactory.Enable(DTE); 30 | 31 | await JoinableTaskFactory.SwitchToMainThreadAsync(); 32 | await Logger.Initialize(this, Vsix.Name); 33 | 34 | if (GetService(typeof(IMenuCommandService)) is OleMenuCommandService mcs) 35 | { 36 | CommandID commandId = new CommandID(PackageGuids.guidFileNestingCmdSet, PackageIds.NestingMenu); 37 | OleMenuCommand menuCommand = new OleMenuCommand((s, e) => { }, commandId); 38 | menuCommand.BeforeQueryStatus += ShowMenu; 39 | mcs.AddCommand(menuCommand); 40 | 41 | UnNestButton.Register(mcs); 42 | NestButton.Register(mcs); 43 | EnableAutoNestButton.Register(DTE, mcs); 44 | RunAutoNestingButton.Register(DTE, mcs); 45 | } 46 | 47 | Options = (NestingOptions)GetDialogPage(typeof(NestingOptions)); 48 | FileNestingFactory.Enabled = true; 49 | } 50 | 51 | private void ShowMenu(object sender, EventArgs e) 52 | { 53 | OleMenuCommand menu = (OleMenuCommand)sender; 54 | ProjectItem item = Helpers.GetSelectedItems().FirstOrDefault(); 55 | 56 | // We need to exclude website projects, since they don't support file nesting 57 | menu.Visible = item != null && 58 | !(item.ContainingProject.Kind.Equals("{E24C65DC-7377-472B-9ABA-BC803B73C61A}", StringComparison.OrdinalIgnoreCase)) && 59 | !item.ContainingProject.Kind.Equals("{8BB2217D-0F2D-49D1-97BC-3654ED321F3B}", StringComparison.OrdinalIgnoreCase); // ASP.NET 5 60 | } 61 | } 62 | } -------------------------------------------------------------------------------- /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/source.extension.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madskristensen/FileNesting/7fa42363c564b3210bef2ebbc85c3cd517a07d4a/src/source.extension.ico -------------------------------------------------------------------------------- /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/source.extension.vsixmanifest: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | File Nesting 6 | Automatically nest files based on file name and enables developers to nest and unnest any file manually 7 | https://visualstudiogallery.msdn.microsoft.com/3ebde8fb-26d8-4374-a0eb-1e4e2665070c 8 | Resources\LICENSE 9 | Resources\logo.png 10 | Resources\preview.png 11 | file, nesting, solution explorer 12 | 13 | 14 | 15 | amd64 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | -------------------------------------------------------------------------------- /src/website.pkgdef: -------------------------------------------------------------------------------- 1 | // JavaScript 2 | [$RootKey$\Projects\{E24C65DC-7377-472b-9ABA-BC803B73C61A}\RelatedFiles\.js] 3 | "RelationType"=dword:00000001 4 | 5 | [$RootKey$\Projects\{E24C65DC-7377-472b-9ABA-BC803B73C61A}\RelatedFiles\.js\.intellisense.js] 6 | [$RootKey$\Projects\{E24C65DC-7377-472b-9ABA-BC803B73C61A}\RelatedFiles\.js\.debug.js] 7 | [$RootKey$\Projects\{E24C65DC-7377-472b-9ABA-BC803B73C61A}\RelatedFiles\.js\.js.map] 8 | [$RootKey$\Projects\{E24C65DC-7377-472b-9ABA-BC803B73C61A}\RelatedFiles\.js\.min.js] 9 | [$RootKey$\Projects\{E24C65DC-7377-472b-9ABA-BC803B73C61A}\RelatedFiles\.js\.min.js.map] 10 | [$RootKey$\Projects\{E24C65DC-7377-472b-9ABA-BC803B73C61A}\RelatedFiles\.js\.js.gz] 11 | 12 | // Web.config 13 | [$RootKey$\Projects\{E24C65DC-7377-472b-9ABA-BC803B73C61A}\RelatedFiles\.config] 14 | "RelationType"=dword:00000001 15 | 16 | [$RootKey$\Projects\{E24C65DC-7377-472b-9ABA-BC803B73C61A}\RelatedFiles\.config\.release.config] 17 | [$RootKey$\Projects\{E24C65DC-7377-472b-9ABA-BC803B73C61A}\RelatedFiles\.config\.debug.config] 18 | 19 | // Minified CSS files 20 | [$RootKey$\Projects\{E24C65DC-7377-472b-9ABA-BC803B73C61A}\RelatedFiles\.css] 21 | "RelationType"=dword:00000001 22 | 23 | [$RootKey$\Projects\{E24C65DC-7377-472b-9ABA-BC803B73C61A}\RelatedFiles\.css\.min.css] 24 | [$RootKey$\Projects\{E24C65DC-7377-472b-9ABA-BC803B73C61A}\RelatedFiles\.css\.css.map] 25 | [$RootKey$\Projects\{E24C65DC-7377-472b-9ABA-BC803B73C61A}\RelatedFiles\.css\.css.gz] 26 | 27 | // Minified HTML files 28 | [$RootKey$\Projects\{E24C65DC-7377-472b-9ABA-BC803B73C61A}\RelatedFiles\.html] 29 | "RelationType"=dword:00000001 30 | 31 | [$RootKey$\Projects\{E24C65DC-7377-472b-9ABA-BC803B73C61A}\RelatedFiles\.html\.min.html] 32 | [$RootKey$\Projects\{E24C65DC-7377-472b-9ABA-BC803B73C61A}\RelatedFiles\.html\.html.gz] 33 | 34 | // CoffeeScript 35 | [$RootKey$\Projects\{E24C65DC-7377-472b-9ABA-BC803B73C61A}\RelatedFiles\.coffee] 36 | "RelationType"=dword:00000001 37 | 38 | [$RootKey$\Projects\{E24C65DC-7377-472b-9ABA-BC803B73C61A}\RelatedFiles\.coffee\.js] 39 | 40 | // Iced CoffeeScript 41 | [$RootKey$\Projects\{E24C65DC-7377-472b-9ABA-BC803B73C61A}\RelatedFiles\.iced] 42 | "RelationType"=dword:00000001 43 | 44 | [$RootKey$\Projects\{E24C65DC-7377-472b-9ABA-BC803B73C61A}\RelatedFiles\.iced\.js] 45 | 46 | // JSX 47 | [$RootKey$\Projects\{E24C65DC-7377-472b-9ABA-BC803B73C61A}\RelatedFiles\.jsx] 48 | "RelationType"=dword:00000001 49 | 50 | [$RootKey$\Projects\{E24C65DC-7377-472b-9ABA-BC803B73C61A}\RelatedFiles\.jsx\.js] 51 | 52 | // LESS 53 | [$RootKey$\Projects\{E24C65DC-7377-472b-9ABA-BC803B73C61A}\RelatedFiles\.less] 54 | "RelationType"=dword:00000001 55 | 56 | [$RootKey$\Projects\{E24C65DC-7377-472b-9ABA-BC803B73C61A}\RelatedFiles\.less\.css] 57 | 58 | // Sass 59 | [$RootKey$\Projects\{E24C65DC-7377-472b-9ABA-BC803B73C61A}\RelatedFiles\.scss] 60 | "RelationType"=dword:00000001 61 | 62 | [$RootKey$\Projects\{E24C65DC-7377-472b-9ABA-BC803B73C61A}\RelatedFiles\.scss\.css] 63 | 64 | // Sweet.js 65 | [$RootKey$\Projects\{E24C65DC-7377-472b-9ABA-BC803B73C61A}\RelatedFiles\.sjs] 66 | "RelationType"=dword:00000001 67 | 68 | [$RootKey$\Projects\{E24C65DC-7377-472b-9ABA-BC803B73C61A}\RelatedFiles\.sjs\.js] --------------------------------------------------------------------------------