When using Visual Studio, I would like it to constantly build my projects. That is, after each save, start the assembly. I tend to work on large (35+ design) solutions, therefore, having everything relevant, I can save time spent on launching the application.
Roslyn gives you compiler errors as you type, but it doesnโt actually start the complete build process, which means that you still need to tell VS about the failure and wait for it to complete before debugging or running the tests.
The Redgate .NET Demon used to create such a background compilation, and it was really useful, but it was discontinued because "Visual Studio 2015 will introduce Microsoft the new Roslyn compiler, with improvements that we think make .NET Demon redundant. "
Is there an option or extension for Visual Studio 2015 to automatically start the build after saving the file or changing the project in the IDE?
source share