From af476b4cc4357abdfb2a9e1ec46677addf2f1c0e Mon Sep 17 00:00:00 2001 From: WizzardMaker Date: Tue, 3 Dec 2024 13:30:45 +0100 Subject: [PATCH] added sister projects to visible internals in SDL3-CS --- SDL3-CS/Properties/AssemblyInfo.cs | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/SDL3-CS/Properties/AssemblyInfo.cs b/SDL3-CS/Properties/AssemblyInfo.cs index 4fabb01..1572169 100644 --- a/SDL3-CS/Properties/AssemblyInfo.cs +++ b/SDL3-CS/Properties/AssemblyInfo.cs @@ -4,3 +4,7 @@ using System.Runtime.CompilerServices; [assembly: InternalsVisibleTo("SDL3-CS.Tests")] + +// Allow access to internal CodeGen members (e.g. NativeTypeNameAttribute, etc.) for SDL sister projects: +[assembly: InternalsVisibleTo("SDL3_ttf-CS")] +[assembly: InternalsVisibleTo("SDL3_image-CS")]