Skip to content

Commit

Permalink
Update doc links to docs.monogame.net (#8282)
Browse files Browse the repository at this point in the history
* Update doc links to docs.monogame.net

* Add .html to platforms to match other doc links
  • Loading branch information
JakeLegendXIII committed May 17, 2024
1 parent 4cbd88d commit 681e91d
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions MonoGame.Framework/Content/ContentManager.cs
Original file line number Diff line number Diff line change
Expand Up @@ -229,7 +229,7 @@ protected virtual void Dispose(bool disposing)
/// <para>
/// Before a ContentManager can load an asset, you need to add the asset to your game project using
/// the steps described in
/// <see href="https://monogame.net/articles/content_pipeline/index.html">Adding Content - MonoGame</see>.
/// <see href="https://docs.monogame.net/articles/content_pipeline/index.html">Adding Content - MonoGame</see>.
/// </para>
/// </remarks>
/// <typeparam name="T">
Expand Down Expand Up @@ -299,7 +299,7 @@ public virtual T LoadLocalized<T> (string assetName)
/// <remarks>
/// Before a ContentManager can load an asset, you need to add the asset to your game project using
/// the steps described in
/// <see href="https://monogame.net/articles/content_pipeline/index.html">Adding Content - MonoGame</see>.
/// <see href="https://docs.monogame.net/articles/content_pipeline/index.html">Adding Content - MonoGame</see>.
/// </remarks>
/// <typeparam name="T">
/// <para>
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ A high level breakdown of the components of the framework:
* Our [issue tracker](https://github.com/MonoGame/MonoGame/issues) is on GitHub.
* Use our [community forums](http://community.monogame.net/) for support questions.
* You can [join the Discord server](https://discord.gg/monogame) and chat live with the core developers and other users.
* The [official documentation](https://monogame.net/articles/index.html) is on our website.
* The [official documentation](https://docs.monogame.net/articles/index.html) is on our website.
* Download [release](https://github.com/MonoGame/MonoGame/releases) and [development](https://github.com/orgs/MonoGame/packages) packages.
* Follow [@MonoGameTeam](https://twitter.com/monogameteam) on Twitter.

Expand Down
2 changes: 1 addition & 1 deletion REQUIREMENTS.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
Depending on the [platform](https://monogame.net/articles/platforms) that you are targeting, MonoGame has different sets of requirements.
Depending on the [platform](https://docs.monogame.net/articles/platforms.html) that you are targeting, MonoGame has different sets of requirements.

For desktop platforms
====================
Expand Down
2 changes: 1 addition & 1 deletion Tools/MonoGame.Content.Builder.Editor/MainWindow.cs
Original file line number Diff line number Diff line change
Expand Up @@ -569,7 +569,7 @@ private void CmdDebugMode_Executed(object sender, EventArgs e)

private void CmdHelp_Executed(object sender, EventArgs e)
{
Process.Start(new ProcessStartInfo() { FileName = "https://monogame.net/articles/tools/mgcb_editor.html", UseShellExecute = true, Verb = "open" });
Process.Start(new ProcessStartInfo() { FileName = "https://docs.monogame.net/articles/tools/mgcb_editor.html", UseShellExecute = true, Verb = "open" });
}

private void CmdAbout_Executed(object sender, EventArgs e)
Expand Down

0 comments on commit 681e91d

Please sign in to comment.