Skip to content
This repository has been archived by the owner on Apr 16, 2021. It is now read-only.

Commit

Permalink
Add support for Rider projects.
Browse files Browse the repository at this point in the history
  • Loading branch information
axelgenus authored and swsnr committed Aug 21, 2020
1 parent 81b1ca6 commit b6dfa8a
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 0 deletions.
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ Supports:
- GoLand (Toolbox)
- PyCharm (Toolbox)
- PhpStorm (Toolbox)
- Rider (Toolbox)

## Requirements

Expand Down
7 changes: 7 additions & 0 deletions extension.ts
Original file line number Diff line number Diff line change
Expand Up @@ -142,6 +142,13 @@ const PRODUCTS: Map<string, ProductInfo> = new Map<string, ProductInfo>(
"jetbrains-phpstorm.desktop",
],
},
{
key: "rider",
desktopNames: [
// Toolbox installation
"jetbrains-rider.desktop",
],
},
].map((product) => [product.key, product])
);

Expand Down
1 change: 1 addition & 0 deletions find-projects.py
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,7 @@
ProductInfo(key='goland', config_glob='GoLand*'),
ProductInfo(key='pycharm', config_glob='PyCharm*'),
ProductInfo(key='phpstorm', config_glob='PhpStorm*'),
ProductInfo(key='rider', config_glob='Rider*'),
]


Expand Down

0 comments on commit b6dfa8a

Please sign in to comment.