You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: src/core/Synapse.Core.Infrastructure.Containers.Docker/Synapse.Core.Infrastructure.Containers.Docker.csproj
Copy file name to clipboardexpand all lines: src/core/Synapse.Core.Infrastructure.Containers.Kubernetes/Synapse.Core.Infrastructure.Containers.Kubernetes.csproj
/// Gets/sets the qualified name of the workflow instance to run
31
+
/// Gets/sets the qualified name of the workflow instance to run. Required if the execution mode has been set to <see cref="RunnerExecutionMode.Connected"/>, otherwise ignored
/// Gets/sets the name of the definition's file, if any. Required if the execution mode has been set to <see cref="RunnerExecutionMode.StandAlone"/>, otherwise ignored
37
+
/// </summary>
38
+
publicvirtualstring?DefinitionFilePath{get;set;}
39
+
40
+
/// <summary>
41
+
/// Gets/sets the name of the file, if any, that defines the input of to the workflow to run. Ignored if the execution mode has been set to <see cref="RunnerExecutionMode.Connected"/>
42
+
/// </summary>
43
+
publicvirtualstring?InputFilePath{get;set;}
44
+
45
+
/// <summary>
46
+
/// Gets/sets the name of the file, if any, to write the workflow's output to. Ignored if the execution mode has been set to <see cref="RunnerExecutionMode.Connected"/>
47
+
/// </summary>
48
+
publicvirtualstring?OutputFilePath{get;set;}
49
+
50
+
/// <summary>
51
+
/// Gets/sets the workflow's output format. Ignored if execution mode has been set to <see cref="RunnerExecutionMode.Connected"/>
0 commit comments