VS2015 Add link to assembly file

When I want to view assemblies, I want to reference. I got the following error (at the bottom left of the dialog): "There are no target frameworks in the project"

What do I need to define?

Error

+3


source to share


1 answer


Short after posting I found a solution

I had to extend project.json with target structure like for dnx 4.5.1



  "frameworks": {
    "dotnet": { },
    "dnx451": { }     }

      

+8


source







All Articles