What .NET framework “shipped” with Windows XP

2019-05-25 06:08发布

Could you tell me what .NET framework installed by default on Windows XP system?
Because I wanted to write a C# application that does not require anything else to be installed.
If none is there any way not to force users to download .net framework (for example 3.5) but install it?

2条回答
放我归山
2楼-- · 2019-05-25 06:16

Windows XP did not come with any version of the .NET Framework.

You can distribute the .NET Framework 3.5 redistributable with your app. Get it here. Depending on the setup mechanism of your app, you will be able to set it as a dependency of your app's executables so that it's installed automatically for your users.

查看更多
疯言疯语
3楼-- · 2019-05-25 06:35

No .NET framework version was shipped with the original version of Windows XP. This may have changed with different service packs. Starting with Windows Server 2003, .NET Framework 1.1 was preinstalled.

查看更多
登录 后发表回答