Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

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

Tags:

c#

Error :

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

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

like image 743
Anuya Avatar asked Aug 27 '09 03:08

Anuya


3 Answers

I solved this bug by removing unselecting the "Enable clickonce security settings" in security settings of the project properties.

like image 145
Anuya Avatar answered Nov 15 '22 09:11

Anuya


Exceelent, this worked for me also. I started getting the problem -->

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

When I added the whole solution including resource folder bin obj etc into SourceSafe.

Switching the "Enable ClickOnce Security Setting" Off Solve the issue imediately

Thanks Guys

Duncan Lawrence

like image 26
Duncan Lawrence Avatar answered Nov 15 '22 08:11

Duncan Lawrence


You've got an invalid setting in the msbuild file. I guess would be that the GenerateApplicationManifest task expects a valid file name for the input manifest parameter.

like image 2
Joe Caffeine Avatar answered Nov 15 '22 10:11

Joe Caffeine