After making any change on controllers I have to rebuild for the changes to be effective. Is there a way to set the application that I don’t have to build for code file changes?
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
No, there is no way to do that. Controllers in .NET is a compiled binary, which means, it has to be compiled first before it can be used.
Of course, you are not required to build if you just want to run the application. Keep in mind you won’t see the latest changes.