VS2010 中针对 C++ 的目标 .Net 3.5可执行文件

发布于 2024-09-10 03:46:45 字数 294 浏览 3 评论 0原文

是否可以在 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 技术交流群。

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

发布评论

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

评论(1

故事与诗 2024-09-17 03:46:45

正如这个答案,需要通过手动编辑.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.

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