Re: [ADVANCED-DOTNET] line numbers missing in exception

2006-10-10 Thread gregory young
I would wait for the second edition .. in the mean time you can also read up on things like symbol servers and source servers in his column for MS ... bugslayer http://msdn.microsoft.com/msdnmag/find/default.aspx?type=Ti&phrase=Bugslayer&words=exact He has articles on much of the material in his

Re: [ADVANCED-DOTNET] line numbers missing in exception

2006-10-10 Thread J. Merrill
Debugging Applications for Microsoft .Net and Microsoft Windows, John Robbins -- the bible on this; also covers setting up a "symbol server" so that you'll get symbols from the .Net libraries and the Windows APIs as well!! I see the also has a new book "Debugging Microsoft .NET 2.0 Applications"

Re: [ADVANCED-DOTNET] line numbers missing in exception

2006-10-10 Thread Pardee, Roy
Oooh--I stand corrected. Thanks! -Original Message- From: Discussion of advanced .NET topics. [mailto:[EMAIL PROTECTED] On Behalf Of gregory young Sent: Tuesday, October 10, 2006 11:45 AM To: ADVANCED-DOTNET@DISCUSS.DEVELOP.COM Subject: Re: [ADVANCED-DOTNET] line numbers missing in

Re: [ADVANCED-DOTNET] line numbers missing in exception

2006-10-10 Thread Frans Bouma
to "Discussion of advanced .NET topics." > > > > Sent by "Discussion of advanced .NET topics." > > > > > > > > > >To: ADVANCED-DOTNET@DISCUSS.DEVELOP.COM > >cc: > >Subject:Re: [ADVANCED-DOTN

Re: [ADVANCED-DOTNET] line numbers missing in exception

2006-10-10 Thread gregory young
: Subject: Re: [ADVANCED-DOTNET] line numbers missing in exception The PDB files not being distributed to the client machine. The PDB files include the mapping information for the line numbers. You generally do not want to include these files as well. Cheers, Greg On 10/10/06, Franklin

Re: [ADVANCED-DOTNET] line numbers missing in exception

2006-10-10 Thread gregory young
Roy IIRC by default release builds compile /debug:pdbonly so they should be created. Cheers, Greg On 10/10/06, Pardee, Roy <[EMAIL PROTECTED]> wrote: A 'release' build doesn't include the .pdb file the framework needs to include those I think. You can also not get line #s if you don't copy th

Re: [ADVANCED-DOTNET] line numbers missing in exception

2006-10-10 Thread Franklin Gray
opics." Sent by "Discussion of advanced .NET topics." To: ADVANCED-DOTNET@DISCUSS.DEVELOP.COM cc: Subject: Re: [ADVANCED-DOTNET] line numbers missing in exception The PDB files not being distributed to the client machine. The PDB files include the

Re: [ADVANCED-DOTNET] line numbers missing in exception

2006-10-10 Thread Pardee, Roy
A 'release' build doesn't include the .pdb file the framework needs to include those I think. You can also not get line #s if you don't copy the proper .pdb file to the same folder where the .exe or .dll is running from I think. HTH, -Roy -Original Message- From: Discussion of advanced

Re: [ADVANCED-DOTNET] line numbers missing in exception

2006-10-10 Thread Adam Sills
The lock of debugging information, which is in the PDB file. -Original Message- From: Discussion of advanced .NET topics. [mailto:[EMAIL PROTECTED] On Behalf Of Franklin Gray Sent: Tuesday, October 10, 2006 1:06 PM To: ADVANCED-DOTNET@DISCUSS.DEVELOP.COM Subject: [ADVANCED-DOTNET] line num

Re: [ADVANCED-DOTNET] line numbers missing in exception

2006-10-10 Thread gregory young
The PDB files not being distributed to the client machine. The PDB files include the mapping information for the line numbers. You generally do not want to include these files as well. Cheers, Greg On 10/10/06, Franklin Gray <[EMAIL PROTECTED]> wrote: What could cause the line number not to be