I'm seeing the following error when nCrunch is building, any ideas what I have to do to resolve the issue?
NCrunch: If you are experiencing problems in getting this project to build, have a look at
http://www.ncrunch.net/d..._project-build-issues#0
ServiceModel\ServiceClientBase.cs (91)#1: Cannot await 'System.Threading.Tasks.Task'
ServiceModel\ServiceClientBase.cs (92)#2: Cannot await 'System.Threading.Tasks.Task<T>'
ServiceModel\ServiceClientBase.cs (99)#3: Cannot await 'System.Threading.Tasks.Task<object>'
ServiceModel\ServiceClientBase.cs (102)#4: Cannot await 'System.Threading.Tasks.Task<XXXXXXX.Framework.Contracts.Config.IJediConfig>'
The method in question looks like this:
protected async Task<T> InvokeWhenReadyAsync<T>(Func<Task<T>> action)
{
await EnsureReadyAsync();
return await action();
}