MCPcopy Create free account
hub / github.com/Squirrel/Squirrel.Windows / CanInstallDotNet4_5

Method CanInstallDotNet4_5

src/Setup/FxHelper.cpp:21–24  ·  view source on GitHub ↗

According to https://msdn.microsoft.com/en-us/library/8z6watww%28v=vs.110%29.aspx, to install .NET 4.5 we must be Vista SP2+, Windows 7 SP1+, or later. However Ana�s thinks this is just for customer support, anything >= Vista will generally work.

Source from the content-addressed store, hash-verified

19// to install .NET 4.5 we must be Vista SP2+, Windows 7 SP1+, or later.
20// However Ana�s thinks this is just for customer support, anything >= Vista will generally work.
21bool CFxHelper::CanInstallDotNet4_5()
22{
23 return IsWindowsVistaOrGreater();
24}
25
26NetVersion CFxHelper::GetRequiredDotNetVersion()
27{

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected