Samvel Siradeghyan
Samvel Siradeghyan

Reputation: 3593

Add dependency to .net core csproj file

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

I can't find any sample describing how to add dependency to csproj for .net core.

Upvotes: 5

Views: 6609

Answers (1)

Fabricio Koch
Fabricio Koch

Reputation: 1435

You can find a few information about the .net core csproj in the .NET Blog.

There you'll find a csproj sample and also how to migrate from project.json to csproj. There's also a link to project.json to csproj mapping by scenario.

Upvotes: 4

Related Questions