Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 8 additions & 8 deletions articles/getting_started/2_choosing_your_ide_vscode.md
Original file line number Diff line number Diff line change
Expand Up @@ -78,9 +78,9 @@ The official Microsoft version includes proprietary features like settings sync,

## Setting up VS Code for development with MonoGame

1. Open Visual Studio Code
1. Open up its terminal window (`Ctrl` + `` ` ``)
1. Run the following command to install MonoGame Templates
1. Open Visual Studio Code.
1. Open up its terminal window (`Ctrl` + `` ` ``).
1. Run the following command to install MonoGame Templates:

```sh
dotnet new install MonoGame.Templates.CSharp
Expand Down Expand Up @@ -141,15 +141,15 @@ The .NET MAUI extension adds features for building mobile apps, including:

## Creating a new MonoGame project

1. Open up an empty folder in Visual Studio Code
2. Open up its terminal window (`Ctrl` + `` ` ``)
1. Open up an empty folder in Visual Studio Code.
2. Open up its terminal window (`Ctrl` + `` ` ``).
3. Run the following command to create an empty project for desktop platforms:

```sh
dotnet new mgdesktopgl
```

4. Once the files are created, open up the `Game1.cs` file and wait a second for the C# extension to load
4. Once the files are created, open up the `Game1.cs` file and wait a second for the C# extension to load.
5. You can now press F5, select C# and then your projects name if Visual Studio Code asks you, and it should start up your brand new game!

## Update Project Tool references
Expand All @@ -159,8 +159,8 @@ The MonoGame Content Editor (MGCB) it a tool delivered through NuGet for your pr
Once you have created your project you should run the following terminal/command-line command to ensure the tool (and the pipeline) is setup and read for your project:

```dotnetcli
dotnet tool restore
dotnet tool restore
```

> [!NOTE]
> If you ever change the version of the tools or want to upgrade them by editing the `dotnet-tools.json` configuration, you MUST run this command again to update te tools.
> If you ever change the version of the tools or want to upgrade them by editing the `dotnet-tools.json` configuration, you MUST run this command again to update the tools.
2 changes: 1 addition & 1 deletion articles/getting_started/tools/mgcb_editor.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ dotnet mgcb-editor
```

> [!NOTE]
> You will need to buid the project at least once in order for the .NET system to download and register the tool with your project utilizing the `dotnet-tools.json` configuration file located in the `.config` folder, or use the `dotnet tool restore` command shown below.
> You will need to build the project at least once in order for the .NET system to download and register the tool with your project utilizing the `dotnet-tools.json` configuration file located in the `.config` folder, or use the `dotnet tool restore` command shown below.
>
> ```sh
> dotnet tool restore
Expand Down