I'm trying to start up a little ASP.NET MVC 6 project hosted under DNX on OS X, and I've run into a very basic problem.
I'm using VS Code to edit/run my ASP.NET project, but I need to reference some class libraries that are NOT available as nuget packages.
Most of these are libraries I'm also writing myself, using VS Community Edition under VirtualBox since VS Code doesn't support class library projects (derp). Some of these I have future plans to release on nuget, but for now they aren't ready for prime time.
How can I use these DLL/PDB files in my ASP.NET project? Specifically, what folder do they go in (relative to the project.json file), and how do I reference them in my ASP.NET project (presumably in the project.json)?
This seems like a pretty basic question, but the documentation appears to assume that every line of code for an ASP.NET application is either written inside that project or is magically available via nuget, and that philosophy baffles me to no end.