From b39167cefff9810a1a9a5bc75ee3ca2aa98d5c25 Mon Sep 17 00:00:00 2001 From: gregvanl Date: Fri, 6 May 2022 13:24:15 -0700 Subject: [PATCH] .NET Core is now just .NET --- blogs/2018/12/04/rich-navigation.md | 2 +- docs/languages/csharp.md | 8 ++++---- docs/languages/dotnet.md | 4 ++-- docs/other/unity.md | 4 ++-- learn/develop-cloud/containers.md | 2 +- release-notes/v1_42.md | 2 +- 6 files changed, 11 insertions(+), 11 deletions(-) diff --git a/blogs/2018/12/04/rich-navigation.md b/blogs/2018/12/04/rich-navigation.md index d2727591e..b7ffed50e 100644 --- a/blogs/2018/12/04/rich-navigation.md +++ b/blogs/2018/12/04/rich-navigation.md @@ -25,7 +25,7 @@ The rich code navigation experience we're building helps developers keep track o ![Navigating a csharp PR](CSharp.gif) -*Navigating a C#-based PR on macOS, without even having the C# extension or .NET Core installed.* +*Navigating a C#-based PR on macOS, without even having the C# extension or .NET installed.* ![Navigating a C++ PR](CPlusPlus.gif) diff --git a/docs/languages/csharp.md b/docs/languages/csharp.md index 573bf4be9..7e29dd60c 100644 --- a/docs/languages/csharp.md +++ b/docs/languages/csharp.md @@ -37,13 +37,13 @@ Visual Studio Code uses the power of [Roslyn](https://github.com/dotnet/roslyn) * MSBuild projects * C# scripts (CSX) -On startup the best matching projects are loaded automatically but you can also choose your projects manually. The status bar will show what projects have been loaded and also allows you to select a different set of projects. To do so, click on the status bar projects item and select *Change projects…*. In the image below a single project has been picked up: +On startup the best matching projects are loaded automatically but you can also choose your projects manually. The status bar will show what projects have been loaded and also allows you to select a different set of projects. To do so, click on the status bar projects item and select **Change projects…**. In the image below a single project has been picked up: ![Select Project](images/csharp/selectproject.png) The available options include: -* Selecting a ```project.json``` file will open a .NET Core project and VS Code will load that project plus the referenced projects. +* Selecting a ```project.json``` file will open a .NET project and VS Code will load that project plus the referenced projects. * Selecting a ```*.sln``` file opens a MSBuild-project. It will load the referenced ```*.csproj``` projects and sibling or descendant ```project.json``` files but no other project files that are referenced from the solution file. * Selecting a ```folder``` will make VS Code scan for ```*.sln```, ```project.json``` and ```*.csx``` files (C# scripts) and VS Code will attempt to load them all. @@ -105,7 +105,7 @@ There are some basic quick fixes supported in VS Code. You will see a lightbulb Read on to find out about: -* [.NET Core Development](/docs/languages/dotnet.md) - get up and running with cross-platform .NET +* [.NET Development](/docs/languages/dotnet.md) - get up and running with cross-platform .NET * [Basic Editing](/docs/editor/codebasics.md) - Learn about the powerful VS Code editor. * [Tasks](/docs/editor/tasks.md) - Use tasks to build your project and more. * [Debugging](/docs/editor/debugging.md) - Find out how to use the debugger with your project. @@ -115,7 +115,7 @@ Read on to find out about: ### My Project won't load -VS Code only supports a limited set of project types (primarily .NET Core). For full .NET project support, we suggest you use [Visual Studio Community](https://visualstudio.microsoft.com/vs/community). +VS Code only supports a limited set of project types. For full .NET project support, we suggest you use [Visual Studio Community](https://visualstudio.microsoft.com/vs/community). ### IntelliSense is not working diff --git a/docs/languages/dotnet.md b/docs/languages/dotnet.md index 25434df67..46e8377c7 100644 --- a/docs/languages/dotnet.md +++ b/docs/languages/dotnet.md @@ -69,8 +69,8 @@ Install the following: * Continue exploring C# development: [Debug with VS Code and .NET](https://docs.microsoft.com/dotnet/articles/csharp/getting-started/with-visual-studio-code#debug) * [Basic Editing](/docs/editor/codebasics.md) - Learn about the powerful VS Code editor. * [Code Navigation](/docs/editor/editingevolved.md) - Move quickly through your source code. -* [Working with C#](/docs/languages/csharp.md) - Learn about the great C# support you'll have when working on your .NET Core application. +* [Working with C#](/docs/languages/csharp.md) - Learn about the great C# support you'll have when working on your .NET application. * [Tasks](/docs/editor/tasks.md) - Running tasks with Gulp, Grunt, and Jake. Showing Errors and Warnings -* [.NET Core Docs](https://docs.microsoft.com/dotnet/core/) - Visit the .NET Core docs for more information on this powerful cross-platform development solution. +* [.NET Docs](https://docs.microsoft.com/dotnet) - Visit the .NET docs for more information on this powerful cross-platform development solution. * [Deploying Applications to Azure](/docs/azure/deployment.md) - Deploy your app to [Azure](https://azure.microsoft.com). * [Get Started with F# in Visual Studio Code](https://docs.microsoft.com/dotnet/fsharp/get-started/get-started-vscode) diff --git a/docs/other/unity.md b/docs/other/unity.md index a087710cf..4c1c24e85 100644 --- a/docs/other/unity.md +++ b/docs/other/unity.md @@ -17,9 +17,9 @@ Read on to find out how to configure Unity and your project to get the best poss ## Prerequisites -From [Using .NET Core in Visual Studio Code](/docs/languages/dotnet.md): +From [Using .NET in Visual Studio Code](/docs/languages/dotnet.md): -1. Install the [.NET Core SDK](https://dotnet.microsoft.com/download), which includes the Runtime and the `dotnet` command. +1. Install the [.NET SDK](https://dotnet.microsoft.com/download), which includes the Runtime and the `dotnet` command. 1. [Windows only] Logout or restart Windows to allow changes to `%PATH%` to take effect. diff --git a/learn/develop-cloud/containers.md b/learn/develop-cloud/containers.md index 92320e4e5..68e3da1cd 100644 --- a/learn/develop-cloud/containers.md +++ b/learn/develop-cloud/containers.md @@ -43,7 +43,7 @@ Below is a list of sample dev containers we'd recommend starting out with: - [Try Out Development Containers: Java](https://github.com/microsoft/vscode-remote-try-java) - [Try Out Development Containers: C++](https://github.com/microsoft/vscode-remote-try-cpp) - [Try Out Development Containers: Node.js](https://github.com/microsoft/vscode-remote-try-node) -- [Try Out Development Containers: .NET Core](https://github.com/microsoft/vscode-remote-try-dotnetcore) +- [Try Out Development Containers: .NET](https://github.com/microsoft/vscode-remote-try-dotnetcore) - [Try Out Development Containers: Go](https://github.com/microsoft/vscode-remote-try-go) - [Try Out Development Containers: PHP](https://github.com/microsoft/vscode-remote-try-php) - [Try Out Development Containers: Rust](https://github.com/microsoft/vscode-remote-try-rust) diff --git a/release-notes/v1_42.md b/release-notes/v1_42.md index 90293473b..eeb433afa 100644 --- a/release-notes/v1_42.md +++ b/release-notes/v1_42.md @@ -903,7 +903,7 @@ We have fixed various issues around mouse handling and dynamic CSS so that the M ### Containers -There are new articles covering creating [containers](https://code.visualstudio.com/docs/containers/overview) with the Microsoft [Docker](https://marketplace.visualstudio.com/items?itemName=ms-azuretools.vscode-docker) extension. You'll find tutorials for containerizing [Node.js](https://code.visualstudio.com/docs/containers/quickstart-node) and [.NET Core](https://code.visualstudio.com/docs/containers/quickstart-aspnet-core) applications, pushing to a [container registry](https://code.visualstudio.com/docs/containers/quickstart-container-registries), and [deploying containers](https://code.visualstudio.com/docs/containers/app-service) to the cloud. +There are new articles covering creating [containers](https://code.visualstudio.com/docs/containers/overview) with the Microsoft [Docker](https://marketplace.visualstudio.com/items?itemName=ms-azuretools.vscode-docker) extension. You'll find tutorials for containerizing [Node.js](https://code.visualstudio.com/docs/containers/quickstart-node) and [ASP.NET Core](https://code.visualstudio.com/docs/containers/quickstart-aspnet-core) applications, pushing to a [container registry](https://code.visualstudio.com/docs/containers/quickstart-container-registries), and [deploying containers](https://code.visualstudio.com/docs/containers/app-service) to the cloud. ![Docker extension](images/1_42/docker-extension.png)