I've started using Visual Studio Team Services as my source code control. I am now trying to setup continuous integration so that whenever we check in code, it will build the code.
For projects with dependencies that can be retrieved in Nuget libraries the projects will build fine. But once I introduce our own class library or introduce some third party dlls (that cannot be retrieved from Nuget) the build will fail.
I have noticed that the build agent does not have a bin folder, and by reading various posts and articles it says the first step to use Team Services to build is for Nuget to retrieve these dependencies.
So do I need to package our own libraries and third party dlls into our own nuget feed?
I looked over Team Services documents and they offer this feature of Package Management: https://www.visualstudio.com/docs/package/what-is-packaging
I am a bit unclear with this feature. Will this feature allow for me to create our class libraries into our own Nuget feed? I don't quite see how I would add the dll into this feed. (I understand how to get a Nuget package, but I am still reading up on creating one)
