i have a visual studio asp.net core v1.1 solution and want to build it with the 'developer command prompt for VS 2017'. Therefore i am using the following commands:
- cd (path\rootfolder of the VS Project)
- dotnet build
The result is always: Couldn't find 'project.json' in current directory
My dotnet --info result is:
- .NET Command Line Tools (1.0.0-preview2-1-003177)
The Project has no project.json file due its usage of asp.net core v1.1. So all projects within the Solution have their own *.csproj files.
Does anyone have an Idea what could possibly go wrong?