ChatGPT解决这个技术问题 Extra ChatGPT

How do I find the PublicKeyToken for a particular dll?

I need to recreate a provider in my web.config file that looks something like this:

<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>

However, I get a runtime error saying this assembly cannot be loaded, and I think it is because I have the wrong PublicKeyToken. How do I look up the PublicKeyToken for my assembly?

Alternatively, am I going entirely the wrong way with this?


d
danielB

Using PowerShell, you can execute this statement:

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

The output will provide the Version, Culture and PublicKeyToken as shown below:

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

Thanks! your method is the only one that worked for me sn -T dllname.dll would only show help text when I ran it
That's perfect! Avoids installing extra tools.
great! this works also when there is no PublicKeyToken available (ie. unsigned assemblies)
In C# Interactive, you can call: Console.WriteLine(System.Reflection.Assembly.LoadFile(@"c:\some.dll").FullName);
Annoyingly, PowerShell.exe keeps a lock on the dll even after the call completed. I needed to close the PowerShell console before I could build my solution again.
D
Darin Dimitrov

Using sn.exe utility:

sn -T YourAssembly.dll

or loading the assembly in Reflector.


sn.exe can typically be found at one of the following locations under C:\Program Files (x86)\Microsoft SDKs\Windows: C:\Program Files (x86)\Microsoft SDKs\Windows\v7.0A\Bin, C:\Program Files (x86)\Microsoft SDKs\Windows\v7.0A\Bin\x64, C:\Program Files (x86)\Microsoft SDKs\Windows\v8.0A\bin\NETFX 4.0 Tools
Mind it, the key is case-sensitive. -t (lower case) will give the "Failed to convert key to token -- Invalid assembly public key.", which will send you searching in the wrong direction.
Z
Zanon

If you have the DLL added to your project, you can open the csproj file and see the Reference tag.

Example:

<Reference Include="System.Web.Mvc, Version=3.0.0.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL" />

J
Joaquim Rendeiro

sn -T <assembly> in Visual Studio command line. If an assembly is installed in the global assembly cache, it's easier to go to C:\Windows\assembly and find it in the list of GAC assemblies.

On your specific case, you might be mixing type full name with assembly reference, you might want to take a look at MSDN.


W
WhiteKnight

Answer is very simple use the .NET Framework tools sn.exe. So open the Visual Studio 2008 Command Prompt and then point to the dll’s folder you want to get the public key,

Use the following command,

sn –T myDLL.dll

This will give you the public key token. Remember one thing this only works if the assembly has to be strongly signed.

Example

C:\WINNT\Microsoft.NET\Framework\v3.5>sn -T EdmGen.exe

Microsoft (R) .NET Framework Strong Name Utility  Version 3.5.21022.8
Copyright (c) Microsoft Corporation.  All rights reserved.

Public key token is b77a5c561934e089

If you have Visual Studio 2013 and you can't find "Developer Command Prompt for VS2013" go have a look here how to fix it: stackoverflow.com/a/22702405/187650
Note that this tool does not come with Windows.
M
Mike Honey

I use Windows Explorer, navigate to C:\Windows\assembly , find the one I need. From the Properties you can copy the PublicKeyToken.

This doesn't rely on Visual Studio or any other utilities being installed.


H
Hiram

Just adding more info, I wasn't able to find sn.exe utility in the mentioned locations, in my case it was in C:\Program Files (x86)\Microsoft SDKs\Windows\v7.0A\bin


If you open up a visual studio command prompt it should be on your path.
C
CRice

Assembly.LoadFile(@"C:\Windows\Microsoft.NET\Framework\v4.0.30319\system.data.dll").FullName

Will result in

System.Data, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089


V
Vinod Srivastav

As @CRice said you can use the below method to get a list of dependent assembly with 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;
}

i generally use it as a LinqPad script you can call it as

DependencyInfo("@c:\MyAssembly.dll"); from the code


M
Mohit Verma

You can also check by following method.

Go to Run : type the path of DLL for which you need public key. You will find 2 files : 1. __AssemblyInfo_.ini 2. DLL file

Open this __AssemblyInfo_.ini file in notepad , here you can see Public Key Token.


v
vrqq

For DLL generated by MSVC or others
Using pktextract to get publicKeyToken from '.cer'
https://docs.microsoft.com/en-us/windows/win32/sbscs/pktextract-exe

See details from other answer: https://stackoverflow.com/a/72190473/12529885


N
Niraj Adhikari

If you want the token for something published on NuGet,

For example, OxyPlot.Wpf :

https://nuget.info/packages/OxyPlot.Wpf/2.1.0

and browse for the dll and its details.

Just change the nuget pkg name and version on the url for any other package.


u
unhammer

put into file dll-assemblyinfo in your $PATH:

#!/bin/sh

f=$(readlink -f "$1")

{
echo "using System.Reflection;"
echo "Assembly.LoadFile(\"$f\");"
} | csharp

chmod +x then

$ dll-assemblyinfo packages/System.Buffers.4.5.1/lib/netstandard2.0/System.Buffers.dll
System.Buffers, Version=4.0.3.0, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51