We've got a bunch of C# projects that are using Async CTP 3.0 in VS 2010. We'd like to standardise all our developer machines to VS 2013, which means moving to the 4.5 framework.
I know 4.5 is supposed to be a 'drop-in' replacement for 4.0, but not where Async CTP is concerned.
I'd like to manage the transition as cleanly as possible, and be prepared for any issues.
The only thing I've found that seems to be mention this is here: https://stackoverflow.com/a/10994834/2197391
With that in mind, I've got the following questions,
- Are there any gotchas involved?
- Is it simply a case of doing the following:
- uninstall Async CTP 3.0
- install VS 2013 (and framework 4.5)
- fix existing projects (rename TaskEx to Task, signature changes)?
- We still want to target 4.0 framework. Is this an issue?