Browse Source

`NET60` instead of `!NET40`

pull/3463/head
ds5678 2 months ago
parent
commit
b0f358247e
  1. 2
      ICSharpCode.Decompiler.Tests/TestCases/Pretty/GloballyQualifiedTypeInStringInterpolation.cs

2
ICSharpCode.Decompiler.Tests/TestCases/Pretty/GloballyQualifiedTypeInStringInterpolation.cs

@ -4,7 +4,7 @@ @@ -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>)(() => global::System.DateTime.Now)} suffix";

Loading…
Cancel
Save