From afda6ecb87177b10c771c2f68aedcb6ca545ee28 Mon Sep 17 00:00:00 2001 From: Aditya Mandaleeka Date: Thu, 2 May 2024 19:36:41 -0700 Subject: [PATCH 1/3] Update to Aspire preview7. --- Directory.Packages.props | 2 +- nuget.config | 11 +++++++++++ 2 files changed, 12 insertions(+), 1 deletion(-) diff --git a/Directory.Packages.props b/Directory.Packages.props index 29ce1e4..32b9190 100644 --- a/Directory.Packages.props +++ b/Directory.Packages.props @@ -5,7 +5,7 @@ 8.0.4 8.4.0 8.0.4 - 8.0.0-preview.6.24214.1 + 8.0.0-preview.7.24251.11 2.62.0 7.0.4 diff --git a/nuget.config b/nuget.config index 15a0ec2..a7f860d 100644 --- a/nuget.config +++ b/nuget.config @@ -4,11 +4,22 @@ + + + + + + + + + + + From 69358f70578879aa85eee4729b9ff2a10bb851f0 Mon Sep 17 00:00:00 2001 From: Aditya Mandaleeka Date: Mon, 6 May 2024 09:38:36 -0700 Subject: [PATCH 2/3] Fix API break Tracing -> DisableTracing. --- .../ServiceBusDependencyInjectionExtensions.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/EventBusServiceBus/ServiceBusDependencyInjectionExtensions.cs b/src/EventBusServiceBus/ServiceBusDependencyInjectionExtensions.cs index 4553c98..e7a09e0 100644 --- a/src/EventBusServiceBus/ServiceBusDependencyInjectionExtensions.cs +++ b/src/EventBusServiceBus/ServiceBusDependencyInjectionExtensions.cs @@ -22,7 +22,7 @@ public static IEventBusBuilder AddServiceBusEventBus(this IHostApplicationBuilde builder.AddAzureServiceBusClient(connectionName, o => { - o.Tracing = true; + o.DisableTracing = false; o.HealthCheckTopicName = "eshop_event_bus"; // When using the namespace instead of a full connection string, Service Bus will attempt to connect with your Azure credentials From a027e005e8ce00d23e8bb1a4f04f8f4bcc3d7843 Mon Sep 17 00:00:00 2001 From: Aditya Mandaleeka Date: Mon, 13 May 2024 12:20:48 -0700 Subject: [PATCH 3/3] Undo internal feed. --- nuget.config | 11 ----------- 1 file changed, 11 deletions(-) diff --git a/nuget.config b/nuget.config index a7f860d..15a0ec2 100644 --- a/nuget.config +++ b/nuget.config @@ -4,22 +4,11 @@ - - - - - - - - - - -