ZjzMisaka.RoslynScriptRunner
1.5.4
dotnet add package ZjzMisaka.RoslynScriptRunner --version 1.5.4
NuGet\Install-Package ZjzMisaka.RoslynScriptRunner -Version 1.5.4
<PackageReference Include="ZjzMisaka.RoslynScriptRunner" Version="1.5.4" />
paket add ZjzMisaka.RoslynScriptRunner --version 1.5.4
#r "nuget: ZjzMisaka.RoslynScriptRunner, 1.5.4"
// Install ZjzMisaka.RoslynScriptRunner as a Cake Addin #addin nuget:?package=ZjzMisaka.RoslynScriptRunner&version=1.5.4 // Install ZjzMisaka.RoslynScriptRunner as a Cake Tool #tool nuget:?package=ZjzMisaka.RoslynScriptRunner&version=1.5.4
RoslynScriptRunner
<img src="https://www.nuget.org/Content/gallery/img/logo-header.svg?sanitize=true" height="30px">
Enables runtime execution of C#/VB.NET scripts without pre-compilation. Supports Func delegate generation, DLLs, flexible run options, and async capabilities.
Download
RoslynScriptRunner is available as Nuget Package now.
Getting started
Hello World
string codeHelloWorld = @"
using System;
class Run
{
public void Main()
{
Console.WriteLine(""Hello World"");
}
}
";
RoslynScriptRunner.ScriptRunner.Run(codeHelloWorld); // Hello World
If you want to hold an InstanceObject
string codeStatic = @"
using System;
public static class Run
{
public static int count = 1;
public static void Main()
{
Console.WriteLine(""Hello World Static: "" + count++);
}
}
";
RunOption runOptionStatic = new RunOption() { IsStatic = true };
runOptionStatic.InstanceObject = new InstanceObject(codeStatic, runOptionStatic);
ScriptRunner.Run(runOptionStatic); // Hello World Static: 1
ScriptRunner.Run(runOptionStatic); // Hello World Static: 2
If you want to create delegate
string codeDelegateHelloWorld = @"
using System;
public class Run
{
public string DelegateHelloWorldFunc()
{
return ""Delegate Hello World"";
}
}
";
var DelegateHelloWorldFunc = RoslynScriptRunner.ScriptRunner.GenerateFunc<string>(codeDelegateHelloWorld, new RunOption() { MethodName = "DelegateHelloWorldFunc" });
Console.WriteLine(DelegateHelloWorldFunc(null)); // Delegate Hello World
If you only want to write functions and don't want to write using statement
string codeGenerateClassWithFunction = @"
public ExternalResultClass DoSth()
{
return ExternalClass.DoSth();
}
";
RunOption generateClassWithFunctionOption = new RunOption();
generateClassWithFunctionOption.ExtraDllFileList = new List<string> { "ExternalDll.dll" };
generateClassWithFunctionOption.MethodName = "DoSth";
string codeGeneratedClassWithFunction = ScriptRunner.GenerateClassWithFunction(codeGenerateClassWithFunction, generateClassWithFunctionOption);
API
ScriptRunner
object Run(string code, RunOption runOption = null)
Task<object> RunAsync(string code, RunOption runOption = null)
object Run(ICollection<string> codeList, RunOption runOption = null)
Task<object> RunAsync(ICollection<string> codeList, RunOption runOption = null)
object Run(RunOption runOption)
Task<object> RunAsync(RunOption runOption)
Func<object[], object> GenerateFunc(string code, RunOption runOption = null)
Func<object[], object> GenerateFunc(RunOption runOption)
Func<object[], TResult> GenerateFunc<TResult>(string code, RunOption runOption = null)
Func<object[], TResult> GenerateFunc<TResult>(RunOption runOption)
Func<T1, TResult> GenerateFunc<T1, TResult>(string code, RunOption runOption = null)
Func<T1, TResult> GenerateFunc<T1, TResult>(RunOption runOption)
Func<T1, T2, TResult> GenerateFunc<T1, T2, TResult>(string code, RunOption runOption = null)
Func<T1, T2, TResult> GenerateFunc<T1, T2, TResult>(RunOption runOption)
Func<T1, T2, T3, TResult> GenerateFunc<T1, T2, T3, TResult>(string code, RunOption runOption = null)
Func<T1, T2, T3, TResult> GenerateFunc<T1, T2, T3, TResult>(RunOption runOption)
Func<T1, T2, T3, T4, TResult> GenerateFunc<T1, T2, T3, T4, TResult>(string code, RunOption runOption = null)
Func<T1, T2, T3, T4, TResult> GenerateFunc<T1, T2, T3, T4, TResult>(RunOption runOption)
Func<T1, T2, T3, T4, T5, TResult> GenerateFunc<T1, T2, T3, T4, T5, TResult>(string code, RunOption runOption = null)
Func<T1, T2, T3, T4, T5, TResult> GenerateFunc<T1, T2, T3, T4, T5, TResult>(RunOption runOption)
Func<T1, T2, T3, T4, T5, T6, TResult> GenerateFunc<T1, T2, T3, T4, T5, T6, TResult>(string code, RunOption runOption = null)
Func<T1, T2, T3, T4, T5, T6, TResult> GenerateFunc<T1, T2, T3, T4, T5, T6, TResult>(RunOption runOption)
Func<T1, T2, T3, T4, T5, T6, T7, TResult> GenerateFunc<T1, T2, T3, T4, T5, T6, T7, TResult>(string code, RunOption runOption = null)
Func<T1, T2, T3, T4, T5, T6, T7, TResult> GenerateFunc<T1, T2, T3, T4, T5, T6, T7, TResult>(RunOption runOption)
Func<T1, T2, T3, T4, T5, T6, T7, T8, TResult> GenerateFunc<T1, T2, T3, T4, T5, T6, T7, T8, TResult>(string code, RunOption runOption = null)
Func<T1, T2, T3, T4, T5, T6, T7, T8, TResult> GenerateFunc<T1, T2, T3, T4, T5, T6, T7, T8, TResult>(RunOption runOption)
Func<T1, T2, T3, T4, T5, T6, T7, T8, T9, TResult> GenerateFunc<T1, T2, T3, T4, T5, T6, T7, T8, T9, TResult>(string code, RunOption runOption = null)
Func<T1, T2, T3, T4, T5, T6, T7, T8, T9, TResult> GenerateFunc<T1, T2, T3, T4, T5, T6, T7, T8, T9, TResult>(RunOption runOption)
Func<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, TResult> GenerateFunc<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, TResult>(string code, RunOption runOption = null)
Func<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, TResult> GenerateFunc<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, TResult>(RunOption runOption)
string GenerateClassWithFunction(string code, RunOption runOption = null)
string GenerateClassWithFunction(string code, ICollection<string> extraDllNamespaces, RunOption runOption = null)
DllHelper
FileSystemInfo[] GetDllInfos(string path)
ICollection<string> GetExtraDllNamespaces(RunOption runOption)
InstanceObject
InstanceObject
InstanceObject(string code, RunOption runOption = null)
InstanceObject(ICollection<string> codeList, RunOption runOption = null)
Options
RunOption
RunOption(object[] paramList = null
, ICollection<string> extraDllFolderList = null
, ICollection<string> extraDllFileList = null
, string methodName = "Main"
, string className = "Run"
, InstanceObject instanceObject = null
, ScriptLanguage scriptLanguage = ScriptLanguage.CSharp
, bool nonPublic = false
, bool isStatic = false
, bool addDefaultUsingWhenGeneratingClass = true
, bool addExtraUsingWhenGeneratingClass = true)
object[] paramList;
ICollection<string> extraDllFolderList;
ICollection<string> extraDllFileList;
string methodName;
string className;
InstanceObject instanceObject;
ScriptLanguage scriptLanguage;
bool nonPublic;
bool isStatic;
bool addDefaultUsingWhenGeneratingClass;
bool addExtraUsingWhenGeneratingClass;
ScriptLanguage
- CSharp
- VisualBasic
Useage
RoslynScriptRunner.RunOption runOption = new RoslynScriptRunner.RunOption(...);
RoslynScriptRunner.ScriptRunner.Run(code, runOption);
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net6.0 is compatible. net6.0-android was computed. net6.0-ios was computed. net6.0-maccatalyst was computed. net6.0-macos was computed. net6.0-tvos was computed. net6.0-windows was computed. net7.0 was computed. net7.0-android was computed. net7.0-ios was computed. net7.0-maccatalyst was computed. net7.0-macos was computed. net7.0-tvos was computed. net7.0-windows was computed. net8.0 was computed. net8.0-android was computed. net8.0-browser was computed. net8.0-ios was computed. net8.0-maccatalyst was computed. net8.0-macos was computed. net8.0-tvos was computed. net8.0-windows was computed. |
-
net6.0
- Microsoft.CodeAnalysis.CSharp (>= 4.4.0)
- Microsoft.CodeAnalysis.VisualBasic (>= 4.4.0)
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.
Version | Downloads | Last updated | |
---|---|---|---|
1.5.4 | 258 | 8/7/2023 | |
1.5.3 | 187 | 7/18/2023 | |
1.5.1 | 183 | 7/17/2023 | |
1.5.0 | 180 | 7/17/2023 | |
1.4.2 | 176 | 6/2/2023 | |
1.4.1 | 181 | 6/2/2023 | |
1.4.0 | 159 | 6/2/2023 | |
1.3.0 | 172 | 5/30/2023 | |
1.2.3 | 174 | 5/26/2023 | |
1.2.2 | 178 | 5/25/2023 | |
1.2.1 | 176 | 5/25/2023 | |
1.2.0 | 163 | 5/24/2023 | |
1.1.1 | 162 | 5/24/2023 | |
1.1.0 | 176 | 5/24/2023 | |
1.0.5 | 154 | 5/23/2023 | |
1.0.4 | 172 | 5/18/2023 | |
1.0.3 | 166 | 5/18/2023 | |
1.0.2 | 166 | 5/18/2023 | |
1.0.1 | 171 | 5/18/2023 | |
1.0.0 | 158 | 5/17/2023 |