<?xml version="1.0"?><?xml-stylesheet type="text/xsl" href="/rss.xsl"?><rss version="2.0"><channel><title>xUnit.net Contrib</title><link>http://xunitcontrib.codeplex.com/project/feeds/rss</link><description>Public contributions for the xUnit.net project.</description><item><title>Commented Unassigned: Skipping tests in base class [4162]</title><link>http://xunitcontrib.codeplex.com/workitem/4162</link><description>I have some base classes for reused tests &amp;#40;some of them abstract, some of them concrete&amp;#41;.&lt;br /&gt;&lt;br /&gt;When running ALL tests in the solution from resharper integration, all the tests in the base classes are being skipped, with yellow icon and description &amp;#34;Inconclusive&amp;#58; test wasn&amp;#39;t run&amp;#34;.&lt;br /&gt;&lt;br /&gt;If I run only the tests of a single derived class though, all the tests are run, including the ones in the base class which were skipped when running all.&lt;br /&gt;&lt;br /&gt;I&amp;#39;ve already checked to have the correct version of the plugin. I&amp;#39;m using Vs2012 update 2 with Resharper 7.1&lt;br /&gt;Comments: I could paste here some sample code, anonymized.&amp;#10;&amp;#10;&amp;#96;&amp;#96;&amp;#96;&amp;#10;public abstract class ClassBaseTest&amp;#60;T&amp;#62;&amp;#10;        where T &amp;#58; ClassBase &amp;#47;&amp;#47; ClassBase is abstract&amp;#10;    &amp;#123;&amp;#10;        &amp;#91;Fact&amp;#93;&amp;#10;        public void ShouldNotThrow&amp;#40;&amp;#41;&amp;#10;        &amp;#123;&amp;#10;            Assert.DoesNotThrow&amp;#40;&amp;#40;&amp;#41; &amp;#61;&amp;#62; Activator.CreateInstance&amp;#60;T&amp;#62;&amp;#40;&amp;#41;&amp;#41;&amp;#59;&amp;#10;        &amp;#125;&amp;#10;&amp;#125;&amp;#10;&amp;#96;&amp;#96;&amp;#96;&amp;#10;&amp;#10;Then a derived test&amp;#58;&amp;#10;&amp;#10;&amp;#96;&amp;#96;&amp;#96;&amp;#10;public class DerivedTest &amp;#58; ClassBaseTest&amp;#60;Derived&amp;#62; &amp;#47;&amp;#47; Derived &amp;#58; ClassBase&amp;#10;    &amp;#123;&amp;#10;        &amp;#91;Fact&amp;#93;&amp;#10;        public void ShouldThrowWithNullCode&amp;#40;&amp;#41;&amp;#10;        &amp;#123;&amp;#10;            var item &amp;#61; new Derived&amp;#40;&amp;#41;&amp;#59;&amp;#10;            var ex &amp;#61; Record.Exception&amp;#40;&amp;#40;&amp;#41; &amp;#61;&amp;#62; item.Code &amp;#61; null&amp;#41;&amp;#59;&amp;#10;            Assert.NotNull&amp;#40;ex&amp;#41;&amp;#59;&amp;#10;        &amp;#125;&amp;#10;&amp;#96;&amp;#96;&amp;#96;&amp;#10;If I run all the tests in the solution, or in the folder containing those tests, the tests defined in the abstract base class are skipped with the aforementioned message. If I run the tests only in the derived test class, everything works fine. As stated, with TeamCity and xunit runner gui everything works fine.</description><author>Sgro</author><pubDate>Tue, 21 May 2013 12:54:42 GMT</pubDate><guid isPermaLink="false">Commented Unassigned: Skipping tests in base class [4162] 20130521125442P</guid></item><item><title>Commented Unassigned: Skipping tests in base class [4162]</title><link>http://xunitcontrib.codeplex.com/workitem/4162</link><description>I have some base classes for reused tests &amp;#40;some of them abstract, some of them concrete&amp;#41;.&lt;br /&gt;&lt;br /&gt;When running ALL tests in the solution from resharper integration, all the tests in the base classes are being skipped, with yellow icon and description &amp;#34;Inconclusive&amp;#58; test wasn&amp;#39;t run&amp;#34;.&lt;br /&gt;&lt;br /&gt;If I run only the tests of a single derived class though, all the tests are run, including the ones in the base class which were skipped when running all.&lt;br /&gt;&lt;br /&gt;I&amp;#39;ve already checked to have the correct version of the plugin. I&amp;#39;m using Vs2012 update 2 with Resharper 7.1&lt;br /&gt;Comments: Doesn&amp;#39;t sound right - could you get a small repro together for me to take a look at, please&amp;#63;&amp;#10;&amp;#10;Thanks&amp;#10;Matt</description><author>mattellis</author><pubDate>Tue, 21 May 2013 12:27:52 GMT</pubDate><guid isPermaLink="false">Commented Unassigned: Skipping tests in base class [4162] 20130521122752P</guid></item><item><title>Commented Unassigned: Skipping tests in base class [4162]</title><link>http://xunitcontrib.codeplex.com/workitem/4162</link><description>I have some base classes for reused tests &amp;#40;some of them abstract, some of them concrete&amp;#41;.&lt;br /&gt;&lt;br /&gt;When running ALL tests in the solution from resharper integration, all the tests in the base classes are being skipped, with yellow icon and description &amp;#34;Inconclusive&amp;#58; test wasn&amp;#39;t run&amp;#34;.&lt;br /&gt;&lt;br /&gt;If I run only the tests of a single derived class though, all the tests are run, including the ones in the base class which were skipped when running all.&lt;br /&gt;&lt;br /&gt;I&amp;#39;ve already checked to have the correct version of the plugin. I&amp;#39;m using Vs2012 update 2 with Resharper 7.1&lt;br /&gt;Comments: I forgot to mention, when running the tests within TeamCity or with the xunit runners gui there isn&amp;#39;t any problem, all the tests are correctly executed, none skipped.</description><author>Sgro</author><pubDate>Tue, 21 May 2013 11:59:55 GMT</pubDate><guid isPermaLink="false">Commented Unassigned: Skipping tests in base class [4162] 20130521115955A</guid></item><item><title>Created Unassigned: Skipping tests in base class [4162]</title><link>http://xunitcontrib.codeplex.com/workitem/4162</link><description>I have some base classes for reused tests &amp;#40;some of them abstract, some of them concrete&amp;#41;.&lt;br /&gt;&lt;br /&gt;When running ALL tests in the solution from resharper integration, all the tests in the base classes are being skipped, with yellow icon and description &amp;#34;Inconclusive&amp;#58; test wasn&amp;#39;t run&amp;#34;.&lt;br /&gt;&lt;br /&gt;If I run only the tests of a single derived class though, all the tests are run, including the ones in the base class which were skipped when running all.&lt;br /&gt;&lt;br /&gt;I&amp;#39;ve already checked to have the correct version of the plugin. I&amp;#39;m using Vs2012 update 2 with Resharper 7.1&lt;br /&gt;</description><author>Sgro</author><pubDate>Tue, 21 May 2013 11:58:19 GMT</pubDate><guid isPermaLink="false">Created Unassigned: Skipping tests in base class [4162] 20130521115819A</guid></item><item><title>Closed Issue: Support RunWith attribute [2139]</title><link>http://xunitcontrib.codeplex.com/workitem/2139</link><description>There is currently mixed support for the RunWith attribute. The file doesn&amp;#39;t display unit test icons next to the class or the test methods, but the item appears to be run when running all tests in a file&amp;#47;assembly.&lt;br /&gt;Comments: Fixed in release 1.0</description><author>mattellis</author><pubDate>Thu, 09 May 2013 19:06:20 GMT</pubDate><guid isPermaLink="false">Closed Issue: Support RunWith attribute [2139] 20130509070620P</guid></item><item><title>Closed Issue: Please provide Strong-named binaries [4121]</title><link>http://xunitcontrib.codeplex.com/workitem/4121</link><description>As the title says.&lt;br /&gt;&lt;br /&gt;More context from Brad re&amp;#58; xunit&amp;#39;s strong-named assemblies.&lt;br /&gt;&lt;br /&gt;We strong-name xunit.dll, xunit.extensions.dll, and xunit.runner.dll.&lt;br /&gt;&lt;br /&gt;The reason is simple&amp;#58; if you are strong naming something, then it must be linked against only things which are themselves strong named. We also ship our public and private key in the repository so that people can strong name it themselves, so we don&amp;#39;t consider this to be any kind of security measure &amp;#40;nor should our users&amp;#41;. If compilers didn&amp;#39;t enforce &amp;#34;you are signed, therefore everything you link to must be signed&amp;#34;, we never would&amp;#39;ve bothered.&lt;br /&gt;Comments: Shouldn&amp;#39;t need to reference any xunitcontrib libraries. ReSharper runner shouldn&amp;#39;t care about strong named assemblies.</description><author>mattellis</author><pubDate>Thu, 09 May 2013 19:05:58 GMT</pubDate><guid isPermaLink="false">Closed Issue: Please provide Strong-named binaries [4121] 20130509070558P</guid></item><item><title>Closed Issue: NuGet package [4124]</title><link>http://xunitcontrib.codeplex.com/workitem/4124</link><description>Create a NuGetPackage for xUnit.net Contrib. It will be much easier to install it and upgrade it&amp;#39;s versions..&lt;br /&gt;Comments: Implemented as part of ReSharper 8.0&amp;#39;s nuget based extension manager</description><author>mattellis</author><pubDate>Thu, 09 May 2013 19:04:39 GMT</pubDate><guid isPermaLink="false">Closed Issue: NuGet package [4124] 20130509070439P</guid></item><item><title>Closed Unassigned: MDA throwning BindingFailure and LoadFromContext [4161]</title><link>http://xunitcontrib.codeplex.com/workitem/4161</link><description>If I run the Resharper test runner throwning the following MDA &amp;#40;Managed Debugging Assistants, see http&amp;#58;&amp;#47;&amp;#47;msdn.microsoft.com&amp;#47;en-us&amp;#47;library&amp;#47;d21c150d.aspx&amp;#41;&amp;#58;&lt;br /&gt;&amp;#42; BindingFailure&lt;br /&gt;&amp;#42; LoadFromContext&lt;br /&gt;I get the following dialogs&amp;#58;&lt;br /&gt;&lt;br /&gt;__LoadFromContext was detected__&lt;br /&gt;&amp;#96;&amp;#96;&amp;#96;&lt;br /&gt;Message&amp;#58; The assembly named &amp;#39;xunit.runner.utility&amp;#39; was loaded from &amp;#39;file&amp;#58;&amp;#47;&amp;#47;&amp;#47;C&amp;#58;&amp;#47;Users&amp;#47;user&amp;#47;AppData&amp;#47;Local&amp;#47;JetBrains&amp;#47;ReSharper&amp;#47;v6.1&amp;#47;Plugins&amp;#47;xunitcontrib&amp;#47;xunit.runner.utility.DLL&amp;#39; using the LoadFrom context. The use of this context can result in unexpected behavior for serialization, casting and dependency resolution. In almost all cases, it is recommended that the LoadFrom context be avoided. This can be done by installing assemblies in the Global Assembly Cache or in the ApplicationBase directory and using Assembly.Load when explicitly loading assemblies.&lt;br /&gt;&lt;br /&gt;&amp;#96;&amp;#96;&amp;#96;&lt;br /&gt;and&lt;br /&gt;&lt;br /&gt;__BindingFailure was detected__&lt;br /&gt;&amp;#96;&amp;#96;&amp;#96;&lt;br /&gt;Message&amp;#58; The assembly with display name &amp;#39;xunit.runner.utility.&amp;#123;Dynamic&amp;#125;&amp;#39; failed to load in the &amp;#39;LoadFrom&amp;#39; binding context of the AppDomain with ID 2. The cause of the failure was&amp;#58; System.IO.FileNotFoundException&amp;#58; Could not load file or assembly &amp;#39;xunit.runner.utility.&amp;#123;Dynamic&amp;#125;, Version&amp;#61;0.0.0.0, Culture&amp;#61;neutral, PublicKeyToken&amp;#61;null&amp;#39; or one of its dependencies. The system cannot find the file specified.&lt;br /&gt;&amp;#96;&amp;#96;&amp;#96;&lt;br /&gt;and&lt;br /&gt;&lt;br /&gt;__BindingFailure was detected__&lt;br /&gt;&amp;#96;&amp;#96;&amp;#96;&lt;br /&gt;Message&amp;#58; The assembly with display name &amp;#39;xunit.runner.utility.&amp;#123;Dynamic&amp;#125;&amp;#39; failed to load in the &amp;#39;LoadFrom&amp;#39; binding context of the AppDomain with ID 2. The cause of the failure was&amp;#58; System.IO.FileNotFoundException&amp;#58; Could not load file or assembly &amp;#39;xunit.runner.utility.&amp;#123;Dynamic&amp;#125;, Version&amp;#61;0.0.0.0, Culture&amp;#61;neutral, PublicKeyToken&amp;#61;null&amp;#39; or one of its dependencies. The system cannot find the file specified.&lt;br /&gt;&amp;#96;&amp;#96;&amp;#96;&lt;br /&gt;and&lt;br /&gt;&lt;br /&gt;__BindingFailure was detected__&lt;br /&gt;&amp;#96;&amp;#96;&amp;#96;&lt;br /&gt;Message&amp;#58; The assembly with display name &amp;#39;xunit.runner.utility.&amp;#123;Dynamic&amp;#125;&amp;#39; failed to load in the &amp;#39;LoadFrom&amp;#39; binding context of the AppDomain with ID 2. The cause of the failure was&amp;#58; System.IO.FileNotFoundException&amp;#58; Could not load file or assembly &amp;#39;xunit.runner.utility.&amp;#123;Dynamic&amp;#125;, Version&amp;#61;0.0.0.0, Culture&amp;#61;neutral, PublicKeyToken&amp;#61;null&amp;#39; or one of its dependencies. The system cannot find the file specified.&lt;br /&gt;&amp;#96;&amp;#96;&amp;#96;&lt;br /&gt;Is this by design&amp;#63;&lt;br /&gt;</description><author>mattellis</author><pubDate>Thu, 09 May 2013 19:04:03 GMT</pubDate><guid isPermaLink="false">Closed Unassigned: MDA throwning BindingFailure and LoadFromContext [4161] 20130509070403P</guid></item><item><title>Closed Issue: Test categorization [4128]</title><link>http://xunitcontrib.codeplex.com/workitem/4128</link><description>There is a nice Category feature in the R&amp;#35; test runner but unfortunately it appears it doesn&amp;#39;t work with XUnit. Best I can tell there is no category attribute in Xunit and I can request that with them. There is a category attribute in component model data annotations that could perhaps be used&amp;#63; Or some other way to get this to work possibly&amp;#63;&lt;br /&gt;Comments: Fixed in release 1.0</description><author>mattellis</author><pubDate>Thu, 09 May 2013 19:02:53 GMT</pubDate><guid isPermaLink="false">Closed Issue: Test categorization [4128] 20130509070253P</guid></item><item><title>Closed Issue: dotCover coverage fails in theories in subsequent sessions [4157]</title><link>http://xunitcontrib.codeplex.com/workitem/4157</link><description>Run a Theory test with dotCover code coverage. The results show the Theory is covered. Close the test session and start again in a new session. The results show the Theory is not covered.&lt;br /&gt;Comments: Fixed in release 1.0</description><author>mattellis</author><pubDate>Thu, 09 May 2013 19:01:50 GMT</pubDate><guid isPermaLink="false">Closed Issue: dotCover coverage fails in theories in subsequent sessions [4157] 20130509070150P</guid></item><item><title>Closed Feature: Add intellisense and find usage support for PropertyDataAttribute [4158]</title><link>http://xunitcontrib.codeplex.com/workitem/4158</link><description>Like ReSharper&amp;#39;s support for nunit&amp;#39;s TestCaseSourceAttribute - intellisense for the property named in PropertyData, ctrl-click navigation to the property and include attribute in find usages.&lt;br /&gt;Comments: Fixed in release 1.0</description><author>mattellis</author><pubDate>Thu, 09 May 2013 19:01:15 GMT</pubDate><guid isPermaLink="false">Closed Feature: Add intellisense and find usage support for PropertyDataAttribute [4158] 20130509070115P</guid></item><item><title>Closed Issue: Classes with only private tests not marked as tests [4159]</title><link>http://xunitcontrib.codeplex.com/workitem/4159</link><description>If a class only has private tests, it&amp;#39;s not marked as a test class in the editor. It must have at least one public test method.&lt;br /&gt;Comments: Fixed in release 1.0</description><author>mattellis</author><pubDate>Thu, 09 May 2013 19:00:32 GMT</pubDate><guid isPermaLink="false">Closed Issue: Classes with only private tests not marked as tests [4159] 20130509070032P</guid></item><item><title>Commented Unassigned: MDA throwning BindingFailure and LoadFromContext [4161]</title><link>http://xunitcontrib.codeplex.com/workitem/4161</link><description>If I run the Resharper test runner throwning the following MDA &amp;#40;Managed Debugging Assistants, see http&amp;#58;&amp;#47;&amp;#47;msdn.microsoft.com&amp;#47;en-us&amp;#47;library&amp;#47;d21c150d.aspx&amp;#41;&amp;#58;&lt;br /&gt;&amp;#42; BindingFailure&lt;br /&gt;&amp;#42; LoadFromContext&lt;br /&gt;I get the following dialogs&amp;#58;&lt;br /&gt;&lt;br /&gt;__LoadFromContext was detected__&lt;br /&gt;&amp;#96;&amp;#96;&amp;#96;&lt;br /&gt;Message&amp;#58; The assembly named &amp;#39;xunit.runner.utility&amp;#39; was loaded from &amp;#39;file&amp;#58;&amp;#47;&amp;#47;&amp;#47;C&amp;#58;&amp;#47;Users&amp;#47;user&amp;#47;AppData&amp;#47;Local&amp;#47;JetBrains&amp;#47;ReSharper&amp;#47;v6.1&amp;#47;Plugins&amp;#47;xunitcontrib&amp;#47;xunit.runner.utility.DLL&amp;#39; using the LoadFrom context. The use of this context can result in unexpected behavior for serialization, casting and dependency resolution. In almost all cases, it is recommended that the LoadFrom context be avoided. This can be done by installing assemblies in the Global Assembly Cache or in the ApplicationBase directory and using Assembly.Load when explicitly loading assemblies.&lt;br /&gt;&lt;br /&gt;&amp;#96;&amp;#96;&amp;#96;&lt;br /&gt;and&lt;br /&gt;&lt;br /&gt;__BindingFailure was detected__&lt;br /&gt;&amp;#96;&amp;#96;&amp;#96;&lt;br /&gt;Message&amp;#58; The assembly with display name &amp;#39;xunit.runner.utility.&amp;#123;Dynamic&amp;#125;&amp;#39; failed to load in the &amp;#39;LoadFrom&amp;#39; binding context of the AppDomain with ID 2. The cause of the failure was&amp;#58; System.IO.FileNotFoundException&amp;#58; Could not load file or assembly &amp;#39;xunit.runner.utility.&amp;#123;Dynamic&amp;#125;, Version&amp;#61;0.0.0.0, Culture&amp;#61;neutral, PublicKeyToken&amp;#61;null&amp;#39; or one of its dependencies. The system cannot find the file specified.&lt;br /&gt;&amp;#96;&amp;#96;&amp;#96;&lt;br /&gt;and&lt;br /&gt;&lt;br /&gt;__BindingFailure was detected__&lt;br /&gt;&amp;#96;&amp;#96;&amp;#96;&lt;br /&gt;Message&amp;#58; The assembly with display name &amp;#39;xunit.runner.utility.&amp;#123;Dynamic&amp;#125;&amp;#39; failed to load in the &amp;#39;LoadFrom&amp;#39; binding context of the AppDomain with ID 2. The cause of the failure was&amp;#58; System.IO.FileNotFoundException&amp;#58; Could not load file or assembly &amp;#39;xunit.runner.utility.&amp;#123;Dynamic&amp;#125;, Version&amp;#61;0.0.0.0, Culture&amp;#61;neutral, PublicKeyToken&amp;#61;null&amp;#39; or one of its dependencies. The system cannot find the file specified.&lt;br /&gt;&amp;#96;&amp;#96;&amp;#96;&lt;br /&gt;and&lt;br /&gt;&lt;br /&gt;__BindingFailure was detected__&lt;br /&gt;&amp;#96;&amp;#96;&amp;#96;&lt;br /&gt;Message&amp;#58; The assembly with display name &amp;#39;xunit.runner.utility.&amp;#123;Dynamic&amp;#125;&amp;#39; failed to load in the &amp;#39;LoadFrom&amp;#39; binding context of the AppDomain with ID 2. The cause of the failure was&amp;#58; System.IO.FileNotFoundException&amp;#58; Could not load file or assembly &amp;#39;xunit.runner.utility.&amp;#123;Dynamic&amp;#125;, Version&amp;#61;0.0.0.0, Culture&amp;#61;neutral, PublicKeyToken&amp;#61;null&amp;#39; or one of its dependencies. The system cannot find the file specified.&lt;br /&gt;&amp;#96;&amp;#96;&amp;#96;&lt;br /&gt;Is this by design&amp;#63;&lt;br /&gt;Comments: It stands for Managed Debugging Assistant - there&amp;#39;s more information at msdn&amp;#58; http&amp;#58;&amp;#47;&amp;#47;msdn.microsoft.com&amp;#47;en-us&amp;#47;library&amp;#47;d21c150d.aspx&amp;#10;</description><author>mattellis</author><pubDate>Thu, 09 May 2013 18:57:46 GMT</pubDate><guid isPermaLink="false">Commented Unassigned: MDA throwning BindingFailure and LoadFromContext [4161] 20130509065746P</guid></item><item><title>Commented Unassigned: MDA throwning BindingFailure and LoadFromContext [4161]</title><link>http://xunitcontrib.codeplex.com/workitem/4161</link><description>If I run the Resharper test runner throwning the following MDA &amp;#40;Managed Debugging Assistants, see http&amp;#58;&amp;#47;&amp;#47;msdn.microsoft.com&amp;#47;en-us&amp;#47;library&amp;#47;d21c150d.aspx&amp;#41;&amp;#58;&lt;br /&gt;&amp;#42; BindingFailure&lt;br /&gt;&amp;#42; LoadFromContext&lt;br /&gt;I get the following dialogs&amp;#58;&lt;br /&gt;&lt;br /&gt;__LoadFromContext was detected__&lt;br /&gt;&amp;#96;&amp;#96;&amp;#96;&lt;br /&gt;Message&amp;#58; The assembly named &amp;#39;xunit.runner.utility&amp;#39; was loaded from &amp;#39;file&amp;#58;&amp;#47;&amp;#47;&amp;#47;C&amp;#58;&amp;#47;Users&amp;#47;user&amp;#47;AppData&amp;#47;Local&amp;#47;JetBrains&amp;#47;ReSharper&amp;#47;v6.1&amp;#47;Plugins&amp;#47;xunitcontrib&amp;#47;xunit.runner.utility.DLL&amp;#39; using the LoadFrom context. The use of this context can result in unexpected behavior for serialization, casting and dependency resolution. In almost all cases, it is recommended that the LoadFrom context be avoided. This can be done by installing assemblies in the Global Assembly Cache or in the ApplicationBase directory and using Assembly.Load when explicitly loading assemblies.&lt;br /&gt;&lt;br /&gt;&amp;#96;&amp;#96;&amp;#96;&lt;br /&gt;and&lt;br /&gt;&lt;br /&gt;__BindingFailure was detected__&lt;br /&gt;&amp;#96;&amp;#96;&amp;#96;&lt;br /&gt;Message&amp;#58; The assembly with display name &amp;#39;xunit.runner.utility.&amp;#123;Dynamic&amp;#125;&amp;#39; failed to load in the &amp;#39;LoadFrom&amp;#39; binding context of the AppDomain with ID 2. The cause of the failure was&amp;#58; System.IO.FileNotFoundException&amp;#58; Could not load file or assembly &amp;#39;xunit.runner.utility.&amp;#123;Dynamic&amp;#125;, Version&amp;#61;0.0.0.0, Culture&amp;#61;neutral, PublicKeyToken&amp;#61;null&amp;#39; or one of its dependencies. The system cannot find the file specified.&lt;br /&gt;&amp;#96;&amp;#96;&amp;#96;&lt;br /&gt;and&lt;br /&gt;&lt;br /&gt;__BindingFailure was detected__&lt;br /&gt;&amp;#96;&amp;#96;&amp;#96;&lt;br /&gt;Message&amp;#58; The assembly with display name &amp;#39;xunit.runner.utility.&amp;#123;Dynamic&amp;#125;&amp;#39; failed to load in the &amp;#39;LoadFrom&amp;#39; binding context of the AppDomain with ID 2. The cause of the failure was&amp;#58; System.IO.FileNotFoundException&amp;#58; Could not load file or assembly &amp;#39;xunit.runner.utility.&amp;#123;Dynamic&amp;#125;, Version&amp;#61;0.0.0.0, Culture&amp;#61;neutral, PublicKeyToken&amp;#61;null&amp;#39; or one of its dependencies. The system cannot find the file specified.&lt;br /&gt;&amp;#96;&amp;#96;&amp;#96;&lt;br /&gt;and&lt;br /&gt;&lt;br /&gt;__BindingFailure was detected__&lt;br /&gt;&amp;#96;&amp;#96;&amp;#96;&lt;br /&gt;Message&amp;#58; The assembly with display name &amp;#39;xunit.runner.utility.&amp;#123;Dynamic&amp;#125;&amp;#39; failed to load in the &amp;#39;LoadFrom&amp;#39; binding context of the AppDomain with ID 2. The cause of the failure was&amp;#58; System.IO.FileNotFoundException&amp;#58; Could not load file or assembly &amp;#39;xunit.runner.utility.&amp;#123;Dynamic&amp;#125;, Version&amp;#61;0.0.0.0, Culture&amp;#61;neutral, PublicKeyToken&amp;#61;null&amp;#39; or one of its dependencies. The system cannot find the file specified.&lt;br /&gt;&amp;#96;&amp;#96;&amp;#96;&lt;br /&gt;Is this by design&amp;#63;&lt;br /&gt;Comments: Thanks Matt that solved it.  I unchecked the box in the actuall error dialog and now it behaves.  I am still trying to figure out what MDA stands for though</description><author>kgreed</author><pubDate>Wed, 08 May 2013 23:28:42 GMT</pubDate><guid isPermaLink="false">Commented Unassigned: MDA throwning BindingFailure and LoadFromContext [4161] 20130508112842P</guid></item><item><title>Commented Unassigned: MDA throwning BindingFailure and LoadFromContext [4161]</title><link>http://xunitcontrib.codeplex.com/workitem/4161</link><description>If I run the Resharper test runner throwning the following MDA &amp;#40;Managed Debugging Assistants, see http&amp;#58;&amp;#47;&amp;#47;msdn.microsoft.com&amp;#47;en-us&amp;#47;library&amp;#47;d21c150d.aspx&amp;#41;&amp;#58;&lt;br /&gt;&amp;#42; BindingFailure&lt;br /&gt;&amp;#42; LoadFromContext&lt;br /&gt;I get the following dialogs&amp;#58;&lt;br /&gt;&lt;br /&gt;__LoadFromContext was detected__&lt;br /&gt;&amp;#96;&amp;#96;&amp;#96;&lt;br /&gt;Message&amp;#58; The assembly named &amp;#39;xunit.runner.utility&amp;#39; was loaded from &amp;#39;file&amp;#58;&amp;#47;&amp;#47;&amp;#47;C&amp;#58;&amp;#47;Users&amp;#47;user&amp;#47;AppData&amp;#47;Local&amp;#47;JetBrains&amp;#47;ReSharper&amp;#47;v6.1&amp;#47;Plugins&amp;#47;xunitcontrib&amp;#47;xunit.runner.utility.DLL&amp;#39; using the LoadFrom context. The use of this context can result in unexpected behavior for serialization, casting and dependency resolution. In almost all cases, it is recommended that the LoadFrom context be avoided. This can be done by installing assemblies in the Global Assembly Cache or in the ApplicationBase directory and using Assembly.Load when explicitly loading assemblies.&lt;br /&gt;&lt;br /&gt;&amp;#96;&amp;#96;&amp;#96;&lt;br /&gt;and&lt;br /&gt;&lt;br /&gt;__BindingFailure was detected__&lt;br /&gt;&amp;#96;&amp;#96;&amp;#96;&lt;br /&gt;Message&amp;#58; The assembly with display name &amp;#39;xunit.runner.utility.&amp;#123;Dynamic&amp;#125;&amp;#39; failed to load in the &amp;#39;LoadFrom&amp;#39; binding context of the AppDomain with ID 2. The cause of the failure was&amp;#58; System.IO.FileNotFoundException&amp;#58; Could not load file or assembly &amp;#39;xunit.runner.utility.&amp;#123;Dynamic&amp;#125;, Version&amp;#61;0.0.0.0, Culture&amp;#61;neutral, PublicKeyToken&amp;#61;null&amp;#39; or one of its dependencies. The system cannot find the file specified.&lt;br /&gt;&amp;#96;&amp;#96;&amp;#96;&lt;br /&gt;and&lt;br /&gt;&lt;br /&gt;__BindingFailure was detected__&lt;br /&gt;&amp;#96;&amp;#96;&amp;#96;&lt;br /&gt;Message&amp;#58; The assembly with display name &amp;#39;xunit.runner.utility.&amp;#123;Dynamic&amp;#125;&amp;#39; failed to load in the &amp;#39;LoadFrom&amp;#39; binding context of the AppDomain with ID 2. The cause of the failure was&amp;#58; System.IO.FileNotFoundException&amp;#58; Could not load file or assembly &amp;#39;xunit.runner.utility.&amp;#123;Dynamic&amp;#125;, Version&amp;#61;0.0.0.0, Culture&amp;#61;neutral, PublicKeyToken&amp;#61;null&amp;#39; or one of its dependencies. The system cannot find the file specified.&lt;br /&gt;&amp;#96;&amp;#96;&amp;#96;&lt;br /&gt;and&lt;br /&gt;&lt;br /&gt;__BindingFailure was detected__&lt;br /&gt;&amp;#96;&amp;#96;&amp;#96;&lt;br /&gt;Message&amp;#58; The assembly with display name &amp;#39;xunit.runner.utility.&amp;#123;Dynamic&amp;#125;&amp;#39; failed to load in the &amp;#39;LoadFrom&amp;#39; binding context of the AppDomain with ID 2. The cause of the failure was&amp;#58; System.IO.FileNotFoundException&amp;#58; Could not load file or assembly &amp;#39;xunit.runner.utility.&amp;#123;Dynamic&amp;#125;, Version&amp;#61;0.0.0.0, Culture&amp;#61;neutral, PublicKeyToken&amp;#61;null&amp;#39; or one of its dependencies. The system cannot find the file specified.&lt;br /&gt;&amp;#96;&amp;#96;&amp;#96;&lt;br /&gt;Is this by design&amp;#63;&lt;br /&gt;Comments: Do you have Visual Studio&amp;#39;s break on exceptions turned on for MDA&amp;#63; You should only be interested in &amp;#34;user un-handled&amp;#34; and uncheck any &amp;#34;thrown&amp;#34; columns. I think this is a warning exception that is normally caught and handled by the runtime. Try untick these exceptions in Visual Studio and see if that fixes it&amp;#10;&amp;#10;Thanks&amp;#10;Matt</description><author>mattellis</author><pubDate>Wed, 08 May 2013 17:53:49 GMT</pubDate><guid isPermaLink="false">Commented Unassigned: MDA throwning BindingFailure and LoadFromContext [4161] 20130508055349P</guid></item><item><title>Commented Unassigned: MDA throwning BindingFailure and LoadFromContext [4161]</title><link>http://xunitcontrib.codeplex.com/workitem/4161</link><description>If I run the Resharper test runner throwning the following MDA &amp;#40;Managed Debugging Assistants, see http&amp;#58;&amp;#47;&amp;#47;msdn.microsoft.com&amp;#47;en-us&amp;#47;library&amp;#47;d21c150d.aspx&amp;#41;&amp;#58;&lt;br /&gt;&amp;#42; BindingFailure&lt;br /&gt;&amp;#42; LoadFromContext&lt;br /&gt;I get the following dialogs&amp;#58;&lt;br /&gt;&lt;br /&gt;__LoadFromContext was detected__&lt;br /&gt;&amp;#96;&amp;#96;&amp;#96;&lt;br /&gt;Message&amp;#58; The assembly named &amp;#39;xunit.runner.utility&amp;#39; was loaded from &amp;#39;file&amp;#58;&amp;#47;&amp;#47;&amp;#47;C&amp;#58;&amp;#47;Users&amp;#47;user&amp;#47;AppData&amp;#47;Local&amp;#47;JetBrains&amp;#47;ReSharper&amp;#47;v6.1&amp;#47;Plugins&amp;#47;xunitcontrib&amp;#47;xunit.runner.utility.DLL&amp;#39; using the LoadFrom context. The use of this context can result in unexpected behavior for serialization, casting and dependency resolution. In almost all cases, it is recommended that the LoadFrom context be avoided. This can be done by installing assemblies in the Global Assembly Cache or in the ApplicationBase directory and using Assembly.Load when explicitly loading assemblies.&lt;br /&gt;&lt;br /&gt;&amp;#96;&amp;#96;&amp;#96;&lt;br /&gt;and&lt;br /&gt;&lt;br /&gt;__BindingFailure was detected__&lt;br /&gt;&amp;#96;&amp;#96;&amp;#96;&lt;br /&gt;Message&amp;#58; The assembly with display name &amp;#39;xunit.runner.utility.&amp;#123;Dynamic&amp;#125;&amp;#39; failed to load in the &amp;#39;LoadFrom&amp;#39; binding context of the AppDomain with ID 2. The cause of the failure was&amp;#58; System.IO.FileNotFoundException&amp;#58; Could not load file or assembly &amp;#39;xunit.runner.utility.&amp;#123;Dynamic&amp;#125;, Version&amp;#61;0.0.0.0, Culture&amp;#61;neutral, PublicKeyToken&amp;#61;null&amp;#39; or one of its dependencies. The system cannot find the file specified.&lt;br /&gt;&amp;#96;&amp;#96;&amp;#96;&lt;br /&gt;and&lt;br /&gt;&lt;br /&gt;__BindingFailure was detected__&lt;br /&gt;&amp;#96;&amp;#96;&amp;#96;&lt;br /&gt;Message&amp;#58; The assembly with display name &amp;#39;xunit.runner.utility.&amp;#123;Dynamic&amp;#125;&amp;#39; failed to load in the &amp;#39;LoadFrom&amp;#39; binding context of the AppDomain with ID 2. The cause of the failure was&amp;#58; System.IO.FileNotFoundException&amp;#58; Could not load file or assembly &amp;#39;xunit.runner.utility.&amp;#123;Dynamic&amp;#125;, Version&amp;#61;0.0.0.0, Culture&amp;#61;neutral, PublicKeyToken&amp;#61;null&amp;#39; or one of its dependencies. The system cannot find the file specified.&lt;br /&gt;&amp;#96;&amp;#96;&amp;#96;&lt;br /&gt;and&lt;br /&gt;&lt;br /&gt;__BindingFailure was detected__&lt;br /&gt;&amp;#96;&amp;#96;&amp;#96;&lt;br /&gt;Message&amp;#58; The assembly with display name &amp;#39;xunit.runner.utility.&amp;#123;Dynamic&amp;#125;&amp;#39; failed to load in the &amp;#39;LoadFrom&amp;#39; binding context of the AppDomain with ID 2. The cause of the failure was&amp;#58; System.IO.FileNotFoundException&amp;#58; Could not load file or assembly &amp;#39;xunit.runner.utility.&amp;#123;Dynamic&amp;#125;, Version&amp;#61;0.0.0.0, Culture&amp;#61;neutral, PublicKeyToken&amp;#61;null&amp;#39; or one of its dependencies. The system cannot find the file specified.&lt;br /&gt;&amp;#96;&amp;#96;&amp;#96;&lt;br /&gt;Is this by design&amp;#63;&lt;br /&gt;Comments: I get this error when I try and run a test in debug mode</description><author>kgreed</author><pubDate>Wed, 08 May 2013 16:23:36 GMT</pubDate><guid isPermaLink="false">Commented Unassigned: MDA throwning BindingFailure and LoadFromContext [4161] 20130508042336P</guid></item><item><title>Commented Unassigned: MDA throwning BindingFailure and LoadFromContext [4161]</title><link>http://xunitcontrib.codeplex.com/workitem/4161</link><description>If I run the Resharper test runner throwning the following MDA &amp;#40;Managed Debugging Assistants, see http&amp;#58;&amp;#47;&amp;#47;msdn.microsoft.com&amp;#47;en-us&amp;#47;library&amp;#47;d21c150d.aspx&amp;#41;&amp;#58;&lt;br /&gt;&amp;#42; BindingFailure&lt;br /&gt;&amp;#42; LoadFromContext&lt;br /&gt;I get the following dialogs&amp;#58;&lt;br /&gt;&lt;br /&gt;__LoadFromContext was detected__&lt;br /&gt;&amp;#96;&amp;#96;&amp;#96;&lt;br /&gt;Message&amp;#58; The assembly named &amp;#39;xunit.runner.utility&amp;#39; was loaded from &amp;#39;file&amp;#58;&amp;#47;&amp;#47;&amp;#47;C&amp;#58;&amp;#47;Users&amp;#47;user&amp;#47;AppData&amp;#47;Local&amp;#47;JetBrains&amp;#47;ReSharper&amp;#47;v6.1&amp;#47;Plugins&amp;#47;xunitcontrib&amp;#47;xunit.runner.utility.DLL&amp;#39; using the LoadFrom context. The use of this context can result in unexpected behavior for serialization, casting and dependency resolution. In almost all cases, it is recommended that the LoadFrom context be avoided. This can be done by installing assemblies in the Global Assembly Cache or in the ApplicationBase directory and using Assembly.Load when explicitly loading assemblies.&lt;br /&gt;&lt;br /&gt;&amp;#96;&amp;#96;&amp;#96;&lt;br /&gt;and&lt;br /&gt;&lt;br /&gt;__BindingFailure was detected__&lt;br /&gt;&amp;#96;&amp;#96;&amp;#96;&lt;br /&gt;Message&amp;#58; The assembly with display name &amp;#39;xunit.runner.utility.&amp;#123;Dynamic&amp;#125;&amp;#39; failed to load in the &amp;#39;LoadFrom&amp;#39; binding context of the AppDomain with ID 2. The cause of the failure was&amp;#58; System.IO.FileNotFoundException&amp;#58; Could not load file or assembly &amp;#39;xunit.runner.utility.&amp;#123;Dynamic&amp;#125;, Version&amp;#61;0.0.0.0, Culture&amp;#61;neutral, PublicKeyToken&amp;#61;null&amp;#39; or one of its dependencies. The system cannot find the file specified.&lt;br /&gt;&amp;#96;&amp;#96;&amp;#96;&lt;br /&gt;and&lt;br /&gt;&lt;br /&gt;__BindingFailure was detected__&lt;br /&gt;&amp;#96;&amp;#96;&amp;#96;&lt;br /&gt;Message&amp;#58; The assembly with display name &amp;#39;xunit.runner.utility.&amp;#123;Dynamic&amp;#125;&amp;#39; failed to load in the &amp;#39;LoadFrom&amp;#39; binding context of the AppDomain with ID 2. The cause of the failure was&amp;#58; System.IO.FileNotFoundException&amp;#58; Could not load file or assembly &amp;#39;xunit.runner.utility.&amp;#123;Dynamic&amp;#125;, Version&amp;#61;0.0.0.0, Culture&amp;#61;neutral, PublicKeyToken&amp;#61;null&amp;#39; or one of its dependencies. The system cannot find the file specified.&lt;br /&gt;&amp;#96;&amp;#96;&amp;#96;&lt;br /&gt;and&lt;br /&gt;&lt;br /&gt;__BindingFailure was detected__&lt;br /&gt;&amp;#96;&amp;#96;&amp;#96;&lt;br /&gt;Message&amp;#58; The assembly with display name &amp;#39;xunit.runner.utility.&amp;#123;Dynamic&amp;#125;&amp;#39; failed to load in the &amp;#39;LoadFrom&amp;#39; binding context of the AppDomain with ID 2. The cause of the failure was&amp;#58; System.IO.FileNotFoundException&amp;#58; Could not load file or assembly &amp;#39;xunit.runner.utility.&amp;#123;Dynamic&amp;#125;, Version&amp;#61;0.0.0.0, Culture&amp;#61;neutral, PublicKeyToken&amp;#61;null&amp;#39; or one of its dependencies. The system cannot find the file specified.&lt;br /&gt;&amp;#96;&amp;#96;&amp;#96;&lt;br /&gt;Is this by design&amp;#63;&lt;br /&gt;Comments: Wow. That&amp;#39;s a pretty impressive error. What are you doing to get it&amp;#63;</description><author>mattellis</author><pubDate>Tue, 23 Apr 2013 13:30:59 GMT</pubDate><guid isPermaLink="false">Commented Unassigned: MDA throwning BindingFailure and LoadFromContext [4161] 20130423013059P</guid></item><item><title>Edited Unassigned: MDA throwning BindingFailure and LoadFromContext [4161]</title><link>http://xunitcontrib.codeplex.com/workitem/4161</link><description>If I run the Resharper test runner throwning the following MDA &amp;#40;Managed Debugging Assistants, see http&amp;#58;&amp;#47;&amp;#47;msdn.microsoft.com&amp;#47;en-us&amp;#47;library&amp;#47;d21c150d.aspx&amp;#41;&amp;#58;&lt;br /&gt;&amp;#42; BindingFailure&lt;br /&gt;&amp;#42; LoadFromContext&lt;br /&gt;I get the following dialogs&amp;#58;&lt;br /&gt;&lt;br /&gt;__LoadFromContext was detected__&lt;br /&gt;&amp;#96;&amp;#96;&amp;#96;&lt;br /&gt;Message&amp;#58; The assembly named &amp;#39;xunit.runner.utility&amp;#39; was loaded from &amp;#39;file&amp;#58;&amp;#47;&amp;#47;&amp;#47;C&amp;#58;&amp;#47;Users&amp;#47;user&amp;#47;AppData&amp;#47;Local&amp;#47;JetBrains&amp;#47;ReSharper&amp;#47;v6.1&amp;#47;Plugins&amp;#47;xunitcontrib&amp;#47;xunit.runner.utility.DLL&amp;#39; using the LoadFrom context. The use of this context can result in unexpected behavior for serialization, casting and dependency resolution. In almost all cases, it is recommended that the LoadFrom context be avoided. This can be done by installing assemblies in the Global Assembly Cache or in the ApplicationBase directory and using Assembly.Load when explicitly loading assemblies.&lt;br /&gt;&lt;br /&gt;&amp;#96;&amp;#96;&amp;#96;&lt;br /&gt;and&lt;br /&gt;&lt;br /&gt;__BindingFailure was detected__&lt;br /&gt;&amp;#96;&amp;#96;&amp;#96;&lt;br /&gt;Message&amp;#58; The assembly with display name &amp;#39;xunit.runner.utility.&amp;#123;Dynamic&amp;#125;&amp;#39; failed to load in the &amp;#39;LoadFrom&amp;#39; binding context of the AppDomain with ID 2. The cause of the failure was&amp;#58; System.IO.FileNotFoundException&amp;#58; Could not load file or assembly &amp;#39;xunit.runner.utility.&amp;#123;Dynamic&amp;#125;, Version&amp;#61;0.0.0.0, Culture&amp;#61;neutral, PublicKeyToken&amp;#61;null&amp;#39; or one of its dependencies. The system cannot find the file specified.&lt;br /&gt;&amp;#96;&amp;#96;&amp;#96;&lt;br /&gt;and&lt;br /&gt;&lt;br /&gt;__BindingFailure was detected__&lt;br /&gt;&amp;#96;&amp;#96;&amp;#96;&lt;br /&gt;Message&amp;#58; The assembly with display name &amp;#39;xunit.runner.utility.&amp;#123;Dynamic&amp;#125;&amp;#39; failed to load in the &amp;#39;LoadFrom&amp;#39; binding context of the AppDomain with ID 2. The cause of the failure was&amp;#58; System.IO.FileNotFoundException&amp;#58; Could not load file or assembly &amp;#39;xunit.runner.utility.&amp;#123;Dynamic&amp;#125;, Version&amp;#61;0.0.0.0, Culture&amp;#61;neutral, PublicKeyToken&amp;#61;null&amp;#39; or one of its dependencies. The system cannot find the file specified.&lt;br /&gt;&amp;#96;&amp;#96;&amp;#96;&lt;br /&gt;and&lt;br /&gt;&lt;br /&gt;__BindingFailure was detected__&lt;br /&gt;&amp;#96;&amp;#96;&amp;#96;&lt;br /&gt;Message&amp;#58; The assembly with display name &amp;#39;xunit.runner.utility.&amp;#123;Dynamic&amp;#125;&amp;#39; failed to load in the &amp;#39;LoadFrom&amp;#39; binding context of the AppDomain with ID 2. The cause of the failure was&amp;#58; System.IO.FileNotFoundException&amp;#58; Could not load file or assembly &amp;#39;xunit.runner.utility.&amp;#123;Dynamic&amp;#125;, Version&amp;#61;0.0.0.0, Culture&amp;#61;neutral, PublicKeyToken&amp;#61;null&amp;#39; or one of its dependencies. The system cannot find the file specified.&lt;br /&gt;&amp;#96;&amp;#96;&amp;#96;&lt;br /&gt;Is this by design&amp;#63;&lt;br /&gt;</description><author>aledeniz</author><pubDate>Mon, 22 Apr 2013 09:15:32 GMT</pubDate><guid isPermaLink="false">Edited Unassigned: MDA throwning BindingFailure and LoadFromContext [4161] 20130422091532A</guid></item><item><title>Commented Unassigned: MDA throwning BindingFailure and LoadFromContext [4161]</title><link>http://xunitcontrib.codeplex.com/workitem/4161</link><description>If I run the Resharper test runner throwning the following MDA &amp;#40;Managed Debugging Assistants, see http&amp;#58;&amp;#47;&amp;#47;msdn.microsoft.com&amp;#47;en-us&amp;#47;library&amp;#47;d21c150d.aspx&amp;#41;&amp;#58;&lt;br /&gt;&amp;#42; BindingFailure&lt;br /&gt;&amp;#42; LoadFromContext&lt;br /&gt;I get the following dialogs&amp;#58;&lt;br /&gt;&amp;#96;&amp;#96;&amp;#96;&lt;br /&gt;__LoadFromContext was detected__&lt;br /&gt;Message&amp;#58; The assembly named &amp;#39;xunit.runner.utility&amp;#39; was loaded from &amp;#39;file&amp;#58;&amp;#47;&amp;#47;&amp;#47;C&amp;#58;&amp;#47;Users&amp;#47;user&amp;#47;AppData&amp;#47;Local&amp;#47;JetBrains&amp;#47;ReSharper&amp;#47;v6.1&amp;#47;Plugins&amp;#47;xunitcontrib&amp;#47;xunit.runner.utility.DLL&amp;#39; using the LoadFrom context. The use of this context can result in unexpected behavior for serialization, casting and dependency resolution. In almost all cases, it is recommended that the LoadFrom context be avoided. This can be done by installing assemblies in the Global Assembly Cache or in the ApplicationBase directory and using Assembly.Load when explicitly loading assemblies.&lt;br /&gt;&lt;br /&gt;&amp;#96;&amp;#96;&amp;#96;&lt;br /&gt;and&lt;br /&gt;&amp;#96;&amp;#96;&amp;#96;&lt;br /&gt;__BindingFailure was detected__&lt;br /&gt;Message&amp;#58; The assembly with display name &amp;#39;xunit.runner.utility.&amp;#123;Dynamic&amp;#125;&amp;#39; failed to load in the &amp;#39;LoadFrom&amp;#39; binding context of the AppDomain with ID 2. The cause of the failure was&amp;#58; System.IO.FileNotFoundException&amp;#58; Could not load file or assembly &amp;#39;xunit.runner.utility.&amp;#123;Dynamic&amp;#125;, Version&amp;#61;0.0.0.0, Culture&amp;#61;neutral, PublicKeyToken&amp;#61;null&amp;#39; or one of its dependencies. The system cannot find the file specified.&lt;br /&gt;&amp;#96;&amp;#96;&amp;#96;&lt;br /&gt;and&lt;br /&gt;&amp;#96;&amp;#96;&amp;#96;&lt;br /&gt;__BindingFailure was detected__&lt;br /&gt;Message&amp;#58; The assembly with display name &amp;#39;xunit.runner.utility.&amp;#123;Dynamic&amp;#125;&amp;#39; failed to load in the &amp;#39;LoadFrom&amp;#39; binding context of the AppDomain with ID 2. The cause of the failure was&amp;#58; System.IO.FileNotFoundException&amp;#58; Could not load file or assembly &amp;#39;xunit.runner.utility.&amp;#123;Dynamic&amp;#125;, Version&amp;#61;0.0.0.0, Culture&amp;#61;neutral, PublicKeyToken&amp;#61;null&amp;#39; or one of its dependencies. The system cannot find the file specified.&lt;br /&gt;&amp;#96;&amp;#96;&amp;#96;&lt;br /&gt;and&lt;br /&gt;&amp;#96;&amp;#96;&amp;#96;&lt;br /&gt;__BindingFailure was detected__&lt;br /&gt;Message&amp;#58; The assembly with display name &amp;#39;xunit.runner.utility.&amp;#123;Dynamic&amp;#125;&amp;#39; failed to load in the &amp;#39;LoadFrom&amp;#39; binding context of the AppDomain with ID 2. The cause of the failure was&amp;#58; System.IO.FileNotFoundException&amp;#58; Could not load file or assembly &amp;#39;xunit.runner.utility.&amp;#123;Dynamic&amp;#125;, Version&amp;#61;0.0.0.0, Culture&amp;#61;neutral, PublicKeyToken&amp;#61;null&amp;#39; or one of its dependencies. The system cannot find the file specified.&lt;br /&gt;&amp;#96;&amp;#96;&amp;#96;&lt;br /&gt;Is this by design&amp;#63;&lt;br /&gt;Comments: Incidentally, this is the No Source Available content I get when the MDA re-thrown the above&amp;#58;&amp;#10;__Call stack location&amp;#58;__&amp;#10;&amp;#96;&amp;#96;&amp;#96;&amp;#10;xunitcontrib.runner.resharper.runner.6.1.dll&amp;#33;XunitContrib.Runner.ReSharper.RemoteRunner.XunitTaskRunner.ExecuteRecursive&amp;#40;JetBrains.ReSharper.TaskRunnerFramework.TaskExecutionNode&amp;#41; Line 23&amp;#10;&amp;#96;&amp;#96;&amp;#96;&amp;#10;&amp;#10;__Source File information&amp;#58;__&amp;#10;&amp;#96;&amp;#96;&amp;#96;&amp;#10;Locating source for &amp;#39;c&amp;#58;&amp;#92;Users&amp;#92;Matt&amp;#92;Code&amp;#92;forks&amp;#92;xunitcontrib&amp;#92;forks&amp;#92;main&amp;#92;resharper&amp;#92;src&amp;#92;xunitcontrib.runner.resharper.runner&amp;#92;XunitTaskRunner.cs&amp;#39;. Checksum&amp;#58; MD5 &amp;#123;1b 5c 8e d6 75 5b 5e 5d 20 71 f2 0 60 da 55 42&amp;#125;&amp;#10;The file &amp;#39;c&amp;#58;&amp;#92;Users&amp;#92;Matt&amp;#92;Code&amp;#92;forks&amp;#92;xunitcontrib&amp;#92;forks&amp;#92;main&amp;#92;resharper&amp;#92;src&amp;#92;xunitcontrib.runner.resharper.runner&amp;#92;XunitTaskRunner.cs&amp;#39; does not exist.&amp;#10;Looking in script documents for &amp;#39;c&amp;#58;&amp;#92;Users&amp;#92;Matt&amp;#92;Code&amp;#92;forks&amp;#92;xunitcontrib&amp;#92;forks&amp;#92;main&amp;#92;resharper&amp;#92;src&amp;#92;xunitcontrib.runner.resharper.runner&amp;#92;XunitTaskRunner.cs&amp;#39;...&amp;#10;Looking in the projects for &amp;#39;c&amp;#58;&amp;#92;Users&amp;#92;Matt&amp;#92;Code&amp;#92;forks&amp;#92;xunitcontrib&amp;#92;forks&amp;#92;main&amp;#92;resharper&amp;#92;src&amp;#92;xunitcontrib.runner.resharper.runner&amp;#92;XunitTaskRunner.cs&amp;#39;.&amp;#10;The file was not found in a project.&amp;#10;Looking in directory &amp;#39;C&amp;#58;&amp;#92;Program Files &amp;#40;x86&amp;#41;&amp;#92;Microsoft Visual Studio 10.0&amp;#92;VC&amp;#92;crt&amp;#92;src&amp;#92;&amp;#39;...&amp;#10;Looking in directory &amp;#39;C&amp;#58;&amp;#92;Program Files &amp;#40;x86&amp;#41;&amp;#92;Microsoft Visual Studio 10.0&amp;#92;VC&amp;#92;atlmfc&amp;#92;src&amp;#92;mfc&amp;#92;&amp;#39;...&amp;#10;Looking in directory &amp;#39;C&amp;#58;&amp;#92;Program Files &amp;#40;x86&amp;#41;&amp;#92;Microsoft Visual Studio 10.0&amp;#92;VC&amp;#92;atlmfc&amp;#92;src&amp;#92;atl&amp;#92;&amp;#39;...&amp;#10;Looking in directory &amp;#39;C&amp;#58;&amp;#92;Program Files &amp;#40;x86&amp;#41;&amp;#92;Microsoft Visual Studio 10.0&amp;#92;VC&amp;#92;atlmfc&amp;#92;include&amp;#92;&amp;#39;...&amp;#10;The debug source files settings for the active solution indicate that the debugger will not ask the user to find the file&amp;#58; c&amp;#58;&amp;#92;Users&amp;#92;Matt&amp;#92;Code&amp;#92;forks&amp;#92;xunitcontrib&amp;#92;forks&amp;#92;main&amp;#92;resharper&amp;#92;src&amp;#92;xunitcontrib.runner.resharper.runner&amp;#92;XunitTaskRunner.cs.&amp;#10;The debugger could not locate the source file &amp;#39;c&amp;#58;&amp;#92;Users&amp;#92;Matt&amp;#92;Code&amp;#92;forks&amp;#92;xunitcontrib&amp;#92;forks&amp;#92;main&amp;#92;resharper&amp;#92;src&amp;#92;xunitcontrib.runner.resharper.runner&amp;#92;XunitTaskRunner.cs&amp;#39;.&amp;#10;&amp;#10;&amp;#96;&amp;#96;&amp;#96;</description><author>aledeniz</author><pubDate>Mon, 22 Apr 2013 09:14:04 GMT</pubDate><guid isPermaLink="false">Commented Unassigned: MDA throwning BindingFailure and LoadFromContext [4161] 20130422091404A</guid></item><item><title>Commented Unassigned: MDA throwning BindingFailure and LoadFromContext [4161]</title><link>http://xunitcontrib.codeplex.com/workitem/4161</link><description>If I run the Resharper test runner throwning the following MDA &amp;#40;Managed Debugging Assistants, see http&amp;#58;&amp;#47;&amp;#47;msdn.microsoft.com&amp;#47;en-us&amp;#47;library&amp;#47;d21c150d.aspx&amp;#41;&amp;#58;&lt;br /&gt;&amp;#42; BindingFailure&lt;br /&gt;&amp;#42; LoadFromContext&lt;br /&gt;I get the following dialogs&amp;#58;&lt;br /&gt;&amp;#96;&amp;#96;&amp;#96;&lt;br /&gt;__LoadFromContext was detected__&lt;br /&gt;Message&amp;#58; The assembly named &amp;#39;xunit.runner.utility&amp;#39; was loaded from &amp;#39;file&amp;#58;&amp;#47;&amp;#47;&amp;#47;C&amp;#58;&amp;#47;Users&amp;#47;user&amp;#47;AppData&amp;#47;Local&amp;#47;JetBrains&amp;#47;ReSharper&amp;#47;v6.1&amp;#47;Plugins&amp;#47;xunitcontrib&amp;#47;xunit.runner.utility.DLL&amp;#39; using the LoadFrom context. The use of this context can result in unexpected behavior for serialization, casting and dependency resolution. In almost all cases, it is recommended that the LoadFrom context be avoided. This can be done by installing assemblies in the Global Assembly Cache or in the ApplicationBase directory and using Assembly.Load when explicitly loading assemblies.&lt;br /&gt;&lt;br /&gt;&amp;#96;&amp;#96;&amp;#96;&lt;br /&gt;and&lt;br /&gt;&amp;#96;&amp;#96;&amp;#96;&lt;br /&gt;__BindingFailure was detected__&lt;br /&gt;Message&amp;#58; The assembly with display name &amp;#39;xunit.runner.utility.&amp;#123;Dynamic&amp;#125;&amp;#39; failed to load in the &amp;#39;LoadFrom&amp;#39; binding context of the AppDomain with ID 2. The cause of the failure was&amp;#58; System.IO.FileNotFoundException&amp;#58; Could not load file or assembly &amp;#39;xunit.runner.utility.&amp;#123;Dynamic&amp;#125;, Version&amp;#61;0.0.0.0, Culture&amp;#61;neutral, PublicKeyToken&amp;#61;null&amp;#39; or one of its dependencies. The system cannot find the file specified.&lt;br /&gt;&amp;#96;&amp;#96;&amp;#96;&lt;br /&gt;and&lt;br /&gt;&amp;#96;&amp;#96;&amp;#96;&lt;br /&gt;__BindingFailure was detected__&lt;br /&gt;Message&amp;#58; The assembly with display name &amp;#39;xunit.runner.utility.&amp;#123;Dynamic&amp;#125;&amp;#39; failed to load in the &amp;#39;LoadFrom&amp;#39; binding context of the AppDomain with ID 2. The cause of the failure was&amp;#58; System.IO.FileNotFoundException&amp;#58; Could not load file or assembly &amp;#39;xunit.runner.utility.&amp;#123;Dynamic&amp;#125;, Version&amp;#61;0.0.0.0, Culture&amp;#61;neutral, PublicKeyToken&amp;#61;null&amp;#39; or one of its dependencies. The system cannot find the file specified.&lt;br /&gt;&amp;#96;&amp;#96;&amp;#96;&lt;br /&gt;and&lt;br /&gt;&amp;#96;&amp;#96;&amp;#96;&lt;br /&gt;__BindingFailure was detected__&lt;br /&gt;Message&amp;#58; The assembly with display name &amp;#39;xunit.runner.utility.&amp;#123;Dynamic&amp;#125;&amp;#39; failed to load in the &amp;#39;LoadFrom&amp;#39; binding context of the AppDomain with ID 2. The cause of the failure was&amp;#58; System.IO.FileNotFoundException&amp;#58; Could not load file or assembly &amp;#39;xunit.runner.utility.&amp;#123;Dynamic&amp;#125;, Version&amp;#61;0.0.0.0, Culture&amp;#61;neutral, PublicKeyToken&amp;#61;null&amp;#39; or one of its dependencies. The system cannot find the file specified.&lt;br /&gt;&amp;#96;&amp;#96;&amp;#96;&lt;br /&gt;Is this by design&amp;#63;&lt;br /&gt;Comments: Using procmon, I gave a try at a quick and dirty work around the LoadFromContext manually copying the &amp;#42;.dll &amp;#166; &amp;#42;.pdb &amp;#166; templates.&amp;#42; from _C&amp;#58;&amp;#92;Users&amp;#92;user&amp;#92;AppData&amp;#92;Local&amp;#92;JetBrains&amp;#92;ReSharper&amp;#92;v6.1&amp;#92;plugins&amp;#92;xunitcontrib_ to _C&amp;#58;&amp;#92;Program Files &amp;#40;x86&amp;#41;&amp;#92;JetBrains&amp;#92;ReSharper&amp;#92;v6.1&amp;#92;Bin_, but that was actually breaking the runner.</description><author>aledeniz</author><pubDate>Mon, 22 Apr 2013 09:09:00 GMT</pubDate><guid isPermaLink="false">Commented Unassigned: MDA throwning BindingFailure and LoadFromContext [4161] 20130422090900A</guid></item></channel></rss>