ASP.NET Precompilation for Deployment
Benefits of Precompilation in ASP.NET:
- Initial response of application will be faster for users, because code and files will not have to be compiled at the first time any user requested.
- We can ensure error free application at compile time
- From security concern people who have access to production server cannot see the source code and cannot make the changes(if you have chose the option of not updatable at the time of publish).
- Large websites must use this precompilation.
