35 lines
1.1 KiB
C#
35 lines
1.1 KiB
C#
using System.Collections.Immutable;
|
|
|
|
namespace RobotNet10.RobotApp.Script.Shared;
|
|
|
|
public class RobotAppScriptEngineResource
|
|
{
|
|
public static readonly Type GlobalType = typeof(IRobotAppScriptGlobals);
|
|
|
|
public static readonly ImmutableArray<string> UsingNamespaces = [
|
|
"System",
|
|
"System.Collections.Generic",
|
|
"System.Threading",
|
|
"System.Threading.Tasks",
|
|
"System.Runtime.CompilerServices",
|
|
"RobotNet10.RobotApp.Script",
|
|
"RobotNet10.Script",
|
|
];
|
|
|
|
public static readonly ImmutableArray<string> Modules = [
|
|
"System.Runtime",
|
|
"System.Collections",
|
|
"System.Private.CoreLib",
|
|
"RobotNet10.RobotApp.Script",
|
|
"RobotNet10.Script",
|
|
];
|
|
|
|
public static readonly ImmutableArray<string> DocModules = [
|
|
"System.Runtime.xml",
|
|
"System.Collections.xml",
|
|
//"System.Private.CoreLib.xml",
|
|
"RobotNet10.RobotApp.Script.xml",
|
|
"RobotNet10.Script.xml",
|
|
];
|
|
}
|