C++/CLI:是否可以使用 Visual Studio 2008 以 .NET 3.5 客户端配置文件为目标?

发布于 2024-10-31 10:15:44 字数 148 浏览 2 评论 0原文

我有一个 C++/CLI 库,我希望将其定位到 .NET 3.5 SP1 客户端配置文件,但客户端配置文件未出现在可用框架列表中。可以这样做吗?

在此处输入图像描述

I have a C++/CLI library that I'd like to target the .NET 3.5 SP1 Client Profile, but the client profile does not appear in the list of available frameworks. Is it possible to do this?

enter image description here

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

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

发布评论

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

评论(2

一场信仰旅途 2024-11-07 10:15:44

这是可能的 – 如果不通过 UI,那么至少可以手动编辑您的 App.config 文件:

<?xml version="1.0" encoding="utf-8"?>
<configuration>
    <startup>
        <supportedRuntime version="v2.0.50727" sku="Client" />
    </startup>
</configuration>

编辑您的 App.config 文件,使其 supportedRuntime 元素与上面的内容匹配。

It's possible – if not through the UI, then at least by manually editing your App.config file:

<?xml version="1.0" encoding="utf-8"?>
<configuration>
    <startup>
        <supportedRuntime version="v2.0.50727" sku="Client" />
    </startup>
</configuration>

Edit your App.config file so that its supportedRuntime element matches the above.

ぃ双果 2024-11-07 10:15:44

我认为试图解释您需要获取SP1 VS 2008 以便访问该目标(但尚不完全清楚这正是他们所说的)。

I think this tries to explain that you need to get the SP1 for VS 2008 in order to access that target (but it's not completely clear that that's exactly what they are saying).

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