From e45e5db94b3c7847d5d11cb20c8e2768dc92c040 Mon Sep 17 00:00:00 2001 From: Jeremy Koritzinsky Date: Wed, 5 Apr 2023 22:23:20 -0700 Subject: [PATCH] Disable nullability checks in file shared between the managed type system and ILVerificationTests (#84382) This file is shared between the managed type system and the ILVerificationTests suite. The managed type system doesn't have nullable checks turned on, but ILVerificationTests does. This was causing build failures in PRs that build the ILVerificationTests. We should enable nullable checking in the future in the managed type system as a whole at some point, but we aren't there yet. --- .../Common/TypeSystem/Common/Utilities/CustomAttributeTypeNameParser.cs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/coreclr/tools/Common/TypeSystem/Common/Utilities/CustomAttributeTypeNameParser.cs b/src/coreclr/tools/Common/TypeSystem/Common/Utilities/CustomAttributeTypeNameParser.cs index 42744c7..a52a68f 100644 --- a/src/coreclr/tools/Common/TypeSystem/Common/Utilities/CustomAttributeTypeNameParser.cs +++ b/src/coreclr/tools/Common/TypeSystem/Common/Utilities/CustomAttributeTypeNameParser.cs @@ -7,6 +7,8 @@ using System.Text; using Internal.TypeSystem; +#nullable disable + namespace Internal.TypeSystem { public static class CustomAttributeTypeNameParser -- 2.7.4