Welcome to MSDN Blogs Sign in | Join | Help

Configuring Visual Studio to Debug .NET Framework Source Code

It's finally here - the launch of the .NET Reference Source project.  This post (hopefully!) contains everything you need to know.  Over the past few weeks, we ran a pilot of this feature and collected lots of great data that helped us work through some issues and understand where people were likely to have problems. 

First, though, if you have any problems, please make sure you've followed all of the steps exactly as described.  If you're still having problems, please check the FAQ/Troubleshooting section at the bottom.  If that doesn't work, post a comment below and I'll look into it.

BASIC SETUP

Note this functionality is not available on the Express versions of the Visual Studio 2008 products.

1) Install the Visual Studio 2008 QFE.  This Hotfix just updates a DLL that's part of the Visual Studio debugger that fetches the source files, more details on the download page.

 UPDATE:  If you get an error installing the Hotfix , try inserting your VS 2008 DVD and then running the Hotfix EXE again.  We're looking into the root cause - it's related to having a prior version of VS 2008 (e.g. Beta 2) installed on the machine.  But this workaround should allow the Hotfix to install properly.

 UPDATE (1/18): There were some problems with the QFE link above that have been addressed, sorry for the inconvenience, it's fixed now.

2) Start Visual Studio 2008 and bring up Tools > Options > Debugging > General.  If you are running under the Visual Basic Profile, you will need to check the box on the lower left of the Options Dialog marked "Show All Settings" before continuing (other profiles won't have this option).

Set the following two settings:

  • Turn OFF the "Enable Just My Code" setting
  • Turn ON the "Enable Source Server Support" setting

Your settings should be as below:

image

3) Next, bring up the "Symbols" Page and set the symbols download URL and a cache location.  Specifically, set the three settings below:

    • Set the symbol file location to be: http://referencesource.microsoft.com/symbols
    • Set a cache location.  Make sure this is a location that your account has read/write access to.  A good option for this is to place this path somewhere under your user hive (e.g. c:\users\sburke\symbols)
    • Enable the "Search the above locations only when symbols are loaded manually" option.

When you're finished, the settings should look like the image below:

image

Setup is done!  That's it, really!

DEBUGGING INTO FRAMEWORK SOURCE

For this simple example, we'll start with a blank C# Windows Application project, but it will work the same with a VB, Web, or WPF project.  To walk through this, go ahead and create that project.

Set a breakpoint in Form_Load:

image 

Now run your project to hit that breakpoint and go to your Call Stack window (CTRL+ALT+C).  In the Call Stack, right click a frame that starts with System.Windows.Forms.dll, and choose "Load Symbols".  This will load the symbols for the System.Windows.Forms assembly, which are about 10 megabytes, so the speed of the download will vary according to your connection speed.  Note that Visual Studio may be unresponsive during this time.   However, this download is a one-time cost for each assembly.  The symbols (PDB) file will be cached on your machine, in the directory specified in the steps above. 

Loading Symbols Manually

This will load the symbols for the DLL from the server, and you'll see some information in the status bar to reflect this.  Note that when this completes, the call frames will turn black and line numbers will be available.  Note you'll need to do the Right Click -> Load Symbols step each time you launch a debugging session (but, again, the symbols will now be cached locally so they won't have to download).  For more information on this, see the ADVANCED USERS section below.

image

You have now loaded the symbols for the Windows Forms DLL and can begin viewing the code.  You can view code in any way that you normally would in a debugging session.  In this case you can either Step In to the line of code above, or you can double-click one of the frames in the Call Stack Window.   For this case, we'll step in (F11).

The first time you step into code, we'll be presented with the EULA for accessing the source code.  Please take the time to read this EULA.  If you agree to the terms of the EULA, hit ACCEPT, and the source will then be downloaded.

That's it! You're now debugging .NET Framework Source!

Debugging Form.cs in Windows Forms

Now, for each assembly that you'd like to debug into just repeat the steps above (note you'll only see the EULA once, not for each file).

There are times when the Assembly you'd like to debug into isn't on the call stack, for example in the code below:

image

Before you step in to Graphics.DrawRectangle, you need to get the symbols for System.Drawing.Dll loaded.  To do this, we use the Modules Window (CTRL+ALT+U).  This lists all of the modules (DLLs) loaded by the debuggee.  Just find System.Drawing.DLL in this list, right click, and choose Load Symbols.

Load via Modules Window

Note that once a symbol file is loaded, the path to the symbol file shows up in the "Symbol File" column.

You can now step into the Graphics.DrawRectangle code above using F11!  In this case, note, you'll have to step through the PaintEventArgs.Graphics property code first.

