Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

ClickOnce Manifest has invalid children - but xml matches old published manifests

I have an error during installing updating or fresh installing my ClickOnce publish on my app.

This occurs on computers without the app installed and on those with the app already there. The pfx file I use for signing the project is the same as it was in previous versions so I don't think the certificate is the issue.

+ Exception reading manifest from <APPPATH>.exe.manifest: the manifest may not be valid or the file could not be opened.
+ The element 'assembly' in namespace 'urn:schemas-microsoft-com:asm.v1' has invalid child element 'SignedInfo' in namespace 'http://www.w3.org/2000/09/xmldsig#'. 
List of possible elements expected: 'dependency' in namespace 'urn:schemas-microsoft-com:asm.v1' 
as well as 'dependency' in namespace 'urn:schemas-microsoft-com:asm.v2' 
as well as 'file' in namespace 'urn:schemas-microsoft-com:asm.v1' 
as well as 'file, configuration, deployment, entryPoint, trustInfo, licensing, migration' in namespace 'urn:schemas-microsoft-com:asm.v2' 
as well as 'clrClass' in namespace 'urn:schemas-microsoft-com:asm.v1' 
as well as 'clrClass' in namespace 'urn:schemas-microsoft-com:asm.v2' 
as well as 'clrSurrogate' in namespace 'urn:schemas-microsoft-com:asm.v1' 
as well as 'clrSurrogate' in namespace 'urn:schemas-microsoft-com:asm.v2' 
as well as 'comInterfaceExternalProxyStub' in namespace 'urn:schemas-microsoft-com:asm.v1' 
as well as 'comInterfaceExternalProxyStub, KeyInfo' in namespace 'urn:schemas-microsoft-com:asm.v2' 
as well as 'Signature' in namespace 'http://www.w3.org/2000/09/xmldsig#' 
as well as any element in namespace 'urn:schemas-microsoft-com:asm.v3' 
as well as 'publisherIdentity' in namespace 'urn:schemas-micr....

There are no out of place xml elements or attributes as comparing it with an old publish that works shows no difference in the elements.

Any suggestions?

like image 598
Tom 'Blue' Piddock Avatar asked Oct 19 '22 21:10

Tom 'Blue' Piddock


1 Answers

I had the same problem, it was caused by a section in the explicitly embedded app.manifest:

<compatibility xmlns="urn:schemas-microsoft-com:compatibility.v1">
<application>
  <!-- A list of the Windows versions that this application has been tested on and is
       is designed to work with. Uncomment the appropriate elements and Windows will 
       automatically selected the most compatible environment. -->
  <!-- Windows Vista -->
  <supportedOS Id="{e2011457-1546-43c5-a5fe-008deee3d3f0}" />
  <!-- Windows 7 -->
  <supportedOS Id="{35138b9a-5d96-4fbd-8e2d-a2440225f93a}" />
  <!-- Windows 8 -->
  <supportedOS Id="{4a2f28e3-53b9-4441-ba9c-d69d4a4a6e38}" />
  <!-- Windows 8.1 -->
  <supportedOS Id="{1f676c76-80e1-4239-95bb-83d0f6d0da78}" />
  <!-- Windows 10 -->
  <supportedOS Id="{8e0f7a12-bfb3-4fe8-b9a5-48fd50a15a9a}" />
</application>

Removing this section (it was unneeded) made the click-once application work.

like image 81
picrap Avatar answered Oct 30 '22 11:10

picrap