File tree 2 files changed +35
-1
lines changed
2 files changed +35
-1
lines changed Original file line number Diff line number Diff line change 1
1
2
2
@ {
3
3
RootModule = ' DLLInfo.psm1'
4
- ModuleVersion = ' 1.0'
4
+ ModuleVersion = ' 1.0.0 '
5
5
GUID = ' cf990a96-889f-4c16-9681-d92c592be539'
6
6
Author = ' Alan Plocieniak'
7
7
CompanyName = ' Alan Plocieniak'
Original file line number Diff line number Diff line change
1
+ # DLLInfo
2
+
3
+ This is a PowerShell module for reading DLLs information.
4
+
5
+ It can be used to find out what's the build configuration, target CPU and more.
6
+
7
+
8
+ # Installation
9
+ Module is available on [ Powershell Gallery] [ gallery ]
10
+
11
+ ### Install
12
+ ``` powershell
13
+ PS> Install-Module -Name DLLInfo
14
+ ```
15
+
16
+ ### Import
17
+ ``` powershell
18
+ PS> Import-Module DLLInfo
19
+ ```
20
+ # Usage
21
+
22
+
23
+ ``` powershell
24
+ PS> Get-BuildConfiguration "C:\dll\SiteMetadata.dll"
25
+ Release
26
+
27
+ PS> Get-TargetCPU "C:\dll\SiteMetadata.dll"
28
+ AnyCPU
29
+
30
+ PS> Get-JitOptimized "C:\dll\SiteMetadata.dll"
31
+ True
32
+ ```
33
+
34
+ [ gallery ] : https://www.powershellgallery.com/packages/DLLInfo
You can’t perform that action at this time.
0 commit comments