Questions tagged [publickeytoken]

The application `PublicKeyToken` for a Windows application.

The application PublicKeyToken for a Windows application.

Use this tag only if you are referring to the Microsoft-specific concept.

28 questions
1
vote
0 answers

Set publickeytoken on DLL in Visual Studio

i generated(with build project) a DLL file with a class library project in VS. Now I wanted to implement it in a program, but it sees no Publickeytoken in the DLL File. Do You know how I make this Token in VS?
F.King
  • 11
  • 1
  • 3
1
vote
4 answers

After applying update 2 VisualStudio 2015 Enterprise can't connect to TFS - exception TF205020

VisualStudio 2015.1 Enterprise/TFS integration worked fine until VS2015 update 2 was applied. Reinstalling/repairing VisualStudio didn't fix the issue, keep getting: TF205020: Could not connect to server ...... The server returned the following…
1
vote
1 answer

when referencing assemblies, is it possible to insist on a version number but ignore the publickeytoken? (ie accept signed/unsigned)

As per the question, Is it possible to specify a reference to another assembly, requiring a specific version but not insisting on a specific publickeytoken? My gut feel is no (since I'm guessing when versions are specified, the entire fully…
Henry C
  • 4,781
  • 4
  • 43
  • 83
0
votes
0 answers

"could not load file or assembly" pops up every time the Server Manager starts

I have 2 identical high-end Dell servers. One I managed to install OS (Windows 2022 DC) with no problems. The other one, however, gives the following error, ONLY when the Server Manager is launched: "Could not load file or…
0
votes
0 answers

Using same dll library, but diferent versions (both with the same PublicKeyToken)

I want to use the same library, but with different versions of the same program. I followed the explanation in this Question, but in my case the PublicKeyToken are the same: Is it possible to reference different version of the same assembly into a…
0
votes
2 answers

Create pfx certificate with a specific PublicKeyToken

I've lost my pfx certificate file and i'm asking myself if i can create a new one with a specific PublicKeyToken. Is that possible to do that ? Thank you
midget
  • 5
  • 1
0
votes
2 answers

Could not load file or assembly MySql.Data

I've installed the MySQL for Visual Studio and the .NET Connector (6.8.3.0). I previous had the 6.7.4.0 installed. Why is it still looking for this DLL? I get the error message form event viewer: Msg: Could not load file or assembly 'MySql.Data,…
0
votes
1 answer

How to create keystore.jks and create private.der and public.der cert file -

I am looking to implement token based authentication (Nimbus JOSE+JWT) in my Angular Spring MVC Application. I also wanted to implement the RSA based keystore tool and to have a 'Private' and 'public' key based authentication to identify the client.…
user4821194
0
votes
0 answers

.net assembly's StrongName and PublicKeyToken in its display name format

I checked the info regarding the format of the display name of an AssemblyName in this MSDN source, it says: The format of the display name of an AssemblyName is a comma-delimited Unicode string that begins with the name, as follows: Name <,Culture…
cateyes
  • 5,208
  • 2
  • 24
  • 31
0
votes
2 answers

Wrong Public Key Token in BizTalk message - how to change or fix

First off, pretty new to BizTalk (here 2006) and just thrown in the cold water. Here is the background: Updated a schema and deployed it with a wrong Public Key Token. An orchestration used to send out invoices then created an error message as…
Uwe
  • 16
  • 1
0
votes
1 answer

How to get public methods from Dll using C# when publickeytoken == null

I want to find Public userdefined function from a dll when publickeytoken == null OpenFileDialog obj = new OpenFileDialog(); if (obj.ShowDialog() == System.Windows.Forms.DialogResult.OK) { Assembly ass = Assembly.LoadFrom(obj.FileName); //…
Aravind
  • 177
  • 1
  • 3
  • 13
0
votes
1 answer

How to get PublicKeyToken from GAC

I have been following this guide, which goes over adding a file to GAC with gacutil. I have completed this step but I can't seem to read the Keytoken from the file. It says to navigate to the assembly you added to the GAC, right click and view…
Amicable
  • 3,115
  • 3
  • 49
  • 77
1
2