Replace usages of NET5_0 preprocessor with NET5_0_OR_GREATER

This commit is contained in:
Pieter-Jan Briers
2021-08-22 11:07:57 +02:00
parent da26e86f5e
commit ef7ef3ca9f
4 changed files with 4 additions and 4 deletions

View File

@@ -6,6 +6,6 @@
[assembly: InternalsVisibleTo("DynamicProxyGenAssembly2")]
[assembly: InternalsVisibleTo("Robust.Benchmarks")]
#if NET5_0
#if NET5_0_OR_GREATER
[module: SkipLocalsInit]
#endif

View File

@@ -4,6 +4,6 @@
[assembly: InternalsVisibleTo("DynamicProxyGenAssembly2")]
[assembly: InternalsVisibleTo("Robust.Benchmarks")]
#if NET5_0
#if NET5_0_OR_GREATER
[module: SkipLocalsInit]
#endif

View File

@@ -1,6 +1,6 @@
using System.Runtime.CompilerServices;
#if NET5_0
#if NET5_0_OR_GREATER
[module: SkipLocalsInit]
#endif

View File

@@ -13,6 +13,6 @@
[assembly: InternalsVisibleTo("Robust.Benchmarks")]
[assembly: InternalsVisibleTo("Robust.Client.CEF")]
#if NET5_0
#if NET5_0_OR_GREATER
[module: SkipLocalsInit]
#endif