Skip to content

Commit e7877f9

Browse files
authored
VS4Mac 8.6 GA updates (#18381)
1 parent 392605b commit e7877f9

12 files changed

Lines changed: 37 additions & 15 deletions

File tree

aspnetcore/tutorials/first-mongo-app.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -175,8 +175,8 @@ The database is ready. You can start creating the ASP.NET Core web API.
175175
# [Visual Studio for Mac](#tab/visual-studio-mac)
176176

177177
1. In Visual Studio for Mac earlier than version 8.6, select **File** > **New Solution** > **.NET Core** > **App** from the sidebar. In version 8.6 or later, select **File** > **New Solution** > **Web and Console** > **App** from the sidebar.
178-
1. Select the **ASP.NET Core Web API** C# project template, and select **Next**.
179-
1. Select **.NET Core 3.0** from the **Target Framework** drop-down list, and select **Next**.
178+
1. Select the **ASP.NET Core** > **API** C# project template, and select **Next**.
179+
1. Select **.NET Core 3.1** from the **Target Framework** drop-down list, and select **Next**.
180180
1. Enter *BooksApi* for the **Project Name**, and select **Create**.
181181
1. In the **Solution** pad, right-click the project's **Dependencies** node and select **Add Packages**.
182182
1. Enter *MongoDB.Driver* in the search box, select the *MongoDB.Driver* package, and select **Add Package**.

aspnetcore/tutorials/first-mvc-app/start-mvc.md

Lines changed: 13 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -87,16 +87,25 @@ The tutorial assumes familarity with VS Code. See [Getting started with VS Code]
8787

8888
* Select **File** > **New Solution**.
8989

90-
![macOS New solution](./start-mvc/_static/new_project_vsmac.png)
90+
![macOS New solution](start-mvc/_static/new_project_vsmac.png)
91+
92+
* In Visual Studio for Mac earlier than version 8.6, select **.NET Core** > **App** > **Web Application (Model-View-Controller)** > **Next**. In version 8.6 or later, select **Web and Console** > **App** > **Web Application (Model-View-Controller)** > **Next**.
9193

92-
* In Visual Studio for Mac earlier than version 8.6, select **.NET Core** > **App** > **Web Application (Model-View-Controller)** > **Next** from the sidebar. In version 8.6 or later, select **Web and Console** > **App** > **Web Application (Model-View-Controller)** > **Next** from the sidebar.
94+
![macOS web app template selection](start-mvc/_static/web_app_template_vsmac.png)
9395

94-
* In the **Configure your new ASP.NET Core Web API** dialog, set the **Target Framework** of **.NET Core 3.1**.
96+
* Confirm the following configurations:
9597

96-
![macOS .NET Core 3.1 selection](./start-mvc/_static/new_project_31_vsmac.png)
98+
* **Target Framework** set to **.NET Core 3.1**.
99+
* **Authentication** set to **No Authentication**.
100+
101+
Select **Next**.
102+
103+
![macOS .NET Core 3.1 selection](start-mvc/_static/new_project_31_vsmac.png)
97104

98105
* Name the project **MvcMovie**, and then select **Create**.
99106

107+
![macOS name the project](start-mvc/_static/MvcMovie.png)
108+
100109
---
101110

102111
### Run the app
62.1 KB
Loading
-54.3 KB
Loading
130 KB
Loading
63.7 KB
Loading
126 KB
Loading

aspnetcore/tutorials/first-web-api.md

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -98,9 +98,13 @@ The following diagram shows the design of the app.
9898

9999
![macOS New solution](first-web-api-mac/_static/sln.png)
100100

101-
* In Visual Studio for Mac earlier than version 8.6, select **.NET Core** > **App** > **API** > **Next** from the sidebar. In version 8.6 or later, select **Web and Console** > **App** > **API** > **Next** from the sidebar.
102-
103-
* In the **Configure your new ASP.NET Core Web API** dialog, select **Target Framework** of **.NET Core 3.1*.
101+
* In Visual Studio for Mac earlier than version 8.6, select **.NET Core** > **App** > **API** > **Next**. In version 8.6 or later, select **Web and Console** > **App** > **API** > **Next** .
102+
103+
![macOS API template selection](first-web-api-mac/_static/api_template.png)
104+
105+
* Confirm the **Target Framework** is set to **.NET Core 3.1**. Select **Next**.
106+
107+
![macOS .NET Core 3.1 selection](first-web-api-mac/_static/api_31_config.png)
104108

105109
* Enter *TodoApi* for the **Project Name** and then select **Create**.
106110

aspnetcore/tutorials/razor-pages/razor-pages-start.md

Lines changed: 11 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -90,17 +90,24 @@ At the end of this tutorial, you'll have a working Razor Pages web app that you'
9090

9191
* Select **File** > **New Solution**.
9292

93-
![macOS New solution](../first-mvc-app/start-mvc/_static/new_project_vsmac.png)
93+
![macOS New solution](../first-mvc-app/start-mvc/_static/new_project_vsmac.png)
94+
95+
* In Visual Studio for Mac earlier than version 8.6, select **.NET Core** > **App** > **Web Application** > **Next**. In version 8.6 or later, select **Web and Console** > **App** > **Web Application** > **Next**.
9496

95-
* In Visual Studio for Mac earlier than version 8.6, select **.NET Core** > **App** > **Web Application** > **Next** from the sidebar. In version 8.6 or later, select **Web and Console** > **App** > **Web Application** > **Next** from the sidebar.
97+
![macOS web app template selection](razor-pages-start/_static/web_app_template_vsmac.png)
9698

97-
* In the **Configure your new Web Application** dialog, set the **Target Framework** to **.NET Core 3.1**.
99+
* Confirm the following configurations:
100+
101+
* **Target Framework** set to **.NET Core 3.1**.
102+
* **Authentication** set to **No Authentication**.
103+
104+
Select **Next**.
98105

99106
![macOS .NET Core 3.1 selection](razor-pages-start/_static/targetframework3.png)
100107

101108
* Name the project **RazorPagesMovie**, and then select **Create**.
102109

103-
![nameproj](razor-pages-start/_static/RazorPagesMovie.png)
110+
![macOS name the project](razor-pages-start/_static/RazorPagesMovie.png)
104111

105112
<!-- End of VS tabs -->
106113

-175 KB
Loading

0 commit comments

Comments
 (0)