VS 10.0 运行时是 .Net Framework 4 的一部分吗?

发布于 2024-09-27 02:42:38 字数 54 浏览 4 评论 0原文

VC 运行时是 .Net 框架的一部分吗?另外我怎样才能下载 VC 10.0 Runtime?

Are VC Runtimes part of .Net framework? also how can I get the VC 10.0 Runtime for download?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

心清如水 2024-10-04 02:42:38

它确实如此,但它有一个私有副本,c:\windows\system32\msvcr100_clr0400.dll。它不适合C或C++程序使用,它需要msvcr100.dll和msvcp100.dll。本地部署现在是一种选择,您可能想利用它。

如果您想使用安装程序,则所需的合并模块已在您的计算机上。 c:\程序文件\通用文件\合并模块。使用安装项目可能是最简单的方法。添加项目+属性,先决条件,勾选“Visual C++ 2010 运行时库”。如果您希望客户准备机器,Jon 为您提供的下载链接非常适合。

It does but it has a private copy, c:\windows\system32\msvcr100_clr0400.dll. It is not suitable for use by a C or C++ program, it needs msvcr100.dll and msvcp100.dll. Local deployment is now an option, you might want to take advantage of it.

The merge modules you'd need if you want to use an installer are already on your machine. c:\program files\common files\merge modules. Using a Setup project is probably the easiest way. Add it with Project + Properties, Prerequisites, tick "Visual C++ 2010 Runtime libraries". The download links Jon gave you are suitable if you want your customer to prep the machine.

谁的年少不轻狂 2024-10-04 02:42:38

我认为此页面( x86)这个(x64) 是您所追求的:

Microsoft Visual C++ 2010 可再发行组件包安装在未安装 Visual C++ 2010 的计算机上运行使用 Visual C++ 开发的应用程序所需的 Visual C++ 库的运行时组件。

(我不知道它们是否是 .NET 4 本身的一部分 - 您是否正在编写一个也需要安装 .NET 4 的本机应用程序?)

I think this page (x86) and this one (x64) are what you're after:

The Microsoft Visual C++ 2010 Redistributable Package installs runtime components of Visual C++ Libraries required to run applications developed with Visual C++ on a computer that does not have Visual C++ 2010 installed.

(I don't know if they're part of .NET 4 itself - are you writing a native app which also requires .NET 4 to be installed?)

虚拟世界 2024-10-04 02:42:38

如果您要求 VS (Visual Studio),那么:

绝对不是因为 .Net Framework 4 只是库和工具的集合,您可以通过任何文本编辑器开发 .NET 4 应用程序,但是 VS 10.0 (VS 2010) 是IDE 为您提供了完整的环境和嵌入式有用的实用程序,您可以通过它们灵活轻松地开发 .Net 应用程序。

If you are asking for VS (Visual Studio) then:

Definitely not because .Net Framework 4 is just the collection of libraries and tools by which you can develop .NET 4 applications by any text editor, But VS 10.0 (VS 2010) is the IDE which provides you a complete environment and embedded useful utilities by which you can develop .Net applications with flexibility and ease.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文