Forum member

Remco NCrunch Developer

7586 posts

Posts by Remco

  1. NCrunch fails to build when referencing project in a solution, but works fine with the assembly

    Nice work on finding a solution. Something that may help with your deduction would be to take a look at the code that NCrunch generates inside its workspaces. You can access this code by right-clicking on any built assembly, then going to Advanced->Browse to workspace. NCrunch essentially just ru…

  2. NCrunch fails to build when referencing project in a solution, but works fine with the assembly

    Make sure that you're using project references between your projects - not assembly references. This is a common reason for building against old code. Which version of Visual Studio are you using? If you can submit the sample code (also for the second issue), I may be able to narrow this down f…

  3. NCrunch fails to build when referencing project in a solution, but works fine with the assembly

    Are you able to reproduce this issue using some sample code? If so, you're welcome to submit it via the contact form ([url=https://www.ncrunch.net/support/contact]https://www.ncrunch.net/support/contact[/url]) and I'll see if I can find a resolution.

  4. Griod node server crash when restarting all grid nodes

    Thanks, I'm looking into this and will get back to you soon. Sorry about the wait.

  5. Exception when building with NCrunch 2015 2.11.023

    Thanks Jake. The sample solution really helped with identifying this issue. It looks like this is being caused by version clashing with Mono.Cecil. Mono.Cecil is used by NCrunch (for post-build instrumentation) and by Frody (for its IL weaving during build). NCrunch and Frody are both using di…

  6. NCrunch console doesn't run each test in its own process.

    Hi Sam, There is also a solution-level setting that controls parallel execution. If you take the default steps in the wizard, this is turned off. Do you have this disabled? [url=http://www.ncrunch.net/documentation/reference_solution-configuration_allow-parallel-test-execution]http://www.ncrunc…

  7. Exception when building with NCrunch 2015 2.11.023

    Hi Paul, Do you have a solution you can share with me that reproduces this issue? There is some very strange behaviour here that I'm having some trouble pinning down. The problem is definitely related to Gallio/xunit. You can submit code via the contact form - [url=https://www.ncrunch.net/supp…

  8. Exception when building with NCrunch 2015 2.11.023

    Hi Paul, Thanks for sharing these details. I haven't yet been able to reproduce this issue, but I feel there is a good chance I can fix it speculatively. I've prepared a new build including a fix. Give it a try and let me know how you go: [url=http://downloads.ncrunch.net/NCrunch_Console_2.…

  9. NCrunch metrics window layout is reset if toggling window visibility.

    Thanks. It looks as though VS actually physically closes windows when they are hidden in the tabs. I've implemented a fix for this. It's included in the dev build below if you'd like to give it a try: [url=http://downloads.ncrunch.net/NCrunch_Console_2.13.0.1.msi]http://downloads.ncrunch.net…

  10. NCrunch "pinned tests" engine mode causes vstudio to be slow (even with external process)

    Ok - I have implemented a fix for this issue. A dev build containing the fix is below: [url=http://downloads.ncrunch.net/NCrunch_Console_2.13.0.1.msi]http://downloads.ncrunch.net/NCrunch_Console_2.13.0.1.msi[/url] [url=http://downloads.ncrunch.net/NCrunch_Console_2.13.0.1.zip]http://downloads.n…

  11. NCrunch doesn't recognise new tests

    [quote=Rea Valley Software;6888] With regard to the build issues I add a new class to a class library and make it a dependency of an existing class - at this point my solution builds but NCrunch reports that it is not building and the only way I can get it to build is to restart. [/quote] What …

  12. NCrunch fails to build, seems confused by namespace

    Hi, thanks for sharing this issue. Sometimes when adding templates or performing very large refactorings, the IDE makes a large number of frequent changes to the codebase. I believe that a race condition may exist somewhere in the way these changes are reported, and occasionally NCrunch misses a…

  13. Webjobs.wap.targets file causing build failure

    Interesting. Does the DLL file exist in the NCrunch workspace? An easy way to check this is to right click on the failing build, then choose Advanced->Browse to workspace, and see if the file exists on the path its expected. I don't think the .nuspec file will make any difference in this. You …

  14. Adjusting severity of inspections

    Hi, thanks for posting! NCrunch itself won't be responsible for giving off the errors/warnings that you're seeing in your code. This is instead done by MSBuild, where it executes various targets that call into toolsets. By design, NCrunch does try to match its build with VS as closely as poss…

  15. NCrunch metrics window layout is reset if toggling window visibility.

    Thanks for sharing this issue. Do you have the metrics window mounted using VS's 'auto-hide' feature that slides the window out of view? Also, did you make any structural change to the project when this happened, such as adding/renaming/removing a file or changing a project configuration optio…

  16. NCrunch "pinned tests" engine mode causes vstudio to be slow (even with external process)

    Ok, I think we're getting close here :) At my end I've identified a problem where files that have been set to be excluded from auto-build aren't being handled properly. It seems that when these files are changed, the builds aren't queued but the tests still are. This creates a situation that ca…

  17. NCrunch console doesn't run each test in its own process.

    Ok - that does explain the behaviour you're seeing :) NCrunch will re-use test runners for multiple tests. This is by design as building a whole new environment for each individual test causes very poor performance. This means that in your design, you will have tests re-using the same ID if the…

  18. NCrunch doesn't recognise new tests

    Hi, thanks for sharing this issue. If you create a new solution with a single test project and a dummy test, do you experience the same issue? What is the nature of the build failure you experience under NCrunch?

  19. Webjobs.wap.targets file causing build failure

    Hi Chris, This is likely due to failed automatic resolution of the task DLL file used by the webjob. Try including the Microsoft.Web.WebJobs.Publish.1.0.2 package directory in the project using the 'Additional files to include' project-level configuration - [url=http://www.ncrunch.net/document…

  20. Process ... has exceeded its memory limit and will be terminated

    [quote=chrboum;6868] I figured it is our build sending NCrunch into the weeds. The project XML are practically empty because all of the logic lives elsewhere. I'll need to dig deeper. There are quite a few conditionals around BuildingInVisualStudio, and I am trying to determine what our build op…