Reputation: 7167
How can I get the version of .NET with NSIS? And if I don't have the necessary version, it redirects me to a site to download it.
I've found some solutions to this, but they usually have some hard coded stuff (e.g. dozens of specific links).
Is there some good solution for this?
Thank you
note: I dont want to use windows installer/clickonce.
Upvotes: 5
Views: 3122
Reputation: 12004
Take a look here. I believe I've changed some things from the NSIS forums, but this works quite well
Upvotes: 3
Reputation: 19930
There is no singular version of .NET. You could have 2.0 installed but not 1.1, or vice versa; you could have 3.5 installed which would include 2.0 and 3.0; etc. So you can't, in that sense, check for the version. Instead, you should probably check whether the particular version you need exists.
mscorlib.dll
exists for each of them.Upvotes: 5