dnx - Building multiple assembly project with CoreCLR and dnu -
what's best practice building coreclr/dnx project comprised of multiple assemblies?
would there project.json each assembly , each need manually built using custom script or can existing build tools walk these dependencies , build itself?
are there examples of projects this?
usually, each assembly == nuget package == project.json.
a example of solution multiple assemblies mvc.
the asp.net team uses korebuild, internal (but public) orchestrate build. idea calls dotnet/dnu build/pack/publish on projects. korebuild looks projects under src, test, , samples.
both dnu , dotnet it's easy build entire project graph:
dnusupports globbing patterns can somethigdnu build src/**, figure out graph in folder.dotnetknows compiled before don't need care. calldotnet buildon each project , rebuild it's dependencies if necessary.
Comments
Post a Comment