Archive

Posts Tagged ‘certificate store’

Unable to find manifest signing certificate in the certificate store

September 11, 2014 Leave a comment

Hi All,

Today after getting latest for my project from Team Foundation Server I was not able to build the solution as the mentioned above error was appearing. After doing some googling finally I found a link which resolved my problem. If this is the case with you then just remove the following from your .csproj file.

<PropertyGroup>

<ManifestCertificateThumbprint>…………</ManifestCertificateThumbprint>

</PropertyGroup>

<PropertyGroup>

<ManifestKeyFile>xxxxxxxx.pfx</ManifestKeyFile>

</PropertyGroup>

<PropertyGroup>

<GenerateManifests>true</GenerateManifests>

</PropertyGroup>

<PropertyGroup>

<SignManifests>false</SignManifests>

</PropertyGroup>

 

After doing so it resolved my issue J.

Reff: stackoverflow.

Regards.