Skip to content

Commit

Permalink
feat(icon): supported .slnx file (#3482)
Browse files Browse the repository at this point in the history
* Update supportedExtensions.ts

XML-based sln
https://schwabencode.com/blog/2024/04/10/welcome-new-visual-studio-slnx-solution-file

* Apply suggestions from code review
  • Loading branch information
frg2089 committed May 4, 2024
1 parent 4c98bc5 commit 6822e9a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/iconsManifest/supportedExtensions.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4358,13 +4358,13 @@ export const extensions: IFileCollection = {
},
{
icon: 'sln',
extensions: ['sln'],
extensions: ['sln', 'slnx'],
languages: [languages.sln],
format: FileFormat.svg,
},
{
icon: 'sln2',
extensions: ['sln'],
extensions: ['sln', 'slnx'],
format: FileFormat.svg,
disabled: true,
},
Expand Down

0 comments on commit 6822e9a

Please sign in to comment.