23

I know that we can host our own private / internal NuGet server, but is there a way to also hosting your own Symbol Source server that links to your private NuGet packages? My company's policy doesn't allow publishing source code, even to SymbolSource.Org private repo.

Thank you.

Saxman
  • 5,009
  • 11
  • 51
  • 72
  • 2
    Just wanted to add that the paid version of [ProGet](http://inedo.com/proget), in addition to hosting your private NuGet feeds, includes a symbol/source server for those feeds. – Tod Hoven Mar 22 '13 at 21:04
  • 2
    As an update to this (almost two years later)... ProGet now includes Symbol Serving in the free edition. – Karl Harnagy Feb 04 '15 at 15:12

3 Answers3

15

Just found out that SymbolSource released a community edition called SymbolSource Server Basic. Got it working in about an hour!

Saxman
  • 5,009
  • 11
  • 51
  • 72
  • 1
    This does not appear to work with NuGet v3 client due to this truncating the 4th version decimal i.e. 1.0.0.0 becomes 1.0.0. – nietras May 04 '16 at 10:10
3

this should be possible with NuGet.Server acting as a symbols+source server, according to this post: NuGetsymbolssource-repository

let me know if that doesn't work,

Alexandre Dion
  • 9,130
  • 2
  • 41
  • 29
  • I saw that while doing some research today. I'm not sure how active the project (NuRep) is though, seems like last commit/changes was back in February. – Saxman Jul 20 '12 at 01:24
  • 1
    NuRep has changed its name to NuPeek (https://bitbucket.org/thinkbeforecoding/nupeek) and appears to be currently in active development. – David White Jan 31 '13 at 21:43
  • 1
    Not so active any more – Vitalik Dec 04 '14 at 14:56
1

TeamCity, as of version 7.x I believe, can be a NuGet server out-of-the-box. And a symbol server with the addition of a plugin. Here is the link to the plug-in: http://confluence.jetbrains.com/display/TW/Symbol+Server

EJA
  • 1,335
  • 1
  • 9
  • 11