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:

Comment Notification

If you would like to receive an email when updates are made to this post, please register here

Subscribe to this post's comments using RSS

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

# .NET Framework终于开源了!

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

.NET基本类库:System,System.CodeDom,System.Collections,System.ComponentModel, System.Diagnostics, System.Drawing, System.Globalization, System.IO, System.Net, System.Reflection,..

Thursday, January 17, 2008 10:32 AM by vincent

# 用 Visual Studio 2008 可以參閱 .NET 原始碼

為了提供 debug 的需要,  .NET 的大部份原始碼可以經由Visual Studio 2008設定, 直接在 debug 時, 自動進 .NET 的原始碼內容。目前已經開放的原始碼有:

Thursday, January 17, 2008 10:33 AM by Application.NET

# Debugga källkoden till .NET Framework

Nu finns det som utlovades tidigare, nämligen möjligheten att debugga källkoden till .NET Framework med

Thursday, January 17, 2008 10:35 AM by Johan Lindfors

# Kilde koden til .NET 3.5 frameworket frigivet

Da jeg jo egentligt bruger stort set hele min arbejdstid og store dele af min fritid med .NET applikations udvikling, er det vel en nyhed der skal i min blog I praksis betyder det at man kan debuge ind i .NET's kode, se hvordan den er bygget op, og even

Thursday, January 17, 2008 10:36 AM by Cand.Polyt i den virkelige verden

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

if you want to know what the chinese guys said, here's a handy translation link

http://www.google.com/translate_t?langpair=zh|en

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

# .NET Framework Sorce Code disponiv

Thursday, January 17, 2008 10:56 AM by .NET from outside

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

@ gsuttie

>>Shawn getting an unknown publisher when the

>> active x contorl loads so I cant get the

>> hotfix to begin with.

Note sure what you're seeing - haven't heard of this before.  Is it the Windows Live ID process you're having problems with or downloading the Hotfix itself?

Thursday, January 17, 2008 10:57 AM by sburke

# Debugga källkoden till .NET Framework

Nu finns det som utlovades tidigare, nämligen möjligheten att debugga källkoden till .NET Framework med

Thursday, January 17, 2008 11:01 AM by Noticias externas

# 用 Visual Studio 2008 可以參閱 .NET 原始碼

為了提供 debug 的需要,  .NET 的大部份原始碼可以經由Visual Studio 2008設定, 直接在 debug 時, 自動進 .NET 的原始碼內容。目前已經開放的原始碼有

Thursday, January 17, 2008 11:02 AM by Noticias externas

# .NET Framework Source Code Goodness

Oh yes. Following up from his earlier announcement , Scott Guthrie has just announced the broad availability

Thursday, January 17, 2008 11:04 AM by UK Academic Team Blog

# .NET Framework Source code beschikbaar

De source code van een gedeelte van het .NET framework is beschikbaar. OP dit moment is de code beschikbaar

Thursday, January 17, 2008 11:21 AM by Arie Leeuwesteijn

# .NET Framework Source Code Goodness

Oh yes. Following up from his earlier announcement , Scott Guthrie has just announced the broad availability

Thursday, January 17, 2008 12:04 PM by Noticias externas

# Επιτέλους Διαθέσιμος ο Source Code του .ΝΕΤ Framework

Διαθέσιμος είναι απο χθές ο κώδικας του .ΝΕΤ Framework σύμφωνα με ένα Blog Post του Scott Guthrie. Ο

Thursday, January 17, 2008 12:14 PM by Οι Ειδήσεις του Student Guru

# Accediendo al código del Framework .NET

Ha sido liberado el código fuente del framework .NET. Este es un anuncio muy esperado por toda la

Thursday, January 17, 2008 12:22 PM by Miguel Saez

# QFE Download Link doesn't work

When I try to use the link posted to get the Hot Fix it doesn't work, I usually get "Internet Explorer cannot display the webpage" IE is hiding the error code, so I do not know why it is saying this.  If I refresh the link for a while I will eventually get a "Windows Live ID is unavailable" error that looks like this:

-----------------------------------------------

Windows Live ID is unavailable from this site for one of the following reasons:  

-This site may be experiencing a problem.

-The site may not be a member of Windows Live ID

You can:

-You can sign in or sign up at other Windows Live ID sites and services, or try again later at this site.

-----------------------------------------------

I have a valid Live ID and have been to connect.microsoft.com many times before with out problems.  However, i cannot get to any part of the site right now either.  I get the same errors either an generic IE error, or the Windows Live ID error.

Thursday, January 17, 2008 12:43 PM by Creepy Gnome

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

Shawn, is it possible to set up our own source server internally?  This would be useful for internal / external parties outside of development.

Cheers,

Stuart

Thursday, January 17, 2008 12:58 PM by stuart.carnie

# Microsoft gibt .NET-Sourcecode frei

Na ja, fast. Open Source ist das noch nicht ganz, aber immer hin darf man jetzt als Entwickler auch mal einen Blick unter die Haube werfen und sich ein paar Sachen abschauen. Und vor allem Kommentare lesen, hehe :-). Alle Infos hier und hier.

Thursday, January 17, 2008 1:04 PM by Thomas goes .NET

# Disponibili i sorgenti delle librerie del .NET Framework per il debug integrato con Visual Studio 2008

Annunciata la disponibilità di una parte dei sorgenti delle librerie del .NET Framework. Le librerie

Thursday, January 17, 2008 1:06 PM by Noticias externas

# Accediendo al código del Framework .NET

Ha sido liberado el código fuente del framework .NET. Este es un anuncio muy esperado por toda la

Thursday, January 17, 2008 1:07 PM by Noticias externas

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

@ Creepy Gnome

Can you access other sites like Live.com?  Not sure why accessing the Hotfix would be different than other parts of connect.  What happens if you log out and back into Windows Live?

@ Stuart

You mean for your own code inside your company?  Generally yes - meaning there isn't a special hardcoding of our servers or anything.  But it'll take some work to do - there have been a few questions on this, maybe shoot me an email with what you'd like to enable...

Thursday, January 17, 2008 1:11 PM by sburke

# C

