I'm using nCrunch with nUnit and code contracts. With no changes to the code I can run with 1.38 and the tests all run without issues (with both passing and failing tests), under 1.39 I get a message "Must use CCRewriter..." similar to
this post. The nCrunch build is *much* faster under 1.39 than under 1.38 but 1.38 seems to have an issue where CCcheck.exe appears to hang for 30-60 seconds on each project before continuing when built under nCrunch (doesn't happen during the normal build) so it might just be that the issue causing that was fixed.
Another option is that
Code:
<PropertyGroup Condition=" '$(NCrunch)' == '1' ">
<CodeContractsRuntimeThrowOnFailure>True</CodeContractsRuntimeThrowOnFailure>
</PropertyGroup>
in my project files is no longer taking effect.
Are there any changes to configuration in 1.39 I should be aware of? I can work just fine using 1.38 but the faster build times in 1.39 would be very nice to have.
Thanks.