Skip to content

Commit

Permalink
add decimal support to powershell (#10486)
Browse files Browse the repository at this point in the history
  • Loading branch information
wing328 authored Sep 28, 2021
1 parent 51d468e commit 334b18a
Showing 1 changed file with 1 addition and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -515,6 +515,7 @@ public PowerShellClientCodegen() {
typeMapping.put("long", "Int64");
typeMapping.put("double", "Double");
typeMapping.put("number", "Decimal");
typeMapping.put("decimal", "Decimal");
typeMapping.put("object", "System.Collections.Hashtable");
typeMapping.put("file", "System.IO.FileInfo");
typeMapping.put("ByteArray", "System.Byte[]");
Expand Down

0 comments on commit 334b18a

Please sign in to comment.