Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update doc links to docs.monogame.net #8282

Merged
merged 2 commits into from May 17, 2024
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.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
4 changes: 2 additions & 2 deletions MonoGame.Framework/Content/ContentManager.cs
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
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
@@ -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
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