SteveL-MSFT / PowerShellGet

PowerShellGet is the package manager for PowerShell

Home Page:https://www.powershellgallery.com/packages/PowerShellGet

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

License Documentation - PowerShellGet PowerShell Gallery - PowerShellGet Minimum Supported PowerShell Version

Important Note

This version of PowerShellGet is currently under development and is not feature complete. As a result, we are currently not accepting PRs to this repository. Please open an issue for any feature requests, bug reports, or questions for PowerShellGet version 3.0 (currently available as a preview release). Please note, the repository for previous versions of PowerShellGet has a new location at PowerShell/PowerShellGetv2.

Introduction

PowerShellGet is a PowerShell module with commands for discovering, installing, updating and publishing the PowerShell artifacts like Modules, DSC Resources, Role Capabilities and Scripts.

PowerShellGet module is also integrated with the PackageManagement module as a provider, users can also use the PackageManagement cmdlets for discovering, installing and updating the PowerShell artifacts like Modules and Scripts.

Documentation

Documentation for PowerShellGet 3.0 has not yet been published, please Click here to reference the documentation for previous versions of PowerShellGet.

Requirements

  • Windows PowerShell 5.0 or newer.
  • PowerShell Core.

Get PowerShellGet Module

Please refer to our documentation for the up-to-date version on how to get the PowerShellGet Module.

Get PowerShellGet Source

Steps

cd path/to/PowerShellGet/src
  • Build the project
dotnet publish --framework netstandard2.0
dotnet publish --framework net472
  • Import the module
# If running PowerShell 6+
Import-Module .\bin\Debug\netstandard2.0\publish\PowerShellGet.dll

# if running Windows PowerShell
Import-Module .\bin\Debug\netstandard2.0\publish\PowerShellGet.dll

About

PowerShellGet is the package manager for PowerShell

https://www.powershellgallery.com/packages/PowerShellGet

License:MIT License


Languages

Language:C# 61.6%Language:PowerShell 38.4%