Skip to content

Commit 417027c

Browse files
committed
fix
1 parent 92fa97a commit 417027c

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

articles/cosmos-db/nosql/quickstart-dotnet.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -131,7 +131,7 @@ You can authenticate to Cosmos DB for NoSQL using DefaultAzureCredential by addi
131131
dotnet add package Azure.Identity
132132
```
133133

134-
From the project directory, open the *Program.cs* file. In your editor, add using directives for the ``Microsoft.Azure.Cosmos`` and `Azure.Identity` namespaces.
134+
From the project directory, open the `Program.cs` file. In your editor, add using directives for the ``Microsoft.Azure.Cosmos`` and `Azure.Identity` namespaces.
135135

136136
:::code language="csharp" source="~/cosmos-db-nosql-dotnet-samples/001-quickstart/Program.cs" id="using_directives":::
137137

@@ -143,7 +143,7 @@ For more information on different ways to create a ``CosmosClient`` instance, se
143143

144144
## [Connection String](#tab/connection-string)
145145

146-
From the project directory, open the *Program.cs* file. In your editor, add a using directive for ``Microsoft.Azure.Cosmos``.
146+
From the project directory, open the `Program.cs` file. In your editor, add a using directive for ``Microsoft.Azure.Cosmos``.
147147

148148
:::code language="csharp" source="~/cosmos-db-nosql-dotnet-samples/001-quickstart/Program.cs" id="using_directives":::
149149

@@ -168,7 +168,7 @@ The `Microsoft.Azure.Cosmos` client libraries enable you to perform *data* opera
168168
> - [Azure Resource Manager templates (ARM templates)](./sql/manage-with-templates.md)
169169
> - [Azure Resource Manager .NET client library](https://www.nuget.org/packages/Azure.ResourceManager.CosmosDB/)
170170
171-
We'll use the Azure CLI approach in this example. Use the [`az cosmosdb sql database create`](/azure/cosmosdb/sql/database#az-cosmosdb-sql-database-create) and [`az cosmosdb sql container create`](/azure/cosmosdb/sql/container#az-cosmosdb-sql-container-create) commands to create a Cosmos DB NoSQL database and container.
171+
The Azure CLI approach is used in this example. Use the [`az cosmosdb sql database create`](/azure/cosmosdb/sql/database#az-cosmosdb-sql-database-create) and [`az cosmosdb sql container create`](/azure/cosmosdb/sql/container#az-cosmosdb-sql-container-create) commands to create a Cosmos DB NoSQL database and container.
172172

173173
```azurecli
174174
# Create a SQL API database

0 commit comments

Comments
 (0)