I have a set of files in a project that have a custom build action ("AspGenFile"). I need NCrunch to copy these files to the workspace it creates for the project, but I can't figure out how best to do this. My current solution follows, but it feels hacky.
<ItemGroup Condition="'$(NCrunch)' == '1'">
<Content Include="@(AspGenFile)" />
</ItemGroup>
Any alternatives?
Thanks,
David