-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathScript.cs
30 lines (26 loc) · 833 Bytes
/
Script.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
using System;
using System.Collections.Generic;
using System.Linq;
using System.Reflection;
using System.Text;
using System.Threading.Tasks;
using Microsoft.CodeAnalysis.CSharp.Scripting;
using Microsoft.CodeAnalysis.Scripting;
namespace EvalUITest
{
class Script
{
ScriptState state;
public static async Task<Script> Create(IEnumerable<Assembly> references, IEnumerable<string> usings)
{
var options = ScriptOptions.Default.WithReferences(references).WithImports(usings);
var state = await CSharpScript.RunAsync("", options);
return new Script() { state = state };
}
public async Task<object> ExecuteNext(string code)
{
state = await state.ContinueWithAsync(code);
return state.ReturnValue;
}
}
}