From dc805eeef36b8b7b3ff622fd6d76481770820bc1 Mon Sep 17 00:00:00 2001 From: Sam Spencer <54915162+samsp-msft@users.noreply.github.com> Date: Wed, 28 Feb 2024 13:10:28 -0800 Subject: [PATCH] Improve intellisense for AddConnectionString (#2481) * Improve intellisense for AddConnectionString Unclear what the name will be used for, and where its located. --- .../Extensions/ParameterResourceBuilderExtensions.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Aspire.Hosting/Extensions/ParameterResourceBuilderExtensions.cs b/src/Aspire.Hosting/Extensions/ParameterResourceBuilderExtensions.cs index ab2897e7b5..6363db254f 100644 --- a/src/Aspire.Hosting/Extensions/ParameterResourceBuilderExtensions.cs +++ b/src/Aspire.Hosting/Extensions/ParameterResourceBuilderExtensions.cs @@ -87,7 +87,7 @@ private static void WriteParameterResourceToManifest(ManifestPublishingContext c /// Adds a parameter to the distributed application but wrapped in a resource with a connection string for use with /// /// Distributed application builder - /// Name of parameter resource + /// Name of parameter resource. The value of the connection string is read from the "ConnectionStrings:{resourcename}" configuration section, for example in appsettings.json or user secrets /// Environment variable name to set when WithReference is used. /// Resource builder for the parameter. ///