This question is a follow on from:: how to handle a common library in TFS & share dlls
I have decided to go with the approach where I use a nuget package to share my common library with other projects. I have integrated this with tfs build server where a package is created and moved to a shared location when a build completes.
I am a little confused how this might work locally. In particular, lets say I work on the common library locally, build it, package created. I want to use this in my local project. Do I install the package from where the package was created locally? Or on the tfs build server? My preference is, local development references the local package, but when I check it in to tfs build server, it picks the package from the common library package location in tfs build. I know this is confusing, but want the perfect package distribution system!
One other thing, how easy is it the debug the package locally, when I make changes to common, I would like to be able debug the local package if possible. Is it possible?