microsoft / theme-converter-for-vs

CLI tool that allows you to convert your VS Code color theme to a VS 2022 color theme.
MIT License
502 stars 53 forks source link

How do i delete a theme that got added to my visual studio? #160

Closed khaledmoayad closed 1 year ago

gregop commented 1 year ago

Hello @khaledmoayad, you can do so by following the steps below (these instructions can also be found here, in the Repo's readme.md):

  1. You will need to remove the .pkgdef file that you have created using this project. Go to the directory that your target VS is installed, and navigate to <vs_install_dir>\Common7\IDE\CommonExtensions\Platform. e.g: C:\Program Files\Microsoft Visual Studio\2022\Community\Common7\IDE\CommonExtensions\Platform
  1. Delete the .pkgdef of the theme that the you want to remove (The name of the pkgdef will match the name of the theme). If you have created this theme, then the name of the theme would be <name-given>.pkgdef

    1. Open Developer Command Prompt of the targe VS. Select Terminal under View of the menu bar (or press Ctrl+') run > devenv /updateConfiguration
  2. Close and Launch Visual Studio again. The theme should now be removed Check this via Tools → Themes

gregop commented 1 year ago

Greetings!! can I be assigned to this issue?

khaledmoayad commented 1 year ago

Absolutely, thanks for the help!

gracegtaylor commented 1 year ago

Thanks, @gregop!