ADVANCED USERS

Normally, each time you launch a debugging session, Visual Studio attempt to download symbols for each DLL that loads into the debuggee process.  As part of this process, it asks each path specified in the Debugging Symbols dialog for the corresponding PDB.  Some projects load a LOT of DLLs which won't have symbols available, so this process can significantly impact debugger startup time as this probing occurs.  It is mainly for this reason we've recommended manual symbol loading in the steps above; we don't want using this feature to degrade the debugging experience across-the-board.

There is, however, a way to allow automatic symbol loading (which avoids the "Load Symbols" step) in a way that minimizes performance impact.   This is for more advanced users because it requires regular trips back to this Debugging Symbols Dialog.  Note you can quickly get to this dialog by choosing the "Symbol Settings..." item on the right click menus pictured in steps above form the Call Stack or Modules windows.

The key is to get all of the symbols for a given project type downloaded and cached locally, then turn off the automatic symbol downloads.  This will prevent the pings at debugger startup as well.

To do this, configure your setup as above with the following difference: Uncheck the "Search from the above locations..." item on the dialog.

Now, launch your project in the debugger.  This will cause all of the symbols available for the DLLs in your process to be downloaded at on-demand as the DLLs are loaded into the process.  Depending on your connection speed, this could take a while (it's generally about 50MB of symbols), so it's a good idea to hit F5 then go do something else for a while.  Again, these symbols are cached so this is a one-time cost.  Visual Studio will likely be unresponsive during this download process.

image

Once that process has completed, stop the debugger, and UNCHECK the the Reference Source Server symbol location, and hit OK:

image

Now when you launch the debugger, symbols will load automatically and you'll be be able to step in and through call stacks normally.  Note if you switch to a different project type (that has different assemblies), or have assemblies that are loaded later by your project, you can just repeat these steps to get any assemblies you don't have cached locally). 

FAQ/TROUBLESHOOTING

1) Which assemblies are currently available for symbol/source loading:
  • Mscorlib.DLL
  • System.DLL
  • System.Data.DLL
  • System.Drawing.DLL
  • System.Web.DLL
  • System.Web.Extensions.DLL
  • System.Windows.Forms.DLL
  • System.XML.DLL
  • WPF (UIAutomation*.dll, System.Windows.DLL, System.Printing.DLL, System.Speech.DLL, WindowsBase.DLL, WindowsFormsIntegration.DLL, Presentation*.dll, some others)
  • Microsoft.VisualBasic.DLL
2) When I choose "Load Symbols" I get an Open File dialog asking for the PDB.

This can be caused by one of four situations:

  • You didn't configure the symbol location URL properly from basic setup above.  Ensure it's http://referencesource.microsoft.com/symbols.
  • You chose a cache symbols directory that your user account doesn't have write permissions for.
  • You attempted to Load Symbols for a DLL that's not available in the list above
  • You have a different version of the .NET Framework on your machine - this can happen, for example, if you're running a Windows Server 2008 Beta.  To check this, go to the Modules Window in Visual Studio (CTRL+ALT+U) and ensure that the version number of your mscorlib.dll is 2.0.50727.1433, as below.  If not, make sure you install the RTM Version of the .NET Framework 3.5.

  • Check your "C:\Program Files\Microsoft Visual Studio 9.0\Common7\IDE" (or wherever you installed VS) for a file called symsrv.no.  If that file exists, rename it to symsrv.yes, and restart Visual Studio. 
3) When I try to open or step into a source code file, I get a dialog that says "Source is not available for this location" or I get an Open File dialog for the file.

First, see FAQ item (2) above to ensure the symbols for the DLL were loaded successfully.  You can verify this by looking in the Modules Window under the "Symbols Status" column.

If the Symbols Status is "Symbols loaded.", check the following.

  • If you have configured Microsoft Symbol Server in the past, you may have already downloaded symbols for this DLL that don't contain source information.  Try specifying a different cache path or deleting your existing cache path, and then repeating the Load Symbols command.   See FAQ #4 for more information on this.
  • Ensure you have checked the "Enable Source Server" item on the Tools -> Options -> Debugging -> General page
  • Ensure that your account has read/write access to your cache path
  • If you have _NT_SYMBOL_PATH set, it will override these settings.  Details here.
4) I also use Microsoft Symbol Server to download symbols.  What's the difference? Can these two programs co-exist?

Microsoft Symbol Server provides symbols without any source information in them.  That information has been removed (sometimes referred to as "stripped") before publishing.  The symbols provided on the Reference Source Server are full symbols with debugging information.

