I'm trying to deploy a collection of web services using the Azure Resource Manager Template from Visual Studio 2017. When following the tutorial Deploy code with your infrastructurefrom Microsoft, to deploy an asp.net core 1.1 web app, I get the following error:
C:\Program Files\dotnet\sdk\2.0.0\Sdks\Microsoft.NET.Sdk\build\Microsoft.NET.Sdk.Common.targets(87,5):
error : Project 'C:\.........\MobileAPI.csproj' targets '.NETCoreApp,Version=v1.1'.
It cannot be referenced by a project that targets 'Deployment,Version=1.0'.
Done building project "MobileAPI.csproj" -- FAILED.
I already changed the target in the "MobileAPI.csproj" to '.NETCoreApp,Version=v1.1' then it builds the project but does not recognize the "Package" in "Include Targets".
Has anybody an idea how to fix this problem?