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