mirror of
https://github.com/space-wizards/RobustToolbox.git
synced 2026-02-14 19:29:36 +01:00
10 lines
245 B
C#
10 lines
245 B
C#
using System.Runtime.CompilerServices;
|
|
|
|
[assembly: InternalsVisibleTo("Robust.UnitTesting")]
|
|
[assembly: InternalsVisibleTo("Robust.Lite")]
|
|
[assembly: InternalsVisibleTo("DynamicProxyGenAssembly2")]
|
|
|
|
#if NET5_0
|
|
[module: SkipLocalsInit]
|
|
#endif
|