0

I need to check current .NET version installed on local machine, but my main task is to check is there a .net 3.5 version installed. My app is built in same .NET environment, 3.5. Is there any solution?

Thank you

  • 1
    http://stackoverflow.com/questions/199080/how-to-detect-what-net-framework-versions-and-service-packs-are-installed – Răzvan Flavius Panda Jun 07 '12 at 13:33
  • If the required framework version is not installed, your app will give you an error message when you try to start it. – kol Jun 07 '12 at 13:34
  • Do you mean during installation? Because your application won't run if .NET 3.5 is not installed. – JDB Jun 07 '12 at 13:40
  • Yes during installation. I know that it won't work, but I wanna make a prerequisites list and I have not found yet a algorithm which can check .NET 3.5 with application which is also made in same environment. –  Jun 11 '12 at 14:06

1 Answers1

0

If you're doing some sort of installer, look at ClickOnce...

Roman Sokk
  • 175
  • 4