From fdaf828b651f0cf11fc36f66fea7100615306b5a Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sat, 1 Aug 2026 08:36:31 +0000 Subject: [PATCH 1/3] Bump the minor-dependencies group with 1 update Bumps Meziantou.Analyzer from 3.0.98 to 3.0.138 --- updated-dependencies: - dependency-name: Meziantou.Analyzer dependency-version: 3.0.138 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: minor-dependencies ... Signed-off-by: dependabot[bot] --- Directory.Build.props | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Directory.Build.props b/Directory.Build.props index c275165..ff641c1 100644 --- a/Directory.Build.props +++ b/Directory.Build.props @@ -36,7 +36,7 @@ all runtime; build; native; contentfiles; analyzers; buildtransitive - + all runtime; build; native; contentfiles; analyzers; buildtransitive From 4dbdc6495332d68d453bc856bb5ae441ad1e4049 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Sat, 1 Aug 2026 11:02:09 +0000 Subject: [PATCH 2/3] Fix MA0074: use StringComparison.Ordinal in Contains call --- src/Reflectify/Reflectify.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Reflectify/Reflectify.cs b/src/Reflectify/Reflectify.cs index 40ef345..e4d3ab7 100644 --- a/src/Reflectify/Reflectify.cs +++ b/src/Reflectify/Reflectify.cs @@ -251,7 +251,7 @@ public static bool IsTuple(this Type type) /// public static bool IsAnonymous(this Type type) { - if (!type.FullName!.Contains("AnonymousType")) + if (!type.FullName!.Contains("AnonymousType", StringComparison.Ordinal)) { return false; } From 2fac50bb0b1a5dba3319ed8c83be94f0285b6f47 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Mon, 10 Aug 2026 12:20:09 +0000 Subject: [PATCH 3/3] Fix Contains with StringComparison not supported on netstandard2.0/net47 Co-authored-by: dennisdoomen <572734+dennisdoomen@users.noreply.github.com> --- src/Reflectify/Reflectify.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Reflectify/Reflectify.cs b/src/Reflectify/Reflectify.cs index e4d3ab7..9a84871 100644 --- a/src/Reflectify/Reflectify.cs +++ b/src/Reflectify/Reflectify.cs @@ -251,7 +251,7 @@ public static bool IsTuple(this Type type) /// public static bool IsAnonymous(this Type type) { - if (!type.FullName!.Contains("AnonymousType", StringComparison.Ordinal)) + if (type.FullName!.IndexOf("AnonymousType", StringComparison.Ordinal) < 0) { return false; }