Add dependency on .net core csproj file

I am using the prerelase version of .net core (build 1.0.0-preview3-004031). There are no project.json files, and they are replaced with csproj.

I cannot find a sample describing how to add csproj dependency for the .net kernel.

+3
source share
1 answer

You can find some information about the .net kernel csprojin the .NET Blog .

Here you will find a sample csproj, as well as a way to switch from project.jsonto csproj. There is also a link to project.json for matching csproj in a script .

+4
source

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


All Articles