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/dev-spaces/quickstart-netcore-visualstudio.md
+8-8Lines changed: 8 additions & 8 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -5,7 +5,7 @@ author: zr-msft
5
5
services: azure-dev-spaces
6
6
ms.service: azure-dev-spaces
7
7
ms.author: zarhoads
8
-
ms.date: 03/22/2019
8
+
ms.date: 11/13/2019
9
9
ms.topic: quickstart
10
10
description: "Rapid Kubernetes development with containers and microservices on Azure"
11
11
keywords: "Docker, Kubernetes, Azure, AKS, Azure Kubernetes Service, containers, Helm, service mesh, service mesh routing, kubectl, k8s"
@@ -46,19 +46,19 @@ You must create an AKS cluster in a [supported region][supported-regions]. To cr
46
46
47
47
## Enable Azure Dev Spaces on your AKS cluster
48
48
49
-
Navigate to your AKS cluster in the Azure portal and click *Dev Spaces*. Change *Enable Dev Spaces* to *Yes* and click *Save*.
49
+
Navigate to your AKS cluster in the Azure portal and click *Dev Spaces*. Change *Use Dev Spaces* to *Yes* and click *Save*.
50
50
51
51

52
52
53
53
## Create a new ASP.NET web app
54
54
55
55
1. Open Visual Studio.
56
56
1. Create a new project.
57
-
1. Choose *ASP.NET Core Web Application* and name your project *webfrontend*.
58
-
1.Click *OK*.
57
+
1. Choose *ASP.NET Core Web Application* and click *Next*.
58
+
1.Name your project *webfrontend* and click *Create*.
59
59
1. When prompted, choose *Web Application (Model-View-Controller)* for the template.
60
-
1. Select *.NET Core* and *ASP.NET Core 2.0* at the top.
61
-
1. Click *OK*.
60
+
1. Select *.NET Core* and *ASP.NET Core 2.1* at the top.
61
+
1. Click *Create*.
62
62
63
63
## Connect your project to your dev space
64
64
@@ -87,12 +87,12 @@ Built container image in 39s
87
87
Waiting for container...
88
88
36s
89
89
90
-
Service 'webfrontend' port 'http' is available at http://webfrontend.1234567890abcdef1234.eus.azds.io/
90
+
Service 'webfrontend' port 'http' is available at http://default.webfrontend.1234567890abcdef1234.eus.azds.io/
91
91
Service 'webfrontend' port 80 (http) is available at http://localhost:62266
92
92
Completed warmup for project 'webfrontend' in 125 seconds.
93
93
```
94
94
95
-
In the above example, the public URL is http://webfrontend.1234567890abcdef1234.eus.azds.io/. Navigate to your service's public URL and interact with the service running in your dev space.
95
+
In the above example, the public URL is http://default.webfrontend.1234567890abcdef1234.eus.azds.io/. Navigate to your service's public URL and interact with the service running in your dev space.
96
96
97
97
This process may have disabled public access to your service. To enable public access, you can update the [ingress value in the *values.yaml*][ingress-update].
0 commit comments