Forum member

Remco NCrunch Developer

7586 posts

Posts by Remco

  1. Failing build projects that have custom .targets files

    Global settings to permit this sort of thing at solution level are on the list of things to address :) You should be able to share these settings with your team mates by ensuring the ncrunch .xml configuration files are checked into your source control system.

  2. NCrunch 1.33b occasionally fails to build an assembly, but provides no error information

    You can get to the processing queue by choosing it from the NCrunch menu at the top of your IDE. It's a more physical view of what the engine is doing ... not great for keeping open while you work, but it's a good place to look if you want to know what's going on.

  3. NCrunch 1.33b occasionally fails to build an assembly, but provides no error information

    Hi, thanks for posting. I've had a look at the bug report you sent through. Is your application using silverlight for the windows phone? NCrunch doesn't support this platform yet, so I'd be surprised if this builds. I'm curious about the lack of information the engine is giving you about this …

  4. Disable NCrunch for individual projects in a solution

    The black circles will appear for any project that's built - regardless of whether or not it's covered by tests, though you can get rid of them if your turn off instrumentation on the project that you don't care about. Thanks for posting. I'm glad you like the tool :)

  5. Code coverage report

    Thanks - this is a good suggestion. I'll look into it :) Cheers, Remco

  6. Disable NCrunch for individual projects in a solution

    Hi Groky, You can disable all the tests in the project by [url=https://www.ncrunch.net/documentation/concepts_ignored-tests]ignoring it[/url] in the tests window (just right click and choose the ignore option). However, if the project has build issues, the option to exclude it from your build is…

  7. NCrunch build fails when WPF project has a SplashScreen image.

    Hi Moosey, It looks like the image file is included in your project file implicitly or using a syntax that NCrunch isn't familiar with. Would you be able to copy/paste the part of the .proj file that specifies the image? I'll then ensure the next NCrunch build picks it up automatically. Me…

  8. Failing build projects that have custom .targets files

    This should be very easy to fix - just make sure you include your custom target files (and their dependencies) with NCrunch using the AdditionalFilesToInclude configuration setting.

  9. exception when using Code Contracts

    Did you have much luck with implementing the build switch to turn it off? There may be a way of making this more sophisticated so as to only use code contracts when it's actually installed - if you can find a build condition that can identify this scenario .. then just turn off the CONTRACTS_FULL pr…

  10. exception when using Code Contracts

    It looks to me like the error message that's being raised is done so by the code under test itself ... so there isn't really much I can do about this. Though I definitely take your point - it is extremely annoying!

  11. problem with app.config file

    Sorry, a fix is still in progress!

  12. exception when using Code Contracts

    Hi Archie, I've taken a look at the issue you're experiencing with Code Contracts and I'm wondering if this may be due to your code contracts configuration. When I try running your test solution through any test runner, I receive the same result (as you've described at the top of this thread).…

  13. Possible Memory leak in nCrunch 1.35b?

    Hi rikrak, Thanks for posting. I'm not aware of any serious memory leaks in NCrunch or in R# (though not sure about the EAP releases), though both plug-ins can be quite heavy in the areas of memory usage. NCrunch is very careful about not using too much memory in the host VS process, though it …

  14. NCrunch Build fails when building MVC views

    Hi Simon, Thanks for reporting this. It looks as though the MVC web compiler is expecting the dependencies to be in the same directory as the web project at build time. You should be able to solve this issue by turning on the CopyReferencedAssembliesToWorkspace for your web project. I'll make …

  15. Shortcut to jump to tests

    Thanks - this one is coming! :)

  16. exception when using Code Contracts

    I'm not sure if there's much that can be done about this. Code contracts wasn't written with the idea of continuous testing in mind. Mechanically the way it works is actually quite evil - it infers logic across output assemblies being in the same directory, which requires NCrunch to force itself…

  17. exception when using Code Contracts

    Excellent thanks - I'll take a look at the sample and will get back to you.

  18. Indicators in status bar

    Yes - this is coming :) It's the single most requested feature, and I want it too ... so it's coming!

  19. Issue with linking to libraries which aren't built by solution and aren't in GAC

    It looks as though the COM registration step for your output assembly is unable to deal with NCrunch's workspace build wiring. My guess would be that the UnmanagedRegistration step doesn't consider the same workflow for assembly resolution as other areas of MSBuild, or this may be something to do w…

  20. Unable to enable NCrunch for new install

    Hi John, I had a look through this one yesterday, and I've confirmed what seems to be causing it. Something in your development environment (VCS software perhaps?) is setting a read-only lock on the .crunchsolution.local.xml file. This causes the engine to fail when it attempts to write setti…