Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Visual Studio Async CTP on vanilla .Net 4?

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?

like image 859
Robert Jeppesen Avatar asked Nov 02 '10 20:11

Robert Jeppesen


3 Answers

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.

like image 161
Reed Copsey Avatar answered Oct 18 '22 00:10

Reed Copsey


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.

like image 37
Omer Mor Avatar answered Oct 18 '22 00:10

Omer Mor


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

You do need extra assemblies.

like image 40
Henk Holterman Avatar answered Oct 18 '22 00:10

Henk Holterman