You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: articles/azure-functions/functions-develop-vs.md
+6-6Lines changed: 6 additions & 6 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -78,7 +78,7 @@ The project template creates a C# project, installs the `Microsoft.NET.Sdk.Funct
78
78
79
79
***host.json**: Lets you configure the Functions host. These settings apply both when running locally and in Azure. For more information, see [host.json reference](functions-host-json.md).
80
80
81
-
***local.settings.json**: Maintains settings used when running functions locally. These settings are not used by Azure, they are used by the [Azure Functions Core Tools](functions-run-local.md). Use this file to specify settings, such as connection strings to other Azure services. Add a new key to the **Values** array for each connection required by functions in your project. For more information, see [Local settings file](functions-run-local.md#local-settings-file) in the Azure Functions Core Tools article.
81
+
***local.settings.json**: Maintains settings used when running functions locally. These settings are not used by Azure, they are used by the [Azure Functions Core Tools](functions-run-local.md). Use this file to specify app settings for variables required by your functions. Add a new item to the **Values** array for each connection required by the functions bindings in your project. For more information, see [Local settings file](functions-run-local.md#local-settings-file) in the Azure Functions Core Tools article.
82
82
83
83
For more information, see [Functions class library project](functions-dotnet-class-library.md#functions-class-library-project).
84
84
@@ -90,7 +90,7 @@ The Functions runtime uses an Azure Storage account internally. For all trigger
90
90
91
91
To set the storage account connection string:
92
92
93
-
1. In Visual Studio, open **Cloud Explorer**, expand **Storage Account** > **Your Storage Account**, then select **Properties** and copy the **Primary Connection String** value.
93
+
1. In Visual Studio, open **Cloud Explorer**, expand **Storage Account** > **Your Storage Account**, then select **Properties** and copy the **Primary Connection String** value.
94
94
95
95
2. In your project, open the local.settings.json file and set the value of the **AzureWebJobsStorage** key to the connection string you copied.
96
96
@@ -137,11 +137,11 @@ As with triggers, input and output bindings are added to your function as bindin
2. AddtheappropriateNuGetextensionpackagefor the specific binding. For more information, see [Local C# development using Visual Studio](functions-triggers-bindings.md#local-csharp) intheTriggersandBindingsarticle. Thebinding-specificNuGetpackagerequirementsarefoundinthereferencearticlefor the binding.
140
+
2. AddtheappropriateNuGetextensionpackagefor the specific binding. For more information, see [Local C# development using Visual Studio](functions-triggers-bindings.md#local-csharp) intheTriggersandBindingsarticle. Thebinding-specificNuGetpackagerequirementsarefoundinthereferencearticlefor the binding. For an example, see the [Queue storage bindings article](functions-bindings-storage-queue.md#packages).
141
141
142
-
3. If there is a service connection string, add it to the **Values** collection in the [local setting file](functions-run-local.md#local-settings-file). Thesevaluesareusedinsteadoftheactualconnectionstringsinyourbindingattributes. Theymustalsobeaddedtothe [functionappsettings](#function-app-settings) whenyoupublishtheproject.
0 commit comments