c# - Clickonce manifest postactions -



c# - Clickonce manifest postactions -

i have vsto application using clickonce, , using post-deployment action, whitch done

http://msdn.microsoft.com/en-us/library/bb772100.aspx set document of solution onto end user's computer (document-level customizations only)

<vstav3:postactions> <vstav3:postaction> <vstav3:entrypoint class="clickoncelibrary.clickoncelibrary"> <assemblyidentity name="clickoncelibrary" version="1.2.0.8" language="neutral" processorarchitecture="msil" /> </vstav3:entrypoint> </vstav3:postaction> </vstav3:postactions>

mage -sign foo.dll.manifest -certfile soft_certificate.pfx -pwd bar

mage -update foo.vsto -appmanifest "application files\foo_1_2_0_8\foo.dll.manifest" -certfile "application files\foo_1_2_0_8\soft_certificate.pfx" -pwd bar

so after signing clickonce manifest mage: publisher,support url, product name(stats using project name) etc. change

my question, there way automatically add together postactions wouldn't need edit manifest manually, or maybe know problem manifest not reading info correctly after using mage?

well coulnd't find how automatically, when signing mage using options work...

mage -sign foo.dll.manifest -certfile soft_certificate.pfx -pwd bar -s "supporturl" -pub "publisher" mage -update foo.vsto -appmanifest "application files\foo_1_2_0_8\foo.dll.manifest" -certfile "application files\foo_1_2_0_8\soft_certificate.pfx" -pwd bar -s "supporturl" -pub "publisher"

c# vsto clickonce manifest

Comments

Popular posts from this blog

Delphi change the assembly code of a running process -

json - Hibernate and Jackson (java.lang.IllegalStateException: Cannot call sendError() after the response has been committed) -

C++ 11 "class" keyword -