.NET 4.5 installion - Environment.Version differs from Product version? -
following on my question, i'm doing further verification not of installed .net version how various applications running on it.
if bring ironpython , fetch value of system.environment.version, 4.0.30319.18052. yet when check properties of system.dll, product version , file version given 4.0.30319.18021
how so? both referring .net 4.5, why/how different revision numbers?
technically environment.version gives version of mscorlib assembly. it's difficult update mscorlib keep version # date when code changes occur in other assemblies (like system.dll) updates other assemblies pushed computer mean have higher version numbers mscorlib. think makes environment.version fundamentally broken; that's what's happening.
Comments
Post a Comment