Forum member

Remco NCrunch Developer

7586 posts

Posts by Remco

  1. VS2015 Enterprise code marker

    Thanks for sending through the screenshot. I can now see what's happening here. VS Codelens is distorting the line marker coordinates. Where a line has a codelens block attached to it, the actual height of the line is about double what it normally would be. This makes the marker appear offset wi…

  2. Gride node goes bezerk with VBCSCompiler.exe

    I've just done some digging on this issue. It looks like the root cause is a new feature of the Roslyn compiler in which it keeps the compiler process around after the build has finished. Over time, the memory consumption accumulates and as far as I can tell, there's nothing that actually kills th…

  3. VS2015 Enterprise code marker

    Hi, Thanks for sharing this. I'm having a hard time visualising this - is there any chance you should share a screenshot? If this forum won't let you easily place one, you can submit one through the [url=https://www.ncrunch.net/support/contact]contact form[/url].

  4. Build fails with custom analyzers

    [quote=berkeleybross;7707]Thanks, that seems to work for me. Would it be possible to make this built into NCrunch? I'm probably being very lazy, but I'd prefer not to have to go through cs-projs for a VS extension (even when it's as awesome as NCrunch)[/quote] It's already pending in the upcomin…

  5. Debug hangs after enabling .NET Framework source stepping

    I'm glad a rebuild fixed the problem! No idea what happened here, but it's good that you're back up and running :)

  6. Debug hangs after enabling .NET Framework source stepping

    Hi, thanks for sharing this issue. I suspect there may be an issue with the debugger itself in VS2015. NCrunch doesn't really do much with the debugger other than ask it to attach to an existing process. There is another user that has reported a similar issue, which eventually was reported to M…

  7. Fody: Mono.Cecil.Mdb assembly not found

    [quote=Luciferius;7702]Yes, with Fody I add some additional attributes above all test methods in all test projects. For this I need the "FodyWeavers.xml" file as config file inside the source directory of the test assemblies. Because they are all identical I have just one config file which I copy wi…

  8. Fody: Mono.Cecil.Mdb assembly not found

    Can you share any more details about what this build step is trying to achieve? My guess is that it is copying a file into every test directory .. is there a reason for this?

  9. Build fails with custom analyzers

    [quote=berkeleybross;7698]Hi, I hope I'm not resurrecting a dead thread, but this seems like an appropriate place to post, since I'm having the same "issue" As FubarCoder says, StyleCop.Analyzers is marked as a development dependency <package id="StyleCop.Analyzers" version="1.0.0-beta009" t…

  10. Fody: Mono.Cecil.Mdb assembly not found

    Hi, Are you referencing Fody using Nuget? It's possible that Fody is looking for this binary inside the Nuget packages directory. If this is the case, try adding the Fody Nuget package directory to the 'Additional files to include' project-level NCrunch configuration setting. This should mak…

  11. NCrunch test pass, but some green dots and some red dots

    [quote=dcwedgewood;7692] I'm surprised you don't see it, as it is very repeatable for me, but maybe it has to do with some other extensions in my system? I also have Resharper, NDepend, Codemaid, and a few minor ones loaded.[/quote] I was surprised too :( Do you have any extensions that perhaps…

  12. NCrunch Metrics are wrong

    Hi, thanks for posting. NCrunch uses the compiler's debug output to determine lines of code. It has no real 'knowledge' of the code itself - rather it interprets the output of the compiler and marks out physical lines where the debugging information exists. Most likely the change you've obser…

  13. NUnit 3 and OneTimeSetUpAttribute

    Hi, thanks for posting. Right now NCrunch doesn't yet support the new NUnit (NUnit 3). This is a major revision of NUnit that is still under development and will require significant work to support. NCrunch will add support for this framework soon.

  14. NCrunch test pass, but some green dots and some red dots

    Thanks for sharing the sample code. I've taken it for a spin, but for some reason, I'm not seeing the same results that you are. For me, NCrunch ignores the modeling project at load time (it thinks about it a little, stopping for a few seconds on loading 3/4 projects). The tests then run as exp…

  15. NCrunch test pass, but some green dots and some red dots

    [quote=dcwedgewood;7685]As something to help you diagnose, I created a whole new solution with a console project, a class library, and a unit test project, all using defaults.[/quote] Fantastic! This makes life so much easier for me. Thank you :) [quote=dcwedgewood;7685]I can send you the pro…

  16. Test-Names (and so the tests) of xBehave not displayed in NCrunch Tests Windows

    I have build available now with a fix for this, if you're interested in giving it a try: [url=http://downloads.ncrunch.net/NCrunch_Console_2.17.0.4.msi]http://downloads.ncrunch.net/NCrunch_Console_2.17.0.4.msi[/url] [url=http://downloads.ncrunch.net/NCrunch_Console_2.17.0.4.zip]http://downloads.…

  17. Test-Names (and so the tests) of xBehave not displayed in NCrunch Tests Windows

    Sorry, it looks like this isn't working the way it's expected to. I'll see what I can do about adding some separation between the steps in the trace output.

  18. Is there a way to see the list of tests running on the server?

    Hi, thanks for posting. This is all controlled through the Distributed Processing Window in the NCrunch client. As long as you are connected to a server, you have visibility over the tasks the server is running. This includes tasks that the server is running for other connected clients (they wi…

  19. Can not build project when it uses a specflow plugin to generate NCrunch test attributes

    It's possible to test whether the Serial attribute has been correctly identified by NCrunch. In the Tests Window, right click the list of columns and make sure you have 'Exclusively Used Resources' checked. Examine your tests in the list. If the SerialAttribute has been correctly detected by NCru…

  20. Can not build project when it uses a specflow plugin to generate NCrunch test attributes

    [quote=marhoily;7674]Ah, you'd already answered! Any workarounds to mark the whole assembly as "serial"?[/quote] Yes! :) The attributes can be applied at assembly level (i.e. in the AssemblyInfo.cs file). When this is done, they are automatically applied to every fixture in the assembly.