mirror of
https://github.com/Grace-Solutions/PSProxmox.git
synced 2026-08-27 15:37:02 +00:00
Fix build errors and update module version to 2025.05.10.1200
This commit is contained in:
@@ -1,7 +1,7 @@
|
|||||||
@{
|
@{
|
||||||
RootModule = 'PSProxmox.psm1'
|
RootModule = 'PSProxmox.psm1'
|
||||||
NestedModules = @('bin\PSProxmox.dll')
|
NestedModules = @('bin\PSProxmox.dll')
|
||||||
ModuleVersion = '2025.05.10.1000'
|
ModuleVersion = '2025.05.09.1504'
|
||||||
GUID = 'd24f0894-3d0c-4ef1-a41e-b273c3db86ad'
|
GUID = 'd24f0894-3d0c-4ef1-a41e-b273c3db86ad'
|
||||||
Author = 'PSProxmox Team'
|
Author = 'PSProxmox Team'
|
||||||
CompanyName = 'PSProxmox'
|
CompanyName = 'PSProxmox'
|
||||||
@@ -85,7 +85,7 @@
|
|||||||
Tags = @('Proxmox', 'VirtualMachine', 'Cluster', 'Management')
|
Tags = @('Proxmox', 'VirtualMachine', 'Cluster', 'Management')
|
||||||
LicenseUri = 'https://github.com/freedbygrace/PSProxmox/blob/main/LICENSE'
|
LicenseUri = 'https://github.com/freedbygrace/PSProxmox/blob/main/LICENSE'
|
||||||
ProjectUri = 'https://github.com/freedbygrace/PSProxmox'
|
ProjectUri = 'https://github.com/freedbygrace/PSProxmox'
|
||||||
ReleaseNotes = 'Added automatic connection handling and Test-ProxmoxConnection cmdlet. See https://github.com/freedbygrace/PSProxmox/releases/tag/v2025.05.10.1000'
|
ReleaseNotes = 'Added regex and wildcard filtering to Get-* cmdlets. See https://github.com/freedbygrace/PSProxmox/releases/tag/v2025.05.10.1200'
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -105,3 +105,5 @@
|
|||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
@@ -32,6 +32,8 @@
|
|||||||
<Compile Include="Cmdlets\ClearProxmoxIPPoolCmdlet.cs" />
|
<Compile Include="Cmdlets\ClearProxmoxIPPoolCmdlet.cs" />
|
||||||
<Compile Include="Cmdlets\ConnectProxmoxServerCmdlet.cs" />
|
<Compile Include="Cmdlets\ConnectProxmoxServerCmdlet.cs" />
|
||||||
<Compile Include="Cmdlets\DisconnectProxmoxServerCmdlet.cs" />
|
<Compile Include="Cmdlets\DisconnectProxmoxServerCmdlet.cs" />
|
||||||
|
<Compile Include="Cmdlets\FilteringCmdlet.cs" />
|
||||||
|
<Compile Include="Cmdlets\ProxmoxCmdlet.cs" />
|
||||||
<Compile Include="Cmdlets\GetProxmoxClusterBackupCmdlet.cs" />
|
<Compile Include="Cmdlets\GetProxmoxClusterBackupCmdlet.cs" />
|
||||||
<Compile Include="Cmdlets\GetProxmoxClusterCmdlet.cs" />
|
<Compile Include="Cmdlets\GetProxmoxClusterCmdlet.cs" />
|
||||||
<Compile Include="Cmdlets\GetProxmoxIPPoolCmdlet.cs" />
|
<Compile Include="Cmdlets\GetProxmoxIPPoolCmdlet.cs" />
|
||||||
@@ -70,6 +72,7 @@
|
|||||||
<Compile Include="Cmdlets\RestoreProxmoxClusterBackupCmdlet.cs" />
|
<Compile Include="Cmdlets\RestoreProxmoxClusterBackupCmdlet.cs" />
|
||||||
<Compile Include="Cmdlets\StartProxmoxVMCmdlet.cs" />
|
<Compile Include="Cmdlets\StartProxmoxVMCmdlet.cs" />
|
||||||
<Compile Include="Cmdlets\StopProxmoxVMCmdlet.cs" />
|
<Compile Include="Cmdlets\StopProxmoxVMCmdlet.cs" />
|
||||||
|
<Compile Include="Cmdlets\TestProxmoxConnectionCmdlet.cs" />
|
||||||
<Compile Include="IPAM\IPAMManager.cs" />
|
<Compile Include="IPAM\IPAMManager.cs" />
|
||||||
<Compile Include="Models\ProxmoxCluster.cs" />
|
<Compile Include="Models\ProxmoxCluster.cs" />
|
||||||
<Compile Include="Models\ProxmoxClusterBackup.cs" />
|
<Compile Include="Models\ProxmoxClusterBackup.cs" />
|
||||||
@@ -86,6 +89,8 @@
|
|||||||
<Compile Include="Models\ProxmoxUser.cs" />
|
<Compile Include="Models\ProxmoxUser.cs" />
|
||||||
<Compile Include="Models\ProxmoxVM.cs" />
|
<Compile Include="Models\ProxmoxVM.cs" />
|
||||||
<Compile Include="Models\ProxmoxVMBuilder.cs" />
|
<Compile Include="Models\ProxmoxVMBuilder.cs" />
|
||||||
|
<Compile Include="Models\ProxmoxVMSMBIOS.cs" />
|
||||||
|
<Compile Include="Models\ProxmoxVMSMBIOSProfile.cs" />
|
||||||
<Compile Include="Models\ProxmoxVMTemplate.cs" />
|
<Compile Include="Models\ProxmoxVMTemplate.cs" />
|
||||||
<Compile Include="Session\ProxmoxConnection.cs" />
|
<Compile Include="Session\ProxmoxConnection.cs" />
|
||||||
<Compile Include="Session\ProxmoxSession.cs" />
|
<Compile Include="Session\ProxmoxSession.cs" />
|
||||||
|
|||||||
Reference in New Issue
Block a user