我应该使用什么来代替 LoadWithPartialName()?

发布于 2024-07-27 03:02:13 字数 267 浏览 8 评论 0原文

我正在使用 LoadWithPartialName() 加载程序集,但 VS 告诉我它已过时并使用 Load() 代替。 但是,我找不到任何方便的重载。

有一个 Load(string) 要求输入“全名”,如果我正确理解 MSDN 文档,其中包括版本号等内容。

还有一个 Load (string, Evidence) 接受“显示名称”。 问题是我完全不知道“显示名称”是什么,因为我在第一个函数中使用的“部分名称”似乎不起作用。

那么,应该怎么做呢?

I'm loading an assembly with LoadWithPartialName(), but VS tells me that it's obsolete and to use Load() instead. However, I can't find any convenient overload.

There is a Load(string) with asks for a "full-name" which, if I understood correctly the MSDN docs, includes things like the version number.

There is also a Load (string, Evidence) which accepts a "Display name". The problem is I don't have the slightest idea what the "Display Name" is, as the "Partial Name" I was using with the first function doesn't seem to work.

So, how should it be done?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

鹿! 2024-08-03 03:02:13

这就是我所做的。 我将“Microsoft.AnalysisServices”加载到 PowerShell 中作为示例。

  1. 打开包含程序集的 GAC 文件夹。 它可以是以下任意一项:
    • C:\Windows\Microsoft.NET\Assembly\GAC_32
    • C:\Windows\Microsoft.NET\Assembly\GAC_64
    • C:\Windows\Microsoft.NET\Assembly\GAC_MSIL
  2. 在该文件夹中,打开程序集的文件夹。
  3. 在该文件夹中,您将看到另一个文件夹,如下所示:
    • v4.0_15.0.0.0__89845dcd8080cc91
  4. 将其分解为几个组成部分:
    • v4.0(我认为这是 .NET 版本,但我们这里不需要它。)
    • 15.0.0.0(这是您要查找的版本)
    • 89845dcd8080cc91(这是公钥)
  5. 现在您可以创建程序集字符串。

    [System.Reflection.Assembly]::Load("Microsoft.AnalysisServices,版本=15.0.0.0,Culture=neutral,PublicKeyToken=89845dcd8080cc91") 
      

对于 .NET 程序集,Culture 始终是中性

Here's what I did. I am loading "Microsoft.AnalysisServices" into PowerShell as my example.

  1. Open the GAC folder that has the assembly. It can be any one of the following:
    • C:\Windows\Microsoft.NET\assembly\GAC_32
    • C:\Windows\Microsoft.NET\assembly\GAC_64
    • C:\Windows\Microsoft.NET\assembly\GAC_MSIL
  2. In that folder, open the folder for your assembly.
  3. In that folder, you will see another folder that looks like this:
    • v4.0_15.0.0.0__89845dcd8080cc91
  4. Break this down into the component parts:
    • v4.0 (I think this is the .NET version, but we don't need it here.)
    • 15.0.0.0 (This is the version you're looking for)
    • 89845dcd8080cc91 (This is the public key)
  5. Now you can create your assembly string.

    [System.Reflection.Assembly]::Load("Microsoft.AnalysisServices, Version=15.0.0.0, Culture=neutral, PublicKeyToken=89845dcd8080cc91")
    

For .NET assemblies, Culture is always neutral.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文