is there a way to run a windows application in the client machine without installing the .NET framework 4.0?
I try to set the “Copy local” to true on all dll’s but it doesn’t work.
Thanks!
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.
.NET 4.0 is actually a new version of the CLR, so there isn’t binary compatibility between assemblies compiles with 4.0 vs. 3.5 and 2.0.
In the case of 3.5, you could just copy local because it was the same CLR as 2.0…but alas, not with 4.0.