mirror of
https://github.com/kwsch/PKHeX
synced 2024-11-30 07:50:32 +00:00
6d030831ab
Add FrameworkUtil.cs which is compiled if the build isn't net5+, needed to support init setters & records
21 lines
504 B
C#
21 lines
504 B
C#
#if !NET5
|
|
#pragma warning disable
|
|
// ReSharper disable once UnusedType.Global
|
|
|
|
namespace System.Runtime.CompilerServices
|
|
{
|
|
using Diagnostics;
|
|
using Diagnostics.CodeAnalysis;
|
|
|
|
/// <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]
|
|
#endif
|
|
internal static class IsExternalInit
|
|
{
|
|
}
|
|
}
|
|
|
|
#pragma warning restore
|