mirror of
https://github.com/space-wizards/RobustToolbox.git
synced 2026-02-14 19:29:36 +01:00
23 lines
869 B
C#
23 lines
869 B
C#
using System.Runtime.CompilerServices;
|
|
|
|
// The following allows another friend assembly access to the types marked as internal.
|
|
// SS14 engine assemblies are friends.
|
|
// This way internal is "Content can't touch this".
|
|
[assembly: InternalsVisibleTo("Robust.Server")]
|
|
[assembly: InternalsVisibleTo("Robust.Client")]
|
|
[assembly: InternalsVisibleTo("Robust.Lite")]
|
|
[assembly: InternalsVisibleTo("Robust.UnitTesting")]
|
|
[assembly: InternalsVisibleTo("OpenToolkit.GraphicsLibraryFramework")]
|
|
[assembly: InternalsVisibleTo("DynamicProxyGenAssembly2")] // Gives access to Castle(Moq)
|
|
[assembly: InternalsVisibleTo("Robust.Benchmarks")]
|
|
[assembly: InternalsVisibleTo("Robust.Client.WebView")]
|
|
[assembly: InternalsVisibleTo("Robust.Packaging")]
|
|
|
|
#if NET5_0_OR_GREATER
|
|
[module: SkipLocalsInit]
|
|
#endif
|
|
|
|
#if DEVELOPMENT
|
|
[assembly: InternalsVisibleTo("Content.Benchmarks")]
|
|
#endif
|