You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Dec 19, 2018. It is now read-only.
rc1 added a set of "Func<IServiceCollection, IServiceProvider> configureServices" overloads to TestHost.Create() that is not compatible with the existing "Action configureServices" overloads:
After upgrading to rc1 I get this error from the compiler:
Error CS0407 'void Startup.ConfigureServices(IServiceCollection)' has the wrong return type MediaStreams.Test.
I've currently implemented a workaround by changing signature from void to System.IServiceProvider and returning services.BuildServiceProvider() at the end of the method.
The text was updated successfully, but these errors were encountered:
rc1 added a set of "Func<IServiceCollection, IServiceProvider> configureServices" overloads to TestHost.Create() that is not compatible with the existing "Action configureServices" overloads:
After upgrading to rc1 I get this error from the compiler:
Error CS0407 'void Startup.ConfigureServices(IServiceCollection)' has the wrong return type MediaStreams.Test.
I've currently implemented a workaround by changing signature from void to System.IServiceProvider and returning services.BuildServiceProvider() at the end of the method.
The text was updated successfully, but these errors were encountered: