I created a simple tool extension for Visual Studio for extracting the full qualified name of an .NET assembly.
Like this: http://msdn.microsoft.com/en-us/library/ee539398.aspx but without a compiled application.
I used PowerShell for this.
HERE ARE THE STEPS:
- Got to Visual Studio 2010
- Open Menu “Tools”
- Open Dialog “External Tools”
- Click “Add” to add a new tool entry
- Specify “Full Assembly Name” as “Title”
- Enter “c:windowssystem32WindowsPowerShellv1.0powershell.exe” as “Command”
- Enter
-command "&{[System.Reflection.AssemblyName]::GetAssemblyName('$(TargetPath)').FullName}"
as “Arguments”
- Check “Use output window”
- Click “OK”
- You can use this tool if your output binary can be compiled(!)
Screenshots:
This was far more integrated and easier accessible than what I’ve been using before. Very nice!
The best! Thanks!
You’re welcome! 🙂