-
Notifications
You must be signed in to change notification settings - Fork 20
Expand file tree
/
Copy pathAssemblyInfo.cs
More file actions
24 lines (22 loc) · 1.09 KB
/
AssemblyInfo.cs
File metadata and controls
24 lines (22 loc) · 1.09 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
global using System.Diagnostics.CodeAnalysis;
using System.Runtime.CompilerServices;
[assembly: InternalsVisibleTo("BytecodeApi.CommandLineParser")]
[assembly: InternalsVisibleTo("BytecodeApi.ConsoleUI")]
[assembly: InternalsVisibleTo("BytecodeApi.Cryptography")]
[assembly: InternalsVisibleTo("BytecodeApi.CsvParser")]
[assembly: InternalsVisibleTo("BytecodeApi.IniParser")]
[assembly: InternalsVisibleTo("BytecodeApi.LanguageGenerator")]
[assembly: InternalsVisibleTo("BytecodeApi.Lexer")]
[assembly: InternalsVisibleTo("BytecodeApi.Penetration")]
[assembly: InternalsVisibleTo("BytecodeApi.PEParser")]
[assembly: InternalsVisibleTo("BytecodeApi.PEResources")]
[assembly: InternalsVisibleTo("BytecodeApi.Rest")]
[assembly: InternalsVisibleTo("BytecodeApi.Win32")]
[assembly: InternalsVisibleTo("BytecodeApi.Wmi")]
[assembly: InternalsVisibleTo("BytecodeApi.Wpf")]
[assembly: InternalsVisibleTo("BytecodeApi.Wpf.Cui")]
#if DEBUG
[assembly: InternalsVisibleTo("Playground.Console")]
[assembly: InternalsVisibleTo("Playground.Wpf")]
[assembly: InternalsVisibleTo("Playground.Wpf.Cui")]
#endif