Will the application written in C ++ in Visual Studio under NET4 and compiled on Windows 7 work in Windows XP?
- oneif the .NET Framework 4.0 is installed, then yes! - Specter
|
1 answer
In the event that the application only includes managed code, it will work on Windows XP SP3, provided that the target machine has .NET Framework version 4.0 and higher.
- if you play with the registry , it will work on SP2 - Specter
- oneIn the project settings of the application, you can specify the version of
.NET
. InWindows 7
,.NET 3.5
installed, onXP
you need to install it yourself. - Ildar
|