From 4d7c0a0277bcdc75b805bb0e5ab4b486e1668d46 Mon Sep 17 00:00:00 2001 From: Edi <49843287+theiszeduard@users.noreply.github.com> Date: Tue, 14 Jan 2025 17:35:08 +0100 Subject: [PATCH] Update README.md (#440) Links towards the samples were pointing towards the dev branch instead of the main branch. --- README.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 4b5ea292..398b02d0 100644 --- a/README.md +++ b/README.md @@ -30,9 +30,9 @@ If you have a .NET Durable Functions application already, and want to configure - Configure `EventHubsConnection` with the connection string for the Event Hubs namespace. You can do this using an environment variable, or with a function app configuration settings. For more information, see the -[.NET sample](https://github.com/microsoft/durabletask-netherite/tree/dev/samples/Hello_Netherite_with_DotNetCore), the -[Python sample](https://github.com/microsoft/durabletask-netherite/tree/dev/samples/Hello_Netherite_with_Python), or the -[TypeScript sample](https://github.com/microsoft/durabletask-netherite/tree/dev/samples/Hello_Netherite_with_TypeScript). +[.NET sample](https://github.com/microsoft/durabletask-netherite/tree/main/samples/Hello_Netherite_with_DotNetCore), the +[Python sample](https://github.com/microsoft/durabletask-netherite/tree/main/samples/Hello_Netherite_with_Python), or the +[TypeScript sample](https://github.com/microsoft/durabletask-netherite/tree/main/samples/Hello_Netherite_with_TypeScript). **Configure an existing Durable Task Application for Netherite.** @@ -42,7 +42,7 @@ If you have an application that uses the Durable Task Framework already, and wan - Add the NuGet package `Microsoft.Azure.DurableTask.Netherite` to your project. - Update the server startup code to construct a `NetheriteOrchestrationService` object with the required settings, and then pass it as an argument to the constructors of `TaskHubClient` and `TaskHubWorker`. -For more information, see the [DTFx sample](https://github.com/microsoft/durabletask-netherite/blob/dev/samples/HelloDTFx/HelloDTFx/Program.cs). +For more information, see the [DTFx sample](https://github.com/microsoft/durabletask-netherite/blob/main/samples/HelloDTFx/HelloDTFx/Program.cs). ## Why a new engine?