What causes Visual Studio 2008 SP1 to crash when switch to Design View of a WPF application - Stack Overflow most recent 30 from stackoverflow.com2009-11-23T18:26:04Zhttp://stackoverflow.com/feeds/question/153942http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/153942/what-causes-visual-studio-2008-sp1-to-crash-when-switch-to-design-view-of-a-wpf-a9What causes Visual Studio 2008 SP1 to crash when switch to Design View of a WPF applicationJason Stevenson2008-09-30T16:48:24Z2009-04-29T17:25:07Z
<p>After developing a WPF application without Source Control, I decided to add the solution to TFS.</p>
<p>After doing so whenever I opened the main window.xaml file in Design View Visual Studio would disappear and the following event would be logged in the Application Event log:</p>
<blockquote>
<p>.NET Runtime version 2.0.50727.3053 - Fatal Execution Engine Error (7A035E00) (80131506)</p>
<p>For more information, see Help and
Support Center at
<a href="http://go.microsoft.com/fwlink/events.asp" rel="nofollow">http://go.microsoft.com/fwlink/events.asp</a>.</p>
</blockquote>
http://stackoverflow.com/questions/153942/what-causes-visual-studio-2008-sp1-to-crash-when-switch-to-design-view-of-a-wpf-a/153946#1539467Answer by Jason Stevenson for What causes Visual Studio 2008 SP1 to crash when switch to Design View of a WPF applicationJason Stevenson2008-09-30T16:49:24Z2008-10-13T00:00:43Z<p>The problem was caused by a Visual Studio add-in named, "Power Commands for Visual Studio 2008".</p>
<p>After uninstalling them and restarting Visual Studio, the design view for xaml files began working normally.</p>
http://stackoverflow.com/questions/153942/what-causes-visual-studio-2008-sp1-to-crash-when-switch-to-design-view-of-a-wpf-a/284412#2844120Answer by Corey B for What causes Visual Studio 2008 SP1 to crash when switch to Design View of a WPF applicationCorey B2008-11-12T16:02:37Z2008-11-12T16:02:37Z<p>Same issue, but without Power Commands installed.
The only workaround I've been able to consistently use is to Clean/Rebuild the solution before opening ANY xaml file. If you can't get into your solution because the XAML is loading on start up, delete the suo.</p>
http://stackoverflow.com/questions/153942/what-causes-visual-studio-2008-sp1-to-crash-when-switch-to-design-view-of-a-wpf-a/438579#4385791Answer by Peter for What causes Visual Studio 2008 SP1 to crash when switch to Design View of a WPF applicationPeter2009-01-13T10:43:33Z2009-01-13T10:43:33Z<p>I didn't have PowerCommands installed, but had the same problem. Starting in safe mode and deleting any exotic tabs in the toolbox solved the problem (you can start in normal mode afterwards).
This is one of many possible causes of this error, as some Googling will show you.</p>
http://stackoverflow.com/questions/153942/what-causes-visual-studio-2008-sp1-to-crash-when-switch-to-design-view-of-a-wpf-a/463719#4637193Answer by Zhaph - Ben Duguid for What causes Visual Studio 2008 SP1 to crash when switch to Design View of a WPF applicationZhaph - Ben Duguid2009-01-21T00:39:18Z2009-04-29T17:25:07Z<p>If you wish to keep Power Commands for Visual Studio 2008 installed, see this workaround here:</p>
<p><strong><a href="http://code.msdn.microsoft.com/Thread/View.aspx?ProjectName=PowerCommands&ThreadId=759" rel="nofollow">PowerCommands crashing VS2008 SP1</a></strong> </p>
<p>But basically:</p>
<blockquote>
<p>a work around which is a simple modification to the devenv.exe.config file.</p>
<p>This will exist in (64 bit systems) C:\Program Files (x86)\Microsoft Visual Studio 9.0\Common7\IDE</p>
<p>Or (32 bit systems) C:\Program Files\Microsoft Visual Studio 9.0\Common7\IDE</p>
<p>Add this XML token to the dependentAssembly list. They had me add it after the office one, but im not sure if that matters.</p>
</blockquote>
<pre><code><dependentAssembly>
<assemblyIdentity name="office" publicKeyToken="71e9bce111e9429c" culture="neutral"/>
<codeBase version="12.0.0.0" href="PrivateAssemblies\Office12\Office.dll"/>
</dependentAssembly>
<!-NEW STUFF-->
<dependentAssembly>
<assemblyIdentity name="Microsoft.PowerCommands" publicKeyToken="null" culture="neutral"/>
<!-- For 64-bit systems, uncomment this one
<codeBase version="1.1.0.0" href="C:\Program Files (x86)\PowerCommands\Microsoft.PowerCommands.dll"/> -->
<!-- For 32-bit systems, uncomment this one
<codeBase version="1.1.0.0" href="href="C:\Program Files\PowerCommands\Microsoft.PowerCommands.dll"/> -->
</dependentAssembly>
</code></pre>
<p>This worked nicely for me.</p>
http://stackoverflow.com/questions/153942/what-causes-visual-studio-2008-sp1-to-crash-when-switch-to-design-view-of-a-wpf-a/799080#7990800Answer by palehorse for What causes Visual Studio 2008 SP1 to crash when switch to Design View of a WPF applicationpalehorse2009-04-28T17:43:02Z2009-04-28T17:43:02Z<p>I just came across an answer that worked in my situation. Using the ngen utility to delete the native image cache fixed the problem. I don't know which image it was exactly, as I did not go through then one at a time, but it worked and I was able to keep PowerCommands!</p>
<p>The command is:</p>
<pre><code>ngen /delete *
</code></pre>
<p>For a full recount of my tale I've <a href="http://palehorse.wordpress.com/2009/04/28/how-i-fixed-visual-studio-crashing-when-opening-xaml-wpf-files/" rel="nofollow">posted it on my blog</a>, including what I found out about ngen and the native image cache. I think I still have some more to learn about it, but it's a start.</p>