Skip to content

Commit 5b9dcec

Browse files
committed
Added README.md
1 parent f26eb9c commit 5b9dcec

File tree

2 files changed

+35
-1
lines changed

2 files changed

+35
-1
lines changed

DLLInfo/DLLInfo.psd1

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11

22
@{
33
RootModule = 'DLLInfo.psm1'
4-
ModuleVersion = '1.0'
4+
ModuleVersion = '1.0.0'
55
GUID = 'cf990a96-889f-4c16-9681-d92c592be539'
66
Author = 'Alan Plocieniak'
77
CompanyName = 'Alan Plocieniak'

README.md

+34
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
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

0 commit comments

Comments
 (0)