mirror of
https://github.com/kwsch/PKHeX
synced 2024-12-25 20:03:12 +00:00
59fad0e8cf
Extract some logic (origin markings) Revise directives for NET7 targeting, remove old net5 refs
15 lines
392 B
C#
15 lines
392 B
C#
#if !NET6_0_OR_GREATER
|
|
using System.Diagnostics;
|
|
using System.Diagnostics.CodeAnalysis;
|
|
|
|
namespace System.Runtime.CompilerServices;
|
|
|
|
/// <summary>
|
|
/// Reserved to be used by the compiler for tracking metadata.
|
|
/// This class should not be used by developers in source code.
|
|
/// </summary>
|
|
[ExcludeFromCodeCoverage, DebuggerNonUserCode]
|
|
internal static class IsExternalInit
|
|
{
|
|
}
|
|
#endif
|