Installing .NET application missing Microsoft.Cryptography.DKM in GAC

I developed a console application for Lync 2013 in VS 2012, focused on .NET 4.0. I have successfully installed the application on my machine, but now I need to run it on another client, and I get this strange error. I have a Googled error, but nothing useful was found.

Error message when installing Console application

The error is in Danish, but tells me that I am missing Microsoft.Cryptography.DKM version 1.11.0.0 in the GAC.

I have not seen this error before, and it seems that this is not an ordinary error, since it is difficult to find any information about this on the Internet.

Any recommendations are appreciated.

+1
source share
2 answers

I solved the problem by including all the assemblies from the UMCA 4.0 api that were used in the project that solved the problem. I was confused by this unknown Microsoft.Cryptography.DKM build for me.

Thank you, Csaba Toth, for pointing me in the right direction. If you write your comment in response to my question, I mark it as the right solution.

+1
source

Since I had the same problem and this answer is not clear: Go to Project-> xxxProperties On the Publish tab, click Application Files, Change Publish Status in Prerequisite to Enable

0
source

Source: https://habr.com/ru/post/1205651/


All Articles