The key to using both is to have your Reference Source path above the Symbol Server Path so that those symbols are searched/found first.  As described in the ADVANCED USERS section above, you'll likely want to launch your debugger once with this configuration to get all the symbols downloaded, then uncheck both of these paths to avoid debugging launch slowdowns in the future.  Also note that this may conflict in the future as more DLLs are added to the Reference Source Project.  Meaning, if you've already downloaded the Symbol Server symbol, you'll need to delete that or change your cache path to get the Reference Source one (Visual Studio has no way of knowing which is which).

image

One final note here, if you have the Microsoft Symbol Server configured via _NT_SYMBOL_PATH, you'll need to add the Reference Source path above to that path as well - _NT_SYMBOL_PATH overrides the above settings.

5) Does this work with 64-bit?

Yes, we've also provided 64-bit versions of the PDBs.  Note some DLLs work on multiple architectures, so not all of them need a separate 64-bit PDB.

6) How do I set breakpoints in Framework code?

Visual Studio requires the code to exactly match what is expected by the PDB.  The source publishing process, however, makes some small updates to the code, such as pushing a standard copyright banner to the end of the source file.  This changes the signature (CRC) of the code file.  However, it's still easy to set a breakpoint. 

Just set your breakpoint as normal (you'll see it fails with a little warning icon), then right click the breakpoint and choose "Location..."

image

Then check the "Allow Source to be Different" box, hit OK.

image

Now the breakpoint will set successfully.

If you find yourself doing this often, you can also disable source matching in general by disabling Tools->Options->Debugging: “Require source files to exactly match the original version.”

7) Why don't some features like "Go To Definition" work?

Browse database information is separate from symbol (PDB) information within the debugger, so that information is maintained by the project system when a project is compiled and is not present within the symbol files.  So, unfortunately, that ability is not available here.

8) Why are some member or local variables unavailable?  Why can't I step into certain functions or lines of code?

The .NET Framework bits that you have installed on your machine are “retail” bits, which means they are optimized for size and performance.  Part of this optimization process removes certain information from the process when it is no longer needed.  Debugging retail assemblies reflects this.  However, most debugging information is still present in the session, and setting breakpoints earlier in a function often allows it to be visible.   Another aspect of retail builds is that some small methods may be “inlined” which means you will not be able to step into them or set breakpoints in them.  But for the most part you can step and debug as normal.

9) Why does it take so long to download some source files?

Some source files are very large - nearly 1MB - and unfortunately many of these are the common ones to download.  However, most are significantly smaller and download quickly.  Source files must be downloaded each time you restart Visual Studio.  They are not persistently cached like symbols are.

10) Can I just download all of the code at once?

Not currently, but we are currently working on enabling this functionality in the future.

11) When I debug into VB code, for example in Microsoft.VisualBasic.dll, there is a C# style comment at the bottom, is this a bug?

Not really - we do run a post processing step when publishing the code and it adds a standard copyright banner at the bottom.  The processor, at this time, isn't able to support multiple comment formats.  Having it in a non-VB format doesn't affect the debugging functionality in any way.

12) I got to a source file and all that downloaded was a blank file?

This is something we've seen intermittently but have not been able to diagnose.  If you see this, usually the workaround is to just restart VS, which will force the file to reload.  If you observe this behavior, please use the "Email" link on the left to email me the name of the file that failed and about what time the failure occurred.

13) What happens if I download a Hotfix or a Service Pack?  Will I be able to get source for that?

We've built a system that allows us to publish any number of versions of source and symbols for a given product.  We haven't made any firm decisions on how often we'll publish source and are open to customer feedback on those issues.  For example, it's clear that publishing source for each Service Pack makes sense, but it's unclear if we'll be able to do so for each Hotfix.  Again, we're looking forward to feedback here.

In the meantime, also note that symbol files may no longer match a module if a framework DLL has been updated via a Hotfix. In those cases, the modules window will indicate that the symbols could not be downloaded for that module. Assuming a new symbol file was published, it can be downloaded and cached using “Load Symbols”.

14) Can I point a web browser at the symbols URL and download the symbols directly?

No, you'll get an HTTP 400 (Bad Request) response.

SUPPORT

If you have any other questions, please visit our new MSDN Forum on the topic: Reference Source Server Discussion.

Thanks!

Published Wednesday, January 16, 2008 2:02 PM by sburke
Filed under:

Comments

# .NET Framework source code available!

In what I honestly believe is a stunning announcement, Scott Guthrie blogged moments ago that we have

Wednesday, January 16, 2008 6:07 PM by Jesse Liberty - Silverlight Geek

