Link to an ASP.NET vNext project

Does anyone know how to add a project link in ASP.NET vNext?

project.json

{ "dependencies": { "myProject": "" }, "configurations" : { "net45" : { }, "k10" : { } } }

This does not work:(

+4
source share
2 answers

I have found a solution.

  • You can only use ASP.NET vNext projects (I tried to use the "class library", but it only works with the "ASP.NET class vNext class library"

  • You must use global.json to declare your folders.

+3
source

when you save the project.json file, the node links in the solution explorer show the class library project and identify it as a project in the properties window (other links, such as Helios, appear as NuGet links).

If it fails, you can try restarting vs

0
source

Source: https://habr.com/ru/post/1547170/


All Articles