@@ -67,7 +67,7 @@ function _WriteOut {
67
67
68
68
# ## Constants
69
69
$ProductVersion = " 1.0.0"
70
- $BuildVersion = " beta6-10393 "
70
+ $BuildVersion = " beta6-10394 "
71
71
$Authors = " Microsoft Open Technologies, Inc."
72
72
73
73
# If the Version hasn't been replaced...
@@ -1299,6 +1299,17 @@ function dnvm-run {
1299
1299
param (
1300
1300
[Parameter (Mandatory = $true , Position = 0 )]
1301
1301
[string ]$VersionOrAlias ,
1302
+
1303
+ [Alias (" arch" )]
1304
+ [ValidateSet (" " , " x86" , " x64" , " arm" )]
1305
+ [Parameter (Mandatory = $false )]
1306
+ [string ]$Architecture = " " ,
1307
+
1308
+ [Alias (" r" )]
1309
+ [ValidateSet (" " , " clr" , " coreclr" )]
1310
+ [Parameter (Mandatory = $false )]
1311
+ [string ]$Runtime = " " ,
1312
+
1302
1313
[Parameter (Mandatory = $false , Position = 1 , ValueFromRemainingArguments = $true )]
1303
1314
[object []]$DnxArguments )
1304
1315
@@ -1329,6 +1340,16 @@ function dnvm-exec {
1329
1340
[string ]$VersionOrAlias ,
1330
1341
[Parameter (Mandatory = $false , Position = 1 )]
1331
1342
[string ]$Command ,
1343
+
1344
+ [Alias (" arch" )]
1345
+ [ValidateSet (" " , " x86" , " x64" , " arm" )]
1346
+ [Parameter (Mandatory = $false )]
1347
+ [string ]$Architecture = " " ,
1348
+
1349
+ [Alias (" r" )]
1350
+ [ValidateSet (" " , " clr" , " coreclr" )]
1351
+ [Parameter (Mandatory = $false )]
1352
+ [string ]$Runtime = " " ,
1332
1353
[Parameter (Mandatory = $false , Position = 2 , ValueFromRemainingArguments = $true )]
1333
1354
[object []]$Arguments )
1334
1355
0 commit comments