Skip to content

Instantly share code, notes, and snippets.

@bielawb
Last active April 24, 2020 20:50
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save bielawb/8e802af94444dbed05e1a530a3f0d66e to your computer and use it in GitHub Desktop.
Save bielawb/8e802af94444dbed05e1a530a3f0d66e to your computer and use it in GitHub Desktop.
Manifest modułu po drobnym liftingu.
@{
# Plik w którym definiowane będą nasze funkcje.
RootModule = 'PowerShellPL.psm1'
# Wersja naszego modułu.
ModuleVersion = '1.0.0'
# Unikalny identyfikator.
GUID = '2909cfd3-3dde-43f7-b210-bb2943485681'
# Coś o tfórcy...
Author = 'Bartek Bielawski'
CompanyName = 'PowerShellPL.NET'
Copyright = '(c) 2020 Bartek Bielawski. All rights reserved.'
# Opis naszego modułu.
Description = 'Demo na potrzeby bloga'
# Eksportujemy... póki co wielkie nic.
FunctionsToExport = @()
CmdletsToExport = @()
VariablesToExport = @()
AliasesToExport = @()
PrivateData = @{
PSData = @{
# Tagi - pomogą w szukaniu modułu
Tags = @(
'Demo'
)
# Linki rozmaite...
LicenseUri = 'https://opensource.org/licenses/MIT'
ProjectUri = 'https://github.com/bielawb/PowerShellPL'
IconUri = 'https://powershellpl.files.wordpress.com/2020/04/powershellpl.png'
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment