我需要在我的网络中重新创建一个提供者。配置文件看起来像这样:

<membership defaultProvider="AspNetSqlMemProvider">
  <providers>
    <clear/>
    <add connectionStringName="TRAQDBConnectionString" applicationName="TRAQ" minRequiredPasswordLength="7" minRequiredNonalphanumericCharacters="0"
         name="AspNetSqlMemProvider"
         type="System.Web.Security.SqlMembershipProvider, Version=2.0.0.0, Culture=neutral, PublicKeyToken=B03F5F7F11D50A3A"
    />
  </providers>
</membership>

然而,我得到一个运行时错误,说这个程序集无法加载,我认为这是因为我有错误的PublicKeyToken。如何为程序集查找PublicKeyToken ?

或者,我是否完全走错了方向?


当前回答

使用PowerShell,你可以执行以下语句:

([system.reflection.assembly]::loadfile("C:\..\Full_Path\..\MyDLL.dll")).FullName

输出将提供Version、Culture和PublicKeyToken,如下所示:

MyDLL, Version=1.0.0.0, Culture=neutral, PublicKeyToken=669e0ddf0bb1aa2a

其他回答

只是添加更多的信息,我无法在上述位置找到sn.exe实用程序,在我的情况下,它是在C:\Program Files (x86)\Microsoft sdk \Windows\v7.0A\bin

正如@CRice所说,您可以使用下面的方法获得带有publicKeyToken的依赖程序集列表

public static int DependencyInfo(string args) 
{
    Console.WriteLine(Assembly.LoadFile(args).FullName);
    Console.WriteLine(Assembly.LoadFile(args).GetCustomAttributes(typeof(System.Runtime.Versioning.TargetFrameworkAttribute), false).SingleOrDefault());
    try {
        var assemblies = Assembly.LoadFile(args).GetReferencedAssemblies(); 

        if (assemblies.GetLength(0) > 0)
        {
            foreach (var assembly in assemblies)
            {
                Console.WriteLine(" - " + assembly.FullName + ", ProcessorArchitecture=" + assembly.ProcessorArchitecture);             
            }
            return 0;
        }
    }
    catch(Exception e) {
        Console.WriteLine("An exception occurred: {0}", e.Message);
        return 1;
    } 
    finally{}

    return 1;
}

我通常使用它作为一个LinqPad脚本 你可以称之为

DependencyInfo(“@c: \ MyAssembly.dll”);从代码中

对于MSVC或其他生成的DLL 使用pktextract从'.cer'获取publicKeyToken https://learn.microsoft.com/en-us/windows/win32/sbscs/pktextract-exe

详见其他答案:https://stackoverflow.com/a/72190473/12529885

使用sn.exe实用程序:

sn -T YourAssembly.dll

或在Reflector中加载组件。

sn -T < Visual Studio命令行中的组装>。 如果在全局程序集缓存中安装了程序集,则更容易转到c:\ windows \程序集并在GAC程序集列表中找到它。

在您的特定情况下,您可能混合了类型全名和程序集引用,您可能需要查看MSDN。