Skip to content

Commit c58670d

Browse files
in progress
1 parent da8e5f2 commit c58670d

File tree

1 file changed

+22
-1
lines changed

1 file changed

+22
-1
lines changed

articles/azure-app-configuration/enable-dynamic-configuration-dotnet-background-service.md

Lines changed: 22 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,4 +27,25 @@ In this tutorial, you learn how to:
2727

2828
- An Azure account with an active subscription. [Create one for free](https://azure.microsoft.com/free/).
2929
- An App Configuration store. [Create a store](./quickstart-azure-app-configuration-create.md#create-an-app-configuration-store).
30-
- [.NET SDK](https://dotnet.microsoft.com/download) - also available in the [Azure Cloud Shell](https://shell.azure.com).
30+
- [.NET SDK 6.0 or later](https://dotnet.microsoft.com/download) - also available in the [Azure Cloud Shell](https://shell.azure.com).
31+
32+
## Add a key-value
33+
34+
Add the following key-value to the App Configuration store and leave **Label** and **Content Type** with their default values. For more information about how to add key-values to a store using the Azure portal or the CLI, go to [Create a key-value](./quickstart-azure-app-configuration-create.md#create-a-key-value).
35+
36+
| Key | Value |
37+
|----------------------------|-------------------------------------|
38+
| *TestApp:Settings:Message* | *Data from Azure App Configuration* |
39+
40+
## Create a .NET background service
41+
42+
You use the [.NET command-line interface (CLI)](/dotnet/core/tools/) to create a new .NET app project. The advantage of using the .NET CLI over Visual Studio is that it's available across the Windows, macOS, and Linux platforms. Alternatively, use the preinstalled tools available in the [Azure Cloud Shell](https://shell.azure.com).
43+
44+
1. Create a new folder for your project.
45+
46+
2. In the new folder, run the following command to create a new .NET background service project:
47+
48+
```dotnetcli
49+
dotnet new worker
50+
```
51+

0 commit comments

Comments
 (0)