musium
musium

Reputation: 3082

Visual Studio - Create Class library targeting .Net Core

How do I create a class library targeting .Net Core in visual studio 2015?
I found this getting started “guide”, which shows how to create a new .Net Core project using the dotnet command line tool.
Do I need to create somehow a VS project manual based on the generated files (project.json…)?
Is there a way to create a .Net Core DLL inside of VS without using the “dotnet” tool?

Upvotes: 12

Views: 5535

Answers (1)

Luis Palacios
Luis Palacios

Reputation: 754

For .net Core RC 2 if you have installed the tools then you can simply go: File -> Visual C# -> New project -> .Net Core using visual studio. I am currently working on a guide to get started with these kind of projects here if you want so see

enter image description here

Upvotes: 11

Related Questions