Skip to content

Commit c1d2ef2

Browse files
committed
Merge remote-tracking branch 'origin/wf-versioning' into wf-versioning
2 parents 8284a48 + d6bcbbb commit c1d2ef2

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

tutorials/workflow/csharp/versioning/Versioning/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
This tutorial demonstrates how to version your workflows. For more information about workflow versioning in general,
44
see 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
4040
supports 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
4444
will automatically assume it to be an earlier version (version 0) of the workflow version family `NotifyUserWorkflow`
4545
and will understand that it's superceded by `NotifyUserWorkflowV2` when evaluated at runtime by the default selector.
4646

tutorials/workflow/csharp/versioning/Versioning/Versioning.csproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@
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>

0 commit comments

Comments
 (0)