When you launch your web application in visual studio, you have two options 1. Launch in debug mode 2. Run without debug mode
If you set debug="true" , then it will create dlls (binaries) that will track debugging - Debug mode If you set debug="false" , then it will create dlls (binaries) that won't track debug points. - Release mode
source share