I know that VS 2017 is only RC, but there seem to be some serious issues with porting the ASP.Net Core 1.0 project to 1.1. The migration tool could not convert 2 of my 8 projects into a solution (I prefer to use a multi-level architectural approach for my projects), a sample project is here . One project, in particular, is a class library to which I have moved the methods of the web api controller. When you try to recreate this class library, it is not possible to declare the controller class after installing Microsoft.AspNetCore.Mvc nuget. It is installed, but the compiler does not find the classes Controller, RouteAttribute, etc. The same problem occurred while trying to configure the DI level of IServiceCollection. Nuget Microsoft.Extensions.DependencyInjection does not seem to do this.
The migration journal, to be honest, doesn't really help me. This seems to indicate a problem with my project service and the project.json file, but as you can tell it is in the repository.
It seems that Microsoft is forcing us to iterate over all the “network” things into a single project file. Perhaps these instruments are not far enough away, but does the RC indicate that they should be closer to the ship's dispatch?
ReciPiBook.Api Message src \ ReciPiBook.Api \ ReciPiBook.Api.xproj: Failed to transfer the XProj ReciPiBook.Api project. "dotnet migrate -s -p" C: \ Users \ xxx \ Documents \ Visual Studio 2015 \ Projects \ ReciPiBook2017 \ ReciPiBookCore \ src \ ReciPiBook.Api "-x" C: \ Users \ xxx \ Documents \ Visual Studio 2015 \ Projects \ ReciPiBook2017 \ ReciPiBookCore \ src \ ReciPiBook.Api \ ReciPiBook.Api.xproj "" exited with error code 1. src \ ReciPiBook.Api \ ReciPiBook.Api.xproj: Could not find file 'C: \ Users \ xxx \ Documents \ Visual Studio 2015 \ Projects \ ReciPiBook2017 \ ReciPiBookCore \ src \ ReciPiBook.Services \ project.json '. Migration failed. src \ ReciPiBook.Api \ ReciPiBook.Api.xproj: Backup C: \ Users \ xxx \ Documents \ Visual Studio 2015 \ Projects \ ReciPiBook2017 \ ReciPiBookCore \ src \ ReciPiBook.Api \ ReciPiBook.Api.xproj for C: \ Users \ xxx \ Documents \ Visual Studio 2015 \ Projects \ ReciPiBook2017 \ ReciPiBookCore \ Backup \ src \ ReciPiBook.Api \ ReciPiBook.Api.xproj. src \ ReciPiBook.Api \ project.json: Backup C: \ Users \ xxx \ Documents \ Visual Studio 2015 \ Projects \ ReciPiBook2017 \ ReciPiBookCore \ src \ ReciPiBook.Api \ project.json for C: \ Users \ xxx \ Documents \ Visual Studio 2015 \ Projects \ ReciPiBook2017 \ ReciPiBookCore \ Backup \ src \ ReciPiBook.Api \ project.json.
source share