From b0f358247e9e8cd075206f7a5c77b547bb34c3d7 Mon Sep 17 00:00:00 2001 From: ds5678 <49847914+ds5678@users.noreply.github.com> Date: Mon, 28 Apr 2025 20:23:39 -0700 Subject: [PATCH] `NET60` instead of `!NET40` --- .../Pretty/GloballyQualifiedTypeInStringInterpolation.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ICSharpCode.Decompiler.Tests/TestCases/Pretty/GloballyQualifiedTypeInStringInterpolation.cs b/ICSharpCode.Decompiler.Tests/TestCases/Pretty/GloballyQualifiedTypeInStringInterpolation.cs index 0759a9e51..78af64e56 100644 --- a/ICSharpCode.Decompiler.Tests/TestCases/Pretty/GloballyQualifiedTypeInStringInterpolation.cs +++ b/ICSharpCode.Decompiler.Tests/TestCases/Pretty/GloballyQualifiedTypeInStringInterpolation.cs @@ -4,7 +4,7 @@ { public static string Root => $"Prefix {(global::System.DateTime.Now)} suffix"; public static string Cast => $"Prefix {((int)global::System.DateTime.Now.Ticks)} suffix"; -#if CS100 && !NET40 +#if CS100 && NET60 public static string Lambda1 => $"Prefix {(() => global::System.DateTime.Now)} suffix"; #else public static string Lambda1 => $"Prefix {(global::System.Func)(() => global::System.DateTime.Now)} suffix";