开发者

Install GitExtensions on a machine with .NET 4.0 only

.NET 4.0 / Visual Studio 2010 is installed on my machine. When I execute the current installer (GitExtensions224SetupComplete.msi) it tells me that I need to install .NET 3.5.

Can one use GitExtensions with .NET 4.0 or do you have to install .NET 3.5? If yes, how do I force 开发者_运维问答the installer to use .NET 4.0?

Is there a general approach to this, which also works with other programs and installers?

Thanks


As far as I can see from GitExtensions224SetupComplete.msi, it has an explicit launch condition Installed OR NETFRAMEWORK35. That's why it doesn't let you proceed without .NET 3.5 installed.

This can mean 3 things:

  1. .NET 3.5 is required for the application and/or the installation to run. In this case you have no choice apart from installing .NET 3.5
  2. .NET 3.5 prerequisite is a left over. In this case you can try to cheat :)

DON'T DO THIS ON CRITICAL ENV - IT'S JUST FOR FUN

The property NETFRAMEWORK35 is set in case the registry value Install equals 1 under registry key SOFTWARE\Microsoft\NET Framework Setup\NDP\v3.5. Add this fake registry key with the only value Install and set it to 1. Then run the installer. In case it succeeds - then it's a left over. Otherwise, there's a real dependency to .NET 3.5 and you have to live with this.

Eventually, the easiest and safest way to go is to install .NET 3.5, that's for sure.


This seems to be a general problem for installers based on WiX (like a lot of Open Source programs are) In reality you could probably use it with .Net 4 but you can't force the installer to recognize it. In other words you can (probably) either compile from source and remove the .Net 3.5 version check or just give up and install .Net 3.5 (The easy way out). 3.5 works fine in parallel with .Net 4 and can be installed after .Net 4.

This is from experience, I've had the exact same problem.

0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