Skip to content

Commit

Permalink
Minimum version requirement for Powershell updated to 6.0
Browse files Browse the repository at this point in the history
  • Loading branch information
franklupo committed Mar 2, 2024
1 parent 99b8b5a commit b9fff80
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Corsinvest.ProxmoxVE.Api/Corsinvest.ProxmoxVE.Api.psd1
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
#
# Generated by: Daniele Corsini
#
# Generated on: 13/02/2024
# Generated on: 02/03/2024
#

@{
Expand All @@ -12,7 +12,7 @@
RootModule = 'Corsinvest.ProxmoxVE.Api.psm1'

# Version number of this module.
ModuleVersion = '8.1.1'
ModuleVersion = '8.1.2'

# Supported PSEditions
# CompatiblePSEditions = @()
Expand Down
2 changes: 2 additions & 0 deletions Corsinvest.ProxmoxVE.Api/Corsinvest.ProxmoxVE.Api.psm1
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
# SPDX-FileCopyrightText: Copyright Corsinvest Srl
# SPDX-License-Identifier: GPL-3.0-only

#Requires -Version 6.0

class PveValidateVmId : System.Management.Automation.IValidateSetValuesGenerator {
[string[]] GetValidValues() { return Get-PveVm | Select-Object -ExpandProperty vmid }
}
Expand Down
4 changes: 4 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -83,6 +83,10 @@ this is a CmdLet for PowerShell to manage Proxmox VE.

[Tutorial interactive in VSCode notebook](https://tinyurl.com/cv4pve-api-pwsh-learn)

## Requirement

Minimum version requirement for Powershell is 6.0

## Installation

Install [PowerShell](https://docs.microsoft.com/en-us/powershell/scripting/install/installing-powershell) in your system.
Expand Down

0 comments on commit b9fff80

Please sign in to comment.