This commit is contained in:
gregvanl 2022-05-06 13:24:15 -07:00
Родитель f0e2ddfd70
Коммит b39167ceff
6 изменённых файлов: 11 добавлений и 11 удалений

Просмотреть файл

@ -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)

Просмотреть файл

@ -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

Просмотреть файл

@ -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)

Просмотреть файл

@ -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.

Просмотреть файл

@ -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)

Просмотреть файл

@ -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)