문제

The way I understand it, The new Async-Await functionality in the C# 5 CTP should be all implemented in the compiler. This should mean that code compiled with the CTP should be able to run on vanilla .Net 4?

Can it?

도움이 되었습니까?

해결책

The Async CTP was replaced by the Async Targeting Pack for Visual Studio 11, available via Nuget.

This is official, supported, and allows redistribution.

With this library you can build async applications that target (vanilla) .NET 4.

You should also know that you can target .NET 3.5 with the help of AsyncBridge for .NET 3.5 - a small library put together by Daniel Grunwald, Alex Davies and me.

다른 팁

It can, but it also requires an additional assembly (AsyncCtpLibrary.dll), which is (currently) not redistributable. Because of this, you legally cannot run this code on a "vanilla .NET 4" installation machine.


As of the SP1 Refresh, the Async CTP is now being distributed under a new license. It is unsupported, but allows redistribution and usage in products.

I'd say yes, when I look in a sample project I see it targets Fx4 Client Profile.

You do need extra assemblies.

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top