is it safe to use Debug Folder files for distribution ? or I should use release folder .
I use vs 2008 express edition .
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.
Should be safe as such, but you should really distribute the release version. The debug versions might have special debugging code in them that shouldn’t be in a production system and might also be a bit slower since it’s not optimized.
You can find out some of what gets optimized in this blog post: What does the optimize switch do?