From a59cae087afe0e3fda22c1f64f35dbbfdfc672f7 Mon Sep 17 00:00:00 2001 From: Federico Arambarri Date: Fri, 7 Aug 2026 18:29:24 -0300 Subject: [PATCH 1/5] Libraries and readme update --- .../sample-2/ClientConsumer2/ClientConsumer2.csproj | 9 +++++---- claim-check/code-samples/sample-2/readme.md | 2 +- .../sample-4/ClientProducer4/ClientProducer4.csproj | 11 ++++++----- .../FunctionConsumer4/FunctionConsumer4.csproj | 9 ++------- claim-check/code-samples/sample-4/readme.md | 6 ++++-- 5 files changed, 18 insertions(+), 19 deletions(-) diff --git a/claim-check/code-samples/sample-2/ClientConsumer2/ClientConsumer2.csproj b/claim-check/code-samples/sample-2/ClientConsumer2/ClientConsumer2.csproj index a1714ae1..62eb7faa 100644 --- a/claim-check/code-samples/sample-2/ClientConsumer2/ClientConsumer2.csproj +++ b/claim-check/code-samples/sample-2/ClientConsumer2/ClientConsumer2.csproj @@ -25,10 +25,11 @@ - - - - + + + + + diff --git a/claim-check/code-samples/sample-2/readme.md b/claim-check/code-samples/sample-2/readme.md index 5fe53219..2a820b20 100644 --- a/claim-check/code-samples/sample-2/readme.md +++ b/claim-check/code-samples/sample-2/readme.md @@ -1,6 +1,6 @@ # Sample 2: Automatic claim check token generation with Event Grid, Event Hubs as the messaging system -## Technologies used: Azure Blob Storage, Azure Event Grid, Azure Event Hubs, .NET 10.0 +## Technologies used: Azure Blob Storage, Azure Event Grid, Azure Event Hub, .NET 10.0 Like in Sample 1, a reference message is automatically generated by [Event Grid](https://azure.microsoft.com/services/event-grid/) when the payload is uploaded to Azure Blob Storage. In this sample, [Event Hubs](https://learn.microsoft.com/azure/event-hubs) is used as the messaging system. diff --git a/claim-check/code-samples/sample-4/ClientProducer4/ClientProducer4.csproj b/claim-check/code-samples/sample-4/ClientProducer4/ClientProducer4.csproj index 8f94cdd8..bcf09257 100644 --- a/claim-check/code-samples/sample-4/ClientProducer4/ClientProducer4.csproj +++ b/claim-check/code-samples/sample-4/ClientProducer4/ClientProducer4.csproj @@ -23,10 +23,11 @@ - - - - - + + + + + + diff --git a/claim-check/code-samples/sample-4/FunctionConsumer4/FunctionConsumer4.csproj b/claim-check/code-samples/sample-4/FunctionConsumer4/FunctionConsumer4.csproj index 94340461..62668817 100644 --- a/claim-check/code-samples/sample-4/FunctionConsumer4/FunctionConsumer4.csproj +++ b/claim-check/code-samples/sample-4/FunctionConsumer4/FunctionConsumer4.csproj @@ -12,13 +12,8 @@ - - - + + diff --git a/claim-check/code-samples/sample-4/readme.md b/claim-check/code-samples/sample-4/readme.md index 7e0d0cc0..5b1610a7 100644 --- a/claim-check/code-samples/sample-4/readme.md +++ b/claim-check/code-samples/sample-4/readme.md @@ -80,10 +80,12 @@ Install the prerequisites and follow the steps to deploy and run the examples. ```bash cd ./FunctionConsumer4 - func start --dotnet-isolated + dotnet run ``` -> Please note: For demo purposes, the sample application will write the payload content to the screen. Keep that in mind before you try sending really large payloads. + > This project uses the [.NET isolated worker model](https://learn.microsoft.com/azure/azure-functions/dotnet-isolated-process-guide). Starting with `Microsoft.Azure.Functions.Worker.Sdk` 2.0.0, use `dotnet run` instead of `func start` to ensure function extensions are loaded correctly from the build output directory. + + > Please note: For demo purposes, the sample application will write the payload content to the the screen. Keep that in mind before you try sending really large payloads. ### :checkered_flag: Try it out From d8a1a921e0d9c3286d6a0154f615b7f59650fbf0 Mon Sep 17 00:00:00 2001 From: Federico Arambarri Date: Tue, 11 Aug 2026 07:28:02 -0300 Subject: [PATCH 2/5] Addresing PR Comment --- claim-check/code-samples/sample-4/readme.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/claim-check/code-samples/sample-4/readme.md b/claim-check/code-samples/sample-4/readme.md index 5b1610a7..c627fb5e 100644 --- a/claim-check/code-samples/sample-4/readme.md +++ b/claim-check/code-samples/sample-4/readme.md @@ -85,7 +85,7 @@ Install the prerequisites and follow the steps to deploy and run the examples. > This project uses the [.NET isolated worker model](https://learn.microsoft.com/azure/azure-functions/dotnet-isolated-process-guide). Starting with `Microsoft.Azure.Functions.Worker.Sdk` 2.0.0, use `dotnet run` instead of `func start` to ensure function extensions are loaded correctly from the build output directory. - > Please note: For demo purposes, the sample application will write the payload content to the the screen. Keep that in mind before you try sending really large payloads. + > Please note: For demo purposes, the sample application will write the payload content to the screen. Keep that in mind before you try sending really large payloads. ### :checkered_flag: Try it out From ca795af3fd0552424c51a854d3fdffe7dfc2db95 Mon Sep 17 00:00:00 2001 From: Federico Arambarri Date: Tue, 11 Aug 2026 07:35:09 -0300 Subject: [PATCH 3/5] recovering important comment --- .../sample-4/FunctionConsumer4/FunctionConsumer4.csproj | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/claim-check/code-samples/sample-4/FunctionConsumer4/FunctionConsumer4.csproj b/claim-check/code-samples/sample-4/FunctionConsumer4/FunctionConsumer4.csproj index 62668817..9cd5e515 100644 --- a/claim-check/code-samples/sample-4/FunctionConsumer4/FunctionConsumer4.csproj +++ b/claim-check/code-samples/sample-4/FunctionConsumer4/FunctionConsumer4.csproj @@ -14,6 +14,11 @@ + From 2b4e8a071444f8206ff33210c163f146980450bf Mon Sep 17 00:00:00 2001 From: Chad Kittel Date: Wed, 12 Aug 2026 11:52:54 -0500 Subject: [PATCH 4/5] Apply suggestion from @ckittel --- claim-check/code-samples/sample-4/readme.md | 2 -- 1 file changed, 2 deletions(-) diff --git a/claim-check/code-samples/sample-4/readme.md b/claim-check/code-samples/sample-4/readme.md index c627fb5e..6780c83e 100644 --- a/claim-check/code-samples/sample-4/readme.md +++ b/claim-check/code-samples/sample-4/readme.md @@ -83,8 +83,6 @@ Install the prerequisites and follow the steps to deploy and run the examples. dotnet run ``` - > This project uses the [.NET isolated worker model](https://learn.microsoft.com/azure/azure-functions/dotnet-isolated-process-guide). Starting with `Microsoft.Azure.Functions.Worker.Sdk` 2.0.0, use `dotnet run` instead of `func start` to ensure function extensions are loaded correctly from the build output directory. - > Please note: For demo purposes, the sample application will write the payload content to the screen. Keep that in mind before you try sending really large payloads. ### :checkered_flag: Try it out From b1eca7e3b63b3dfec6d28d11ebc860c3679ac9a2 Mon Sep 17 00:00:00 2001 From: Chad Kittel Date: Wed, 12 Aug 2026 11:53:27 -0500 Subject: [PATCH 5/5] Apply suggestion from @ckittel --- claim-check/code-samples/sample-4/readme.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/claim-check/code-samples/sample-4/readme.md b/claim-check/code-samples/sample-4/readme.md index 6780c83e..f911e182 100644 --- a/claim-check/code-samples/sample-4/readme.md +++ b/claim-check/code-samples/sample-4/readme.md @@ -83,7 +83,7 @@ Install the prerequisites and follow the steps to deploy and run the examples. dotnet run ``` - > Please note: For demo purposes, the sample application will write the payload content to the screen. Keep that in mind before you try sending really large payloads. + > Please note: For demo purposes, the sample application will write the payload content to the screen. Keep that in mind before you try sending really large payloads. ### :checkered_flag: Try it out