mirror of
https://github.com/Grace-Solutions/PSProxmox.git
synced 2026-08-29 08:27:08 +00:00
Build PSProxmox.dll and fix compilation issues
This commit is contained in:
@@ -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}");
|
||||
|
||||
Reference in New Issue
Block a user