Silverligh 5 SDK RC +异步 CTP:让它发挥作用

发布于 2024-12-02 16:41:14 字数 651 浏览 3 评论 0原文

刚刚安装了 Silverligh 5 SDK RC。在使用异步 CTP 的项目中使用它时出现问题。

AsyncCtpLibrary_Silverlight.dll 和 mscorlib.dll 都包含位于完全相同的命名空间中的任务类型(以及一些其他任务相关类型)。

这是错误消息:
在此处输入图像描述

因此,为了解决这种歧义,我将 AsyncCtpLibrary_Silverlight.dll 上的别名更改为“AsyncCtp”。然后相应地更改了cs文件:

    extern alias AsyncCtp;
    using AsyncCtp::System.Threading.Tasks;
    using AsyncCtp::System.Threading;

这似乎解决了歧义问题,但现在“async”关键字不被识别。这些是相关错误:
在此处输入图像描述

在此处输入图片描述

有解决办法吗,还是死胡同?

Just installed the Silverligh 5 SDK RC. There is a problem using it inside a project that uses the Async CTP.

Both AsyncCtpLibrary_Silverlight.dll and mscorlib.dll contains the Task type (And some other Task related types) that is sitting in the exact same namespace.

Here is the error msg:
enter image description here

So to solve this ambiguity I changed the Alias on the AsyncCtpLibrary_Silverlight.dll to "AsyncCtp". And then changed the cs file accordingly:

    extern alias AsyncCtp;
    using AsyncCtp::System.Threading.Tasks;
    using AsyncCtp::System.Threading;

This seems to solve the ambiguity problem, but now the "async" keyword is not recognized. These are the related errors:
enter image description here

enter image description here

Is there a way around it, or is it a dead end ?

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

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

发布评论

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

评论(1

川水往事 2024-12-09 16:41:14

解决这个问题的唯一方法是重新编译 AsyncCtpLibrary_Silverlight.dll 并从其中删除所有 TPL 类型。但我不会打扰...查看异步 CTP 上的公告 论坛

我们正在开发异步 CTP 的更新。这将:

  • 解决了当前 Async CTP 无法解决的安装问题
    不再需要安装到打完补丁的 VS2010 SP1 上;

  • 提供与 Silverlight 5 的兼容性;

  • 提供与 Windows Phone 中后台代理的兼容性
    应用程序。

我们现在正在处理此问题,并将尽快在此处发布版本
它可用。

更新:异步 CTP v3 已发布,支持 Silverlight 5:http://blogs.msdn.com/b/pfxteam/archive/2011/11/01/10232099.aspx

The only way around it would be to recompile the AsyncCtpLibrary_Silverlight.dll and remove all the TPL types from there. But I wouldn't bother... Check out the announcement at the Async CTP forum:

We are working on an update of the Async CTP. This will:

  • Address installation issues, where the current Async CTP can no
    longer be installed onto a fully-patched VS2010 SP1;

  • Provide compatibility with Silverlight 5;

  • Provide compatibility with background agents in Windows Phone
    apps.

We are working on this now, and will post the release here as soon as
it’s available.

Update: Async CTP v3 was released with Silverlight 5 support: http://blogs.msdn.com/b/pfxteam/archive/2011/11/01/10232099.aspx

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