Hi, I have an application that's failing to build in NCrunch.
I get the following error in the NCrunch Tests pane:
Code:NCrunch: If you are experiencing problems in getting this project to build, have a look at https://www.ncrunch.net/documentation/troubleshooting_project-build-issues
c:\Windows\Microsoft.NET\Framework\v4.0.30319\Microsoft.Common.targets (2580): Unable to read manifest 'Properties\app.manifest'. Could not find file 'C:\Users\balfa\AppData\Local\NCrunch\4956\30\SetupFramework\AssembledSetupApp\Properties\app.manifest'.
Based on helpful advice at
https://www.ncrunch.net/...ing_project-build-issues I've been able to fix the problem by adding it to the AdditionalFilesToInclude property, however, from reading
http://forum.ncrunch.net...-SplashScreen-image.aspx it seems as though you appreciate information to help make NCrunch more robust, so here's the .csproj line that references the file:
Code:
<BaseApplicationManifest Include="Properties\app.manifest" />
Also, earlier in the .csproj file, there exists the following:
Code:
<PropertyGroup>
...
<ManifestCertificateThumbprint>7DB1B67A557CA976096F99FC1904BEFD1A340D3E</ManifestCertificateThumbprint>
<ManifestKeyFile>AssembledSetupApp_TemporaryKey.pfx</ManifestKeyFile>
<GenerateManifests>true</GenerateManifests>
<SignManifests>true</SignManifests>
...
</PropertyGroup>
Thanks for the excellent excellent excellent tool!