Skip to content

Commit 8dd727c

Browse files
authored
Drop VS4Mac from 8.0 or later articles/INCLUDES (#35543)
1 parent 4d023bd commit 8dd727c

36 files changed

Lines changed: 35 additions & 556 deletions

File tree

aspnetcore/fundamentals/choose-aspnet-framework.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ The following table compares ASP.NET Core to ASP.NET 4.x.
3030
|Build for Windows, macOS, or Linux|Build for Windows|
3131
|[Razor Pages](xref:razor-pages/index) is the recommended approach to create a Web UI as of ASP.NET Core 2.x. See also [MVC](xref:mvc/overview), [Web API](xref:tutorials/first-web-api), and [SignalR](xref:signalr/introduction).|Use [Web Forms](/aspnet/web-forms), [SignalR](/aspnet/signalr), [MVC](/aspnet/mvc), [Web API](/aspnet/web-api/), [WebHooks](/aspnet/webhooks/), or [Web Pages](/aspnet/web-pages)|
3232
|Multiple versions per machine|One version per machine|
33-
|Develop with [Visual Studio](https://visualstudio.microsoft.com/vs/), [Visual Studio for Mac](https://visualstudio.microsoft.com/vs/mac/), or [Visual Studio Code](https://code.visualstudio.com/) using C# or F#|Develop with [Visual Studio](https://visualstudio.microsoft.com/vs/) using C#, VB, or F#|
33+
|Develop with [Visual Studio](https://visualstudio.microsoft.com/vs/) or [Visual Studio Code](https://code.visualstudio.com/) using C# or F#|Develop with [Visual Studio](https://visualstudio.microsoft.com/vs/) using C#, VB, or F#|
3434
|Higher performance than ASP.NET 4.x|Good performance|
3535
|[Use .NET Core runtime](/dotnet/standard/choosing-core-framework-server)|Use .NET Framework runtime|
3636

aspnetcore/fundamentals/host/hosted-services.md

Lines changed: 0 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -169,16 +169,6 @@ The Worker Service templates support [.NET native ahead-of-time (AOT)](/dotnet/c
169169
1. Check the **Enable Native AOT publish** checkbox.
170170
1. Select **Create**.
171171

172-
<!--
173-
# [Visual Studio for Mac](#tab/visual-studio-mac)
174-
175-
1. Create a new project.
176-
1. Select **App** under **.NET Core** in the sidebar.
177-
1. Select **Worker** under **ASP.NET Core**. Select **Next**.
178-
1. Select **.NET Core 3.1** or later for the **Target Framework**. Select **Next**.
179-
1. Provide a name in the **Project Name** field. Select **Create**.
180-
-->
181-
182172
# [.NET CLI](#tab/net-cli)
183173

184174
Use the Worker Service (`worker`) template with the [dotnet new](/dotnet/core/tools/dotnet-new) command from a command shell with the AOT option:

aspnetcore/fundamentals/servers/index.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -173,7 +173,6 @@ The server is launched when the Integrated Development Environment (IDE) or edit
173173

174174
* [Visual Studio](https://visualstudio.microsoft.com): Launch profiles can be used to start the app and server with either [IIS Express](/iis/extensions/introduction-to-iis-express/iis-express-overview)/[ASP.NET Core Module](xref:host-and-deploy/aspnet-core-module) or the console.
175175
* [Visual Studio Code](https://code.visualstudio.com/): The app and server are started by [Omnisharp](https://github.com/OmniSharp/omnisharp-vscode), which activates the CoreCLR debugger.
176-
* [Visual Studio for Mac](https://visualstudio.microsoft.com/vs/mac/): The app and server are started by the [Mono Soft-Mode Debugger](https://www.mono-project.com/docs/advanced/runtime/docs/soft-debugger/).
177176

178177
When launching the app from a command prompt in the project's folder, [dotnet run](/dotnet/core/tools/dotnet-run) launches the app and server (Kestrel and HTTP.sys only). The configuration is specified by the `-c|--configuration` option, which is set to either `Debug` (default) or `Release`.
179178

aspnetcore/grpc/aspnetcore.md

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -24,10 +24,6 @@ This document shows how to get started with gRPC services using ASP.NET Core.
2424

2525
[!INCLUDE[](~/includes/net-prereqs-vsc-8.0.md)]
2626

27-
# [Visual Studio for Mac](#tab/visual-studio-mac)
28-
29-
[!INCLUDE[](~/includes/net-prereqs-mac-8.0.md)]
30-
3127
---
3228

3329
## Get started with gRPC service in ASP.NET Core
@@ -38,7 +34,7 @@ This document shows how to get started with gRPC services using ASP.NET Core.
3834

3935
See [Get started with gRPC services](xref:tutorials/grpc/grpc-start) for detailed instructions on how to create a gRPC project.
4036

41-
# [Visual Studio Code / Visual Studio for Mac](#tab/visual-studio-code+visual-studio-mac)
37+
# [Visual Studio Code](#tab/visual-studio-code)
4238

4339
Run `dotnet new grpc -o GrpcGreeter` from the command line.
4440

aspnetcore/includes/mac-terminal-access.md

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -6,12 +6,7 @@ Accessing a command terminal on Mac for the first time requires the following se
66
* Navigate to **System Preferences > Keyboard > Shortcuts > Services**.
77
* Under **Files and Folders**, verify **New Terminal at Folder** is selected.
88

9-
The preceding instructions enable accessing a command terminal two ways: from inside **Visual Studio** or from **Finder**.
10-
11-
#### To access a command terminal from Visual Studio for Mac:
12-
13-
* Right click the project name.
14-
* Navigate to **Tools > Open in Terminal**.
9+
The preceding instructions enable accessing a command terminal two ways: from inside **Visual Studio** or from **Finder**.
1510

1611
#### To access a command terminal from Finder:
1712

aspnetcore/includes/net-prereqs-mac-8.0.md

Lines changed: 0 additions & 4 deletions
This file was deleted.

aspnetcore/includes/run-the-app.md

Lines changed: 0 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -14,23 +14,6 @@
1414

1515
Visual Studio Code starts [Kestrel](xref:fundamentals/servers/kestrel), launches a browser, and navigates to `http://localhost:5001`. The address bar shows `localhost:port#` and not something like `example.com`. That's because `localhost` is the standard hostname for local computer. Localhost only serves web requests from the local computer.
1616

17-
18-
# [Visual Studio for Mac](#tab/visual-studio-mac)
19-
20-
* Select **Run** > **Start Without Debugging** to launch the app.
21-
22-
Visual Studio for Mac:
23-
24-
* Starts [Kestrel](xref:fundamentals/servers/index#kestrel) server.
25-
* Launches a browser.
26-
* Navigates to `http://localhost:port`, where *port* is a randomly chosen port number.
27-
28-
[!INCLUDE[](~/includes/trustCertMac.md)]
29-
30-
* From Visual Studio, press **Opt-Cmd-Return** to run without the debugger. Alternatively, navigate to the menu bar and go to **Run>Start Without Debugging**.
31-
32-
Visual Studio starts [Kestrel](xref:fundamentals/servers/kestrel), launches a browser, and navigates to `http://localhost:5001`.
33-
3417
<!-- End of VS tabs -->
3518

3619
---

aspnetcore/includes/worker-template-instructions.md

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -5,14 +5,6 @@
55
1. Provide a project name in the **Project name** field or accept the default project name. Select **Create**.
66
1. In the **Create a new Worker service** dialog, select **Create**.
77

8-
# [Visual Studio for Mac](#tab/visual-studio-mac)
9-
10-
1. Create a new project.
11-
1. Select **App** under **.NET Core** in the sidebar.
12-
1. Select **Worker** under **ASP.NET Core**. Select **Next**.
13-
1. Select **.NET Core 3.0** or later for the **Target Framework**. Select **Next**.
14-
1. Provide a name in the **Project Name** field. Select **Create**.
15-
168
# [.NET CLI](#tab/net-cli)
179

1810
Use the Worker Service (`worker`) template with the [dotnet new](/dotnet/core/tools/dotnet-new) command from a command shell. In the following example, a Worker Service app is created named `ContosoWorker`. A folder for the `ContosoWorker` app is created automatically when the command is executed.

aspnetcore/migration/70-80.md

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -20,10 +20,6 @@ This article explains how to update an existing ASP.NET Core in .NET 7 project t
2020

2121
[!INCLUDE[](~/includes/net-prereqs-vsc-8.0.md)]
2222

23-
# [Visual Studio for Mac](#tab/visual-studio-mac)
24-
25-
[!INCLUDE[](~/includes/net-prereqs-mac-8.0.md)]
26-
2723
---
2824

2925
## Update the .NET SDK version in `global.json`

aspnetcore/razor-pages/index.md

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -33,10 +33,6 @@ This document provides an introduction to Razor Pages. It's not a step by step t
3333

3434
[!INCLUDE[](~/includes/net-prereqs-vsc-6.0.md)]
3535

36-
# [Visual Studio for Mac](#tab/visual-studio-mac)
37-
38-
[!INCLUDE[](~/includes/net-prereqs-mac-6.0.md)]
39-
4036
---
4137

4238
<a name="rpvs17"></a>
@@ -51,10 +47,6 @@ See [Get started with Razor Pages](xref:tutorials/razor-pages/razor-pages-start)
5147

5248
Run `dotnet new webapp` from the command line.
5349

54-
# [Visual Studio for Mac](#tab/visual-studio-mac)
55-
56-
See [Get started with Razor Pages](xref:tutorials/razor-pages/razor-pages-start) for detailed instructions on how to create a Razor Pages project.
57-
5850
---
5951

6052
## Razor Pages

0 commit comments

Comments
 (0)