Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Adding source code to dll when releasing

I have a dll which gets used by a lot of people in our team - I want them to be able to build against that but also be able to step into and click into the source code if they want to see how it is written

I can see that is possible with the MSDN dlls - How do they do that

like image 961
Jack Kada Avatar asked Oct 13 '10 12:10

Jack Kada


2 Answers

The technology you're looking for is "Symbol server" and within that, "Source server".

See Symbol Server and Symbol Stores for more information.

like image 120
RichieHindle Avatar answered Sep 25 '22 22:09

RichieHindle


You need to setup a symbol server that will hold the debugging symbols and source code.

See here for more details on setting one up for your team.

like image 43
Oded Avatar answered Sep 24 '22 22:09

Oded