diff --git a/claim-check/code-samples/sample-1/FunctionConsumer1/FunctionConsumer1.csproj b/claim-check/code-samples/sample-1/FunctionConsumer1/FunctionConsumer1.csproj index c70a391..6a2a7a1 100644 --- a/claim-check/code-samples/sample-1/FunctionConsumer1/FunctionConsumer1.csproj +++ b/claim-check/code-samples/sample-1/FunctionConsumer1/FunctionConsumer1.csproj @@ -1,6 +1,6 @@  - net8.0 + net9.0 v4 Exe enable diff --git a/claim-check/code-samples/sample-1/readme.md b/claim-check/code-samples/sample-1/readme.md index ff31f42..14744f1 100644 --- a/claim-check/code-samples/sample-1/readme.md +++ b/claim-check/code-samples/sample-1/readme.md @@ -1,6 +1,6 @@ # Sample 1: Automatic claim check token generation with Event Grid, Azure Queue Storage as messaging system -## Technologies used: Azure Blob Storage, Azure Event Grid, Azure Functions, Azure Queue Storage, .NET 8.0 +## Technologies used: Azure Blob Storage, Azure Event Grid, Azure Functions, Azure Queue Storage, .NET 9.0 This example uses Azure Blob Storage to store the payload, but any service that supports [Event Grid](https://azure.microsoft.com/services/event-grid/) integration can be used. A client application uploads the payload to Azure Blob Store and Event Grid automatically generates an event, with a reference to the blob, that can be used as a claim check token. The event is forwarded to an Azure Queue Storage queue from where it can be retrieved by the consumer sample app. @@ -27,7 +27,7 @@ Install the prerequisites and follow the steps to deploy and run the examples. - [Azure Cloud Shell](https://shell.azure.com/) - [Windows Subsystem for Linux (WSL)](https://learn.microsoft.com/windows/wsl/install) - [Git](https://git-scm.com/downloads) -- [.NET 8 SDK](https://dotnet.microsoft.com/download/dotnet/8.0) +- [.NET 9 SDK](https://dotnet.microsoft.com/download/dotnet/9.0) - [Azure Functions Core Tools](https://learn.microsoft.com/azure/azure-functions/functions-run-local#install-the-azure-functions-core-tools) - [Azurite](/azure/storage/common/storage-use-azurite) - [Azure CLI](https://learn.microsoft.com/cli/azure/install-azure-cli) diff --git a/claim-check/code-samples/sample-2/ClientConsumer2/ClientConsumer2.csproj b/claim-check/code-samples/sample-2/ClientConsumer2/ClientConsumer2.csproj index f5370ea..4d16109 100644 --- a/claim-check/code-samples/sample-2/ClientConsumer2/ClientConsumer2.csproj +++ b/claim-check/code-samples/sample-2/ClientConsumer2/ClientConsumer2.csproj @@ -2,7 +2,7 @@ Exe - net8.0 + net9.0 enable enable Pnp.Samples.ClaimCheckPattern @@ -25,11 +25,11 @@ - - + + - - + + diff --git a/claim-check/code-samples/sample-2/readme.md b/claim-check/code-samples/sample-2/readme.md index 50ef05d..15c20e9 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 messaging system -## Technologies used: Azure Blob Storage, Azure Event Grid, Azure Event Hub, .NET 8.0 +## Technologies used: Azure Blob Storage, Azure Event Grid, Azure Event Hub, .NET 9.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. @@ -27,7 +27,7 @@ Install the prerequisites and follow the steps to deploy and run the examples. - [Azure Cloud Shell](https://shell.azure.com/) - [Windows Subsystem for Linux (WSL)](https://learn.microsoft.com/windows/wsl/install) - [Git](https://git-scm.com/downloads) -- [.NET 8 SDK](https://dotnet.microsoft.com/download/dotnet/8.0) +- [.NET 9 SDK](https://dotnet.microsoft.com/download/dotnet/9.0) - [Azure CLI](https://learn.microsoft.com/cli/azure/install-azure-cli) - Optionally, an IDE, like [Visual Studio](https://visualstudio.microsoft.com/downloads/) or [Visual Studio Code](https://code.visualstudio.com/). diff --git a/claim-check/code-samples/sample-3/FunctionConsumer3/FunctionConsumer3.csproj b/claim-check/code-samples/sample-3/FunctionConsumer3/FunctionConsumer3.csproj index 7e8159f..39ddd9e 100644 --- a/claim-check/code-samples/sample-3/FunctionConsumer3/FunctionConsumer3.csproj +++ b/claim-check/code-samples/sample-3/FunctionConsumer3/FunctionConsumer3.csproj @@ -1,6 +1,6 @@  - net8.0 + net9.0 v4 Exe enable diff --git a/claim-check/code-samples/sample-3/readme.md b/claim-check/code-samples/sample-3/readme.md index ff708d9..b4a3bcb 100644 --- a/claim-check/code-samples/sample-3/readme.md +++ b/claim-check/code-samples/sample-3/readme.md @@ -1,6 +1,6 @@ # Sample 3: Automatic claim check token generation with Event Grid, Service Bus as messaging system -## Technologies used: Azure Blob Storage, Azure Event Grid, Azure Service Bus, Azure Functions, .NET 8.0 +## Technologies used: Azure Blob Storage, Azure Event Grid, Azure Service Bus, Azure Functions, .NET 9.0 Like in samples 1 and 2, 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, [Service Bus](https://learn.microsoft.com/azure/service-bus) is used as the messaging system. @@ -27,7 +27,7 @@ Install the prerequisites and follow the steps to deploy and run the examples. - [Azure Cloud Shell](https://shell.azure.com/) - [Windows Subsystem for Linux (WSL)](https://learn.microsoft.com/windows/wsl/install) - [Git](https://git-scm.com/downloads) -- [.NET 8 SDK](https://dotnet.microsoft.com/download/dotnet/8.0) +- [.NET 9 SDK](https://dotnet.microsoft.com/download/dotnet/9.0) - [Azure Functions Core Tools](https://learn.microsoft.com/azure/azure-functions/functions-run-local#install-the-azure-functions-core-tools) - [Azurite](/azure/storage/common/storage-use-azurite) - [Azure CLI](https://learn.microsoft.com/cli/azure/install-azure-cli) diff --git a/claim-check/code-samples/sample-4/ClientProducer4/ClientProducer4.csproj b/claim-check/code-samples/sample-4/ClientProducer4/ClientProducer4.csproj index 92c7d9f..c4f2771 100644 --- a/claim-check/code-samples/sample-4/ClientProducer4/ClientProducer4.csproj +++ b/claim-check/code-samples/sample-4/ClientProducer4/ClientProducer4.csproj @@ -1,7 +1,7 @@  Exe - net8.0 + net9.0 enable enable Pnp.Samples.ClaimCheckPattern @@ -23,11 +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 d42d066..74cbfed 100644 --- a/claim-check/code-samples/sample-4/FunctionConsumer4/FunctionConsumer4.csproj +++ b/claim-check/code-samples/sample-4/FunctionConsumer4/FunctionConsumer4.csproj @@ -1,6 +1,6 @@  - net8.0 + net9.0 v4 Exe enable diff --git a/claim-check/code-samples/sample-4/readme.md b/claim-check/code-samples/sample-4/readme.md index 508d888..028a640 100644 --- a/claim-check/code-samples/sample-4/readme.md +++ b/claim-check/code-samples/sample-4/readme.md @@ -1,6 +1,6 @@ # Sample 4: Manual token generation, Azure Event Hubs with Kafka as messaging system -## Technologies used: Azure Blob Storage, Azure Event Hubs with Kafka API enabled, Azure Functions, .NET 8.0 +## Technologies used: Azure Blob Storage, Azure Event Hubs with Kafka API enabled, Azure Functions, .NET 9.0 In this example the client application uploads the payload to Azure Blob Storage and manually generates the claim check token, which is sent via Event Hubs. @@ -26,7 +26,7 @@ Install the prerequisites and follow the steps to deploy and run the examples. - [Azure Cloud Shell](https://shell.azure.com/) - [Windows Subsystem for Linux (WSL)](https://learn.microsoft.com/windows/wsl/install) - [Git](https://git-scm.com/downloads) -- [.NET 8 SDK](https://dotnet.microsoft.com/download/dotnet/8.0) +- [.NET 9 SDK](https://dotnet.microsoft.com/download/dotnet/9.0) - [Azure Functions Core Tools](https://learn.microsoft.com/azure/azure-functions/functions-run-local#install-the-azure-functions-core-tools) - [Azurite](/azure/storage/common/storage-use-azurite) - [Azure CLI](https://learn.microsoft.com/cli/azure/install-azure-cli)