Running 2.1 (though I don't think it's a new problem), with VS2013.
Create a C++ CLR class library project
The new project will include a default app.ico (the file is present and included in the project)
nCrunch will fail to build the project, because app.ico is missing in the nCrunch temp workspace
The VCXPROJ file includes the app.ico file like this:
<ItemGroup>
<Image Include="app.ico" />
</ItemGroup>
Is it possible that items of type 'Image' are not being copied by nCrunch?
I can send the whole project if you need it, though it's unaltered from creation in VS, so it shouldn't be too hard to repro.
Thanks,
Will
Remco NCrunch Developer
#4903
06 Dec 2013 12:22 UTC
Hi Will -
Thanks for picking up on this one. NCrunch doesn't have the <Image> item in its auto configuration list. I've just made a note to add it in. You can work around this by adding the file to your 'Additional files to include' setting.
Cheers,
Remco
Thanks for picking up on this one. NCrunch doesn't have the <Image> item in its auto configuration list. I've just made a note to add it in. You can work around this by adding the file to your 'Additional files to include' setting.
Cheers,
Remco
Remco wrote:Hi Will -
Thanks for picking up on this one. NCrunch doesn't have the <Image> item in its auto configuration list. I've just made a note to add it in. You can work around this by adding the file to your 'Additional files to include' setting.
Thanks! I worked around it by deleting the icon... It's only a test helper dll anyway.
Regards,
Will
Post a reply
Log in to reply.