Skip to content
This repository has been archived by the owner on May 7, 2024. It is now read-only.

Nuget at work

Garo Yeriazarian edited this page Oct 28, 2013 · 27 revisions

Convened by Garo Yeriazarian (@garoyeri)

Overview

NuGet can be used to share work between teams in the Enterprise. Treat it like a binary packaging / sharing system to collaborate between teams. Share common libraries.

Options

  • NuGet.Server
  • NuGet Gallery
  • ProGet : internal enterprise NuGet hosting, multiple package feeds, LDAP integration, SymbolServer integration (host your PDB files outside your packages)
  • MyGet : NuGet package feed hosting on the Internet

Toolchain

  • TeamCity : acts as a NuGet server for any build that has a .nupkg artifact.
  • Octopus Deploy : uses NuGet as a unit of deployment
  • NuDoc : documentation of nuget packages (XML)

Links

Alternative approaches for common code in a shared library

  • Git submodule : peg a folder against a particular commit, use ***.cs in your .csproj file to automatically include all files in the subfolder (although VS loves to blast this away if you try to manipulate this folder in the Solution Explorer.
  • Code only packages : use NuGet to inject internal-only code helpers or things that are too small to be their own assembly. Don't expose these outside the assembly or you could have versioning issues.
  • Ripple