Skip to content

Commit 7770775

Browse files
Merge pull request #50 from tyler-lutz/patch-1
Fix typos in updating_versions.md
2 parents 2879453 + 629e789 commit 7770775

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

articles/migration/updating_versions.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -18,16 +18,16 @@ description: A guide on updating MonoGame when a new release is pushed.
1818
When a new release of MonoGame is pushed, developers will need to manually update their development environment and/or existing project to make use of the new version. This guide is intended to walk you through the steps of performing these updates.
1919

2020
## Update Existing Projects
21-
Developers wishing to update their current project to use a new release version only need to update the *target framework*, *NuGet package verions*, and *dotnet tools* version. Doing this dpeends on if you are using Visual Studio 2022 or another development environment.
21+
Developers wishing to update their current project to use a new release version only need to update the *target framework*, *NuGet package versions*, and *dotnet tools* version. Doing this depends on if you are using Visual Studio 2022 or another development environment.
2222

2323
### Update Target Framework
24-
Developers will need to ensure the project is updated to target the .NET version used by MonoGame at minimum (currenty `net8.0`). To do this, open your project's *.csproj* file and find the `<TargetFramework>` element and change the `net-X.Y` version to `net-8.0`, then save the file.
24+
Developers will need to ensure the project is updated to target the .NET version used by MonoGame at minimum (currently `net8.0`). To do this, open your project's *.csproj* file and find the `<TargetFramework>` element and change the `net-X.Y` version to `net-8.0`, then save the file.
2525

2626
> [!NOTE]
27-
> Only change the .NET version number. some projext types have platform specifiers such as `net6.0-windows`. The only thing that should change here is the version number.
27+
> Only change the .NET version number. some project types have platform specifiers such as `net6.0-windows`. The only thing that should change here is the version number.
2828
2929
### Update NuGet References
30-
The following sections cover updating your NuGet packages for existing projects based om your developmemt environment.
30+
The following sections cover updating your NuGet packages for existing projects based on your development environment.
3131

3232
#### Visual Studio 2022
3333
Open your existing project in Visual Studio 2022 and perform the following
@@ -71,17 +71,17 @@ Developers will need to update the MonoGame C# Templates used to create new proj
7171
> Updating the templates will not affect existing projects. if developers wish to update existing project, see the info in the [Update Existing Projects](#update-existing-projects) section.
7272
7373
#### Visual Studio 2022
74-
Developers using Visual Studio 2022 should be using the [MonoGame C# Project Templates](https://marketplace.visualstudio.com/items?itemName=MonoGame.MonoGame-Templates-VSExtension) extension. This provides not only the tempaltes but also the functinality to open the *MonoGame Content Builder Editor* (MGCB Editor) within Visual Studio. You can update the extension by performing the following
74+
Developers using Visual Studio 2022 should be using the [MonoGame C# Project Templates](https://marketplace.visualstudio.com/items?itemName=MonoGame.MonoGame-Templates-VSExtension) extension. This provides not only the templates but also the functionality to open the *MonoGame Content Builder Editor* (MGCB Editor) within Visual Studio. You can update the extension by performing the following
7575

7676
1. Open Visual Studio 2022
77-
2. In the lanuch window, choose the *Continue without code* option at the bottom on the right.
77+
2. In the launch window, choose the *Continue without code* option at the bottom on the right.
7878
3. From the top menu choose, *Extensions > Manage Extensions* to open the *Extension Manager* panel.
7979
4. Click the *Updates* tab and choose *MonoGame Framework C# project templates* and update it to the latest version.
8080

8181
If prompted to close Visual Studio to finish the update, do so now to continue installing the update.
8282

8383
#### dotnet CLI (VSCode/Rider)
84-
Develoeprs using the dotnet CLI with environments such as Visual Studio Code, JetBrains Rider, or other editors, can exceute the following command in a command prompt/terminal to update the templates
84+
Developers using the dotnet CLI with environments such as Visual Studio Code, JetBrains Rider, or other editors, can execute the following command in a command prompt/terminal to update the templates
8585

8686
```sh
8787
dotnet new install MonoGame.Templates.CSharp
@@ -94,4 +94,4 @@ dotnet new install MonoGame.Templates.CSharp
9494
> dotnet new uninstall MonoGame.Templates.CSharp
9595
> ```
9696
97-
Alternatively, you can perform `dotnet new update` which will update all templates installed to their most current version avaialble. However, this may affect other templates you have installed that you may not wish to update, it's an all or nothing command.
97+
Alternatively, you can perform `dotnet new update` which will update all templates installed to their most current version available. However, this may affect other templates you have installed that you may not wish to update, it's an all or nothing command.

0 commit comments

Comments
 (0)