# [.NET] Le code source du Framework .NET est maintenant disponible !

Si vous ne vous en souvenez pas, Scott Guthrie avait annoncé, il y a quelque temps , que Microsoft ferait

Wednesday, January 16, 2008 6:15 PM by Thomas Lebrun

# .NET Framework Library Source Code available for viewing

Wednesday, January 16, 2008 6:15 PM by Scott Hanselman's Computer Zen

# .NET Framework Library Source Code available for viewing

Wednesday, January 16, 2008 6:15 PM by Scott Hanselman's Computer Zen

# .NET Framework Library Source Code available for viewing

Wednesday, January 16, 2008 6:16 PM by Scott Hanselman's Computer Zen

# Finalmente disponibile la ".NET Framework Library Source Code"

Qualche tempo fa Scott Guthrie aveva annunciato che con Visual Studio 2008 la Microsoft avrebbe reso

Wednesday, January 16, 2008 6:23 PM by BlogServiceHost.Create()

# .NET Framework Source Now Available

Scott Guthrie has just posted the excellent news that everything is now in place for people to access

Wednesday, January 16, 2008 6:30 PM by Chris Bowen's Blog

# .NET Framework source code available!

In what I honestly believe is a stunning announcement, Scott Guthrie blogged moments ago that we have

Wednesday, January 16, 2008 6:31 PM by Jesse Liberty

# Video on debugging into the .NET source code

Video on debugging into the .NET source code

Wednesday, January 16, 2008 6:36 PM by Daniel Moth

# .NET Framework Library Source Code now available

期待N久的.NET Framework源码终于出来了!

Wednesday, January 16, 2008 6:41 PM by GenoMind

# .NET framework: now with source code

Wednesday, January 16, 2008 6:42 PM by Tales from the Evil Empire

# .NET framework: now with source code

Wednesday, January 16, 2008 6:42 PM by Tales from the Evil Empire

# VS 2008: Sourcecode des .NET Frameworks verfügbar

Wie bereits hier geschrieben, wollte Microsoft den Sourccode der .NET Framework Bibliotheken veröffentlichen.

Wednesday, January 16, 2008 7:00 PM by Stefan Falz

# Debugging Dot Net Source Code in VS2008

Wednesday, January 16, 2008 7:00 PM by DotNetSurfers Blog

# Debugging Dot Net Source Code in VS2008

Wednesday, January 16, 2008 7:02 PM by DotNetSurfers Blog

# Disponibile parte del codice sorgente del Framework

Wednesday, January 16, 2008 7:02 PM by nostromo

# Fuentes del Framework de .Net

Todos los fuentes del framework de .net se han publicado hace algunos minutos, están disponibles en un

Wednesday, January 16, 2008 7:06 PM by Blog de Juan Peláez en Geeks.ms

# Fuentes del Framework de .Net

Todos los fuentes del framework de .net se han publicado hace algunos minutos, están disponibles en un

Wednesday, January 16, 2008 7:08 PM by Blog de Juan Peláez en Geeks.ms

# .NET Framework Source Now Available

Scott Guthrie has just posted the excellent news that everything is now in place for people to access

Wednesday, January 16, 2008 7:16 PM by Noticias externas

# .NET Framework Library Source Code available for viewing

It's live and you can give it a try now! Ten minutes ago Shawn and Scott released the hounds. If you'd

Wednesday, January 16, 2008 7:18 PM by ASPInsiders

# Configurer Visual Studio pour utiliser le code source du Microsoft .NET Framework en mode Debug

L'annonce avait été faite par Scott Guthrie il y a un peu plus de deux mois maintenant, et relayée ici

Wednesday, January 16, 2008 7:26 PM by Christophe Lauer, Blog Edition

# .NET Framework Library Source Code now available

.NET Framework Library Source Code now available

Wednesday, January 16, 2008 7:44 PM by 囚人のジレンマな日々

# .NET Framework Library Source Code

A few minutes ago Scott Guthrie , Shawn Burke and Scott Hanselman announced the availability of .NET

Wednesday, January 16, 2008 7:53 PM by Community Blogs

# Visual Studio 2008 のデバック中にCLR内にステップ実行可能に

