Skip to content

Commit f8a15b6

Browse files
committed
Allow version in TaskOrchestrationContext
Signed-off-by: Hal Spang <halspang@microsoft.com>
1 parent 6a7880d commit f8a15b6

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/Abstractions/TaskOrchestrationContext.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -61,9 +61,9 @@ public abstract class TaskOrchestrationContext
6161
public abstract bool IsReplaying { get; }
6262

6363
/// <summary>
64-
/// Gets the version of the current orchestration instance, which was set when the instance was created.
64+
/// Gets or sets the version of the current orchestration instance, which was set when the instance was created.
6565
/// </summary>
66-
public virtual string Version => string.Empty;
66+
public virtual string Version { get; protected internal set; } = string.Empty;
6767

6868
/// <summary>
6969
/// Gets the configuration settings for the orchestration context.

0 commit comments

Comments
 (0)