SYSLIB0036:Regex.CompileToAssembly 已过时
从 .NET 7 开始,Regex.CompileToAssembly 方法标记为已过时。 在代码中使用此 API 会在编译时生成警告 SYSLIB0036
。
在 .NET 5、.NET 6 和所有版本的 .NET Core 中,Regex.CompileToAssembly 引发 PlatformNotSupportedException。 在 .NET Framework 中,Regex.CompileToAssembly 允许将正则表达式实例编译为程序集。
解决方法
使用 GeneratedRegexAttribute 属性调用正则表达式源生成器。 在编译时,源生成器会生成特定于正则表达式模式的 API 及其选项。
// This attribute causes the regular expression pattern to be compiled into your assembly,
// which enables it to start up and run more quickly.
[GeneratedRegex("abc|def", RegexOptions.IgnoreCase)]
private static partial Regex MyRegex();
// ...
// Use the regular expression
if (MyRegex().IsMatch(text) { ... }
抑制警告
如果必须使用已过时的 API,可在代码或项目文件中禁止显示警告。
若只想抑制单个冲突,请将预处理器指令添加到源文件以禁用该规则,然后重新启用警告。
// Disable the warning.
#pragma warning disable SYSLIB0036
// Code that uses obsolete API.
// ...
// Re-enable the warning.
#pragma warning restore SYSLIB0036
若要禁止显示项目中的所有 SYSLIB0036
警告,请将属性 <NoWarn>
添加到项目文件。
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
...
<NoWarn>$(NoWarn);SYSLIB0036</NoWarn>
</PropertyGroup>
</Project>
有关详细信息,请参阅取消警告。