我已将 WCF 服务部署到以 Web 角色运行的 Azure。Azure 是库存标准(因此运行 .NET 4.0)。我收到以下错误:
Type 'System.Threading.Tasks.Task' cannot be serialized. Consider marking it with the DataContractAttribute attribute, and marking all of its members you want serialized with the DataMemberAttribute attribute. If the type is a collection, consider marking it with the CollectionDataContractAttribute. See the Microsoft .NET Framework documentation for other supported types.
- 我的类库面向 .NET 4
- 我参考了异步目标包
它通过模拟器在我的本地机器上运行。我的本地机器是带有 .NET 4.5 的 Windows 8。
它似乎类似于: http ://forums.lhotka.net/forums/t/11585.aspx
这可能吗,还是我需要在 Azure 上安装 .NET 4.5?