Reputation: 31
When I am trying to create a satellite assembly by using al.exe from the command prompt I am getting the following error.
ALINK: error AL1019: Metadata failure while creating assembly -- Access is denied.
How can I fix this problem?
Upvotes: 2
Views: 1552
Reputation: 31
I meet the same error when building project have .resx files. it is caused by without permission of 'C:\Users\All Users\Application Data\Microsoft\Crypto\RSA\MachineKeys' Signing assembly Access Is Denied I hope this can help to your question.
Upvotes: 3
Reputation: 25553
According to MSDN, "For example, this error occurs if a file that you specify with the /win32res option is not found."
Check if all the files referenced exist, if you're creating this on a local drive (rather than a network drive), and that you have full rights to the directories involved.
Upvotes: -1