I have created a winform application in Visual Studio (i.e. .net 4.0). Whenever i try to install my application with .net 3.5 it asks to install .net 4.0.
How can I make my application compatible on .net 3.5 platform. I have tried changing the Target framework to 3.5 and removing the prerequisites of .net 4.0, but it does not works. Can you suggest me on how to achieve the same?
I have created a winform application in Visual Studio (i.e. .net 4.0). Whenever i
Share
After a lot of struggle, I finally got the root cause of my issue. I am posting the solution so that others would not have to do any struggle to do this job. After changing the Target framework and prerequisites, check for the dependencies in the setup project. Just follow these steps to get to the desired result:
Hope this will help others.