I am using Visual Studio 2017. Have created a .Net Core Web Application project. I'm trying to add a .Net Framework 4.5 dependency and get the following:
Package X.Y.Z 1.2.0-pre-000394 is not compatible with netcoreapp1.1 (.NETCoreApp,Version=v1.1). Package X.Y.Z 1.2.0-pre-000394 supports: net (.NETFramework,Version=v0.0)
Package Microsoft.AspNet.WebApi.Client 5.2.3 is not compatible with netcoreapp1.1 (.NETCoreApp,Version=v1.1). Package Microsoft.AspNet.WebApi.Client 5.2.3 supports:
- net45 (.NETFramework,Version=v4.5)
I'm confused as to whether this is really possible or not using VS 2017 and .Net Core 1.1.1. Is there a way to make this work?