This enables you to add sounds to your Visual Studio commands! Simply install this extension and enjoy.
If you want to customize your own sounds, create a settings.json file (see example) pointing to your .wav sounds in the same directory. You can set it at Tools > Options > Your very own ringtone!.
settings.json
{
"apply": "apply_changes.wav",
"build.onsuccess": "buildonsuccess.wav",
"build.onfail": "buildonfail.mp3",
"exception": "exception.wav",
"breakpoint": "C:\fullPathWhyNot\breakpoint.wav",
"save": "save.wav",
"stepover": "step_1.wav,step_2.wav,step_3.wav",
"stepinto": "step_into.wav",
"stepout": "step_out.wav",
"stop": "stop.wav"
}
✨✨ Right now, we support sounds for the following commands:
apply code changes 🔥
build.start build started
build.onsuccess build finished successfully ✅
build.onfail build finished with errors 💀
breakpoint is hit 🔴
continue (while debugging)
exception is hit
find ctrl+F is hit 🔎
restart your application
save file 💾
start debugging
step (any step)
stepover step over
stepinto step into
stepout step out 🏃♀️
stop debugging
undo!