mirror of
https://github.com/space-wizards/RobustToolbox.git
synced 2026-02-15 03:30:53 +01:00
13 lines
276 B
C#
13 lines
276 B
C#
using System.Runtime.CompilerServices;
|
|
|
|
#if NET5_0_OR_GREATER
|
|
[module: SkipLocalsInit]
|
|
#endif
|
|
|
|
[assembly: InternalsVisibleTo("Robust.Client")]
|
|
[assembly: InternalsVisibleTo("Robust.UnitTesting")]
|
|
|
|
#if DEVELOPMENT
|
|
[assembly: InternalsVisibleTo("Content.Benchmarks")]
|
|
#endif
|