Forum member

bstenzel

5 posts

Posts by bstenzel

  1. Running tests on code using DelegateCompiler library

    Thanks for your quick reply. Again you're spot-on. Fortunately it was enough to disable instrumentation on our project for the db entities, so we still have coverage data for everything containing actual business logic. Thanks for a great tool and great support.

  2. Running tests on code using DelegateCompiler library

    I'm using [url=https://github.com/hazzik/DelegateDecompiler]DelegateDecompiler[/url] to implement filtering on the db on computed properties. A simple test case: [code=csharp]using System.Linq; using DelegateDecompiler; using NUnit.Framework; public class Person { public string LastNa…

  3. Disable bower/gulp/etc. in NCrunch builds?

    Just a heads up: the weird delay had nothing to do with NCrunch. I still had the Fusion logs active from debugging a linker error in a different project, so the delay came from writing hundreds of MB of fusion logs. ;)

  4. Disable bower/gulp/etc. in NCrunch builds?

    Thanks for your reply. Dead-on; bower and gulp are integrated with custom build targets. Prefixing all the conditions with "'$(NCrunch)' != '1' And " brought the build time in NCrunch down to under one second. There's still a curious delay of a couple seconds before it actually runs the tests. Would…

  5. Disable bower/gulp/etc. in NCrunch builds?

    I'm currently working on project that uses an AngularJS frontend with an WebAPI backend. The frontend uses bower to load the dependencies and gulp to concat/uglify/etc. and builds an index page for development with all the necessary script references. It currently takes NCrunch ~25 seconds to build …