├── .gitattributes ├── .gitignore ├── Add-GacAssembly.md ├── DOCUMENTATION.md ├── FileVersionTableView.md ├── Get-GacAssembly.md ├── Get-GacAssemblyFile.md ├── Get-GacAssemblyInstallReference.md ├── INSTALL.md ├── LICENSE.md ├── New-GacAssemblyInstallReference.md ├── PowerShellGac ├── Gac │ ├── Add-GacAssembly.ps1 │ ├── Gac.Format.ps1xml │ ├── Gac.Types.ps1xml │ ├── Gac.psd1 │ ├── Gac.psm1 │ ├── Get-GacAssembly.ps1 │ ├── Get-GacAssemblyFile.ps1 │ ├── Get-GacAssemblyInstallReference.ps1 │ ├── License.txt │ ├── New-GacAssemblyInstallReference.ps1 │ ├── Remove-GacAssembly.ps1 │ ├── Test-AssemblyNameFullyQualified.ps1 │ └── Test-GacAssemblyInstallReferenceCanBeUsed.ps1 ├── PowerShellGac.sln ├── PowerShellGac.vssscc └── PowerShellGac │ ├── AssemblyCacheFlags.cs │ ├── AssemblyCacheUninstallDisposition.cs │ ├── AssemblyCommitFlags.cs │ ├── AssemblyCompareFlags.cs │ ├── AssemblyInfo.cs │ ├── AssemblyNameDisplayFlags.cs │ ├── AssemblyNameExtensions.cs │ ├── AssemblyNameProperty.cs │ ├── CreateAssemblyNameObjectFlags.cs │ ├── ExtensionAttribute.cs │ ├── FusionApi.cs │ ├── FusionInstallReference.cs │ ├── GlobalAssemblyCache.cs │ ├── IAssemblyCache.cs │ ├── IAssemblyEnum.cs │ ├── IAssemblyName.cs │ ├── IInstallReference.cs │ ├── IInstallReferenceEnum.cs │ ├── InstallReference.cs │ ├── InstallReferenceGuid.cs │ ├── InstallReferenceType.cs │ ├── NativeMethods.cs │ ├── PowerShellGac.csproj │ ├── PowerShellGac.csproj.vspscc │ ├── Properties │ └── AssemblyInfo.cs │ ├── QueryAssemblyInfoFlags.cs │ └── UninstallResult.cs ├── README.md ├── Remove-GacAssembly.md ├── Test-AssemblyNameFullyQualified.md └── Test-GacAssemblyInstallReferenceCanBeUsed.md /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LTruijens/powershell-gac/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LTruijens/powershell-gac/HEAD/.gitignore -------------------------------------------------------------------------------- /Add-GacAssembly.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LTruijens/powershell-gac/HEAD/Add-GacAssembly.md -------------------------------------------------------------------------------- /DOCUMENTATION.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LTruijens/powershell-gac/HEAD/DOCUMENTATION.md -------------------------------------------------------------------------------- /FileVersionTableView.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LTruijens/powershell-gac/HEAD/FileVersionTableView.md -------------------------------------------------------------------------------- /Get-GacAssembly.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LTruijens/powershell-gac/HEAD/Get-GacAssembly.md -------------------------------------------------------------------------------- /Get-GacAssemblyFile.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LTruijens/powershell-gac/HEAD/Get-GacAssemblyFile.md -------------------------------------------------------------------------------- /Get-GacAssemblyInstallReference.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LTruijens/powershell-gac/HEAD/Get-GacAssemblyInstallReference.md -------------------------------------------------------------------------------- /INSTALL.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LTruijens/powershell-gac/HEAD/INSTALL.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LTruijens/powershell-gac/HEAD/LICENSE.md -------------------------------------------------------------------------------- /New-GacAssemblyInstallReference.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LTruijens/powershell-gac/HEAD/New-GacAssemblyInstallReference.md -------------------------------------------------------------------------------- /PowerShellGac/Gac/Add-GacAssembly.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LTruijens/powershell-gac/HEAD/PowerShellGac/Gac/Add-GacAssembly.ps1 -------------------------------------------------------------------------------- /PowerShellGac/Gac/Gac.Format.ps1xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LTruijens/powershell-gac/HEAD/PowerShellGac/Gac/Gac.Format.ps1xml -------------------------------------------------------------------------------- /PowerShellGac/Gac/Gac.Types.ps1xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LTruijens/powershell-gac/HEAD/PowerShellGac/Gac/Gac.Types.ps1xml -------------------------------------------------------------------------------- /PowerShellGac/Gac/Gac.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LTruijens/powershell-gac/HEAD/PowerShellGac/Gac/Gac.psd1 -------------------------------------------------------------------------------- /PowerShellGac/Gac/Gac.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LTruijens/powershell-gac/HEAD/PowerShellGac/Gac/Gac.psm1 -------------------------------------------------------------------------------- /PowerShellGac/Gac/Get-GacAssembly.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LTruijens/powershell-gac/HEAD/PowerShellGac/Gac/Get-GacAssembly.ps1 -------------------------------------------------------------------------------- /PowerShellGac/Gac/Get-GacAssemblyFile.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LTruijens/powershell-gac/HEAD/PowerShellGac/Gac/Get-GacAssemblyFile.ps1 -------------------------------------------------------------------------------- /PowerShellGac/Gac/Get-GacAssemblyInstallReference.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LTruijens/powershell-gac/HEAD/PowerShellGac/Gac/Get-GacAssemblyInstallReference.ps1 -------------------------------------------------------------------------------- /PowerShellGac/Gac/License.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LTruijens/powershell-gac/HEAD/PowerShellGac/Gac/License.txt -------------------------------------------------------------------------------- /PowerShellGac/Gac/New-GacAssemblyInstallReference.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LTruijens/powershell-gac/HEAD/PowerShellGac/Gac/New-GacAssemblyInstallReference.ps1 -------------------------------------------------------------------------------- /PowerShellGac/Gac/Remove-GacAssembly.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LTruijens/powershell-gac/HEAD/PowerShellGac/Gac/Remove-GacAssembly.ps1 -------------------------------------------------------------------------------- /PowerShellGac/Gac/Test-AssemblyNameFullyQualified.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LTruijens/powershell-gac/HEAD/PowerShellGac/Gac/Test-AssemblyNameFullyQualified.ps1 -------------------------------------------------------------------------------- /PowerShellGac/Gac/Test-GacAssemblyInstallReferenceCanBeUsed.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LTruijens/powershell-gac/HEAD/PowerShellGac/Gac/Test-GacAssemblyInstallReferenceCanBeUsed.ps1 -------------------------------------------------------------------------------- /PowerShellGac/PowerShellGac.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LTruijens/powershell-gac/HEAD/PowerShellGac/PowerShellGac.sln -------------------------------------------------------------------------------- /PowerShellGac/PowerShellGac.vssscc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LTruijens/powershell-gac/HEAD/PowerShellGac/PowerShellGac.vssscc -------------------------------------------------------------------------------- /PowerShellGac/PowerShellGac/AssemblyCacheFlags.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LTruijens/powershell-gac/HEAD/PowerShellGac/PowerShellGac/AssemblyCacheFlags.cs -------------------------------------------------------------------------------- /PowerShellGac/PowerShellGac/AssemblyCacheUninstallDisposition.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LTruijens/powershell-gac/HEAD/PowerShellGac/PowerShellGac/AssemblyCacheUninstallDisposition.cs -------------------------------------------------------------------------------- /PowerShellGac/PowerShellGac/AssemblyCommitFlags.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LTruijens/powershell-gac/HEAD/PowerShellGac/PowerShellGac/AssemblyCommitFlags.cs -------------------------------------------------------------------------------- /PowerShellGac/PowerShellGac/AssemblyCompareFlags.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LTruijens/powershell-gac/HEAD/PowerShellGac/PowerShellGac/AssemblyCompareFlags.cs -------------------------------------------------------------------------------- /PowerShellGac/PowerShellGac/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LTruijens/powershell-gac/HEAD/PowerShellGac/PowerShellGac/AssemblyInfo.cs -------------------------------------------------------------------------------- /PowerShellGac/PowerShellGac/AssemblyNameDisplayFlags.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LTruijens/powershell-gac/HEAD/PowerShellGac/PowerShellGac/AssemblyNameDisplayFlags.cs -------------------------------------------------------------------------------- /PowerShellGac/PowerShellGac/AssemblyNameExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LTruijens/powershell-gac/HEAD/PowerShellGac/PowerShellGac/AssemblyNameExtensions.cs -------------------------------------------------------------------------------- /PowerShellGac/PowerShellGac/AssemblyNameProperty.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LTruijens/powershell-gac/HEAD/PowerShellGac/PowerShellGac/AssemblyNameProperty.cs -------------------------------------------------------------------------------- /PowerShellGac/PowerShellGac/CreateAssemblyNameObjectFlags.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LTruijens/powershell-gac/HEAD/PowerShellGac/PowerShellGac/CreateAssemblyNameObjectFlags.cs -------------------------------------------------------------------------------- /PowerShellGac/PowerShellGac/ExtensionAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LTruijens/powershell-gac/HEAD/PowerShellGac/PowerShellGac/ExtensionAttribute.cs -------------------------------------------------------------------------------- /PowerShellGac/PowerShellGac/FusionApi.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LTruijens/powershell-gac/HEAD/PowerShellGac/PowerShellGac/FusionApi.cs -------------------------------------------------------------------------------- /PowerShellGac/PowerShellGac/FusionInstallReference.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LTruijens/powershell-gac/HEAD/PowerShellGac/PowerShellGac/FusionInstallReference.cs -------------------------------------------------------------------------------- /PowerShellGac/PowerShellGac/GlobalAssemblyCache.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LTruijens/powershell-gac/HEAD/PowerShellGac/PowerShellGac/GlobalAssemblyCache.cs -------------------------------------------------------------------------------- /PowerShellGac/PowerShellGac/IAssemblyCache.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LTruijens/powershell-gac/HEAD/PowerShellGac/PowerShellGac/IAssemblyCache.cs -------------------------------------------------------------------------------- /PowerShellGac/PowerShellGac/IAssemblyEnum.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LTruijens/powershell-gac/HEAD/PowerShellGac/PowerShellGac/IAssemblyEnum.cs -------------------------------------------------------------------------------- /PowerShellGac/PowerShellGac/IAssemblyName.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LTruijens/powershell-gac/HEAD/PowerShellGac/PowerShellGac/IAssemblyName.cs -------------------------------------------------------------------------------- /PowerShellGac/PowerShellGac/IInstallReference.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LTruijens/powershell-gac/HEAD/PowerShellGac/PowerShellGac/IInstallReference.cs -------------------------------------------------------------------------------- /PowerShellGac/PowerShellGac/IInstallReferenceEnum.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LTruijens/powershell-gac/HEAD/PowerShellGac/PowerShellGac/IInstallReferenceEnum.cs -------------------------------------------------------------------------------- /PowerShellGac/PowerShellGac/InstallReference.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LTruijens/powershell-gac/HEAD/PowerShellGac/PowerShellGac/InstallReference.cs -------------------------------------------------------------------------------- /PowerShellGac/PowerShellGac/InstallReferenceGuid.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LTruijens/powershell-gac/HEAD/PowerShellGac/PowerShellGac/InstallReferenceGuid.cs -------------------------------------------------------------------------------- /PowerShellGac/PowerShellGac/InstallReferenceType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LTruijens/powershell-gac/HEAD/PowerShellGac/PowerShellGac/InstallReferenceType.cs -------------------------------------------------------------------------------- /PowerShellGac/PowerShellGac/NativeMethods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LTruijens/powershell-gac/HEAD/PowerShellGac/PowerShellGac/NativeMethods.cs -------------------------------------------------------------------------------- /PowerShellGac/PowerShellGac/PowerShellGac.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LTruijens/powershell-gac/HEAD/PowerShellGac/PowerShellGac/PowerShellGac.csproj -------------------------------------------------------------------------------- /PowerShellGac/PowerShellGac/PowerShellGac.csproj.vspscc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LTruijens/powershell-gac/HEAD/PowerShellGac/PowerShellGac/PowerShellGac.csproj.vspscc -------------------------------------------------------------------------------- /PowerShellGac/PowerShellGac/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LTruijens/powershell-gac/HEAD/PowerShellGac/PowerShellGac/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /PowerShellGac/PowerShellGac/QueryAssemblyInfoFlags.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LTruijens/powershell-gac/HEAD/PowerShellGac/PowerShellGac/QueryAssemblyInfoFlags.cs -------------------------------------------------------------------------------- /PowerShellGac/PowerShellGac/UninstallResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LTruijens/powershell-gac/HEAD/PowerShellGac/PowerShellGac/UninstallResult.cs -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LTruijens/powershell-gac/HEAD/README.md -------------------------------------------------------------------------------- /Remove-GacAssembly.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LTruijens/powershell-gac/HEAD/Remove-GacAssembly.md -------------------------------------------------------------------------------- /Test-AssemblyNameFullyQualified.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LTruijens/powershell-gac/HEAD/Test-AssemblyNameFullyQualified.md -------------------------------------------------------------------------------- /Test-GacAssemblyInstallReferenceCanBeUsed.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LTruijens/powershell-gac/HEAD/Test-GacAssemblyInstallReferenceCanBeUsed.md --------------------------------------------------------------------------------