Can anyone tell me the difference between debug & release.Used in sharepoint 2010.
|
|
Debug: For developers, easyier to debug code and attach to processes. Also with an added bonus of optimization being off so you can see the varibles values when debugging. Release: Its for the clients, optimization is on and hard to see values when debugging thats because there is no need for the compiler to add debugging information. dll size matters in sharepoint where your constantly adding new dlls to the GAC, Release is smaller and faster to the counterpart debug being slower and bigger
http://msdn.microsoft.com/en-us/library/ee231592.aspx c-sharp-debug-vs-release-performance http://stackoverflow.com/questions/2446027/c-sharp-debug-vs-release-performance When to use Release configuration in Visual Studio for SharePoint solutions? |
|||
|
|
