Skip to content

PowerShell module for gathering information about DLL

License

Notifications You must be signed in to change notification settings

PowerShellLibrary/DLLInfo

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

7 Commits
 
 
 
 
 
 
 
 

Repository files navigation

DLLInfo

This is a PowerShell module for reading DLLs information.

It can be used to find out what's the build configuration, target CPU and more.

Installation

Module is available on Powershell Gallery

Install

PS> Install-Module -Name DLLInfo

Import

PS> Import-Module DLLInfo

Usage

PS> Get-BuildConfiguration "C:\dll\SiteMetadata.dll"
Release

PS> Get-TargetCPU "C:\dll\SiteMetadata.dll"
AnyCPU

PS> Get-JitOptimized "C:\dll\SiteMetadata.dll"
True