The publickeytoken tag has no wiki summary.
6
votes
3answers
232 views
Warnings after update Xamarin Studio
I just updated Xamarin Studio the the the latest version (Xamarin.Android
Version: 4.6.4 (Business Edition)) and im receiving a lot of warnings after the update..:
...
0
votes
1answer
165 views
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)
{
...
1
vote
1answer
72 views
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 ...
0
votes
1answer
532 views
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 ...
32
votes
5answers
6k views
how do I work around log4net keeping changing publickeytoken
We have an asp.net 4.0 project which uses a couple of frameworks which is dependent on log4net version 1.2.10.0. Today I tried to include a new framework which is dependent on log4net version ...
1
vote
0answers
477 views
publickeytoken case-sensitivity - ASP.Net web.config issues
I recently went to deploy an asp.net solution to a Win2003 server.
I was getting error messages that referred to assemblies supposedly missing.
It transpires that the publickeytokens on my ...
1
vote
2answers
3k views
How to reference assembly from web.config?
I need to add reference to 'System.XML.dll' assembly into web.config (in order to try solution for problem, mentioned here: Problem with Extension method: IXmlLineInfo).
I've tried to add the ...
17
votes
2answers
4k views
.Net Assembly Binding Redirect with Differing Public Key Tokens
Is it possible to perform an assembly binding redirect between different versions of a referenced assembly if the public key token is null on the older version and set on the newer version?
For ...
22
votes
2answers
10k views
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/>
...

