The Information Centric Analytics (ICA) installer and application do not differentiate between the runtime and developer versions of the .NET framework; provided the minimum version is installed, the ICA installer will proceed and the application will run.
The ICA 6.5.4 installer checks the following Windows registry value for .NET version 4.7.1 (461308) or greater:
HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\NET Framework Setup\NDP\v4\Full
Release : 6.5.4
Component :
The following PowerShell script will return the installed .NET version (where n = release version):
(Get-ItemProperty "HKLM:\SOFTWARE\Microsoft\NET Framework Setup\NDP\v4\Full").Release -ge n
.NET Framework version Minimum value .NET Framework 4.5 378389 .NET Framework 4.5.1 378675 .NET Framework 4.5.2 379893 .NET Framework 4.6 393295 .NET Framework 4.6.1 394254 .NET Framework 4.6.2 394802 .NET Framework 4.7 460798 .NET Framework 4.7.1 461308 .NET Framework 4.7.2 461808 .NET Framework 4.8 528040