I have a problem with how to "Sign the ClickOnce manifest" of my application from TFS Build.
I installed my subscription page in VS 2010 by checking the "Sign ClickOnce checkbox" checkbox and selecting our key to sign the code from the file, as shown in the following screenshot:

Now when I publish the application from VS 2010, the manifest seems to be successfully signed:

However, when I try to create an application from TFS Build, it does not seem to be trying to sign the manifest. In fact, an error message does not even appear indicating that something failed.
I tried setting up the TFSBuild.proj file so that my build server knew about the certificate and that I wanted to sign my manifests, but I was not sure how to do it.
I tried the following:
<CustomPropertiesForBuild>SignManifests=true;ManifestCertificateThumbprint=<thumbprint goes here></CustomPropertiesForBuild>
But that doesn't seem to make any difference. (Errors are also not generated).
Note: I am not interested in the strong names of my congregations; just signing my code .
Does anyone know how to do this? Has anyone successfully deployed ClickOnce applications from a TFS build?
source share