I hate fishing around to get the publickeytoken for my strong named assemblies, so I fished around for a way to do it in Visual Studio. Here's what I did:
Now, to execute it, select a *.dll file. You can select the file in the bin directory of your dev project, go to Tools->Get PublicKeyToken and the output will be rendered to the Output window.
I wrote a utility a while ago that can be called from the external tools function to do this. It can figure out the public key info from binaries and snk files.
http://neovolve.com/archive/2007/12/06/getpublickey-internalsvisibleto.aspx
I also find it helpful to be able to right-click on a file in solution explorer and click Open With, then select this utility.
Very nice!