mirror of
https://github.com/space-wizards/RobustToolbox.git
synced 2026-02-15 03:30:53 +01:00
17 lines
675 B
C#
17 lines
675 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("Content.Benchmarks")]
|
|
|
|
#if NET5_0
|
|
[module: SkipLocalsInit]
|
|
#endif
|