VS2010 中针对 C++ 的目标 .Net 3.5可执行文件
是否可以在 VS2010 中创建针对 .Net 3.5 的混合模式可执行文件?
如果我们尝试这个我们会得到 错误 MSB8009:.NET Framework 2.0/3.0/3.5 面向 v90 平台工具集。请确保计算机上安装了 Visual Studio 2008。
如果我们随后将属性中的工具集更改为 v100,则生成的可执行文件仍然以 .Net 4.0 为目标。
如果我们安装 VS2008,那么在面向 .Net 3.5 时,我们是否仍然可以在(本机)C++ 代码中使用 VS2010 编译器和 VS2010 CRT?
Is it possible in VS2010 to create a mixed mode executable that targets .Net 3.5?
If we try this we get
error MSB8009: .NET Framework 2.0/3.0/3.5 target the v90 platform toolset. Please make sure that Visual Studio 2008 is installed on the machine.
If we then change the toolset in the properties to v100, then the resulting executable still targets .Net 4.0.
If we would install VS2008, can we then still use the VS2010 compiler and the VS2010 CRT in our (native) C++ code when targeting .Net 3.5?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
正如这个答案,需要通过手动编辑.vcxproj文件来添加TargetFrameworkVersion。
我在那台机器上安装了 VS2008,但我想我在安装 2010 时还选择了包含 VC90 编译器。
但是,根据 此 Microsoft 响应:不支持使用 Visual C++ 2010 编译器针对 3.5 框架。 Visual C++ 2010编译器仅支持针对4.0框架。
As explained in this answer, you need to add a TargetFrameworkVersion by manually editing the .vcxproj file.
I have VS2008 installed on that machine but I think I also selected to include the VC90 compilers when I installed 2010.
However, it appears it is not supported by design, according to this Microsoft response: targeting the 3.5 framework with the Visual C++ 2010 compiler is not supported. The Visual C++ 2010 compiler only supports targeting the 4.0 framework.