From 3ed1055bdf4454ce2c55fe141456578a14927cc0 Mon Sep 17 00:00:00 2001 From: Siegfried Pammer Date: Sun, 23 Aug 2020 17:08:28 +0200 Subject: [PATCH] Fix build. --- ICSharpCode.Decompiler.Tests/UglyTestRunner.cs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/ICSharpCode.Decompiler.Tests/UglyTestRunner.cs b/ICSharpCode.Decompiler.Tests/UglyTestRunner.cs index db5f8c4da..8a8ce9559 100644 --- a/ICSharpCode.Decompiler.Tests/UglyTestRunner.cs +++ b/ICSharpCode.Decompiler.Tests/UglyTestRunner.cs @@ -95,7 +95,8 @@ namespace ICSharpCode.Decompiler.Tests public void NoForEachStatement([ValueSource(nameof(defaultOptions))] CompilerOptions cscOptions) { RunForLibrary(cscOptions: cscOptions, decompilerSettings: new DecompilerSettings { - ForEachStatement = false + ForEachStatement = false, + UseEnhancedUsing = false, }); }