Is there a plugin available to detect the .Net Framework 3.5 as a prerequisite?
I have found one for the 1.1 framework, however I require the later framework.
I'm using AutoPlay Media Studio 7.1.
Any help will be appreciated
Radz
Professional Software Development Tools
Is there a plugin available to detect the .Net Framework 3.5 as a prerequisite?
I have found one for the 1.1 framework, however I require the later framework.
I'm using AutoPlay Media Studio 7.1.
Any help will be appreciated
Radz
Detection for the .NET Framework is part of my Utilities toolset.
Ulrich
.NET Framework 4 does not appear to be a direct upgrade for the former versions. In other words, while .NET Framework 3.5 SP1 is a full acumulative update for versions 2.0, 3.0 and 3.5, the framework for .NET 4 is independent. If an application needs the framework 3.0, it will most likely work if 3.5 SP1 is installed, but it may not work if only .NET 4 is installed.
If you want to know if the .NET 4 Client profile is installed, look for registry key HKLM\SOFTWARE\Microsoft\NET Framework Setup\NDP\v4\Client. You have to check if there is a value named Version with the contents 4.0.30319 or higher.
If you want to know if the full .NET 4 package is installed, look for registry key HKLM\SOFTWARE\Microsoft\NET Framework Setup\NDP\v4\Full instead. Again, you have to check if there is a value named Version with the contents 4.0.30319 for the current release of .NET 4.
Ulrich