Build/Test Issues

Unable to ignore projects of unknown type

Started by NeilMacMullen on 5,205 views

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?

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>

Post a reply

Log in to reply.