From 7d23e9ba4eb5f05e5af1b89a9614e7932e9bfdce Mon Sep 17 00:00:00 2001 From: Meir Blachman Date: Tue, 24 Mar 2026 21:01:08 +0200 Subject: [PATCH 1/5] Update Aspire.Hosting to 13.2.0 and add net10.0 TFM - Update Aspire.Hosting package from 9.5.2 to 13.2.0 - Add net10.0 target framework to support Aspire 13.x Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com> --- DevProxy.Hosting/DevProxy.Hosting.csproj | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/DevProxy.Hosting/DevProxy.Hosting.csproj b/DevProxy.Hosting/DevProxy.Hosting.csproj index 7c95ba1..264b943 100644 --- a/DevProxy.Hosting/DevProxy.Hosting.csproj +++ b/DevProxy.Hosting/DevProxy.Hosting.csproj @@ -1,7 +1,7 @@ - net9.0;net8.0 + net10.0;net9.0;net8.0 enable enable 0.2.2 @@ -25,7 +25,7 @@ - + From 3d19a38c2551cda5b002af8358fd7cf8e7267b63 Mon Sep 17 00:00:00 2001 From: Meir Blachman Date: Tue, 24 Mar 2026 21:03:26 +0200 Subject: [PATCH 2/5] Bump version to 0.3.0 Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com> --- DevProxy.Hosting/DevProxy.Hosting.csproj | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/DevProxy.Hosting/DevProxy.Hosting.csproj b/DevProxy.Hosting/DevProxy.Hosting.csproj index 264b943..3e9c85a 100644 --- a/DevProxy.Hosting/DevProxy.Hosting.csproj +++ b/DevProxy.Hosting/DevProxy.Hosting.csproj @@ -4,7 +4,7 @@ net10.0;net9.0;net8.0 enable enable - 0.2.2 + 0.3.0 Dev Proxy Dev Proxy .NET Aspire extensions .NET Aspire extensions for adding Dev Proxy as a resource to your .NET Aspire application. From 80ae0ff95468fba7dea9bfd8c07edeb556b58124 Mon Sep 17 00:00:00 2001 From: Meir Blachman Date: Tue, 24 Mar 2026 21:04:41 +0200 Subject: [PATCH 3/5] Add NuGet badges to README Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com> --- README.md | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 102ee7e..7212bc1 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,9 @@ # Dev Proxy .NET Aspire extensions -Use Dev Proxy extensions for .NET Aspire to seamlessly integrate Dev Proxy into your distributed applications. Use Dev Proxy to: +[![NuGet Version](https://img.shields.io/nuget/v/DevProxy.Hosting)](https://www.nuget.org/packages/DevProxy.Hosting) +[![NuGet Downloads](https://img.shields.io/nuget/dt/DevProxy.Hosting)](https://www.nuget.org/packages/DevProxy.Hosting) + +Use Dev Proxy extensionsfor .NET Aspire to seamlessly integrate Dev Proxy into your distributed applications. Use Dev Proxy to: - Verify how your distributed app handles API errors, both from your own services and third-party APIs - Mock APIs while developing your app From 3da1b5eb6b8084f7db64954f886a0dc781807c0f Mon Sep 17 00:00:00 2001 From: Meir Blachman Date: Tue, 24 Mar 2026 21:08:11 +0200 Subject: [PATCH 4/5] Apply suggestion from @Meir017 --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 7212bc1..3aaf91a 100644 --- a/README.md +++ b/README.md @@ -3,7 +3,7 @@ [![NuGet Version](https://img.shields.io/nuget/v/DevProxy.Hosting)](https://www.nuget.org/packages/DevProxy.Hosting) [![NuGet Downloads](https://img.shields.io/nuget/dt/DevProxy.Hosting)](https://www.nuget.org/packages/DevProxy.Hosting) -Use Dev Proxy extensionsfor .NET Aspire to seamlessly integrate Dev Proxy into your distributed applications. Use Dev Proxy to: +Use Dev Proxy extensions for .NET Aspire to seamlessly integrate Dev Proxy into your distributed applications. Use Dev Proxy to: - Verify how your distributed app handles API errors, both from your own services and third-party APIs - Mock APIs while developing your app From 49598b0ed164ba89aef636078182741982298bf5 Mon Sep 17 00:00:00 2001 From: Meir Blachman Date: Tue, 24 Mar 2026 21:22:03 +0200 Subject: [PATCH 5/5] Add [ResourceName] attribute to name parameters Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com> --- DevProxy.Hosting/DevProxyResourceBuilderExtensions.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/DevProxy.Hosting/DevProxyResourceBuilderExtensions.cs b/DevProxy.Hosting/DevProxyResourceBuilderExtensions.cs index 2fc4d74..dcef700 100644 --- a/DevProxy.Hosting/DevProxyResourceBuilderExtensions.cs +++ b/DevProxy.Hosting/DevProxyResourceBuilderExtensions.cs @@ -18,7 +18,7 @@ public static class DevProxyResourceBuilderExtensions /// A resource builder for the DevProxy executable resource. public static IResourceBuilder AddDevProxyExecutable( this IDistributedApplicationBuilder builder, - string name) + [ResourceName] string name) { var resource = new DevProxyExecutableResource(name); @@ -68,7 +68,7 @@ public static IResourceBuilder WithUrlsToWatch( /// A resource builder for the DevProxy container resource. public static IResourceBuilder AddDevProxyContainer( this IDistributedApplicationBuilder builder, - string name) + [ResourceName] string name) { var resource = new DevProxyContainerResource(name);