Skip to content

Commit 2d46b91

Browse files
author
Luke Hoban
committed
Minor tweaks
1 parent 54f8536 commit 2d46b91

File tree

2 files changed

+3
-5
lines changed

2 files changed

+3
-5
lines changed

labs/azure/csharp/01-iac/02-configuring-azure.md

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,11 +7,9 @@ Now that you have a basic project, let's configure Azure support for it.
77
Run the following command to install the Azure package:
88

99
```bash
10-
dotnet add package Pulumi.Azure --version 2.2.0-preview
10+
dotnet add package Pulumi.Azure
1111
```
1212

13-
*Note: Pulumi .NET SDK is still in preview, so we need to specify the NuGet package version explicitly.*
14-
1513
The package will be added to `csproj` and the binaries will be restored.
1614

1715
## Step 2 — Use the Azure Package

labs/azure/csharp/03-aci/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -127,7 +127,7 @@ var registry = new Registry("registry", new RegistryArgs
127127
You can build and publish Docker images from within your Pulumi program. For that, install an additional NuGet package:
128128

129129
```bash
130-
dotnet add package Pulumi.Docker --version 1.2.0-preview
130+
dotnet add package Pulumi.Docker
131131
```
132132

133133
Now, let's add a few new files. First, `app/site/index.html`:
@@ -182,7 +182,7 @@ and add credentials for the container group to be able to access the registry:
182182
...
183183
ImageRegistryCredentials =
184184
{
185-
new GroupImageRegistryCredentialsArgs
185+
new Pulumi.Azure.ContainerService.Inputs.GroupImageRegistryCredentialArgs
186186
{
187187
Server = registry.LoginServer,
188188
Username = registry.AdminUsername,

0 commit comments

Comments
 (0)