As per my knowledge, Visual Studio 2015 has some update and we can't add DLLs in asp.net 5 application any more, if we need to add then we need to make NuGet package and then install it.
Now my Questions are:-
1) If I have one project with two class libraries then how can i add that class library's reference (DLL) in my asp.net 5 application?
2) If a class library is also in development mode then how to update that DLL in asp.net 5 application if that DLL install via NuGet, because every time for publish on NuGet and get latest take more time.
3) Suppose if we need to add all DLLs using NuGet then what about private DLLs?
4) Is there any way without NuGet package manager to handle this?