Thursday, January 17, 2008 1:58 PM by Mauricio Junior - MCP Microsoft (WEB

# Disponibile la .NET Framework Library Source Code

Thursday, January 17, 2008 2:15 PM by Alessandro Del Sole's Blog

# Debugging into the .NET Framework Source

As promised, Microsoft has made the source for the .NET Framework available for debugging purposes. You'll

Thursday, January 17, 2008 2:16 PM by James Kovacs

# re: QFE Download Link doesn't work

Yeah I can use my Live account all over the place. I can get to my MSDN account, I can get into my Live Messager, etc.

As for log out and log in it doesn't give me any of these options. I get an error message, and the choice to sign up thats it.  Its strange.

Thursday, January 17, 2008 2:22 PM by Creepy Gnome

# re: QFE Download Link doesn't work

Shawn it is working now.  I did something like what you said, there was a link (in small print) to access my account from the error page. I did that, and I logged in and then out and then in again. Then I when back to the link you give and it works great.

Thanks for the help!

Thursday, January 17, 2008 2:27 PM by Creepy Gnome

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

@Gnome - okay great!

Thursday, January 17, 2008 2:53 PM by sburke

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

@Gnome - okay great!

Thursday, January 17, 2008 2:53 PM by sburke

# Debug .NET Framework Source Code

Finally it is possible to debug the .NET Framework Source Code, and Shawn Burke has all the details on

Thursday, January 17, 2008 3:11 PM by Erics Blog

# Επιτέλους Διαθέσιμος ο Source Code του .ΝΕΤ Framework

Διαθέσιμος είναι απο χθές ο κώδικας του .ΝΕΤ Framework σύμφωνα με ένα Blog Post του Scott Guthrie. Ο

Thursday, January 17, 2008 3:34 PM by Οι Ειδήσεις του Student Guru

# Διαθέσιμος ο κώδικας του .NET Framework!

Τον Οκτώβριο είχε γίνει γνωστή η απόφαση της Microsoft να κάνει διαθέσιμο τον πηγαίο κώδικα του .NET

Thursday, January 17, 2008 4:04 PM by Ειδήσεις του dotNETZone.gr

# .NET Framework Library Source Code now available

.NET Framework Library Source Code now available

Thursday, January 17, 2008 5:16 PM by Bite my bytes

# Debuggare il framework ...

... non ha prezzo !!! Per chi non ha voglia di leggersi l'esauriente post di Shawn Burke, questo è un

Thursday, January 17, 2008 5:23 PM by BlogServiceHost.Create()

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

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

Thursday, January 17, 2008 5:30 PM by ひろえむの日々是勉強

# Código fuente del .NET Framework

Por fin lo que fue anunciado hace algunos meses por Scott Guthrie hoy es realidad: Podemos cargar los

Thursday, January 17, 2008 5:55 PM by Rodrigo Díaz

# Configuring Visual Studio to Debug .NET Framework Source Code

Configuring Visual Studio to Debug .NET Framework Source Code

Thursday, January 17, 2008 6:02 PM by brute forced brilliance

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

Great!!! A couple of days ago I was trying to "google" any news about the release of the source code, because the last news I could find (one of your posts) said that it would be available a couple of weeks after the launch of VS 2008. Also, I believe that in previous posts it was mentioned that the source code release only covers framework 3.5 and not 2.0/3.0 and only applies to Visual Studio 2008 (not VS 2005) for debugging

Thursday, January 17, 2008 7:11 PM by davidparslow

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

When I click on the QFE link I get:

Page Not Found

The content that you requested cannot be found or you do not have permission to view it.

Do you have to have more then "Visual Studio Registration Benefits Portal" Participation to get it?

Thursday, January 17, 2008 7:35 PM by Tergiver

# .NET Framework开源 如何保存源代码

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

Thursday, January 17, 2008 8:07 PM by Bolik

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

搞的不错。但是我不能打开Visual Studio 2008 QFE,不知道是怎么回事。

未找到网页

无法找到您请求的内容或您无权查看该内容。

如果您确信进入了错误的页面,请单击页面底部的“联系我们”链接,在电子邮件中报告此问题并提供此错误 ID: 03a50cc8-1829-4941-a6b1-fb248ec64f47

Thursday, January 17, 2008 8:59 PM by tzh1080

# .NET Framework Source Code now Available...

[via ScottGu ] Available source code for now: NET Base Class Libraries (including System, System.CodeDom,

Thursday, January 17, 2008 9:10 PM by Rexiology@MSDN

# .NET Framework Source Code now Available...

crosspost from http://blogs.msdn.com/rextang [via ScottGu ] Available source code for now: NET Base Class

Thursday, January 17, 2008 9:10 PM by Rexiology::Work

# .NET Framework Source Code now Available...

[via ScottGu ] Available source code for now: NET Base Class Libraries (including System, System.CodeDom

Thursday, January 17, 2008 9:21 PM by Noticias externas

# .NET Framework 라이브러리 소스코드 공개(2008/01)

.NET Framework Library Source Code now available - ScottGu's Blog 이전에 예고 된대로 라이브러리의 소스 코드가 공개되었습니다. 공개된

Thursday, January 17, 2008 9:48 PM by bkchung's WebLog

# .NET Framework 라이브러리 소스코드 공개(2008/01)

.NET Framework Library Source Code now available - ScottGu's Blog 이전에 예고 된대로 라이브러리의 소스 코드가 공개되었습니다

Thursday, January 17, 2008 10:23 PM by Noticias externas

# Microsoft.NET Framework 全面开源

Microsoft.NET Framework 全面开源

Thursday, January 17, 2008 10:32 PM by phphot

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

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

Thursday, January 17, 2008 11:00 PM by Zqin

# .NET Framework 开源了

.NET Framework Library Source Code now available

Friday, January 18, 2008 12:04 AM by yangyibang

# Disponible .NET Framework Library Source Code

Tal y como se había anunciado, el código fuente de las librerías Base (System, System.CodeDom,

Friday, January 18, 2008 12:41 AM by Tatis

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

Same problem here, I get a "Page Not Found"  when I try to download the QFE.

Friday, January 18, 2008 2:15 AM by gabriel.lozano-moran

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

Unfortunately, Page Not Found :(

Friday, January 18, 2008 3:08 AM by ImWhistler

# Mit Visual Studio 2008 .NET Framework Source Code Debuggen

Hatte gerade mit Mario über ein Debug Problem gesprochen, wie man .Net Framework Source Code debugged,

Friday, January 18, 2008 3:09 AM by Christian Binder's Weblog

# Mit Visual Studio 2008 .NET Framework Source Code Debuggen

Hatte gerade mit Mario über ein Debug Problem gesprochen, wie man .Net Framework Source Code debugged

Friday, January 18, 2008 3:39 AM by Noticias externas

# links for 2008-01-18

links for 2008-01-18

Friday, January 18, 2008 4:25 AM by Javier-Romero

# .NET Framework Source Code for Debugging Support

As announced earlier by Scott Gu , the source code for most of the namespaces in the .NET framework is

Friday, January 18, 2008 4:28 AM by Blue Blip

# Código fonte da plataforma .NET disponível no Visual Studio 2008

Tal como o ScottGu anunciou em Outubro de 2007 , a Microsoft disponibilizou o código fonte da plataforma

Friday, January 18, 2008 4:52 AM by Carlos Guedes

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

When I try to download the QFE I get:

Page Not Found

The content that you requested cannot be found or you do not have permission to view it.

If you believe you have reached this page in error, click the Contact Us link at the bottom of the page to report the issue and include this ID in your e-mail: 41b12c86-7b45-4ed3-8918-6e9520c9c11b

:(

Friday, January 18, 2008 8:05 AM by CallMeJake

# Stepping into base class libraries of .NET Framework while debugging

Here are some pieces of information about stepping into base class libraries of .NET Framework while

Friday, January 18, 2008 8:06 AM by Marco Dorantes' WebLog

# Nostalgia and today.

Is someone of my beloved readers lost an heart bit by seeing this splash image? For me, it all began

Friday, January 18, 2008 8:44 AM by Ariel's Remote Data Center

# Stepping into base class libraries of .NET Framework while debugging

Here are some pieces of information about stepping into base class libraries of .NET Framework while

Friday, January 18, 2008 8:49 AM by Noticias externas

# Configuring VS2008 to Debug .NET Framework Source Code

You've been kicked (a good thing) - Trackback from DotNetKicks.com

Friday, January 18, 2008 9:31 AM by DotNetKicks.com

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

Same problem as "CallMeJake", but with different ID of course:

b0199964-af08-414d-84c2-a7e9630ffef0

Friday, January 18, 2008 9:37 AM by ttoni

# .NET Framework Library Source Code now available

NET Framework Library Source Code

Friday, January 18, 2008 9:50 AM by yangwuhan

# Visual Studio 2008 でデバッグ時における.NET Fxのソースコード公開が始まる

Shawn Burke's Blog : Configuring Visual ...

Friday, January 18, 2008 9:53 AM by OPC Diary

# Source code til .net framework frigivet

Source code til .net framework frigivet

Friday, January 18, 2008 10:35 AM by Khebbies blog

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

RE: QFE Downloads

The download page was down for a while, but it's back up now at the link at the top of the post.  Sorry for the inconvenience.

Friday, January 18, 2008 11:48 AM by sburke

# GET [snip]System/Web/UI/Page.cs

So I just set up debugging of the .NET framework source code as per the instructions on Shawn Burke's

Friday, January 18, 2008 12:21 PM by Ronan Geraghty's Weblog

# GET [snip]System/Web/UI/Page.cs

So I just set up debugging of the .NET framework source code as per the instructions on Shawn Burke's

Friday, January 18, 2008 12:21 PM by MSDN Ireland Blog

# [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,...

Friday, January 18, 2008 12:52 PM by El Bruno

# GET [snip]System/Web/UI/Page.cs

So I just set up debugging of the .NET framework source code as per the instructions on Shawn Burke's

Friday, January 18, 2008 1:02 PM by Noticias externas

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

Thanks a lot :)

Friday, January 18, 2008 1:39 PM by ImWhistler

# Restart VS after initial configuration

I found that you have to restart VS 2008 after the initial symbol server configuration configuration (at the Debugging Into Framework Source title in the article).  Until I did so, the "Load Symbols" did not show up on the context menu.

Friday, January 18, 2008 2:43 PM by Mike Almond

# Debug del codice .Net con VS2008

Debug del codice .Net con VS2008

Friday, January 18, 2008 4:53 PM by Advanced Technology

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

Why do you have to manually load the symbols for each debugging session? It seems like a hassle. It seems like they should be remembered for as long as the given project is open.

Friday, January 18, 2008 7:54 PM by jemiller

# Couple of updates

Couple of updates

Friday, January 18, 2008 8:23 PM by public static Shifd {

# Microsoft.NET Framework 全面开源了.

转贴http://news.csdn.net/n/20080117/112839.html

期待已久的.NETFramework终于在本周开源了,微软在MS-RL协议下终于公开了.NETFram...

Friday, January 18, 2008 11:52 PM by E.L.---黑者如斯夫,不舍昼夜......

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

@jemiller

I know, that's just the way the debugger works unfortunately.  Please see the "ADVANCED USERS" section, it may be a better method for you.

Saturday, January 19, 2008 1:19 AM by sburke

# Microsoft.NET Framework 全面开源 [转]

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

Saturday, January 19, 2008 1:21 AM by 罗布林克

# Microsoft.NET Framework 全面开源

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

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

Saturday, January 19, 2008 1:40 AM by KidYang

# Configuring Visual Studio to Debug .NET Framework Source Code

Configuring Visual Studio to Debug .NET Framework Source Code

Saturday, January 19, 2008 1:43 AM by 张彤

# Debuggare i sorgenti del framework da VS2008

Debuggare i sorgenti del framework da VS2008

Saturday, January 19, 2008 3:35 AM by Technology Experience (Reborn)

# .NET Framework Source Code Available

It's here and you can give it a try now! To step through .NET Framework Source code, here's what

Saturday, January 19, 2008 4:04 AM by Maor David

# .Net Source Code - Visual Studio 2008 integration

Always wanted to know, how some functionality implemented in .Net framework? Want to debug into framework

Saturday, January 19, 2008 5:00 AM by DevCorner

# VS 2008 e .NET Framework Source Code

VS 2008 e .NET Framework Source Code

Saturday, January 19, 2008 6:01 AM by Il Blog di Nicol

# Microsoft.NET Framework 全面开源

Microsoft.NET Framework 全面开源

Saturday, January 19, 2008 9:57 AM by Arthur(阿胜)

# VS2008 team suite

今天终于有时间下载VS2008team suite版了 里面的js脚本编辑器,号称是全面支持智能感知和函数描述,参数说明,按帮助给的方式试了一下,觉得还不错,连ajax写的希奇古怪的js脚本都可以正常提示出来 顺便搭配使用一下DOTNET Framework的开源代码

Saturday, January 19, 2008 11:15 AM by bindsang

# Source code of Visual Basic runtime has been released to public. (Vladimir)

One of the things we have been working on recently is publishing sources of VisualBasic runtime library.

Saturday, January 19, 2008 12:33 PM by The Visual Basic Team

# Source code of Visual Basic runtime has been released to public. (Vladimir)

One of the things we have been working on recently was publishing sources of VisualBasic runtime library

Saturday, January 19, 2008 12:47 PM by Noticias externas

# Microsoft.NET Framework 全面开源

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

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

Sunday, January 20, 2008 9:47 AM by yuantao

# [VS2008] Debuggare il codice del Framework

[VS2008] Debuggare il codice del Framework

# Microsoft.NET Framework 全面开源

Microsoft.NET Framework 全面开源

Sunday, January 20, 2008 12:03 PM by figo

# User-Unhandled Exception missing from Visual Studio

User-Unhandled Exception missing from Visual Studio

Sunday, January 20, 2008 3:06 PM by Corrado's BLogs

# 微软正式宣布开源.NET Framework架构链接库

微软.NET Framework总经理Scott Guthrie上周宣布微软正式释出.NET Framework链接库。 Scott Guthrie在去年10月就发表了此一计划,当时指出开发人员透过这些开放浏览的源码可更了解.NET架构程序如何被应用,以调校所开发的应用程序以及进行.NET架构除错。

Monday, January 21, 2008 12:03 AM by jackch88

# Community Convergence XXXIX

Welcome to the XXXIX issue of Community Convergence. The big news this week is that Microsoft has begun

Monday, January 21, 2008 1:41 AM by Charlie Calvert's Community Blog

# Community Convergence XXXIX

Welcome to the XXXIX issue of Community Convergence. The big news this week is that Microsoft has begun

Monday, January 21, 2008 1:52 AM by Noticias externas

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

Hi Shawn,

Could you please explain how to create our own Internet symbol server like the one microsoft has ?

Monday, January 21, 2008 6:58 AM by karthik_try@hotmail.com

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

Hi Shawn,

Could you please explain how to create our own Internet symbol server like the one microsoft has ?

Thanks,

Arun

Monday, January 21, 2008 7:00 AM by karthik_try@hotmail.com

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

Hi Shawn,

Could you please explain how to create our own Internet symbol server like the one microsoft has ?

Thanks,

Karthik

Monday, January 21, 2008 7:00 AM by karthik_try@hotmail.com

# Debugging .NET Framework Source Code

I'm not implying that the Framework needs to be debugged - but now, if you need to understand what

Monday, January 21, 2008 7:25 AM by Tim Long

# How to Configure Visual Studio 2008 to DEBUG || View .NET framework code

Shawn have done a great job describing how to configure the development environment to go into .NET source

Monday, January 21, 2008 8:28 AM by NicolBlog

# How to Configure Visual Studio 2008 to DEBUG || View .NET framework code

Shawn have done a great job describing how to configure the development environment to go into .NET source

Monday, January 21, 2008 9:04 AM by Noticias externas

# VS 2008 可以直接偵錯 .NET Framework 的原始程式碼

如果想要知道 .NET Framework 的程式是如何寫的,現在使用 VS 2008 就可以直接做這件事。 詳細設定的方式: http://blogs.msdn.com/sburke/archive/2008/01/16/configuring-visual-studio-to-debug-net-framework-source-code.aspx

Tuesday, January 22, 2008 5:25 AM by 微軟全球技術支援中心 - 邱英瑞 - Jacky Chiou

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

Tuesday, January 22, 2008 5:27 AM by jchiou

# VS 2008 可以直接偵錯 .NET Framework 的原始程式碼

如果想要知道 .NET Framework 的程式是如何寫的,現在使用 VS 2008 就可以直接做這件事。 詳細設定的方式: http://blogs.msdn.com/sburke/archive

Tuesday, January 22, 2008 5:52 AM by Noticias externas

# setting up internet symbol server

@Arun, @Karthik_try

Buy this book: Advanced Windows Debugging by Mario and Daniel. Whole chapter is dedicated to setting up symbol server with IIS.

Tuesday, January 22, 2008 8:23 AM by vedala

# [草稿] 自动下载完整的.NET源代码

Tuesday, January 22, 2008 1:53 PM by Flier Lu

# PowerShell Script for Setting Symbol Paths

In my continued resolution to make PowerShell my full time command line interface, I've been porting

Tuesday, January 22, 2008 5:21 PM by John Robbins' Blog

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

Hi vedala,

Thanks for your information.

Karthik

Wednesday, January 23, 2008 2:06 AM by karthik_try@hotmail.com

#

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

Wednesday, January 23, 2008 2:16 AM by jey-j

# 推荐系列:2008年第04期 总6期

概述1.FiveAjaxControlToolkitTabThemescreatedfromDynamicDrive.com

Wednesday, January 23, 2008 5:33 AM by TerryLee

# Prioritising doing over bloging

Wednesday, January 23, 2008 7:33 AM by JCooney.NET

# Debugging Framework Source

Other people have told me they're now successfully debugging into .NET Framework source code although

Wednesday, January 23, 2008 8:43 AM by Noticias externas

# 【收藏】2008年第04期 总6期

本期共有9篇文章

1.FiveAjaxControlToolkitTabThemescreatedfromDynamicDrive.com

Wednesday, January 23, 2008 8:39 PM by Jacky_Xu

# vs2008 debug with .net framework source code!

部分.netframeworksourcecode已开源,设置vs2008可进行framework的源码级调试,http://www.infoq.com/news/2008/01/DotNet-...

Wednesday, January 23, 2008 9:17 PM by sharplife

# Kolejne sensacje

Silverlight nie chce mnie opuścić - to naprawdę gorący temat. W październiku pisałem o otwarciu kodu

Thursday, January 24, 2008 5:41 AM by SocialITy

# Microsoft.NET Framework 全面开源

Microsoft.NET Framework 全面开源

Thursday, January 24, 2008 8:23 AM by Arthur(阿胜)

# NET Framework’s source code access in debug mode a

At last my prayers have been answered! Microsoft has recently released the source code for .NET Framework

Thursday, January 24, 2008 11:23 AM by The Cyclops Corner

# NET Framework’s source code access in debug mode

At last my prayers have been answered! Microsoft has recently released the source code for .NET Framework

Thursday, January 24, 2008 11:26 AM by The Cyclops Corner

# .NET Library Released as Source

This past week Microsoft released a portion of the .NET Framework library to enable debugging support

Thursday, January 24, 2008 6:58 PM by Microsoft on ISVs

# .NET Framework Library Source Code now Available

Friday, January 25, 2008 3:09 PM by Chirag Batra's WebLog

# .Net Framework Library Source Code now available

微软在MS-RL协议下终于有“条件”的公开了.NetFramework源代码,具体来说,现在可以查看和调试下面的.NetFramework的源代码:.NET基类库(包括System,Sys...

Saturday, January 26, 2008 6:23 AM by Eric Yih

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

This doesn't appear to work. The linked version of .Net 3.5 is 2.0.50727.1434 (rather than .1433) and, thus, the symbol server is useless until it gets updated. I'm running Vista SP1 RC, if that makes a difference.

PS: PingBacks are the most useless form of user-consented spam ever, and I'll never, ever understand why Microsoft keeps coding them in to their blogs. Do the 300 entries rephrasing the original post really make the community more vibrant, or information easier to find? No, they do the exact opposite.

Saturday, January 26, 2008 11:18 PM by magicmat

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

Hi, FYI, I'm currently running on Visual Studio Team System 2008 Team Suite Beta 2. I was not able to install the hotfix with below message:

None of the products that are addressed by this software update are installed on this computer. Click Cancel to exit setup.

Any idea how could I get this to be installed?

Thanks.

ytchua.

Sunday, January 27, 2008 4:18 AM by ytchua

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

Dear Shawn Burke,

The hotfix that I mentioned is Visual Studio 2008 QFE KB944899.

Yet, I'm not able to access to http://support.microsoft.com/kb/944899.

ytchua.

Sunday, January 27, 2008 4:24 AM by ytchua

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

@magicmat

Correct, the 1434 (Vista SP1) symbols aren't currently up there.  We're working on getting them deployed.

Sunday, January 27, 2008 3:07 PM by sburke

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

@ytchua

The hotfix can only be installed on the final RTM version of VS2008.  Hope that helps!

Sunday, January 27, 2008 3:07 PM by sburke

# .NET Frameworkの中身を見てみる

注意:本エントリは、後で自分でやろうと思って収集した情報をまとめたものです。実際に私はまだ作業を行...

Tuesday, January 29, 2008 12:02 AM by 猿頁

# [PL] Multithreading safe - jak to robi .NET Framework?

Przy pisaniu swojej wersji Wiki-pajączka uwziąłem się, aby znów wrócić do tematu nazwijmy to

Tuesday, January 29, 2008 9:13 AM by Only Human | Devoted to technology v.2.0

# [PL] Multithreading safe - jak to robi .NET Framework?

Przy pisaniu swojej wersji Wiki-pajączka uwziąłem się, aby znów wrócić do tematu nazwijmy to

Tuesday, January 29, 2008 10:13 AM by Noticias externas

# .NET Frameworkの中身を見てみた

前エントリで.NET Frameworkライブラリソースの参照のしかたがわかりました。 せっかくで...

Tuesday, January 29, 2008 1:20 PM by 猿頁

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

I got following info when clicking on the Symbol Load Infomation:

D:\WINDOWS\assembly\GAC_MSIL\System.Windows.Forms\2.0.0.0__b77a5c561934e089\System.Windows.Forms.pdb: Cannot find or open the PDB file.

d:\Program Files\Microsoft Visual Studio 9.0\Common7\IDE\System.Windows.Forms.pdb: Cannot find or open the PDB file.

D:\WINDOWS\symbols\dll\System.Windows.Forms.pdb: Cannot find or open the PDB file.

D:\WINDOWS\dll\System.Windows.Forms.pdb: Cannot find or open the PDB file.

D:\WINDOWS\System.Windows.Forms.pdb: Cannot find or open the PDB file.

I have no idea on this, please help me take a look. Thanks in advance!

Wednesday, January 30, 2008 12:54 AM by Test2007

# C# 类型基础

本文首先讨论了C#中的两种类型--值类型和引用类型,随后简要回顾了 装箱/拆箱 操作。接着,详细讨论了C#中的对象判等。最后,我们讨论了浅度复制 和深度复制,并比较了它们之间不同。

Wednesday, January 30, 2008 7:34 PM by 张子阳.

# January 2008 Recap

I've had a policy against posting on big news that's likely to be common knowledge in the Microsoft development

Sunday, February 03, 2008 4:59 AM by Jon Galloway

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

Source code automatically loaded completely.

Sunday, February 03, 2008 8:55 PM by sasah

# Source code automatically loaded completely

Sunday, February 03, 2008 8:56 PM by sasah

# Download All the .NET Reference Source Code at Once with Net Mass Downloader

Microsoft has really helped out the development community by making the .NET Reference Source Code available

Tuesday, February 05, 2008 9:56 PM by John Robbins' Blog

# 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

Wednesday, February 06, 2008 3:43 PM by Zunanji blogi

# 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

Wednesday, February 06, 2008 4:23 PM by MihaM

# 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

Wednesday, February 06, 2008 4:53 PM by Zunanji viri

# .NET Framework Library Source Code now available

Another piece of good news that . NET Framework Library source code is now available in Visual Studio

Wednesday, February 06, 2008 5:13 PM by Zunanji viri

# .Net source mass downloader

On 1/16/08, Microsoft announced the ability to download some of the .NET Framework source code for debugging

Wednesday, February 06, 2008 8:42 PM by Coding4Fun

# 3.5 .Net Framework Souce Release

Over the weekend I had a play with the new .NET framework source code release which now allows you to debug into framework classes as part of your standard debugging. The source gives a good insight i ...

Thursday, February 07, 2008 5:55 AM by The Thinker

# .Net source mass downloader

On 1/16/08, Microsoft announced the ability to download some of the .NET Framework source code for debugging

Thursday, February 07, 2008 10:59 PM by Noticias externas

# Debug microsoft framework code

Friday, February 08, 2008 3:17 AM by Christian Glinnum's Blog

# Getting .NET Framework source code in your VS2008 debugger

Shawn Burke's blog has full instructions on how to make the .NET reference source code available in your

Friday, February 08, 2008 10:43 AM by Steve Cook's WebLog

# Getting .NET Framework source code in your VS2008 debugger

Shawn Burke's blog has full instructions on how to make the .NET reference source code available

Friday, February 08, 2008 11:13 AM by Noticias externas

# Debug .NET Framework libraries

Hi, Microsoft has released .Net reference source code, which enable you to debug straight into .net framework

Tuesday, February 12, 2008 5:26 PM by Ran Savariego

# vs2008 相关更新

ASP.NETMVC框架路线图更新

【原文地址】ASP.NETMVCFrameworkRoad-MapUpdate

【原文发表日期】Tuesday,February12,200...

Wednesday, February 13, 2008 9:09 PM by 曹振华

# very very helpfull

thanks a lot for this feature.

I lost 3 days on a binding problem which was resolved in five minutes by this way

Thursday, February 14, 2008 8:45 AM by BlaiseBraye

# NET Framework Library Source Code now available

NET Framework Library Source Code now available

Friday, February 15, 2008 1:37 AM by wzwind

# Tools for Digging Deeper Into .NET

As I’ve been preparing more things to talk about I realized that it would be beneficial to have a list

Sunday, February 17, 2008 10:07 PM by Jeremy Kuhne's Blog

# Tools for Digging Deeper Into .NET

As I’ve been preparing more things to talk about I realized that it would be beneficial to have a list

Sunday, February 17, 2008 10:16 PM by Noticias externas

# 如何批量下载VS2008中公开的微软源代码

首先要感谢微软公司在VS2008中引入了部分开源的协议使大家不必再通过Reflector等工具进行反编译,着实让大家感受到了不少便利。不过微软的VS2008中的开源方式存在若干不足,最重要的不足之处...

Monday, February 18, 2008 10:52 AM by volnet(可以叫我大V)

# Adding New Components to Existing Features Installs the Feature Tree

As Developer Division starts to ship patches for the Visual Studio 2008 , some users are being prompted

Monday, February 18, 2008 4:40 PM by Heath Stewart's Blog

# Adding New Components to Existing Features Installs the Feature Tree

As Developer Division starts to ship patches for the Visual Studio 2008 , some users are being prompted

Monday, February 18, 2008 4:50 PM by Noticias externas

# 如何下载.net Framework源代码

.net Framework 开源了,不过没有现成的代码包下载,只有debug的时候每次能获得一个文件,还好热心人写了个软件全部debug所有方法从而得到源代码.1. 如何下载源代码 2. 如何在Visual Studio 2008中进行配置

Wednesday, February 20, 2008 9:59 PM by Mainz

# .NET Framework开源详细配置

Sunday, February 24, 2008 9:41 PM by 剑飘红

# .NET Framework Source Code Available

I first blogged on this back in January but based on all my meetings in Feb, very few ISVs seem to know

Friday, February 29, 2008 3:05 AM by Eric Nelson - Development for .NET Framework for ISVs

# Interesting Finds: 2008.01.17

Other: BuildingACity-PartII

TheFiveBrowserShortcutsEveryoneShouldKnow

Flex快速上手:入门指...

Monday, March 03, 2008 8:48 PM by gOODiDEA

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

One major problem with this is that VS still round-trips to the reference source server every time code is stepped through. This makes stepping through a bunch of code quite painful!

Sunday, March 09, 2008 6:54 PM by barrkel

# visual studio notes

1..netframeworksource已经可以在vs2008中使用

ref:

Monday, March 10, 2008 4:50 AM by margiex

# C# 类型基础

本文之初的目的是讲述设计模式中的 Prototype(原型)模式,但是如果想较清楚地弄明白这个模式,需要了解对象克隆(Object Clone),Clone其实也就是对象复制。复制又分为了浅度复制(Shallow Copy)和深度复制(Deep Copy),浅度复制 和 深度复制又是以 如何复制引用类型成员来划分的。由此又引出了 引用类型和 值类型,以及相关的对象判等、装箱、拆箱等基础知识。

Tuesday, March 18, 2008 10:42 PM by bobolink_lu

# Adding Objects to EntitySet<> does not Refresh Grid

I run into an issue with grids not showing newly added objects in one of my projects a couple of days

Friday, March 21, 2008 5:46 AM by Erics Blog

# Debug del codice .Net con VS2008

Debug del codice .Net con VS2008

Thursday, April 10, 2008 1:18 AM by Advanced Technology

# Top 10 things to know about Visual Studio 2008 and .NET Framework 3.5

There are many new features they put inside Visual Studio 2008. Basically VS 2008 uses .NET Framework 3.5. Application developed in this version can be targeted to any of previous versions of .NET Fra ...

Monday, April 14, 2008 6:55 AM by Blog like nobody's reading

# .NET CF Source code

When will we have the same ability to see and debug down in the .NET Compact Framework code?

Tuesday, April 29, 2008 7:53 PM by wsnell

# C# 类型基础

引言

本文之初的目的是讲述设计模式中的Prototype(原型)模式,但是如果想较清楚地弄明白这个模式,需要了解对象克隆(ObjectClone),Clone其实也就是对象复制。复制又分为了浅度...

Friday, May 02, 2008 7:39 AM by 鱼跃于渊

# Code source Framework .NET disponible !

Code source Framework .NET disponible !

Saturday, May 03, 2008 5:35 AM by Blog-Microsoft.fr

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

配置VisualStudio以调试.netframework的源代码

看到.net框架代码发布了,兴奋了一下,把在VisualStudio2008上配置的内容翻译了一下,只翻译了原文的基...

Saturday, May 03, 2008 11:41 AM by 不慕

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

Hi Shawn,

Nice feature! Microsoft going some kind of open-source ;) - I could not think of it, some years ago.

I have one question about this feature: does it download source code over port 80 or is another port needed to be configured for this feature. The reason I ask, is that my current client works with a very heavily secured network, only allowing port 80 to be used for outside communication (and other ports whenever there is a very good reason for it).

I would be glad if you could be of any help! Thanks a lot in advance!

Regards, Bert Loedeman

Monday, May 05, 2008 6:07 AM by aa.loedeman

# Configuring Visual Studio to Debug .NET Framework Source Code

Earlier I posted a link to the announcement on ScottGu's blog about the framework source availiability

Monday, May 12, 2008 2:54 PM by Jack Gudenkauf (JackG) WebLog

# Debugging with .NET Source Code, Step by Step

I needed a &quot;deep debug&quot; (including the managed code) and found a great step by step guide by

Tuesday, May 13, 2008 4:59 AM by I hate Spaghetti (code)

# Debugging .NET Framework Source Code

I am not sure how many people are familiar with the .NET Reference Source project, but if you do a lot

Tuesday, May 13, 2008 8:45 AM by ASP.NET Debugging

# Debug Visual Studio .NET Framework Source Code Libraries

The Microsoft-supported .NET Reference Source project enables developers to dig into the .NET Source

Tuesday, May 13, 2008 6:52 PM by .NET eCommerce Blog

# .NET Threads, CallContext et ILogicalThreadAffinative

This post is also available in english here . J'ai récemment cherché un moyen de passer automatiquement

Wednesday, May 14, 2008 9:10 PM by Jerome Laban

# Code source Framework .NET disponible !

Code source Framework .NET disponible !

Wednesday, May 28, 2008 5:51 AM by Blog-Microsoft.fr

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

One additional possibility as to the inability to load symbols (found this after all my version stuff seemed OK, but was still getting error messages): your network has a proxy server that requires login before web browsing.

I didn't notice this until actually looking at the PDB to see why the versions weren't matching, and instead of PDB symbols, I had a web page from Symantec's web proxy with a user/password entry form.

I wouldn't say this is a MS bug or anything, but it's just a weird error that some folks may get when they are in a corporate network.

Friday, May 30, 2008 12:23 PM by rkpatrick

# Visual Basic ランタイムのソース コードの公開 (Vladimir)

私たちのチームは Visual Basic ランタイム ライブラリのソースの公開に向けた作業を続けていましたが、ついにその公開が実現し、 Microsoft.VisualBasic.dll を皆 さん

Friday, June 06, 2008 12:13 AM by The Visual Basic Team

# Stepping into .NET source code

Stepping into .NET source code

Friday, June 06, 2008 2:12 PM by NullReferenceException

# There is no source code available for the current location.

I followed your steps and it doesn't work. When I try to step into a function (for instance String.Substring) nothing happens. When I double click on a method from the call stack I get this dialog saying "There is no source code available for the current location." Any tips please?

Wednesday, June 11, 2008 6:37 AM by Marius Bancila

# vs2008 debug with .net framework source code!

部分.netframeworksourcecode已开源,设置vs2008可进行framework的源码级调试,

http://www.infoq.com/news/2008/01/DotNe...

Tuesday, June 24, 2008 12:10 PM by smwikipedia

# Tip of the Day #2 - (Debugging into the .NET source code)

Tip of the Day #2 - (Debugging into the .NET source code)

Saturday, June 28, 2008 12:17 PM by Stuff that's in my head

# Debugging Into .NET Source Code

Debugging Into .NET Source Code

Monday, July 14, 2008 4:04 PM by Stuart Thompson's Blog

# Debugging Into .NET Source Code

Debugging Into .NET Source Code

Monday, July 14, 2008 4:04 PM by Software Discovery

# Reanding WPF Source Code series(0)

Since the dotnet source code are avaible now, including WPF, it's a good chance for us to read the code

Tuesday, July 22, 2008 9:56 PM by WPF DotNet

# Cheap didrex free fedex.

Didrex without a prescription. Order didrex. Didrex no rx. Buy didrex. Didrex buy didrex didrex diet pills. Didrex script online.

Friday, August 01, 2008 3:25 AM by Overnight didrex.

# C# 类型基础

引言

本文之初的目的是讲述设计模式中的Prototype(原型)模式,但是如果想较清楚地弄明白这个模式,需要了解对象克隆(ObjectClone),Clone其实也就是对象复制。复制又分为了浅度...

Sunday, August 03, 2008 1:56 AM by 冷血

# 调试.net源码问题

无论你是菜鸟或是大师,调试是每个开发者,都必须学会的技巧,在我用vs2003的时候,我没办法去调试.net的源代码文件,微软迟迟不肯开源,没办法,有些原理,有些机制,只能翻翻MSDN,或者瞎猜,给我们带来诸多的不便...

Sunday, August 10, 2008 5:21 AM by 王孟军!

# Random Thoughts on Visual Studio 2008 SP1

As the world knows, Visual Studio 2008 SP1 is out so start your download engines. I've installed it on

Tuesday, August 12, 2008 1:31 AM by John Robbins' Blog

# Voyforums work at home moms.

Work at home moms message boards.

Thursday, August 21, 2008 8:25 AM by Wahm com the online magazine for work at home moms.

# Come configurare Visual Studio per il debug del codice sorgente del .NET Framework.

Come configurare Visual Studio per il debug del codice sorgente del .NET Framework.

Saturday, August 23, 2008 9:09 AM by Viscoli Giuseppe

# Problem with VS 2008 SP1

Step in framework-code worked before sp1. now it appears always the message "There is no source code available for the current location."

Loading the Symbols work, but i cant step in...

Wednesday, August 27, 2008 2:36 AM by olag

# .NET 3.5 Framework SP1 reference sources available

In mid January the first release of the .NET Framework 3.5 reference sources occurred. In mid February

Thursday, August 28, 2008 7:25 PM by Notes from a dark corner

# .NET 3.5 SP1 Source released

在8月28号的时候就看到 源代码参考团队博客上 有 消息说.NET 3.5 SP1 Source发布了, [ From 源代码参考团队博客上 ]我们刚刚公布了下列组件所提到的源代码中心( rscc )服务器

Monday, September 01, 2008 10:18 PM by .NET Framework

# Debugging into .net source code

Debugging into .net source code is pretty easy now

Thursday, September 04, 2008 8:08 AM by Infosys | Microsoft

# Debug del codice .Net con VS2008

Debug del codice .Net con VS2008

Tuesday, September 09, 2008 4:48 AM by Advanced Technology

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

I have a bug with VS2008 SP1 that I discovered yesterday when trying to debug an application with 7 projects.  It has to do with the new Debugging feature of "Enable .NET Framework source stepping" under Tools | Optons.

VS2008 SP1 will crash if I have this solution open, check 'Enable .NET Framework source stepping', and then click OK.  The result of the bug generates:

Event Type: Error

Event Source: .NET Runtime

Event Category: None

Event ID: 1023

Date: 9/9/2008

Time: 4:49:20 PM

User: N/A

Computer: VIRTUAL-DEV

Description:

.NET Runtime version 2.0.50727.3053 - Fatal Execution Engine Error (7A2E0F92) (0)

I'm going to open a bug on MS Connect once I try to narrow the problem down.  Here are some things I've noticed so far:

1. It doesn't occur with some other projects I've tried so far.

2. I believe it has to do with using Symbol Servers

3. I have only http://referencesource.microsoft.com/symbols listed and have deleted all of the cached symbols that the SymbolServer previously used.

4. I think it has to do with a particular project type - but rooted in the .NET references it requires and uses.

More to come as I narrow it down and will post a link to the MS Connect Bug ID...

Wednesday, September 10, 2008 2:23 PM by daveblack

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

I've found the way to reliably repro the issue and have opened a bug on MS Connect:

https://connect.microsoft.com/VisualStudio/feedback/ViewFeedback.aspx?FeedbackID=367121

Wednesday, September 10, 2008 11:06 PM by daveblack

# Debugging .NET Framework Source

I just debugged through the .NET Framework assembly source code like the way I used to do MFC source

Tuesday, September 23, 2008 8:18 AM by Babu George's Blog

# create VB6 application in VS 2008

Hi...

This is Ganesh and i have a doubt to be clarified. I am using Visual Studio 2008 and i want to write a Std VB6 application, without .Net support. So this VB6 exe should work in all the system without .Net framework. Can i achieve this. Please help me

Yours Loving

Ganesh

Wednesday, September 24, 2008 1:24 AM by Ganesh

# Código fonte do .Net Framework

Pessoal, Conforme demonstrado no nosso webcast, o link para configurar o Visual Studio 2008 é: http:

Wednesday, September 24, 2008 10:18 PM by Carlos dos Santos

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

I'm having huge trouble getting this to work in VS 2008 SP1 (Vista x64 Ultimte). After I load the symblols and couble clicj on an item in the call stack a message box pops up saying "There is not source code for the current location"

The Symbol Load Information shows this

C:\Windows\assembly\GAC_MSIL\System.Windows.Forms\2.0.0.0__b77a5c561934e089\System.Windows.Forms.pdb: Cannot find or open the PDB file.

C:\Windows\system32\System.Windows.Forms.pdb: Cannot find or open the PDB file.

E:\DotNetSymbolCache\MicrosoftPublicSymbols\System.Windows.Forms.pdb\8BA08E6865274799AD03B4A86FBAEF7C1\System.Windows.Forms.pdb: Symbols loaded.

Anyone known why it's not working?

Wednesday, October 01, 2008 3:39 PM by Neal

# Microsoft.NET Framework 全面开源

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

...

Wednesday, October 22, 2008 9:21 PM by 〖孤星浪子〗

# Visual Studio Tip: Debug .NET Framework Source Code

Earlier this year, Microsoft announced that it would make the .NET Framework source code available to

Sunday, November 23, 2008 10:50 AM by Guy kolbis

# VS2008的一个更新补丁

之前安装VS2008的SP1之后有些莫名其妙的问题,例如智能感知全部变成了英文的,还有源代码调试也有问题。我为此专门找了微软的技术支持。 今天得到回复,微软新近推出了一个更新补丁,安装之后就可以解决了

Wednesday, November 26, 2008 2:32 AM by 陈希章

# String.Split has High Cost on Performance

One application had a memory issue, it just consume too much resources. The application performed well,

Tuesday, December 16, 2008 2:00 AM by You had me at "Hello World"

# .NET Framework Source Code to the Rescue

On Tuesday I got a call up from a developer that was dealing with an unusual ASP.NET problem and was

Friday, January 02, 2009 4:33 PM by Bryan Hinton's Blog

# Three things from Eclipse that would be nice to have in Visual Studio to develop extensions

While I have been working with Visual Studio .NET since the first version (2002), some years ago I started

Friday, January 09, 2009 6:03 AM by Carlos Quintero (Microsoft MVP) blog

# ASP.NET Error Handling Resources - C#

ASP.NET Error Handling Resources - C#

Tuesday, March 24, 2009 10:06 PM by TipsOnLips.net

# Some tidbits of VS2008 goodness.

Some tidbits of VS2008 goodness.

Wednesday, April 08, 2009 10:27 AM by Roman D. Clarkson

# Debug .NET Framework Source Code

I found this blog post from Shawn Burke to be very useful. Comes in handy if you have to step through

Friday, May 08, 2009 3:34 PM by Thottam R. Sriram

# .NET Framework Source Code In VS

.NET Framework Source Code In VS

Sunday, May 10, 2009 9:40 AM by Share Mind

# TableHeaderScope.Column and HTML standards compliance

TableHeaderScope.Column and HTML standards compliance

Sunday, June 07, 2009 9:38 PM by Chris Fulstow

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

No workie.  Looks like same behavior Neal complained about.  When I right-click in the call stack, first of all, it doesn't just say "Load Symbols" by itself.  What I have is a "Load Symbols From" submenu with choices Symbol Path and Microsoft Symbol Servers.  Symbol Path doesn't work at all, so I use Microsoft Symbol Servers.  The symbols load, and the line in the call stack turns black, but there is no line number, just an offset (+ 0x59 bytes).  Right-click -> Go To Source Code is grayed.  I looked for a definition of _NT_SYMBOL_PATH.  I deleted my old symbol cache plus changed the path to something new.  No go, joe.

Eric

Monday, June 08, 2009 3:20 PM by small_mountain

# OS Jam at Google London: C# 4 and the DLR

Last night I presented for the first time at the Google Open Source Jam at our offices in London. The

Friday, June 19, 2009 12:50 PM by Jon Skeet: Coding Blog

Leave a Comment

(required) 
required 
(required) 

  
Enter Code Here: Required
 
Page view tracker