Forum member

willapp

15 posts

Posts by willapp

  1. NCrunch not ignoring unloaded projects

    Ok thanks. As I said if this is currently by design then that's cool - I raised it thinking it might be a bug. However if there is anything you could do to support it in the future, then I would certainly appreciate it but I know my use-case probably isn't that common. Cheers, Will

  2. NCrunch not ignoring unloaded projects

    Hi Remco, Thanks for the reply. Not sure I fully understand the reasons for not selectively loading projects, but if you're happy this is the intended behaviour then I'll live with it. The performance issue is mainly around how long NCrunch can take to build our web applications rather than how l…

  3. NCrunch not ignoring unloaded projects

    Hi, I'm not sure if this is a bug or by design, but I have a large solution (139 projects) and to improve general performance of VS I often unload projects I'm not working on. However, NCrunch seems to always load 139 projects and attempt to build them. Is this intentional? I could create sepa…

  4. Minor bug on split window view

    Not sure if this has been raised before, and it's not the worst bug in the world but I notice when you use Window -> Split to split the current file into two separate scrollable views, the code coverage dots only appear in the lower view. If you then click Window -> Remove Split to go back to single…

  5. NCrunch gets stuck after switching solutions

    I think you're right about it being an IO issue, NCrunch is generally quite slow on that laptop. Luckily I've got my main one back now so I'll do a comparison tomorrow. It'll have the same AV running but the new laptop has an SSD whereas I'm not sure the old one does which would explain a lot. Ch…

  6. NCrunch gets stuck after switching solutions

    Cheers, have submitted the log output via contact form as requested. Looks like it takes 5 minutes to shut NCrunch down on my laptop.

  7. NCrunch gets stuck after switching solutions

    Hi Remco, I may have to apologise. I've been working on a temporary laptop which is quite low powered, I thought I had reproduced the issue just now but it seems that eventually the NCrunch process does kick back into life although it takes a very long time (over 5 minutes). If it helps to loo…

  8. NCrunch gets stuck after switching solutions

    Only had this problem since the latest version (2.27.0.3). If NCrunch is running and I open another solution within the same instance of the IDE, once the solution has opened NCrunch seems to get stuck - on the menu I see that "Disable NCrunch" is greyed out but there is no activity at all in the…

  9. Random build issues

    I don't really use separate folders for different branches, mainly because one of the great things I like about Git is its ability to switch branches in-place. I run web applications configured on IIS on my laptop and it would be a real pain having to re-point the sites at different folders each tim…

  10. Random build issues

    Hi Remco, The branch switch is always complete before I reload - I actually use Git command line and not the built-in VS tooling so when I do a checkout or merge I wait on the command line for it to finish before switching back to VS. One suspicion I have that could be contributing to this is …

  11. Random build issues

    I appreciate this needs some investigation but here goes: I use NCrunch daily at work and it's fantastic. However on a daily basis I find myself having to disable/enable NCrunch due to it failing to build my solution. In this scenario NCrunch reports build errors (such as missing/unrecognised ref…

  12. Sharing test case source between tests

    Is there somewhere we can vote for this to be fixed? I have to agree with the other posters that the workaround for this is tedious, and the point of tools like NCrunch is to make life easier and not to change code to make the tool behave correctly. Don't get me wrong I love NCrunch but I dislike…

  13. StructureMap issue AssemblyInitialize

    That's ok, it makes sense I guess. For any others experiencing the same issue, wrapping the offending calls within the [AssemblyInitialize] method inside a conditional branch and setting a static flag the first time the code is run will successfully prevent the problem from occurring.

  14. StructureMap issue AssemblyInitialize

    hi Remco, Thanks for the quick reply. Okay I will try and add some code to the Initialize and try to make sure it only happens once which as you say should fix the problem. Is this something that could be fixed in a future release, or is it just an unfortunate side-effect of the continuous tes…

  15. StructureMap issue AssemblyInitialize

    Having a problem with NCrunch where the majority of my tests are failing due to this error: Assembly initialize/cleanup failed: System.Diagnostics.Contracts.__ContractsRuntime+ContractException: Assertion failed: Dependency.instance == null Cannot set dependency resolver once it has been set. …