c# - ASP.NET vNext reference local project to another local project -


i trying reference local project local project. structure of project is:

root

  • src
    • projecta
      • project.json
    • projecta.b
      • project.json
  • global.json

in trying reference projecta projecta.b.

in global.json have specified:

{   "projects": [ "src" ],   "sdk": {     "version": "1.0.0-beta8"   } } 

in projecta.b in dependency section have following:

"projecta": "1.0.0-*" 

nothing seems work though. i've tried pack projecta nuget package, can't seem find information on how reference local nuget package.

there no needs make projecta nuget package, vs that. solution folder run dnu restore. or delete project.lock.json force tooling restore packages


Comments

Popular posts from this blog

javascript - Slick Slider width recalculation -

jsf - PrimeFaces Datatable - What is f:facet actually doing? -

angular2 services - Angular 2 RC 4 Http post not firing -