I've got a Core web project, but using .NET 4.6.1 (to reuse a shared DAL project with EF6.1). The generated new project code includes "BundlerMinifier.Core": "2.2.281" in project.json.
This works, but NuGet insists on updating to v2.2.296. However, if I do that I can no longer publish to Azure.
First I get the "No executable found matching command "dotnet-bundle"" message as NuGet removes the line from the "tools" section.
If I manually insert "BundlerMinifier.Core": "2.2.296", I still can't publish to Azure and I get this weird error message:
Error The specified framework 'Microsoft.NETCore.App', version '1.1.0-preview1-001100-00' was not found.
Error - Check application dependencies and target a framework version installed at:
Error - Alternatively, install the framework version '1.1.0-preview1-001100-00'.
Error C:\Program Files\dotnet\shared\Microsoft.NETCore.App
Error - The following versions are installed:
Error 1.0.1
The only place I can find any trace of '1.1.0-preview1-001100-00' is in project.lock.json. I've tried deleting that file, but it gets auto generated with the same error.
Does anyone know what's going on here?
TIA!
Dennis