Questions tagged [source-server]

Source Server description by Microsoft

Source server enables a client to retrieve the exact version of the source files that were used to build an application. Because the source code for a module can change between versions and over a course of years, it is important to look at the source code as it existed when the version of the module in question was built.

Source server retrieves the appropriate files from source control. To use source server, the application must have been source indexed.

Source: http://msdn.microsoft.com/en-us/library/windows/desktop/ms680641.aspx

18 questions
18
votes
1 answer

How do I embed source into pdb, and have debugger(s) use it?

NOTE: my target concern is C# targeting the CLR with regular MSIL in case there's something that works for that but not in the more general case(s). Some existing source debugging support examples There was recently a release of the Sourcepack…
James Manning
  • 13,429
  • 2
  • 40
  • 64
14
votes
7 answers

Cannot step into .NET framework source with VS2008 SP1

Somehow my VS2008 SP1 has lost the ability to step into .NET framework sources. I've played around with checkboxes to no end; I've re-deleted the Symbol cache folder a dozen times; and I've tried all kinds of debug symbol servers. All it does is…
Vilx-
  • 104,512
  • 87
  • 279
  • 422
11
votes
0 answers

Visual Studio debugger: Break on entering an external function?

With "Just My Code" turned off and a source location/server, it's easy to step into functions that are not in your code. Is there a way to set a breakpoint on one of these, though? Basically, I want to say "when this function is called from…
Robert Fraser
  • 10,649
  • 8
  • 69
  • 93
4
votes
2 answers

MS Source Server: significance of srcsrv.ini variable

The MS source server technology uses an initialization file named srcsrv.ini. One of the values identifies the source server location(s), e.g., MYSERVER=\\machine\foobar The docs leave much unanswered about this value. To start with, I haven't been…
chrisd
  • 245
  • 4
  • 12
3
votes
2 answers

Visual Studio (Microsoft ) Symbol server with git

I am trying to set up Microsoft Symbol Server with git. I have searched around and found this https://github.com/joliver/SourceServer-GitExtensions I followed every single step of the instructions. When I tried to to debug in I got pop up…
icn
  • 17,126
  • 39
  • 105
  • 141
3
votes
1 answer

pdbstr does not work from outside of the installation folder

I try to setup source server without SVC- I want to use a simple UNC path as a source storage. I made small console project with a single file and try to make it source indexed. I have following stream file: SRCSRV: ini…
Michael Baranov
  • 789
  • 1
  • 7
  • 17
2
votes
0 answers

VS.NET: Source Server support enabled; Cannot retrieve source file from sourceserver

I've set up a symbol-server for one of my current projects. During a nightly build I: build my source apply a label to the sourcefiles that have been used in the build index the pdb files with the necessary information stored the pdb files in the…
1
vote
1 answer

Configuring Visual Studio Source Server / Symbol Store against unsupported Vault SCM app

I am trying to configure our in house development code as a symbol server, with source control file access when debugging in Visual Studio 2008. We can use this on other projects that reference our core set of libraries. Sadly, we use SourceGear…
Tim Peel
  • 2,274
  • 5
  • 27
  • 43
1
vote
0 answers

TFS "source server" (appears to) not work

I am trying to debug a small application that deliberately throws an exception in a dependent library. I built the code for both, but I am debugging on a workstation that I did not use to build the dependent library. I have a step in my small build…
1
vote
0 answers

While using PDB files with source server info in them, how do I open arbitrary source code files while debugging in visual studio?

In my project I successfully generated PDB files with SVN repository information in them. While debugging a process I can click on any stack frame in the call stack window and it successfully fetches the corresponding source file from SVN and opens…
1
vote
4 answers

Tfs 2010: how to set up a corporate source server?

I'm looking for guidance in setting up a corporate source server, but when I google this topic the best I can come up with is articles and walkthrough concerned with configuring VS to use microsoft's public symbol servers for use with debugging .NET…
bwerks
  • 8,651
  • 14
  • 68
  • 100
1
vote
2 answers

Error using custom source server with Visual Studio 2012

I've indexed a PDB file with source server information. The pdbstr utility dumps out the following srcsrv stream: SRCSRV: ini ------------------------------------------------ VERSION=2 INDEXVERSION=2 VERCTRL=http SRCSRV: variables…
Dina
  • 1,346
  • 1
  • 15
  • 35
1
vote
1 answer

Visual Studio 2010 source server alert crashes

I just installed VS2010 Beta 2. When it opens for the first time it gives me a security error that "use source server only if you trust the origin blah blah". At this time VS crashes. VS itself comes up normally, but since the source server alert…
Felix
  • 9,248
  • 10
  • 57
  • 89
0
votes
2 answers

Source Indexing with Git

I am trying to start using source indexing alongside Git on our build server (TeamCity). I download this project: SourceServer-GitExtensions While running it i noticed warnings/errors. digging into the script (which is PERL based), i noticed the…
lysergic-acid
  • 19,570
  • 21
  • 109
  • 218
0
votes
1 answer

how to use SymGetSourceFile api for fetching source file in postmortem debugging

I want to use SymGetSourceFile to get a source file from source server using info from a dump file. But the first param is a handle to process but during postmortem we dont have a process, so is it meant to be used only for live debugging tools? How…
1
2