Forum member

JulienN

4 posts

Posts by JulienN

  1. RDI causes Exception with NSubstitute

    Hello, I'll see if I can find the time to create a project from scratch. Until then, here a the full, buildable test file : [code=csharp]using NSubstitute; namespace Namespace; public class ExtensionsTest { [Test] public void Test() { var exception = Substitu…

  2. RDI causes Exception with NSubstitute

    We have a series of tests that uses NSubstitute to override some properties in an Exception in order to test one of our extension method. This code works properly without RDI enabled, but fails with an exception when RDI is enabled (NCrunch v5.3.0.2) [code=csharp] var exception = Substitute.F…

  3. NCrunch seem to keep an outdated cache after git branch switch

    Thanks for this very detailed response. And having tried to develop some VS extensions, I understand your pain :). We are using short-lived feature branches so it won't be very practical to have several checkouts. I'll keep restarting the engine on branch change then ! Thanks again.

  4. NCrunch seem to keep an outdated cache after git branch switch

    As I'm working on several topics in parallel, and reviewing a lot of Pull requests, I'm switching between branches a lot. The issue is that very often, when I switch branch, NCrunch displays a lot of build errors, and rebuilding projects keep displaying the same errors. Even when the Visual Stu…