0

Our build server does a package restore before builds so that we don't have heavy source control check outs and commits. We have some home grown libraries that we include in some of our projects and I was wondering if using the packages folder that NuGet creates is a good place for them.

The long term solution would probably be to create our own local NuGet repository and serve the libraries from there. But until then...

1
  • 3
    As the packages folder is usually excluded from source control, you should not drop anything there on your own, but the NuGet packages which can be restored.
    – Lex Li
    Commented Dec 23, 2016 at 14:53

1 Answer 1

1

packages folder usually is considered to be safe to delete. I'd say you can put them their but you shouldn't. It's much better to place them into separate folder like libs.

Not the answer you're looking for? Browse other questions tagged or ask your own question.