.NET Framework Library Source Code now available (ScottGu's Blog)より まってました。Visual Studio 2008 のでバック中に CLR 内にステップ実行を可能とするシンボルサーバと設定方法が公開されています。

Wednesday, January 16, 2008 7:55 PM by かるあ のメモ

# .NET Framework Library Source Code now available

.NET框架源码终于可以看到了,大家可以到ScottGu

Wednesday, January 16, 2008 8:00 PM by 青松阳光

# .NET Framework のソースコードがデバッグできるようになったらしいです

ScottGu's Blog と Shawn Burke's Blog からです。 .NET Framework Library Source Code now available (Scott さんの投稿)

Wednesday, January 16, 2008 8:01 PM by ナオキにASP.NET(仮)

# re: Configuring Visual Studio to Debug .NET Framework Source Code

When installing the QFE I received a fatal error. The following was detailed in the QFE log file:

"An installation package for the product [2] cannot be found. Try the installation again using a valid copy of the installation package"

I inserted the VS2008 installation DVD into my computer and re-ran the QFE, this time, it installed successfully.

Wednesday, January 16, 2008 8:14 PM by bwaring

# .NET Framework终于开源了!

.NET Framework终于开源了!

Wednesday, January 16, 2008 8:14 PM by f9inux

# re: Configuring Visual Studio to Debug .NET Framework Source Code

Yes, we've seen other reports of this and had considered that work around - thanks so much for reporting back!

Thanks,

Shawn

Wednesday, January 16, 2008 8:17 PM by sburke

# Configurer Visual Studio pour utiliser le code source du Microsoft .NET Framework en mode Debug

L'annonce avait été faite par Scott Guthrie il y a un peu plus de deux mois maintenant, et relayée

Wednesday, January 16, 2008 8:18 PM by Noticias externas

# May the Source Be With You :)

In case you missed it, a couple of months back we announced that we'd be making the source for .NET (among

Wednesday, January 16, 2008 8:21 PM by US ISV Developer Evangelism Team

# .NET Framework Library 正式开源

.NET Framework Library 正式开源

Wednesday, January 16, 2008 8:27 PM by 孟宪会

# .NET Framework Library Source Code now available

That's right - we've published the .NET Framework Library Source Code to the public. Scott Guthrie

Wednesday, January 16, 2008 8:35 PM by B# .NET Blog

# This is one of the web's most interesting stories on Thu 17th Jan 2008

These are the web's most talked about URLs on Thu 17th Jan 2008. The current winner is ..

Wednesday, January 16, 2008 9:04 PM by purrl.net |** urls that purr **|

# .NET Frameworkのライブラリのソースコードが公開になったそうな!!!!

.NET Frameworkのライブラリのソースコードが公開になったそうな!!!!

Wednesday, January 16, 2008 9:07 PM by ひろえむの日々是勉強

# .net源代码已经可以调试

Scott发布了消息,.net源代码码已经可以在vs2008中调试 地址 下面的地址是详细的vs2008设置步骤 详细配置

Wednesday, January 16, 2008 9:15 PM by .Live

# May the Source Be With You :)

In case you missed it, a couple of months back we announced that we'd be making the source for .NET

Wednesday, January 16, 2008 9:20 PM by Noticias externas

# .NET 3.5 source code is available officially ...

You'll need to install a hot fix first ... once you sign in using your Windows Live account, (and possibly updating your profile like I had to), you'll run the install. Don't bother with the File Transfer Manager. It's definitely...

Wednesday, January 16, 2008 9:24 PM by WiredPrairie

# 配置Visual Studio 以调试.net framework的源代码

看到.net框架代码发布了,兴奋了一下,把在Visual Studio 2008上配置的内容翻译了一下,只翻译了原文的基本步骤,高级用户篇和QA没有翻译。要欣赏原文请点击这里

Wednesday, January 16, 2008 9:32 PM by 横刀天笑

# .NET Framework Source Released

.NET Framework Source Released

Wednesday, January 16, 2008 9:43 PM by Denny.NET

# .NET Framework Library Source Code now available!

Last October, ScottGu blogged about releasing the source code to the .NET Framework libraries , and enable

Wednesday, January 16, 2008 9:48 PM by Eric Brandt's
Trail of Bre@dcrumbs

# .NET Frameworkのライブラリのソースコード公開

.NET Frameworkのライブラリのソースコード公開

Wednesday, January 16, 2008 10:06 PM by R.Tanaka.Ichiro's Blog

# .NET Frameworkのライブラリのソースコード公開

.NET Frameworkのライブラリのソースコード公開

Wednesday, January 16, 2008 10:06 PM by R.Tanaka.Ichiro's Blog

# .NET Framework Library 正式开源

.NET Framework Library 正式开源

Wednesday, January 16, 2008 10:13 PM by eqiang

# .NET Framework Library Source Code now available!

Last October, ScottGu blogged about releasing the source code to the .NET Framework libraries , and enable

Wednesday, January 16, 2008 10:21 PM by Noticias externas

# .NET Framework Source Code ist nun verfügbar!

Im Oktober hatten wir ja bereits angekündigt, den .NET Framework Source Code aus einer Visual Studio

Wednesday, January 16, 2008 10:32 PM by Dariusz quatscht

# .NET Framework开源了!

Wednesday,January16,20082:50PM(2008,1.16),ScottGu在博客上公布了:微软在MS-RL协议下终于公开了.NETFramework源代码。我们可...

Wednesday, January 16, 2008 11:07 PM by asheng

# Additional .NET Framework Source Code Debugging Tricks

With the big announcement today, everyone's looking at the Framework sources like mad. Make sure you

Wednesday, January 16, 2008 11:17 PM by John Robbins' Blog

# .NET Framework Library Source Code now available

Wednesday, January 16, 2008 11:35 PM by Neo0820

# Microsoft.NET Framework 全面开源

期待已久的.NET Framework终于在本周开源了,微软在MS-RL协议下终于公开了.NET Framework源代码,我们只可以自由查看,不允许直接进行修改。 第一批开放的源代码包括: .NET基本类库

Thursday, January 17, 2008 12:19 AM by wsliu

# re: .NET Frameworkのライブラリのソースコード公開

re: .NET Frameworkのライブラリのソースコード公開

Thursday, January 17, 2008 12:19 AM by R.Tanaka.Ichiro's Blog

# Step-Into לקוד של .NET

וכל מילה נוספת מיותרת .

Thursday, January 17, 2008 12:36 AM by שחר.נט

# .NET Framework Library Source Code Released

Guys ....... Check this out Written by Shawn Burke of Microsoft... It's finally here - the launch

Thursday, January 17, 2008 12:43 AM by Raheel Hussain

# Configuring Visual Studio to Debug .NET Framework Source Code

Как мне не хватало возможности во время отладки пройтись по коду FCL. Приходилось брать рефлектор или

Thursday, January 17, 2008 12:47 AM by Віктор Шатохін [MSFT]

# VS2008: Neue Features III (Ergänzung)

Endlich scheinen die Tage des Wartens auf die Quellcodeunterstützung (BCL) im Debugger vorbei zu sein...Hier die erste Anleitung wie man dieses Feature nachinstallieren kann

Thursday, January 17, 2008 12:49 AM by SQL Server 2005 and .NET Development Blog

# Sourcing Debugging .NET Framework in Visual Studio

正如 先前 所 许诺 的,.NET Framework源代码已经对开发者开放,现在可以在Visual Studio 2008中直接对.NET Framework 进行源码调试 。

Thursday, January 17, 2008 12:56 AM by Felix Wang | Evangelizing the Next Web

# re: Configuring Visual Studio to Debug .NET Framework Source Code

Ночью пришло письмо от Shawn Burke с благодарностью за участие в тестировании .NET Reference Source project, а самое главное с информацией о том, что исходники .Net для отладки доступны в публичном доступе.

Thursday, January 17, 2008 12:59 AM by Alexey

# Debuging .NET Source Code

Several months ago Scott Guthrie mentioned that developers will be able to debug the .NET Source Code.

Thursday, January 17, 2008 1:07 AM by Bilal Haidar [MVP, MCT]

# re: Configuring Visual Studio to Debug .NET Framework Source Code

That's cool ~

Thursday, January 17, 2008 1:17 AM by conannb

# 配置Visual Studio 以调试.net framework的源代码

看到.net框架代码发布了,兴奋了一下,把在VisualStudio2008上配置的内容翻译了一下,只翻译了原文的基本步骤,高级用户篇和QA没有翻译。要欣赏原文请点击这里 基本步骤

注意,...

Thursday, January 17, 2008 1:22 AM by Qingping

# Sourcing Debugging .NET Framework in Visual Studio

正如 先前 所 许诺 的,.NET Framework源代码已经对开发者开放,现在可以在Visual Studio 2008中直接对.NET Framework 进行源码调试 。

Thursday, January 17, 2008 1:29 AM by Noticias externas

# .NET Framework 3.5 source code released

Scott Guthrie has announced the release of source code for some of the .NET framework libraries . This

Thursday, January 17, 2008 2:02 AM by Craig Bailey Link Blog

# .NET Framework Source Now Available

.NET Framework Source Now Available

Thursday, January 17, 2008 2:17 AM by Ian Suttle's Blog

# .NET framework source code now available

As stated on ScottGu's blog in his latest post , the .NET Framework Library Source Code is now available

Thursday, January 17, 2008 2:35 AM by Rick van den Bosch - Blog

# re: Configuring Visual Studio to Debug .NET Framework Source Code

Very, very nice -- thanks!

Thursday, January 17, 2008 2:38 AM by tonypujals

# It's official, .Net FX code now available!

Scott Guthrie announced the release of the .Net framework code today (comments and all!). Now you can

Thursday, January 17, 2008 2:48 AM by Redwerb

# re: Configuring Visual Studio to Debug .NET Framework Source Code

in my case this issue with hotfix is not necessarily related to having beta2 previously installed.

Thursday, January 17, 2008 2:49 AM by Dragan Panjkov

# Исходные коды фреймворка в студию?! Теперь это просто!

Наконец-то опубликованы исходные коды .Net Framework в виде, пригодном для их от

Thursday, January 17, 2008 2:55 AM by Nisus

# .Net Sourcecode veröffentlicht

Microsoft hat nun, wie angekündigt, den .Net Sourcecode veröffentlicht. Wie man dies nun in Visual Studio aktiviert, ist unter folgendem Link zu finden: http://blogs.msdn.com/sburke/[...]source-code.aspx Dazu ist es nötig einen kleinen

Thursday, January 17, 2008 3:00 AM by TheUndeadable entwickelt

# 配置Visual Studio 以调试.net framework的源代码(转载)

.net framework开源啦

Thursday, January 17, 2008 3:14 AM by greatbag

# .NET Framework Library Source Code now available

.NET Framework Library Source Code now available

Thursday, January 17, 2008 3:16 AM by Murat YILMAZ

# I sorgenti del .NET Framework 3.5 sono stati rilasciati!!!

I sorgenti del .NET Framework 3.5 sono stati rilasciati!!!

Thursday, January 17, 2008 3:24 AM by Around and About .NET World

# .NET Framework

期待已久的.NETFramework终于在本周开源了,微软在MS-RL协议下终于公开了.NETFramework源代码,我们只可以自由查看,不允许直接进行修改。

第一批开放的源代码包括: ...

Thursday, January 17, 2008 3:27 AM by 笑缘

# .Net开源了,配置链接

.Net开源了,配置链接

Thursday, January 17, 2008 3:27 AM by www.ewomenhome.com

# Invalid certificate downloading the QFE

Shawn getting an unknown publisher when the active x contorl loads so I cant get the hotfix to begin with.

Thursday, January 17, 2008 3:35 AM by gsuttie

# Configuring VS to debug .NET Framework Source

Sean Burke has all the details

Thursday, January 17, 2008 3:41 AM by Ahmed Salijee

# Kod źródłowy Framework.NET dostępny z debuggera

Jak można się dowiedzieć już z niejednego źródła  można już podczas debugowania aplikacji

Thursday, January 17, 2008 3:42 AM by dario-g

# [.net][visualstudio] デバッグ時に.NET Framework のソースコードが参照できるようになりました

昨年末から首を長くして待っていました。 設定方法はこちら Shawn Burke’s Blog : Configuring Visual Studio to Debug .NET Framework Source Code QFE(修正モジュール)のインストールで失敗。以下のメッセージ。 このソフトウェア更新の対象製品はこのコンピュータにイ

Thursday, January 17, 2008 4:10 AM by 学び、そして考える

# Source code da Framework .net 3.5 dispon

Thursday, January 17, 2008 4:53 AM by Jo

# Source code da Framework .net 3.5 dispon

Thursday, January 17, 2008 4:55 AM by Jo

# Source Code for .NET Framework Libraries is available

It was announced with the release of Visual Studio 2008, now it's here - follow this thorough step-by-step

Thursday, January 17, 2008 4:57 AM by Andrej Tozon's blog

# .NET Framework Source Code available

Microsoft has released the source code for .NET Framework. Personally I regard this decision and find

Thursday, January 17, 2008 5:03 AM by Damir Dobric Posts

# VB code in Windows Presentation Foundation source code

You probably already noticed that Microsoft has enabled access to the source code of parts of the .NET

Thursday, January 17, 2008 5:32 AM by Erwyn van der Meer

# A part of .NET Framework Source Code is available for debugging purposes

Great news. Microsoft finally released a part of .NET Framework Source Code for debugging purposes. A

Thursday, January 17, 2008 5:44 AM by Righthand blogs

# .Net Framework source code a VS-ben

Ígérték, vártuk, itt van. Én ugyan még nem próbáltam, de ScottGu

Thursday, January 17, 2008 5:52 AM by VBandi

# [VS2008] Finally !!! liberado el codigo del .Net Framework (conociendo el interior del lado oscuro)

Buenas este tipo de noticia se reproduce como un politono de los malos. Anoche a altas horas de la madrugada

Thursday, January 17, 2008 6:00 AM by El Bruno

# [VS2008] Finally !!! liberado el codigo del .Net Framework (conociendo el interior del lado oscuro)

Buenas este tipo de noticia se reproduce como un politono de los malos. Anoche a altas horas de la madrugada,

Thursday, January 17, 2008 6:01 AM by El Bruno

# [VS2008] Finally !!! liberado el codigo del .Net Framework (conociendo el interior del lado oscuro)

Buenas este tipo de noticia se reproduce como un politono de los malos. Anoche a altas horas de la madrugada

Thursday, January 17, 2008 6:01 AM by El Bruno

# "Debugging" the .NET framework

For at good blog posting describing HowTo, go here: Configuring Visual Studio to Debug .NET Framework

Thursday, January 17, 2008 6:43 AM by vittrup-graversen.dk

# Debug into the .NET Framework Library Source Code - It's here.

Debug into the .NET Framework. It's here .  Here's how you configure VS to use it for debugging

Thursday, January 17, 2008 6:46 AM by ISerializable - Roy Osherove's Blog

# VS 2008 Source Server now live

Oh happy day. I'm stepping into the .NET Framework source using the VS 2008 debugger. Shawn Burke

Thursday, January 17, 2008 6:49 AM by Bill Blogs in C#

# Microsoft gibt .NET-Quellcode frei

Thursday, January 17, 2008 6:50 AM by OSZine

# Debugging .NET Framework Source Code

I had my head down yesterday recording a few screencasts and missed this announcement - the .NET Reference

Thursday, January 17, 2008 6:51 AM by Mike Ormond's Blog

# Debugging .NET Framework Source Code

I had my head down yesterday recording a few screencasts and missed this announcement - the .NET Reference

Thursday, January 17, 2008 6:54 AM by Noticias externas

# Le code source des librairies de .NET est disponible

Microsoft avait annoncé il y a quelque temps que le code source de .NET serait disponible pour aider

Thursday, January 17, 2008 6:55 AM by Noticias externas

# .NET Framework Library Source Code now available

I've been waiting for this day for a very long time. Starting today you can view or debug the source

Thursday, January 17, 2008 7:19 AM by Blake Niemyjski

# Microsoft udostępnił źródła .NET Framework

Microsoft udostępnił źródła platformy .NET Framework w ramach projektu Microsoft Reference Source. Dzięki

Thursday, January 17, 2008 7:20 AM by jkolonko

# Debugging .Net Framework Source from VS 2008

As you may have heard, Microsoft has released the .Net framework source to the world.  No, you cannot

Thursday, January 17, 2008 7:33 AM by Derik Whittaker

# Debugging .NET Source Code

Shawn Burke has a nice article which explains how to enable Visual Studio to download the symbol files

Thursday, January 17, 2008 8:06 AM by Amar Galla's Weblog

# Microsoft libera acesso ao código fonte do .NET Framework (Debug)

.NET Framework 3.5 - Código Fonte Com o lançamento do Visual Studio 2008 e do .NET Framework 3.5 a Microsoft

Thursday, January 17, 2008 8:23 AM by Ramon Durães

# re: Configuring Visual Studio to Debug .NET Framework Source Code

Hey Now Shawn,

This is really great to see.

Thx 4 the info,

Catto

Thursday, January 17, 2008 8:24 AM by ccatto

# Microsoft.NET Framework 全面开源

期待已久的.NETFramework终于在本周开源了,微软在MS-RL协议下终于公开了.NETFramework源代码,我们只可以自由查看,不允许直接进行修改。

第一批开放的源代码包括: ...

Thursday, January 17, 2008 8:34 AM by 桦林

# Does this also work with VS 2005?

I was just wondering - do these instructions also work with Visual Studio 2005?

Thursday, January 17, 2008 8:40 AM by filipf

# .NET Framework Library Source Code available

NETFrameworkLibrarySourceCodenowavailable ConfiguringVisualStudiotoDebug.NETFramewor...

Thursday, January 17, 2008 9:35 AM by Warren Tang

# re: Configuring Visual Studio to Debug .NET Framework Source Code

Holy Shepherd and Wingo, Batman!  .Net Internals at last!

Thursday, January 17, 2008 9:52 AM by BillN6

# .NET symbol server up

Finally. Follow Shawn's steps. 

Thursday, January 17, 2008 9:55 AM by Granville Barnett

# re: Configuring Visual Studio to Debug .NET Framework Source Code

Does this also work with VS2005? The configuration options you mentioned are present in VS2005 also.

Thursday, January 17, 2008 10:11 AM by mcp111