Visual Studio IDE: I want it to make a sound after it compiles so I can get back to work

Visual StudioBuild ProcessAudio

Visual Studio Problem Overview


Would be a nice thing - do I have to write a script or can't I just tweak the build script to do some task?

Visual Studio Solutions


Solution 1 - Visual Studio

Windows already has support for this, go to the Control Panel and open up Sounds and Audio Devices. Under the Sounds tab there is a section for program events. If you scroll down far enough one of the sections will be Microsoft Visual Studio. Then just pick the sound you want to hear for Build Succeeded and Build Failed. You will need to restart Visual Studio after choosing your sounds.

Solution 2 - Visual Studio

If you don't want to enable it for every single build, you can make an application that plays a sound, and add it into the post build event for that project.

Solution 3 - Visual Studio

I also wrote an extension for Visual Studio to achieve that. It also can play a sound when tests finished to run.

Visual Studio Ding extension

Attributions

All content for this solution is sourced from the original question on Stackoverflow.

The content on this page is licensed under the Attribution-ShareAlike 4.0 International (CC BY-SA 4.0) license.

Content TypeOriginal AuthorOriginal Content on Stackoverflow
Questionwblair8689View Question on Stackoverflow
Solution 1 - Visual StudiorjziiView Answer on Stackoverflow
Solution 2 - Visual StudioStingyJackView Answer on Stackoverflow
Solution 3 - Visual StudiovmgView Answer on Stackoverflow