File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed
tutorials/workflow/csharp/versioning/Versioning Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change 33This tutorial demonstrates how to version your workflows. For more information about workflow versioning in general,
44see the
55[ Dapr docs] ( https://docs.dapr.io/developing-applications/building-blocks/workflow/workflow-features-concepts/#versioning )
6- and to learn more about your options using the .NET SDK, refer to the [ SDK docs] ( ) .
6+ and to learn more about your options using the .NET SDK, refer to the [ SDK docs] ( https://docs.dapr.io/developing-applications/sdks/dotnet/ ) .
77
88## Inspect the starting workflow
99
@@ -40,7 +40,7 @@ patches and introduce any additional functionality you might want in your next d
4040supports numerical-based suffix versioning with an optional prefix, here 'V', we introduce a new workflow version named
4141` NotifyUserWorkflowV2 ` .
4242
43- It doesn't matter that we didn't have a version suffix on the original workflow because this built-in default strategy
43+ It doesn't matter that we didn't have a version suffix on the original workflow because the Dotnet SDK
4444will automatically assume it to be an earlier version (version 0) of the workflow version family ` NotifyUserWorkflow `
4545and will understand that it's superceded by ` NotifyUserWorkflowV2 ` when evaluated at runtime by the default selector.
4646
Original file line number Diff line number Diff line change 77 </PropertyGroup >
88
99 <ItemGroup >
10- <PackageReference Include =" Dapr.Workflow" Version =" 1.17.0-rc13 " />
11- <PackageReference Include =" Dapr.Workflow.Versioning" Version =" 1.17.0-rc13 " />
10+ <PackageReference Include =" Dapr.Workflow" Version =" 1.17.0" />
11+ <PackageReference Include =" Dapr.Workflow.Versioning" Version =" 1.17.0" />
1212 </ItemGroup >
1313
1414</Project >
You can’t perform that action at this time.
0 commit comments