c# - Unable to find and add an ASP.NET 5 Class Library project to a solution -
i created new asp.net 5 web app , standard c# class library find out asp.net 5 web app can't reference. did research , saw there asp.net 5 class library can't find anywhere in updated vs2015 enterprise.
is called class library (package) or class library (portable)?
yes, class library (package). in fact, can add project.json file minimum content , reference that add solution right clicking on solution , selecting add > existing project....
vs create xproj file reference (which needed vs). then, can reference below:
{ "version": "1.0.0", "dependencies": { "3-class-lib": "" }, "frameworks": { "dnx451": {}, "dnxcore50": { "dependencies": { "system.console": "4.0.0-beta-23516" } } } } in case, 3-class-lib name of class library folder ends being name. can refer this sample.

Comments
Post a Comment