From 9e7cdd95e0bb1f67e3fbd8852aad53a0c3ec10ae Mon Sep 17 00:00:00 2001
From: "github-actions[bot]"
<41898282+github-actions[bot]@users.noreply.github.com>
Date: Fri, 12 Jun 2026 02:04:54 +0000
Subject: [PATCH 1/2] Add RequiresProcessIsolation to ByRefLike/Validate.csproj
for minifullaot
The test was failing in the minifullaot build because the merged test
runner included Validate.cs but not the InvalidCSharp.ilproj reference
(which is correctly excluded via DisableProjectBuild). Adding
RequiresProcessIsolation ensures the project is built standalone, so
DisableProjectBuild properly excludes it from the minifullaot build.
This matches the pattern of the sibling ValidateNegative.csproj which
already has RequiresProcessIsolation for the same reason.
Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
---
src/tests/Loader/classloader/generics/ByRefLike/Validate.csproj | 2 ++
1 file changed, 2 insertions(+)
diff --git a/src/tests/Loader/classloader/generics/ByRefLike/Validate.csproj b/src/tests/Loader/classloader/generics/ByRefLike/Validate.csproj
index a1b5c8740e939e..91ae3c13a36326 100644
--- a/src/tests/Loader/classloader/generics/ByRefLike/Validate.csproj
+++ b/src/tests/Loader/classloader/generics/ByRefLike/Validate.csproj
@@ -2,6 +2,8 @@
true
+
+ true
From 2352af5fce7a3d6a4619954e8ec56354f10bb646 Mon Sep 17 00:00:00 2001
From: "github-actions[bot]"
Date: Fri, 12 Jun 2026 02:04:58 +0000
Subject: [PATCH 2/2] ci: trigger checks