C++/CLI:是否可以使用 Visual Studio 2008 以 .NET 3.5 客户端配置文件为目标?
我有一个 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?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
这是可能的 – 如果不通过 UI,那么至少可以手动编辑您的
App.config
文件:编辑您的
App.config
文件,使其supportedRuntime 元素与上面的内容匹配。
It's possible – if not through the UI, then at least by manually editing your
App.config
file:Edit your
App.config
file so that itssupportedRuntime
element matches the above.我认为这试图解释您需要获取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).