- This fork specifically was made to provide a version that supports VS 2022. It does not support any of the prior versions and it does not add any new functionality.
- You can either build this using VS 2019, VS 2022 or download the VSIX package from the Releases Page.
- I most likely will not try to merge this back into the original branch since Microsoft seems to have officially abandoned it.
- Download and install the extension
- Restart Visual Studio
- Navigate to Tools > Options > Environment > General and select your color theme:
Steps to create a custom theme for Visual Studio 2022 (in case you don't like the ones that come with this extension)
- Prerequisite:
- Using Visual Studio 2019 install the optional Theme editor VSIX package from here: Visual Studio Theme Color Theme Designer.
- Go to Tools -> Customize Colors (CTE extension), or File -> New -> Project and create a VSTheme Project (CTD extension).
- Hover over the original theme you want to edit and click on 'Create Copy of Theme'.
- Hover over the Custom Theme you created, and click on 'Edit Theme'.
- Edit the colors to create a new custom theme.
- Build the project, it should output a VSIX file in your bin folder.
- Copy the VSIX file so you have a backup of it.
- Rename the VSIX file to .zip and unzip it. You can also open it up using an archive manager such as 7Zip.
- Edit the following 3 files: extension.vsixmanifest, catalog.json, manifest.json
- In extension.vsixmanifest, you need to change the upper bound supported version from 17 to 18 in the InstallationTarget and Prerequisite elements. Also for the installation target, you need to add the subnode for ProductArchitcture and give it the value amd64.
- In catalog.json and manifest.json, change the two spots that specify the upper supported version from 17 to 18.
- Zip the folder you edited in the files within just now into a .zip folder. Rename the .zip file to .vsix.
- Open the VSIX file and run it. If everything was done correctly, the VSIX installer should see Visual Studio 2022 Preview and install your theme for you.