bat/c#/shell/ps1

This commit is contained in:
John Andrews
2024-08-05 09:19:16 +12:00
parent 9ad51503b8
commit e65c4d6113
8 changed files with 70 additions and 16 deletions

View File

@@ -3,7 +3,7 @@ using System.ComponentModel.DataAnnotations;
using FileFlows.Plugin;
using FileFlows.Plugin.Attributes;
namespace BasicNodes.Scripting;
namespace FileFlows.BasicNodes.Scripting;
/// <summary>
/// Flow element that executes a CSharp script
@@ -19,6 +19,9 @@ public class CSharpScript : ScriptBase
/// <inheritdoc />
protected override ScriptLanguage Language => ScriptLanguage.CSharp;
/// <inheritdoc />
public override string Group => "Scripting:1";
/// <summary>
/// Gets or sets the code to execute
/// </summary>