Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

14
votes
1answer
901 views

Why is ccrewrite.exe not doing anything from the command line?

I've got Code Contracts working fine from inside Visual Studio 2010, but I can't get ccrewrite.exe to do anything useful from the command line. Here's a sample app: using ...
3
votes
1answer
200 views

Code Contracts Rewrite Failed - libpaths order

My Solution/Project builds fine with code contracts turned off for this particular project. When I turn on Perform Runtime Contract Checking on my project, the build fails. The CC rewriter starts to ...
2
votes
2answers
462 views

Using Code Contracts in library code built with MSBuild

I've started using Code Contracts in all new code I'm writing, such as in a framework library I'm building to help bootstrap IoC, O/RM, etc., in an ASP.NET MVC application. I've written a simple build ...
1
vote
1answer
209 views

CodeContracts: ccrewrite fails with Object reference not set to an instance of an object

The below code makes ccrewrite blow up! Ideas? BTW, If you comment out the ActualClass, ccrewrite succeeds... [ContractClass(typeof(TestContracts))] interface ITestInterface { ...
0
votes
1answer
111 views

Using Code Contracts, why does ccrewrite require access to every runtime dependency?

I'm trying to use Code Contracts and I'm running into a problem that is blocking me. With Contract Reference Assembly set to Build, ccrewrite is erroring while trying to access assemblies that are ...
-1
votes
1answer
167 views

Building coded ui test project fails when “Perform runtime contract checking” is set to “full”

I have a simple Test project where a CodedUITestMethod is created. The test method simply clicks the Windows Start button in the taskbar. The method is generated by the Coded UI Test Builder tool from ...