I have an ASP.NET Core application (NetCoreApp1.1
) Web API project and I would like to test a controller of that project. I added a .NET Core class library (targeting NetStandard1.6
).
Now the problem I have is that according to Why doesn't Microsoft.NETCore.App support netstandard1.6? I can't reference the Web API project from that class library.
My question is then, does this mean that unless the controllers are placed somewhere else I won't be able to test them anymore? Maybe there is a way to do so but I haven't been able to achieve it in VS 2017 RC.