VS 10.0 运行时是 .Net Framework 4 的一部分吗?
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
它确实如此,但它有一个私有副本,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.
我认为此页面( x86) 和这个(x64) 是您所追求的:
(我不知道它们是否是 .NET 4 本身的一部分 - 您是否正在编写一个也需要安装 .NET 4 的本机应用程序?)
I think this page (x86) and this one (x64) are what you're after:
(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?)
如果您要求 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.