shashwat
shashwat

Reputation: 8004

auto build when code (.cs) is updated - visual studio 2012

In VS, automatic build is performed everytime whenever there is change in .aspx file. It will not build solution when only code file(s) is/are updated. In my case, it is a web application project in c# (VS12).

I update code frequently and press F5 in my browser and forget to build. Is there a way that visual studio will start performing automatic build even if only cs file(s) is/are changed..?

Upvotes: 1

Views: 766

Answers (1)

Mads
Mads

Reputation: 444

Visual Studio out of the box does not have this kind of support.

You can achieve this with an extension like .NET Demon.

Upvotes: 4

Related Questions