Hi,
I have some custom targets which operate on files included in a custom ItemGroup. e.g
Code:
<SettingFile Include="common.xml" />
But by default, NCrunch only recognizes "None, Content, Compile" items as mentioned in
Implicit File Dependencies page.
As a workaround, I am currently adding the file twice just to get it building. e.g.
Code:
<SettingFile Include="common.xml" />
<None Include="common.xml">
<Visible>False</Visible>
</None>
Is there any way to specify a list of custom Items which NCrunch should copy over ? That would be really useful in avoid all this duplication.
Thanks.