Build PSProxmox.dll and fix compilation issues

This commit is contained in:
Alphaeus Mote
2025-04-28 14:35:22 -04:00
parent 2385442c83
commit 7889ba2f97
9 changed files with 244 additions and 12 deletions
+2 -2
View File
@@ -73,7 +73,7 @@ namespace PSProxmox.Cmdlets
/// <para type="description">Additional parameters for the storage.</para>
/// </summary>
[Parameter(Mandatory = false)]
public Hashtable AdditionalParameters { get; set; }
public Dictionary<string, string> AdditionalParameters { get; set; }
/// <summary>
/// Processes the cmdlet.
@@ -119,7 +119,7 @@ namespace PSProxmox.Cmdlets
}
// Create the storage
string createResponse = client.Post("storage", parameters);
client.Post("storage", parameters);
// Get the created storage
string storageResponse = client.Get($"storage/{Name}");