Uros
Uros

Reputation: 2150

How to open project.json in .NET Core 2

I have VS 2017 with .NET Core 2 project. How can I open project.json? It is not listed in Solution Explorer. I can find appsettings.json, but not project.json. Should I open it by right clicking project and choosing some settings?

Upvotes: 3

Views: 3311

Answers (2)

Nikhil Kumar K
Nikhil Kumar K

Reputation: 1117

project.json doesn't have support from .net core 2.0 .

you can get the mapping of the project.json to csproj from link

https://learn.microsoft.com/en-us/dotnet/core/tools/project-json-to-csproj

Upvotes: 0

JackDeMeyers
JackDeMeyers

Reputation: 118

project.json files are no longer supported. Instead, .NET Core apps now use csproj files.

Right click your project and select "Edit ProjectName.csproj" to view the file.

Upvotes: 6

Related Questions