单元测试去掉net462,xunit对它的支持有些问题,导致测试结束时卡死
石头 authored at 2024-11-24 23:18:00
332.00 B
X
#if NETFRAMEWORK || NETSTANDARD || NETCOREAPP3_1
using System.ComponentModel;

namespace System.Runtime.CompilerServices;

/// <summary>保留供编译器用于跟踪元数据。 开发人员不应在源代码中使用此类。</summary>
[EditorBrowsable(EditorBrowsableState.Never)]
public static class IsExternalInit
{
}
#endif