debugging - What is the difference between debug and retail binaries in .NET? -
i wondering difference between debug , retail binaries in .net. happen when put <compilation debug="true" /> instead of <compilation debug="false" /> in web config file web service.
this post may answer question.
when compilation debug=”false”/ set, webresource.axd handler automatically set long cache policy on resources retrieved via – resource downloaded once client , cached there forever (it cached on intermediate proxy servers). if have atlas installed application, automatically compress content webresources.axd handler when compilation debug=”false”/ set – reducing size of client-script javascript library or static resource (and not requiring write custom code or configure within iis it).
Comments
Post a Comment