Using Powershell to get the strong name of an assembly
Here's a short powershell script to get the strong name of an assembly:
- function Get-AssemblyName {
- param($file)
- $path = Resolve-Path $file
- [System.Reflection.AssemblyName]::GetAssemblyName($path).FullName
- }
If you add this to your profile, you can set up an external tool in Visual Studio to run this against the current project:


12/3/2008 2:33:00 PM
Published by
Harley Green
Category
Powershell
Back