logging - Visual Studio 2008 crashes when displaying XAML view. How to get more information? -
I am developing a Silverlight app using VS2008 Express. I have just implemented a new user control and added it to a grid
When I try to open an XAML view in which this control is controlled, VS crashes and restarts.
Where can I look for more information? Is there an event logged in VS?
Update I found my problem which was a circular reference, due to which a ... Stackoverflow log did not help much - I read through code in another editor And discovered your bug. First of all, in the Window Event Log (App Log), this is probably a fastfile error message called "
With more details, what will be the reason that you are either as a debugger or any other VS. You can add examples and see debug output or you can enable because it is usually due to assembly load errors.
A common cause of VS Fast Fail is a bug. NET 2.0 SP2 has been described in more detail here:
Other workings (If linked above MSKB article The patch described does not work):
1) Running "ngen / delete *" (with administrative privileges, from the .NET Framework 2.0 directory)
2) An add-in I wrote that all the referenced assemblies load (and allow you to zoom in load order) whenever they open a project rather than need. You can get this (and the source code for it) from here:
Comments
Post a Comment