Skip to content

Latest commit

 

History

History
50 lines (34 loc) · 1.97 KB

README.md

File metadata and controls

50 lines (34 loc) · 1.97 KB

Fluoresynth color theme for Microsoft Visual Studio

Pronunciation: fluorescenth

A flourescent-on-black color theme extension for Visual Studio (VS) based on FluoroMachine and SynthWave'84.

screenshot

Installation

$vsixinstaller = "C:\Program Files\Microsoft Visual Studio\2022\Community\Common7\IDE\VSIXInstaller.exe"
$devenv = "C:\Program Files\Microsoft Visual Studio\2022\Community\Common7\IDE\devenv.exe"

& $vsixinstaller .\FluoresynthVS.vsix
& $devenv "/Command Tools.ImportandExportSettings /import:.\fluoresynth-color-theme.vssettings"

Build from Source

$msbuild = "C:\Program Files\Microsoft Visual Studio\2022\Community\MSBuild\Current\Bin\MSBuild.exe"
$vsixinstaller = "C:\Program Files\Microsoft Visual Studio\2022\Community\Common7\IDE\VSIXInstaller.exe"
$devenv = "C:\Program Files\Microsoft Visual Studio\2022\Community\Common7\IDE\devenv.exe"

git clone "https://github.com/admercs/FluoresynthVS.git"
Set-Location FluoresynthVS
& $msbuild .\FluoresynthVS\FluoresynthVS.csproj -Target:Rebuild -Property:Configuration=Release
& $vsixinstaller .\FluoresythVS\bin\Release\FluoresynthVS.vsix
& $devenv "/Command Tools.ImportandExportSettings /import:.\fluoresynth-color-theme.vssettings"

Convert VS Code theme to VS theme

Use the Theme Converter for Visual Studio:

$msbuild = "C:\Program Files\Microsoft Visual Studio\2022\Community\MSBuild\Current\Bin\MSBuild.exe"

git clone "https://github.com/microsoft/theme-converter-for-vs.git"
cd "theme-converter-for-vs"
& $msbuild .\ThemeConverter\ThemeConverter.csproj -Target:Rebuild -Property:Configuration=Release
& ".\ThemeConverter\ThemeConverter\bin\Release\net6.0\ThemeConverter.exe" -i "\some\vscode_theme.json" -o "\some\directory"

Then, follow the rest of the guide to convert the generated pkgdef file to vsix.

License

MIT License