Initial commit
This commit is contained in:
@@ -0,0 +1,34 @@
|
||||
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",
|
||||
];
|
||||
}
|
||||
Reference in New Issue
Block a user