Reputation: 45
I am using .NET Framework and C# and working on a large project. The application compile takes forever. Currently, I don't have time to see what is going wrong. But is there anyway that if I change 2-3 files I can compile the application quickly.
It is a web application. The solution has 6-7 other projects.
Upvotes: 0
Views: 69
Reputation: 5884
"unload" the projects (right click on the project in the solution explorer). The project isn't removed from your solution, but it won't be compiled either.
Upvotes: 0
Reputation: 9986
I believe you "must" rebuild(what ever that got changed) in order for your changes to take effect.
Also, as a side note:
Upvotes: 1