I’m creating a C# WPF app with SQLCE. Each time before I debug, I have to run “clean solution” or it will throws out a XmlParseException. Why? What is clean solution – is there some sort of caching in SQLCE?
Share
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.
I am not sure it has anything with SQLCE. Clean Solution – deletes all the compiled and temporary files associated with a solution. It ensures that the next build is a full one, rather than only changed files being recompiled. You can get more info in the SO link What is clean solution