My solution contains a number of setup (vdproj) projects. Ncrunch is unable to load these and gives a warning and suggestion to mark these as ignored. Unfortunately, the ncrunch configuration dialog doesn't show these projects in the solution list so there's no way to ignore them! Is there any way to manually modify the ncrunchsolution/project config files so that these projects are ignored?
Remco NCrunch Developer
#9561
15 Dec 2016 22:08 UTC
Hi, thanks for posting!
Sorry, this is a known problem at the moment. You can work around this creating a config file with the 'IgnoreThisComponentCompletely' property set. For example, under NCrunch V3 you would create a file adjacent to your project file with the name PROJECT.v3.ncrunchproject and the contents:
<ProjectConfiguration>
<Settings>
<IgnoreThisComponentCompletely>True</IgnoreThisComponentCompletely>
</Settings>
</ProjectConfiguration>
Under V2, you would create a file called PROJECT.v2.ncrunchproject and the contents:
<ProjectConfiguration>
<IgnoreThisComponentCompletely>true</IgnoreThisComponentCompletely>
</ProjectConfiguration>
Sorry, this is a known problem at the moment. You can work around this creating a config file with the 'IgnoreThisComponentCompletely' property set. For example, under NCrunch V3 you would create a file adjacent to your project file with the name PROJECT.v3.ncrunchproject and the contents:
<ProjectConfiguration>
<Settings>
<IgnoreThisComponentCompletely>True</IgnoreThisComponentCompletely>
</Settings>
</ProjectConfiguration>
Under V2, you would create a file called PROJECT.v2.ncrunchproject and the contents:
<ProjectConfiguration>
<IgnoreThisComponentCompletely>true</IgnoreThisComponentCompletely>
</ProjectConfiguration>
Excellent- will give this a try.
Remco NCrunch Developer
#9697
18 Jan 2017 11:45 UTC
NCrunch v3.3 is now available including a fix for this issue - https://www.ncrunch.net/download.
Post a reply
Log in to reply.