Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -25,10 +25,11 @@
<PackageReference Include="Azure.Messaging.EventHubs" Version="5.12.2" />
<PackageReference Include="Azure.Messaging.EventHubs.Processor" Version="5.12.2" />
<PackageReference Include="Azure.Storage.Blobs" Version="12.29.1" />
<PackageReference Include="Microsoft.Extensions.Configuration" Version="10.0.9" />
<PackageReference Include="Microsoft.Extensions.Configuration.Json" Version="10.0.9" />
<PackageReference Include="Microsoft.Extensions.Logging" Version="10.0.9" />
<PackageReference Include="Microsoft.Extensions.Logging.Console" Version="10.0.9" />
<PackageReference Include="Microsoft.Extensions.Configuration" Version="10.0.10" />
<PackageReference Include="Microsoft.Extensions.Configuration.Json" Version="10.0.10" />
<PackageReference Include="System.Text.RegularExpressions" Version="4.3.1" />
<PackageReference Include="Microsoft.Extensions.Logging" Version="10.0.10" />
<PackageReference Include="Microsoft.Extensions.Logging.Console" Version="10.0.10" />
</ItemGroup>

</Project>
2 changes: 1 addition & 1 deletion claim-check/code-samples/sample-2/readme.md
Original file line number Diff line number Diff line change
@@ -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.

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,10 +23,11 @@
<PackageReference Include="Azure.Identity" Version="1.21.0" />
<PackageReference Include="Azure.Storage.Blobs" Version="12.29.1" />
<PackageReference Include="Confluent.Kafka" Version="2.15.0" />
<PackageReference Include="Microsoft.Extensions.Configuration" Version="10.0.9" />
<PackageReference Include="Microsoft.Extensions.Configuration.Json" Version="10.0.9" />
<PackageReference Include="System.IdentityModel.Tokens.Jwt" Version="8.19.1" />
<PackageReference Include="Microsoft.Extensions.Logging" Version="10.0.9" />
<PackageReference Include="Microsoft.Extensions.Logging.Console" Version="10.0.9" />
<PackageReference Include="Microsoft.Extensions.Configuration" Version="10.0.10" />
<PackageReference Include="Microsoft.Extensions.Configuration.Json" Version="10.0.10" />
<PackageReference Include="System.IdentityModel.Tokens.Jwt" Version="8.22.0" />
<PackageReference Include="System.Text.RegularExpressions" Version="4.3.1" />
<PackageReference Include="Microsoft.Extensions.Logging" Version="10.0.10" />
<PackageReference Include="Microsoft.Extensions.Logging.Console" Version="10.0.10" />
</ItemGroup>
</Project>
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@
<PackageReference Include="Microsoft.Azure.Functions.Worker" Version="2.52.0" />
<PackageReference Include="Azure.Messaging.EventHubs" Version="5.12.2" />
<PackageReference Include="Microsoft.Azure.Functions.Worker.Extensions.EventHubs" Version="6.5.0" />
<PackageReference Include="Microsoft.Azure.Functions.Worker.Sdk" Version="2.0.7" />
<PackageReference Include="Microsoft.Azure.Functions.Worker.Extensions.Http.AspNetCore" Version="2.1.0" />
<PackageReference Include="Microsoft.Azure.Functions.Worker.Sdk" Version="2.1.0" />
<PackageReference Include="Microsoft.Azure.Functions.Worker.Extensions.Http.AspNetCore" Version="2.1.1" />
<!-- Pinned to 2.x: WorkerService 3.x restructured internals around OpenTelemetry, breaking the deep integration
used by Microsoft.Azure.Functions.Worker.ApplicationInsights (built against 2.x internal APIs).
https://github.com/Azure/azure-functions-dotnet-worker/issues/3322
Expand Down
4 changes: 2 additions & 2 deletions claim-check/code-samples/sample-4/readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -80,10 +80,10 @@ 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.
> 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

Expand Down