Regasm: Error RA0000: impossible de charger le fichier ou l'assemblage ou l'une de ses dépendances.Le système ne peut pas trouver le fichier spécifié

sharepoint.stackexchange https://sharepoint.stackexchange.com//questions/65960

Question

Je suis nouveau à SharePoint.J'essaie d'ajouter le Microsoft.SharePoint.dll à GAC.Pour celui-ci, j'ai utilisé ci-dessous Code

code:

 `c:\WINDOWS\Microsoft.NET\Framework\v4.0.30319> Regasm.exe "C:\Microsoft.SharePoint.dll"`

Lorsque je appuie sur la touche d'entrée, je reçois l'erreur ci-dessous: -

RegAsm : error RA0000 : Could not load file or assembly 'Microsoft.SharePoint.Search.Native, Version=15.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c' or one of its dependenceies. The system cannot find the file specified.

S'il vous plaît quelqu'un peut aider à sortir de cela.

Était-ce utile?

La solution

For that you need to use Gacutil instead of Regasm. So,

gacutil /i Microsoft.SharePoint.dll

Difference between regasm and gacutil:

Regasm: The Assembly Registration tool reads the metadata within an assembly and adds the necessary entries to the registry, which allows COM clients to create .NET Framework classes transparently. Once a class is registered, any COM client can use it as though the class were a COM class. The class is registered only once, when the assembly is installed. Instances of classes within the assembly cannot be created from COM until they are actually registered. Source

Gacutil: The Global Assembly Cache tool allows you to view and manipulate the contents of the global assembly cache and download cache. Source

More details

Licencié sous: CC-BY-SA avec attribution
Non affilié à sharepoint.stackexchange
scroll top