Create Sotfware For Other Windows Versions With Visual Studio

-1

What can I do to support my application to be executed in the operating system like Windows XP and previous versions with c # or c ++?

    
asked by Diego 19.03.2017 в 18:37
source

2 answers

-1

In your question you do not mention what kind of C ++ or C # application you are developing (windows forms, ASP.NET, etc) , so I'm going to assume you're creating a desktop application (windows form) , but this response can also apply to console-type C # applications.

This answer points to programs developed in C # for computers with Windows XP operating system:

For a C # application to work on a Windows XP operating system you need:

  • Create your project which should use Framework 3.5 or a lower version . Usually, the Visual Studio IDE shows you the default framework to use for this project (just below the field to assign it on behalf of the project) .

  • Select the "Target Target" platform of your project to (x86) ; In Visual Studio, select your project and open the properties of the project.

See screenshot:

Compile your project and run the application.

It is possible that (depending on your requirements) you can use functionalities for this project whose framework is 4.0 or higher, for this, you must download the (or the) Required framework (s).

Here you can download the .NET Framework 4.5

    
answered by 23.03.2017 / 23:08
source
0

To generate xp executables in visual studio you need to change the defaul of the platform toolset to v140_xp.

see the following article: link

    
answered by 20.03.2017 в 01:32