@@ -43,9 +43,9 @@ public SettingsViewModel()
4343 {
4444 PathToLocalCoreClr = Settings . Default . PathToCoreCLR_V9 ;
4545 ShowAsmComments = Settings . Default . ShowAsmComments_V9 ;
46- CustomEnvVars = Settings . Default . CustomEnvVars3_V13 . Replace ( ";;" , Environment . NewLine ) ;
47- Crossgen2Args = Settings . Default . CrossgenArgs_V5 ;
48- IlcArgs = Settings . Default . IlcArgs_V4 . Replace ( ";;" , Environment . NewLine ) ;
46+ CustomEnvVars = Settings . Default . CustomEnvVars3_V14 . Replace ( ";;" , Environment . NewLine ) ;
47+ Crossgen2Args = Settings . Default . CrossgenArgs_V6 ;
48+ IlcArgs = Settings . Default . IlcArgs_V6 . Replace ( ";;" , Environment . NewLine ) ;
4949 JitDumpInsteadOfDisasm = Settings . Default . JitDumpInsteadOfDisasm_V9 ;
5050 UseDotnetBuildForReload = Settings . Default . UseDotnetBuildForReload_V9 ;
5151 RunAppMode = Settings . Default . RunAppMode_V9 ;
@@ -381,7 +381,7 @@ public string CustomEnvVars
381381 set
382382 {
383383 Set ( ref _customEnvVars , value ) ;
384- Settings . Default . CustomEnvVars3_V13 = value ;
384+ Settings . Default . CustomEnvVars3_V14 = value ;
385385 Settings . Default . Save ( ) ;
386386 }
387387 }
@@ -392,7 +392,7 @@ public string Crossgen2Args
392392 set
393393 {
394394 Set ( ref _crossgen2Args , value ) ;
395- Settings . Default . CrossgenArgs_V5 = value ;
395+ Settings . Default . CrossgenArgs_V6 = value ;
396396 Settings . Default . Save ( ) ;
397397 }
398398 }
@@ -403,7 +403,7 @@ public string IlcArgs
403403 set
404404 {
405405 Set ( ref _ilcArgs , value ) ;
406- Settings . Default . IlcArgs_V4 = value ;
406+ Settings . Default . IlcArgs_V6 = value ;
407407 Settings . Default . Save ( ) ;
408408 }
409409 }
0 commit comments