"bin \ Debug \ Daemon.exe.manifest; bin \ Release \ Daemon.exe.manifest" is an invalid value for the "InputManifest" parameter in * task

Mistake:

Error 1 "bin\Debug\Daemon.exe.manifest;bin\Release\Daemon.exe.manifest" 

is an invalid value for the "InputManifest" parameter Task "GenerateApplicationManifest" task. Multiple items cannot be passed to a parameter of type "Microsoft.Build.Framework.ITaskItem". Daemon

+5
c #
source share
3 answers

You have an invalid parameter in the msbuild file. I assume that the GenerateApplicationManifest task expects the correct file name for the input manifest parameter.

+2
source share

I resolved this error by removing the "Enable Clickonce Security Settings" exception in the project properties security settings.

+27
source share

Exceelent, it worked for me too. I started getting the problem →

is an invalid value for the "InputManifest" parameter of the "GenerateApplicationManifest" task. Unable to pass multiple items to a parameter of type "Microsoft.Build.Framework.ITaskItem

When I added the whole solution, including bin bin obj, etc. at SourceSafe.

Toggle "Enable ClickOnce Security Configuration" Off Resolve the problem immediately

Thanks guys

Duncan Lawrence

+6
source share

All Articles