diff --git a/BuildNuget.bat b/BuildNuget.bat
index 6626f1ea293..52dec38d657 100644
--- a/BuildNuget.bat
+++ b/BuildNuget.bat
@@ -12,12 +12,12 @@ dotnet pack src\Xna.Framework.Content.Pipeline.Audio\Xna.Framework.Content.Pipel
dotnet pack src\Xna.Framework.Content.Pipeline.Graphics\Xna.Framework.Content.Pipeline.Graphics.csproj --output NuGetPackages\Output\ /t:Build /p:Configuration=Release
dotnet pack src\Xna.Framework.Content.Pipeline.Media\Xna.Framework.Content.Pipeline.Media.csproj --output NuGetPackages\Output\ /t:Build /p:Configuration=Release
-"C:\Program Files (x86)\NuGet3\nuget.exe" pack NuGetPackages/Content.Pipeline.Builder.nuspec -OutputDirectory NuGetPackages\Output\ -BasePath . -Version 3.12.9001 -Properties Configuration=Release
-"C:\Program Files (x86)\NuGet3\nuget.exe" pack NuGetPackages/Content.Pipeline.Builder.Windows.nuspec -OutputDirectory NuGetPackages\Output\ -BasePath . -Version 3.12.9001 -Properties Configuration=Release
+"C:\Program Files (x86)\NuGet3\nuget.exe" pack NuGetPackages/Content.Pipeline.Builder.nuspec -OutputDirectory NuGetPackages\Output\ -BasePath . -Version 3.13.9001 -Properties Configuration=Release
+"C:\Program Files (x86)\NuGet3\nuget.exe" pack NuGetPackages/Content.Pipeline.Builder.Windows.nuspec -OutputDirectory NuGetPackages\Output\ -BasePath . -Version 3.13.9001 -Properties Configuration=Release
-"C:\Program Files (x86)\NuGet3\nuget.exe" pack NuGetPackages/MonoGame.Framework.Android.nuspec -OutputDirectory NuGetPackages\Output\ -BasePath . -Version 3.12.9001.0 -Properties Configuration=Release
-"C:\Program Files (x86)\NuGet3\nuget.exe" pack NuGetPackages/MonoGame.Framework.iOS.nuspec -OutputDirectory NuGetPackages\Output\ -BasePath . -Version 3.12.9001.1 -Properties Configuration=Release
-"C:\Program Files (x86)\NuGet3\nuget.exe" pack NuGetPackages/MonoGame.Framework.WindowsUniversal.nuspec -OutputDirectory NuGetPackages\Output\ -BasePath . -Version 3.12.9001.1 -Properties Configuration=Release
+"C:\Program Files (x86)\NuGet3\nuget.exe" pack NuGetPackages/MonoGame.Framework.Android.nuspec -OutputDirectory NuGetPackages\Output\ -BasePath . -Version 3.13.9001.0 -Properties Configuration=Release
+"C:\Program Files (x86)\NuGet3\nuget.exe" pack NuGetPackages/MonoGame.Framework.iOS.nuspec -OutputDirectory NuGetPackages\Output\ -BasePath . -Version 3.13.9001.0 -Properties Configuration=Release
+"C:\Program Files (x86)\NuGet3\nuget.exe" pack NuGetPackages/MonoGame.Framework.WindowsUniversal.nuspec -OutputDirectory NuGetPackages\Output\ -BasePath . -Version 3.13.9001.0 -Properties Configuration=Release
dotnet pack Platforms\Xna.Framework.WindowsDX11.csproj --output NuGetPackages\Output\ /t:Build /p:Configuration=Release
dotnet pack Platforms\Xna.Framework.DesktopGL.csproj --output NuGetPackages\Output\ /t:Build /p:Configuration=Release
diff --git a/CHANGELOG.md b/CHANGELOG.md
index f2ca449eba6..7e962607518 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,5 +1,58 @@
# Changelog
+## 3.13.9001 Release - July 24, 2024
+
+### Fixed
+ - fix GamePadCapabilities #1565
+ - [iOS] fix Game.Services NullReferenceException #1607
+ - [SDL] fix JoystickCapabilities.IsGamepad #1626
+ - [ANDROID] fix Keyboard #1688
+ - fix templates .mgcb file creation #1693
+ - Fix templates projectname #1694
+ - fix BlazorGL template alpha blend #1695
+ - [DX11] fix NonPowerOfTwoUnusedTextureShouldNotThrow test #1701
+ - [GL] fix NonPowerOfTwoUnusedTextureShouldNotThrow test #1702
+ - [EffectProcessor] inorder samplers merge #1709
+ - [EffectProcessor] fix ShaderProfileDX11 samplerSlot #1710
+ - fix CreateGamePadCapabilities #1713
+ - fix ResourceNameAlphaTestEffect #1724
+ - [BlazorGL] fix MediaPlayer IsRepeating #1726
+ - [SDL] early Joysticks initialization #1735
+ - [BlazorGL] clear KeyboardState on focus lost #1736
+ - [BlazorGL] fix Keyboard special keys #1738
+ - fix MGCB builds with no response file #1745
+
+### Performance
+ - optimize ConcreteTextureCollection.PlatformApply() #1605
+ - perf use HashSet for ContentManager _disposableAssets #1711
+ - [Android] reduce FromEGLConfig() allocations #1583
+ - [GL] use HashSet for GL Extensions #1587
+ - [GL] optimized PlatformApplyVertexBuffers() #1604, #1673
+ - [GL] discard VertexBuffer in SpriteBatcher #1636
+ - [OpenGL] remove glFinish() from Texture2D.SetData() #1638
+ - [OpenGL] use DrawRangeElements #1703
+ - [SDL] cache JoystickCapabilities #1625
+ - [SDL] cache GamePadCapabilities #1630
+ - [SDL] reduce Vorbis MediaPlayer allocations #1680
+ - [SDL] reuse Vorbis reader for Song Repeat #1684
+
+### Changed
+ - [EffectProcessor] Shader Model 1.x error message #1722
+ - [BlazorGL] implemented DrawUserPrimitives and DrawUserIndexedPrimitives with vertexOffset #1723
+ - [BlazorGL] implemented GamePad #1730
+ - [BlazorGL] implemented TouchPanelCapabilities MaximumTouchCount and IsConnected #1731
+ - [BlazorGL] implemented Medium quality SoundEfects (MsAdpcm) #1748
+ - [BlazorGL] implemented SoundEffect.FromStream() #1749
+ - [BlazorGL] implemented Buffers SetData(...) with startIndex #1753
+ - [BlazorGL] implemented HiDef and WebGL2 #1756
+
+### Added
+
+### Removed
+ - VS2019 templates removed #1631
+ - Xamarin templates removed #1632
+ - removed GamePadState.Default #1650, #1651, #1653
+
## 3.12.9001 Release - May 12, 2024
### Fixed
diff --git a/Documentation/articles/migrate_381.md b/Documentation/articles/migrate_381.md
index de37ec886f0..d73cf4d167f 100644
--- a/Documentation/articles/migrate_381.md
+++ b/Documentation/articles/migrate_381.md
@@ -1,4 +1,4 @@
-# Migrating from MonoGame 3.8.1 to KNI 3.12
+# Migrating from MonoGame 3.8.1 to KNI 3.13
## Migrating Framework
@@ -12,14 +12,14 @@ Edit your .csproj file of the main project and replace:
to:
```xml
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
```
where {Platform} is Windows, DesktopGL, Android, etc.
@@ -33,13 +33,13 @@ For libraries, edit your .csproj file and replace:
to:
```xml
-
-
-
-
-
-
-
+
+
+
+
+
+
+
```
### Migrating Framework (Android)
@@ -78,7 +78,7 @@ Then replace:
With:
```xml
-
+
```
Then rename 'MonoGameContentReference':
diff --git a/Documentation/articles/migrate_3_12.md b/Documentation/articles/migrate_3_12.md
new file mode 100644
index 00000000000..9756c1434fc
--- /dev/null
+++ b/Documentation/articles/migrate_3_12.md
@@ -0,0 +1,145 @@
+# Migrating from 3.12 to 3.13
+
+
+## Migrating Framework
+
+Edit your .csproj file and replace:
+
+```xml
+
+
+
+
+
+
+
+
+```
+
+to:
+
+```xml
+
+
+
+
+
+
+
+
+```
+
+For libraries, edit your .csproj file and replace:
+
+```xml
+
+
+
+
+
+
+
+```
+
+to:
+
+```xml
+
+
+
+
+
+
+
+```
+
+## Migrating Content Builder
+
+Edit your .csproj file and replace:
+
+```xml
+
+
+
+```
+
+to:
+
+```xml
+
+
+
+```
+
+if your importers require Windows libraries (WinForms,WPF), use the 'nkast.Xna.Framework.Content.Pipeline.Builder.Windows' package.
+
+
+### Migrating BlazorGL projects
+
+Edit your .csproj file and replace:
+
+```xml
+
+
+
+
+
+
+
+
+```
+
+with:
+
+```xml
+
+
+
+
+
+
+
+
+```
+
+Edit index.html file and replace:
+
+```
+
+
+
+
+
+
+
+
+```
+
+with:
+
+```
+
+
+
+
+
+
+
+
+
+
+```
+
+### Migrating OculusVR projects
+
+Edit your .csproj file and replace:
+
+```xml
+
+```
+
+with:
+
+```xml
+
+```
diff --git a/Installers/default.build b/Installers/default.build
index 4953a4925f6..5b37038f78c 100644
--- a/Installers/default.build
+++ b/Installers/default.build
@@ -4,7 +4,7 @@
-
+
diff --git a/NuGetPackages/RegisterLocalNuget.bat b/NuGetPackages/RegisterLocalNuget.bat
index 4a79db1b808..1192d070f32 100644
--- a/NuGetPackages/RegisterLocalNuget.bat
+++ b/NuGetPackages/RegisterLocalNuget.bat
@@ -1,55 +1,55 @@
set username=username
-"C:\Program Files (x86)\nuget\nuget.exe" delete nkast.Xna.Framework 3.12.9001 -Source "C:\Users\%username%\.nuget\localPackages" -NonInteractive
-"C:\Program Files (x86)\nuget\nuget.exe" delete nkast.Xna.Framework.Design 3.12.9001 -Source "C:\Users\%username%\.nuget\localPackages" -NonInteractive
-"C:\Program Files (x86)\nuget\nuget.exe" delete nkast.Xna.Framework.Content 3.12.9001 -Source "C:\Users\%username%\.nuget\localPackages" -NonInteractive
-"C:\Program Files (x86)\nuget\nuget.exe" delete nkast.Xna.Framework.Audio 3.12.9001 -Source "C:\Users\%username%\.nuget\localPackages" -NonInteractive
-"C:\Program Files (x86)\nuget\nuget.exe" delete nkast.Xna.Framework.Graphics 3.12.9001 -Source "C:\Users\%username%\.nuget\localPackages" -NonInteractive
-"C:\Program Files (x86)\nuget\nuget.exe" delete nkast.Xna.Framework.Media 3.12.9001 -Source "C:\Users\%username%\.nuget\localPackages" -NonInteractive
-"C:\Program Files (x86)\nuget\nuget.exe" delete nkast.Xna.Framework.Input 3.12.9001 -Source "C:\Users\%username%\.nuget\localPackages" -NonInteractive
-"C:\Program Files (x86)\nuget\nuget.exe" delete nkast.Xna.Framework.Game 3.12.9001 -Source "C:\Users\%username%\.nuget\localPackages" -NonInteractive
-
-"C:\Program Files (x86)\nuget\nuget.exe" delete nkast.Xna.Framework.Content.Pipeline 3.12.9001 -Source "C:\Users\%username%\.nuget\localPackages" -NonInteractive
-"C:\Program Files (x86)\nuget\nuget.exe" delete nkast.Xna.Framework.Content.Pipeline.Audio 3.12.9001 -Source "C:\Users\%username%\.nuget\localPackages" -NonInteractive
-"C:\Program Files (x86)\nuget\nuget.exe" delete nkast.Xna.Framework.Content.Pipeline.Graphics 3.12.9001 -Source "C:\Users\%username%\.nuget\localPackages" -NonInteractive
-"C:\Program Files (x86)\nuget\nuget.exe" delete nkast.Xna.Framework.Content.Pipeline.Media 3.12.9001 -Source "C:\Users\%username%\.nuget\localPackages" -NonInteractive
-
-"C:\Program Files (x86)\nuget\nuget.exe" delete nkast.Xna.Framework.Content.Pipeline.Builder 3.12.9001 -Source "C:\Users\%username%\.nuget\localPackages" -NonInteractive
-"C:\Program Files (x86)\nuget\nuget.exe" delete nkast.Xna.Framework.Content.Pipeline.Builder.Windows 3.12.9001 -Source "C:\Users\%username%\.nuget\localPackages" -NonInteractive
-
-"C:\Program Files (x86)\nuget\nuget.exe" delete nkast.Xna.Framework.Blazor 3.12.9001 -Source "C:\Users\%username%\.nuget\localPackages" -NonInteractive
-"C:\Program Files (x86)\nuget\nuget.exe" delete MonoGame.Framework.WindowsDX.9000 3.12.9001 -Source "C:\Users\%username%\.nuget\localPackages" -NonInteractive
-"C:\Program Files (x86)\nuget\nuget.exe" delete MonoGame.Framework.WindowsUniversal.9000 3.12.9001 -Source "C:\Users\%username%\.nuget\localPackages" -NonInteractive
-"C:\Program Files (x86)\nuget\nuget.exe" delete MonoGame.Framework.DesktopGL.9000 3.12.9001 -Source "C:\Users\%username%\.nuget\localPackages" -NonInteractive
-"C:\Program Files (x86)\nuget\nuget.exe" delete MonoGame.Framework.Android.9000 3.12.9001 -Source "C:\Users\%username%\.nuget\localPackages" -NonInteractive
-
-"C:\Program Files (x86)\nuget\nuget.exe" delete nkast.Xna.Framework.Oculus.OvrDX11 3.12.9001 -Source "C:\Users\%username%\.nuget\localPackages" -NonInteractive
-
-
-"C:\Program Files (x86)\nuget\nuget.exe" add output\nkast.Xna.Framework.3.12.9001.nupkg -Source "C:\Users\%username%\.nuget\localPackages"
-"C:\Program Files (x86)\nuget\nuget.exe" add output\nkast.Xna.Framework.Design.3.12.9001.nupkg -Source "C:\Users\%username%\.nuget\localPackages"
-"C:\Program Files (x86)\nuget\nuget.exe" add output\nkast.Xna.Framework.Content.3.12.9001.nupkg -Source "C:\Users\%username%\.nuget\localPackages"
-"C:\Program Files (x86)\nuget\nuget.exe" add output\nkast.Xna.Framework.Audio.3.12.9001.nupkg -Source "C:\Users\%username%\.nuget\localPackages"
-"C:\Program Files (x86)\nuget\nuget.exe" add output\nkast.Xna.Framework.Graphics.3.12.9001.nupkg -Source "C:\Users\%username%\.nuget\localPackages"
-"C:\Program Files (x86)\nuget\nuget.exe" add output\nkast.Xna.Framework.Media.3.12.9001.nupkg -Source "C:\Users\%username%\.nuget\localPackages"
-"C:\Program Files (x86)\nuget\nuget.exe" add output\nkast.Xna.Framework.Input.3.12.9001.nupkg -Source "C:\Users\%username%\.nuget\localPackages"
-"C:\Program Files (x86)\nuget\nuget.exe" add output\nkast.Xna.Framework.Game.3.12.9001.nupkg -Source "C:\Users\%username%\.nuget\localPackages"
-
-"C:\Program Files (x86)\nuget\nuget.exe" add output\nkast.Xna.Framework.Content.Pipeline.3.12.9001.nupkg -Source "C:\Users\%username%\.nuget\localPackages"
-"C:\Program Files (x86)\nuget\nuget.exe" add output\nkast.Xna.Framework.Content.Pipeline.Audio.3.12.9001.nupkg -Source "C:\Users\%username%\.nuget\localPackages"
-"C:\Program Files (x86)\nuget\nuget.exe" add output\nkast.Xna.Framework.Content.Pipeline.Graphics.3.12.9001.nupkg -Source "C:\Users\%username%\.nuget\localPackages"
-"C:\Program Files (x86)\nuget\nuget.exe" add output\nkast.Xna.Framework.Content.Pipeline.Media.3.12.9001.nupkg -Source "C:\Users\%username%\.nuget\localPackages"
-
-"C:\Program Files (x86)\nuget\nuget.exe" add output\nkast.Xna.Framework.Content.Pipeline.Builder.3.12.9001.nupkg -Source "C:\Users\%username%\.nuget\localPackages"
-"C:\Program Files (x86)\nuget\nuget.exe" add output\nkast.Xna.Framework.Content.Pipeline.Builder.Windows.3.12.9001.nupkg -Source "C:\Users\%username%\.nuget\localPackages"
-
-"C:\Program Files (x86)\nuget\nuget.exe" add output\nkast.Xna.Framework.Blazor.3.12.9001.nupkg -Source "C:\Users\%username%\.nuget\localPackages"
-"C:\Program Files (x86)\nuget\nuget.exe" add output\MonoGame.Framework.WindowsDX.9000.3.12.9001.nupkg -Source "C:\Users\%username%\.nuget\localPackages"
-"C:\Program Files (x86)\nuget\nuget.exe" add output\MonoGame.Framework.WindowsUniversal.9000.3.12.9001.nupkg -Source "C:\Users\%username%\.nuget\localPackages"
-"C:\Program Files (x86)\nuget\nuget.exe" add output\MonoGame.Framework.DesktopGL.9000.3.12.9001.nupkg -Source "C:\Users\%username%\.nuget\localPackages"
-"C:\Program Files (x86)\nuget\nuget.exe" add output\MonoGame.Framework.Android.9000.3.12.9001.nupkg -Source "C:\Users\%username%\.nuget\localPackages"
-
-"C:\Program Files (x86)\nuget\nuget.exe" add output\nkast.Xna.Framework.Oculus.OvrDX11.3.12.9001.nupkg -Source "C:\Users\%username%\.nuget\localPackages"
+"C:\Program Files (x86)\nuget\nuget.exe" delete nkast.Xna.Framework 3.13.9001 -Source "C:\Users\%username%\.nuget\localPackages" -NonInteractive
+"C:\Program Files (x86)\nuget\nuget.exe" delete nkast.Xna.Framework.Design 3.13.9001 -Source "C:\Users\%username%\.nuget\localPackages" -NonInteractive
+"C:\Program Files (x86)\nuget\nuget.exe" delete nkast.Xna.Framework.Content 3.13.9001 -Source "C:\Users\%username%\.nuget\localPackages" -NonInteractive
+"C:\Program Files (x86)\nuget\nuget.exe" delete nkast.Xna.Framework.Audio 3.13.9001 -Source "C:\Users\%username%\.nuget\localPackages" -NonInteractive
+"C:\Program Files (x86)\nuget\nuget.exe" delete nkast.Xna.Framework.Graphics 3.13.9001 -Source "C:\Users\%username%\.nuget\localPackages" -NonInteractive
+"C:\Program Files (x86)\nuget\nuget.exe" delete nkast.Xna.Framework.Media 3.13.9001 -Source "C:\Users\%username%\.nuget\localPackages" -NonInteractive
+"C:\Program Files (x86)\nuget\nuget.exe" delete nkast.Xna.Framework.Input 3.13.9001 -Source "C:\Users\%username%\.nuget\localPackages" -NonInteractive
+"C:\Program Files (x86)\nuget\nuget.exe" delete nkast.Xna.Framework.Game 3.13.9001 -Source "C:\Users\%username%\.nuget\localPackages" -NonInteractive
+
+"C:\Program Files (x86)\nuget\nuget.exe" delete nkast.Xna.Framework.Content.Pipeline 3.13.9001 -Source "C:\Users\%username%\.nuget\localPackages" -NonInteractive
+"C:\Program Files (x86)\nuget\nuget.exe" delete nkast.Xna.Framework.Content.Pipeline.Audio 3.13.9001 -Source "C:\Users\%username%\.nuget\localPackages" -NonInteractive
+"C:\Program Files (x86)\nuget\nuget.exe" delete nkast.Xna.Framework.Content.Pipeline.Graphics 3.13.9001 -Source "C:\Users\%username%\.nuget\localPackages" -NonInteractive
+"C:\Program Files (x86)\nuget\nuget.exe" delete nkast.Xna.Framework.Content.Pipeline.Media 3.13.9001 -Source "C:\Users\%username%\.nuget\localPackages" -NonInteractive
+
+"C:\Program Files (x86)\nuget\nuget.exe" delete nkast.Xna.Framework.Content.Pipeline.Builder 3.13.9001 -Source "C:\Users\%username%\.nuget\localPackages" -NonInteractive
+"C:\Program Files (x86)\nuget\nuget.exe" delete nkast.Xna.Framework.Content.Pipeline.Builder.Windows 3.13.9001 -Source "C:\Users\%username%\.nuget\localPackages" -NonInteractive
+
+"C:\Program Files (x86)\nuget\nuget.exe" delete nkast.Xna.Framework.Blazor 3.13.9001 -Source "C:\Users\%username%\.nuget\localPackages" -NonInteractive
+"C:\Program Files (x86)\nuget\nuget.exe" delete MonoGame.Framework.WindowsDX.9000 3.13.9001 -Source "C:\Users\%username%\.nuget\localPackages" -NonInteractive
+"C:\Program Files (x86)\nuget\nuget.exe" delete MonoGame.Framework.WindowsUniversal.9000 3.13.9001 -Source "C:\Users\%username%\.nuget\localPackages" -NonInteractive
+"C:\Program Files (x86)\nuget\nuget.exe" delete MonoGame.Framework.DesktopGL.9000 3.13.9001 -Source "C:\Users\%username%\.nuget\localPackages" -NonInteractive
+"C:\Program Files (x86)\nuget\nuget.exe" delete MonoGame.Framework.Android.9000 3.13.9001 -Source "C:\Users\%username%\.nuget\localPackages" -NonInteractive
+
+"C:\Program Files (x86)\nuget\nuget.exe" delete nkast.Xna.Framework.Oculus.OvrDX11 3.13.9001 -Source "C:\Users\%username%\.nuget\localPackages" -NonInteractive
+
+
+"C:\Program Files (x86)\nuget\nuget.exe" add output\nkast.Xna.Framework.3.13.9001.nupkg -Source "C:\Users\%username%\.nuget\localPackages"
+"C:\Program Files (x86)\nuget\nuget.exe" add output\nkast.Xna.Framework.Design.3.13.9001.nupkg -Source "C:\Users\%username%\.nuget\localPackages"
+"C:\Program Files (x86)\nuget\nuget.exe" add output\nkast.Xna.Framework.Content.3.13.9001.nupkg -Source "C:\Users\%username%\.nuget\localPackages"
+"C:\Program Files (x86)\nuget\nuget.exe" add output\nkast.Xna.Framework.Audio.3.13.9001.nupkg -Source "C:\Users\%username%\.nuget\localPackages"
+"C:\Program Files (x86)\nuget\nuget.exe" add output\nkast.Xna.Framework.Graphics.3.13.9001.nupkg -Source "C:\Users\%username%\.nuget\localPackages"
+"C:\Program Files (x86)\nuget\nuget.exe" add output\nkast.Xna.Framework.Media.3.13.9001.nupkg -Source "C:\Users\%username%\.nuget\localPackages"
+"C:\Program Files (x86)\nuget\nuget.exe" add output\nkast.Xna.Framework.Input.3.13.9001.nupkg -Source "C:\Users\%username%\.nuget\localPackages"
+"C:\Program Files (x86)\nuget\nuget.exe" add output\nkast.Xna.Framework.Game.3.13.9001.nupkg -Source "C:\Users\%username%\.nuget\localPackages"
+
+"C:\Program Files (x86)\nuget\nuget.exe" add output\nkast.Xna.Framework.Content.Pipeline.3.13.9001.nupkg -Source "C:\Users\%username%\.nuget\localPackages"
+"C:\Program Files (x86)\nuget\nuget.exe" add output\nkast.Xna.Framework.Content.Pipeline.Audio.3.13.9001.nupkg -Source "C:\Users\%username%\.nuget\localPackages"
+"C:\Program Files (x86)\nuget\nuget.exe" add output\nkast.Xna.Framework.Content.Pipeline.Graphics.3.13.9001.nupkg -Source "C:\Users\%username%\.nuget\localPackages"
+"C:\Program Files (x86)\nuget\nuget.exe" add output\nkast.Xna.Framework.Content.Pipeline.Media.3.13.9001.nupkg -Source "C:\Users\%username%\.nuget\localPackages"
+
+"C:\Program Files (x86)\nuget\nuget.exe" add output\nkast.Xna.Framework.Content.Pipeline.Builder.3.13.9001.nupkg -Source "C:\Users\%username%\.nuget\localPackages"
+"C:\Program Files (x86)\nuget\nuget.exe" add output\nkast.Xna.Framework.Content.Pipeline.Builder.Windows.3.13.9001.nupkg -Source "C:\Users\%username%\.nuget\localPackages"
+
+"C:\Program Files (x86)\nuget\nuget.exe" add output\nkast.Xna.Framework.Blazor.3.13.9001.nupkg -Source "C:\Users\%username%\.nuget\localPackages"
+"C:\Program Files (x86)\nuget\nuget.exe" add output\MonoGame.Framework.WindowsDX.9000.3.13.9001.nupkg -Source "C:\Users\%username%\.nuget\localPackages"
+"C:\Program Files (x86)\nuget\nuget.exe" add output\MonoGame.Framework.WindowsUniversal.9000.3.13.9001.nupkg -Source "C:\Users\%username%\.nuget\localPackages"
+"C:\Program Files (x86)\nuget\nuget.exe" add output\MonoGame.Framework.DesktopGL.9000.3.13.9001.nupkg -Source "C:\Users\%username%\.nuget\localPackages"
+"C:\Program Files (x86)\nuget\nuget.exe" add output\MonoGame.Framework.Android.9000.3.13.9001.nupkg -Source "C:\Users\%username%\.nuget\localPackages"
+
+"C:\Program Files (x86)\nuget\nuget.exe" add output\nkast.Xna.Framework.Oculus.OvrDX11.3.13.9001.nupkg -Source "C:\Users\%username%\.nuget\localPackages"
@pause
\ No newline at end of file
diff --git a/Platforms/MonoGame.Framework.DesktopGL.csproj b/Platforms/MonoGame.Framework.DesktopGL.csproj
index 49b7750c7f1..692ec7368e5 100644
--- a/Platforms/MonoGame.Framework.DesktopGL.csproj
+++ b/Platforms/MonoGame.Framework.DesktopGL.csproj
@@ -5,8 +5,8 @@
..\Artifacts\Platforms\DesktopGL
True
- 3.12.9001.0
- 3.12.9001.0
+ 3.13.9001.0
+ 3.13.9001.0
diff --git a/Platforms/Properties/AssemblyInfo.cs b/Platforms/Properties/AssemblyInfo.cs
index 405918ea3f6..eaad46aca7e 100644
--- a/Platforms/Properties/AssemblyInfo.cs
+++ b/Platforms/Properties/AssemblyInfo.cs
@@ -38,5 +38,5 @@
// Version information for the assembly which is automatically
// set by our automated build process.
-[assembly: AssemblyVersion("3.12.9001.0")]
-[assembly: AssemblyFileVersion("3.12.9001.0")]
+[assembly: AssemblyVersion("3.13.9001.0")]
+[assembly: AssemblyFileVersion("3.13.9001.0")]
diff --git a/Platforms/XNA.Framework.Android.csproj b/Platforms/XNA.Framework.Android.csproj
index 2576855f95a..accb4d9ede1 100644
--- a/Platforms/XNA.Framework.Android.csproj
+++ b/Platforms/XNA.Framework.Android.csproj
@@ -5,8 +5,8 @@
..\Artifacts\Platforms\Android
True
- 3.12.9001.0
- 3.12.9001.0
+ 3.13.9001.0
+ 3.13.9001.0
diff --git a/Platforms/XNA.Framework.Blazor.csproj b/Platforms/XNA.Framework.Blazor.csproj
index f9b1e332b78..c135638c810 100644
--- a/Platforms/XNA.Framework.Blazor.csproj
+++ b/Platforms/XNA.Framework.Blazor.csproj
@@ -6,8 +6,8 @@
BLAZORGL;STBSHARP_INTERNAL
- 3.12.9001.0
- 3.12.9001.0
+ 3.13.9001.0
+ 3.13.9001.0
diff --git a/Platforms/XNA.Framework.Cardboard.csproj b/Platforms/XNA.Framework.Cardboard.csproj
index e32a2699e3e..3b97ad38cf4 100644
--- a/Platforms/XNA.Framework.Cardboard.csproj
+++ b/Platforms/XNA.Framework.Cardboard.csproj
@@ -5,8 +5,8 @@
..\Artifacts\Platforms\Cardboard
True
- 3.12.9001.0
- 3.12.9001.0
+ 3.13.9001.0
+ 3.13.9001.0
diff --git a/Platforms/XNA.Framework.DesktopGL.csproj b/Platforms/XNA.Framework.DesktopGL.csproj
index fc6fe53a383..f40c7980275 100644
--- a/Platforms/XNA.Framework.DesktopGL.csproj
+++ b/Platforms/XNA.Framework.DesktopGL.csproj
@@ -2,8 +2,8 @@
- 3.12.9001.0
- 3.12.9001.0
+ 3.13.9001.0
+ 3.13.9001.0
diff --git a/Platforms/XNA.Framework.Oculus.OvrDX11.csproj b/Platforms/XNA.Framework.Oculus.OvrDX11.csproj
index 981862d5dca..a0be04e1f6e 100644
--- a/Platforms/XNA.Framework.Oculus.OvrDX11.csproj
+++ b/Platforms/XNA.Framework.Oculus.OvrDX11.csproj
@@ -5,8 +5,8 @@
..\Artifacts\Platforms\OculusOvrDX11
True
- 3.12.9001.0
- 3.12.9001.0
+ 3.13.9001.0
+ 3.13.9001.0
diff --git a/Platforms/XNA.Framework.Ref.csproj b/Platforms/XNA.Framework.Ref.csproj
index faccf9a5ce1..ed2208d3892 100644
--- a/Platforms/XNA.Framework.Ref.csproj
+++ b/Platforms/XNA.Framework.Ref.csproj
@@ -5,8 +5,8 @@
..\Artifacts\Platforms\Ref
True
- 3.12.9001.0
- 3.12.9001.0
+ 3.13.9001.0
+ 3.13.9001.0
diff --git a/Platforms/XNA.Framework.WindowsDX11.csproj b/Platforms/XNA.Framework.WindowsDX11.csproj
index a90b30c893b..72a11c1b8e9 100644
--- a/Platforms/XNA.Framework.WindowsDX11.csproj
+++ b/Platforms/XNA.Framework.WindowsDX11.csproj
@@ -2,8 +2,8 @@
- 3.12.9001.0
- 3.12.9001.0
+ 3.13.9001.0
+ 3.13.9001.0
diff --git a/Platforms/XNA.Framework.iOS.csproj b/Platforms/XNA.Framework.iOS.csproj
index ea96b1b6dd4..42160bd9d60 100644
--- a/Platforms/XNA.Framework.iOS.csproj
+++ b/Platforms/XNA.Framework.iOS.csproj
@@ -5,8 +5,8 @@
..\Artifacts\Platforms\iOS
True
- 3.12.9001.1
- 3.12.9001.1
+ 3.13.9001.0
+ 3.13.9001.0
diff --git a/Templates/VisualStudio2022/ProjectTemplates/Android.NetCore/Application.csproj b/Templates/VisualStudio2022/ProjectTemplates/Android.NetCore/Application.csproj
index 7f31f82336a..afa50d263d0 100644
--- a/Templates/VisualStudio2022/ProjectTemplates/Android.NetCore/Application.csproj
+++ b/Templates/VisualStudio2022/ProjectTemplates/Android.NetCore/Application.csproj
@@ -26,15 +26,15 @@
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
diff --git a/Templates/VisualStudio2022/ProjectTemplates/BlazorGL.NetCore/Application.csproj b/Templates/VisualStudio2022/ProjectTemplates/BlazorGL.NetCore/Application.csproj
index 18b0f56a96e..64f776022b2 100644
--- a/Templates/VisualStudio2022/ProjectTemplates/BlazorGL.NetCore/Application.csproj
+++ b/Templates/VisualStudio2022/ProjectTemplates/BlazorGL.NetCore/Application.csproj
@@ -28,15 +28,15 @@
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
diff --git a/Templates/VisualStudio2022/ProjectTemplates/ContentPipelineExtension.NetFramework/ContentPipelineExtension.csproj b/Templates/VisualStudio2022/ProjectTemplates/ContentPipelineExtension.NetFramework/ContentPipelineExtension.csproj
index 929d6139a99..dbe8979d565 100644
--- a/Templates/VisualStudio2022/ProjectTemplates/ContentPipelineExtension.NetFramework/ContentPipelineExtension.csproj
+++ b/Templates/VisualStudio2022/ProjectTemplates/ContentPipelineExtension.NetFramework/ContentPipelineExtension.csproj
@@ -34,25 +34,25 @@
-
+
All
-
+
All
-
+
All
-
+
All
-
+
All
-
+
All
-
+
All
diff --git a/Templates/VisualStudio2022/ProjectTemplates/ContentPipelineExtension.NetStandard/ContentPipelineExtension.csproj b/Templates/VisualStudio2022/ProjectTemplates/ContentPipelineExtension.NetStandard/ContentPipelineExtension.csproj
index 8e2792293a8..a33205111c1 100644
--- a/Templates/VisualStudio2022/ProjectTemplates/ContentPipelineExtension.NetStandard/ContentPipelineExtension.csproj
+++ b/Templates/VisualStudio2022/ProjectTemplates/ContentPipelineExtension.NetStandard/ContentPipelineExtension.csproj
@@ -22,25 +22,25 @@
-
+
All
-
+
All
-
+
All
-
+
All
-
+
All
-
+
All
-
+
All
diff --git a/Templates/VisualStudio2022/ProjectTemplates/DesktopGL.NetCore/Application.csproj b/Templates/VisualStudio2022/ProjectTemplates/DesktopGL.NetCore/Application.csproj
index f85c5ecbbf6..b1c8495d341 100644
--- a/Templates/VisualStudio2022/ProjectTemplates/DesktopGL.NetCore/Application.csproj
+++ b/Templates/VisualStudio2022/ProjectTemplates/DesktopGL.NetCore/Application.csproj
@@ -33,15 +33,15 @@
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
diff --git a/Templates/VisualStudio2022/ProjectTemplates/DesktopGL.NetFramework/Application.csproj b/Templates/VisualStudio2022/ProjectTemplates/DesktopGL.NetFramework/Application.csproj
index 1f7ee764f6d..f49a21149a7 100644
--- a/Templates/VisualStudio2022/ProjectTemplates/DesktopGL.NetFramework/Application.csproj
+++ b/Templates/VisualStudio2022/ProjectTemplates/DesktopGL.NetFramework/Application.csproj
@@ -49,15 +49,15 @@
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
diff --git a/Templates/VisualStudio2022/ProjectTemplates/Multiplatform.NetCore/Android/Application.csproj b/Templates/VisualStudio2022/ProjectTemplates/Multiplatform.NetCore/Android/Application.csproj
index 91ae4e283fb..8ba4055a16a 100644
--- a/Templates/VisualStudio2022/ProjectTemplates/Multiplatform.NetCore/Android/Application.csproj
+++ b/Templates/VisualStudio2022/ProjectTemplates/Multiplatform.NetCore/Android/Application.csproj
@@ -26,15 +26,15 @@
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
diff --git a/Templates/VisualStudio2022/ProjectTemplates/Multiplatform.NetCore/BlazorGL/Application.csproj b/Templates/VisualStudio2022/ProjectTemplates/Multiplatform.NetCore/BlazorGL/Application.csproj
index 005253b6256..e44592c13d9 100644
--- a/Templates/VisualStudio2022/ProjectTemplates/Multiplatform.NetCore/BlazorGL/Application.csproj
+++ b/Templates/VisualStudio2022/ProjectTemplates/Multiplatform.NetCore/BlazorGL/Application.csproj
@@ -28,15 +28,15 @@
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
diff --git a/Templates/VisualStudio2022/ProjectTemplates/Multiplatform.NetCore/DesktopGL/Application.csproj b/Templates/VisualStudio2022/ProjectTemplates/Multiplatform.NetCore/DesktopGL/Application.csproj
index 902f0e0cca5..07c8047f2d5 100644
--- a/Templates/VisualStudio2022/ProjectTemplates/Multiplatform.NetCore/DesktopGL/Application.csproj
+++ b/Templates/VisualStudio2022/ProjectTemplates/Multiplatform.NetCore/DesktopGL/Application.csproj
@@ -29,15 +29,15 @@
app.manifest
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
diff --git a/Templates/VisualStudio2022/ProjectTemplates/Multiplatform.NetCore/WindowsDX/Application.csproj b/Templates/VisualStudio2022/ProjectTemplates/Multiplatform.NetCore/WindowsDX/Application.csproj
index 7c6fae2cfd8..3bdf53d0b9c 100644
--- a/Templates/VisualStudio2022/ProjectTemplates/Multiplatform.NetCore/WindowsDX/Application.csproj
+++ b/Templates/VisualStudio2022/ProjectTemplates/Multiplatform.NetCore/WindowsDX/Application.csproj
@@ -28,15 +28,15 @@
app.manifest
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
diff --git a/Templates/VisualStudio2022/ProjectTemplates/Multiplatform.NetFramework/DesktopGL/Application.csproj b/Templates/VisualStudio2022/ProjectTemplates/Multiplatform.NetFramework/DesktopGL/Application.csproj
index 43bd55bb4db..af97f30d420 100644
--- a/Templates/VisualStudio2022/ProjectTemplates/Multiplatform.NetFramework/DesktopGL/Application.csproj
+++ b/Templates/VisualStudio2022/ProjectTemplates/Multiplatform.NetFramework/DesktopGL/Application.csproj
@@ -44,15 +44,15 @@
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
diff --git a/Templates/VisualStudio2022/ProjectTemplates/Multiplatform.NetFramework/UWPCore/Application.csproj b/Templates/VisualStudio2022/ProjectTemplates/Multiplatform.NetFramework/UWPCore/Application.csproj
index da26d042c2d..63c326af209 100644
--- a/Templates/VisualStudio2022/ProjectTemplates/Multiplatform.NetFramework/UWPCore/Application.csproj
+++ b/Templates/VisualStudio2022/ProjectTemplates/Multiplatform.NetFramework/UWPCore/Application.csproj
@@ -95,15 +95,15 @@
PackageReference
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
diff --git a/Templates/VisualStudio2022/ProjectTemplates/Multiplatform.NetFramework/UWPXaml/Application.csproj b/Templates/VisualStudio2022/ProjectTemplates/Multiplatform.NetFramework/UWPXaml/Application.csproj
index 45b1b1bc7f4..265ef93d33f 100644
--- a/Templates/VisualStudio2022/ProjectTemplates/Multiplatform.NetFramework/UWPXaml/Application.csproj
+++ b/Templates/VisualStudio2022/ProjectTemplates/Multiplatform.NetFramework/UWPXaml/Application.csproj
@@ -95,15 +95,15 @@
PackageReference
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
diff --git a/Templates/VisualStudio2022/ProjectTemplates/Multiplatform.NetFramework/WindowsDX/Application.csproj b/Templates/VisualStudio2022/ProjectTemplates/Multiplatform.NetFramework/WindowsDX/Application.csproj
index 8242c152693..50e02b9f712 100644
--- a/Templates/VisualStudio2022/ProjectTemplates/Multiplatform.NetFramework/WindowsDX/Application.csproj
+++ b/Templates/VisualStudio2022/ProjectTemplates/Multiplatform.NetFramework/WindowsDX/Application.csproj
@@ -45,15 +45,15 @@
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
diff --git a/Templates/VisualStudio2022/ProjectTemplates/UWPCore.UAP/Application.csproj b/Templates/VisualStudio2022/ProjectTemplates/UWPCore.UAP/Application.csproj
index 2ec3ceb1900..0ec616b5157 100644
--- a/Templates/VisualStudio2022/ProjectTemplates/UWPCore.UAP/Application.csproj
+++ b/Templates/VisualStudio2022/ProjectTemplates/UWPCore.UAP/Application.csproj
@@ -95,15 +95,15 @@
PackageReference
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
diff --git a/Templates/VisualStudio2022/ProjectTemplates/UWPXaml.UAP/Application.csproj b/Templates/VisualStudio2022/ProjectTemplates/UWPXaml.UAP/Application.csproj
index a9f9684808f..47e81afc5f6 100644
--- a/Templates/VisualStudio2022/ProjectTemplates/UWPXaml.UAP/Application.csproj
+++ b/Templates/VisualStudio2022/ProjectTemplates/UWPXaml.UAP/Application.csproj
@@ -95,15 +95,15 @@
PackageReference
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
diff --git a/Templates/VisualStudio2022/ProjectTemplates/WindowsDX.NetCore/Application.csproj b/Templates/VisualStudio2022/ProjectTemplates/WindowsDX.NetCore/Application.csproj
index 1efed61d596..bfed5518bce 100644
--- a/Templates/VisualStudio2022/ProjectTemplates/WindowsDX.NetCore/Application.csproj
+++ b/Templates/VisualStudio2022/ProjectTemplates/WindowsDX.NetCore/Application.csproj
@@ -32,15 +32,15 @@
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
diff --git a/Templates/VisualStudio2022/ProjectTemplates/WindowsDX.NetFramework/Application.csproj b/Templates/VisualStudio2022/ProjectTemplates/WindowsDX.NetFramework/Application.csproj
index 37957da8af5..b5c5240b4b2 100644
--- a/Templates/VisualStudio2022/ProjectTemplates/WindowsDX.NetFramework/Application.csproj
+++ b/Templates/VisualStudio2022/ProjectTemplates/WindowsDX.NetFramework/Application.csproj
@@ -50,15 +50,15 @@
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
diff --git a/Templates/VisualStudio2022/ProjectTemplates/iOS.NetCore/Application.csproj b/Templates/VisualStudio2022/ProjectTemplates/iOS.NetCore/Application.csproj
index eb053978c50..01943f89d66 100644
--- a/Templates/VisualStudio2022/ProjectTemplates/iOS.NetCore/Application.csproj
+++ b/Templates/VisualStudio2022/ProjectTemplates/iOS.NetCore/Application.csproj
@@ -17,15 +17,15 @@
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
diff --git a/Tools/Content.Pipeline.Editor.WinForms/Content.Pipeline.Editor.net8.csproj b/Tools/Content.Pipeline.Editor.WinForms/Content.Pipeline.Editor.net8.csproj
index 4a9f8fd9e18..3e2da9795b1 100644
--- a/Tools/Content.Pipeline.Editor.WinForms/Content.Pipeline.Editor.net8.csproj
+++ b/Tools/Content.Pipeline.Editor.WinForms/Content.Pipeline.Editor.net8.csproj
@@ -1,8 +1,8 @@
- 3.12.9001.0
- 3.12.9001.0
+ 3.13.9001.0
+ 3.13.9001.0
diff --git a/Tools/Content.Pipeline.Editor.WinForms/Properties/AssemblyInfo.cs b/Tools/Content.Pipeline.Editor.WinForms/Properties/AssemblyInfo.cs
index 423195483a9..3c55c4379da 100644
--- a/Tools/Content.Pipeline.Editor.WinForms/Properties/AssemblyInfo.cs
+++ b/Tools/Content.Pipeline.Editor.WinForms/Properties/AssemblyInfo.cs
@@ -36,5 +36,5 @@
// You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")]
-[assembly: AssemblyVersion("3.12.9001.0")]
-[assembly: AssemblyFileVersion("3.12.9001.0")]
+[assembly: AssemblyVersion("3.13.9001.0")]
+[assembly: AssemblyFileVersion("3.13.9001.0")]
diff --git a/Tools/EffectCompiler/EffectCompiler.csproj b/Tools/EffectCompiler/EffectCompiler.csproj
index 4dc8e313497..081d03e2c4e 100644
--- a/Tools/EffectCompiler/EffectCompiler.csproj
+++ b/Tools/EffectCompiler/EffectCompiler.csproj
@@ -1,8 +1,8 @@
- 3.12.9001.0
- 3.12.9001.0
+ 3.13.9001.0
+ 3.13.9001.0
diff --git a/Tools/EffectCompiler/Properties/AssemblyInfo.cs b/Tools/EffectCompiler/Properties/AssemblyInfo.cs
index 20a8d66b6ef..bb2f7aaf616 100644
--- a/Tools/EffectCompiler/Properties/AssemblyInfo.cs
+++ b/Tools/EffectCompiler/Properties/AssemblyInfo.cs
@@ -36,5 +36,5 @@
// You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")]
-[assembly: AssemblyVersion("3.12.9001.0")]
-[assembly: AssemblyFileVersion("3.12.9001.0")]
+[assembly: AssemblyVersion("3.13.9001.0")]
+[assembly: AssemblyFileVersion("3.13.9001.0")]
diff --git a/Tools/MonoGame.Content.Builder/MGCB.csproj b/Tools/MonoGame.Content.Builder/MGCB.csproj
index 1e4d83d14fe..ad1fc14b991 100644
--- a/Tools/MonoGame.Content.Builder/MGCB.csproj
+++ b/Tools/MonoGame.Content.Builder/MGCB.csproj
@@ -1,8 +1,8 @@
- 3.12.9001.0
- 3.12.9001.0
+ 3.13.9001.0
+ 3.13.9001.0
diff --git a/Tools/MonoGame.Content.Builder/Properties/AssemblyInfo.cs b/Tools/MonoGame.Content.Builder/Properties/AssemblyInfo.cs
index a7dc2d36b3d..4fc4980acca 100644
--- a/Tools/MonoGame.Content.Builder/Properties/AssemblyInfo.cs
+++ b/Tools/MonoGame.Content.Builder/Properties/AssemblyInfo.cs
@@ -32,5 +32,5 @@
// You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")]
-[assembly: AssemblyVersion("3.12.9001.0")]
-[assembly: AssemblyFileVersion("3.12.9001.0")]
+[assembly: AssemblyVersion("3.13.9001.0")]
+[assembly: AssemblyFileVersion("3.13.9001.0")]
diff --git a/default.build b/default.build
index e77ad386f52..4ef4c2546b7 100644
--- a/default.build
+++ b/default.build
@@ -7,7 +7,7 @@
-
+
..\..\Artifacts\Xna.Framework.Audio\
- 3.12.9001.0
- 3.12.9001.0
+ 3.13.9001.0
+ 3.13.9001.0
diff --git a/src/Xna.Framework.Content.Pipeline.Audio/XNA.Framework.Content.Pipeline.Audio.csproj b/src/Xna.Framework.Content.Pipeline.Audio/XNA.Framework.Content.Pipeline.Audio.csproj
index 8ff289150bf..2730f183086 100644
--- a/src/Xna.Framework.Content.Pipeline.Audio/XNA.Framework.Content.Pipeline.Audio.csproj
+++ b/src/Xna.Framework.Content.Pipeline.Audio/XNA.Framework.Content.Pipeline.Audio.csproj
@@ -4,8 +4,8 @@
..\..\Artifacts\Xna.Framework.Content.Pipeline.Audio\
- 3.12.9001.0
- 3.12.9001.0
+ 3.13.9001.0
+ 3.13.9001.0
diff --git a/src/Xna.Framework.Content.Pipeline.Graphics.MojoProcessor/XNA.Framework.Content.Pipeline.Graphics.MojoProcessor.csproj b/src/Xna.Framework.Content.Pipeline.Graphics.MojoProcessor/XNA.Framework.Content.Pipeline.Graphics.MojoProcessor.csproj
index 749f2b81e2f..165b128f26a 100644
--- a/src/Xna.Framework.Content.Pipeline.Graphics.MojoProcessor/XNA.Framework.Content.Pipeline.Graphics.MojoProcessor.csproj
+++ b/src/Xna.Framework.Content.Pipeline.Graphics.MojoProcessor/XNA.Framework.Content.Pipeline.Graphics.MojoProcessor.csproj
@@ -3,8 +3,8 @@
..\..\Artifacts\Xna.Framework.Content.Pipeline.Graphics.MojoProcessor\
- 3.12.9001.0
- 3.12.9001.0
+ 3.13.9001.0
+ 3.13.9001.0
diff --git a/src/Xna.Framework.Content.Pipeline.Graphics/XNA.Framework.Content.Pipeline.Graphics.csproj b/src/Xna.Framework.Content.Pipeline.Graphics/XNA.Framework.Content.Pipeline.Graphics.csproj
index 1da7a6e2bd3..d6d77c17479 100644
--- a/src/Xna.Framework.Content.Pipeline.Graphics/XNA.Framework.Content.Pipeline.Graphics.csproj
+++ b/src/Xna.Framework.Content.Pipeline.Graphics/XNA.Framework.Content.Pipeline.Graphics.csproj
@@ -4,8 +4,8 @@
..\..\Artifacts\Xna.Framework.Content.Pipeline.Graphics\
- 3.12.9001.0
- 3.12.9001.0
+ 3.13.9001.0
+ 3.13.9001.0
diff --git a/src/Xna.Framework.Content.Pipeline.Media/XNA.Framework.Content.Pipeline.Media.csproj b/src/Xna.Framework.Content.Pipeline.Media/XNA.Framework.Content.Pipeline.Media.csproj
index 9b608e5618b..5f8a3439209 100644
--- a/src/Xna.Framework.Content.Pipeline.Media/XNA.Framework.Content.Pipeline.Media.csproj
+++ b/src/Xna.Framework.Content.Pipeline.Media/XNA.Framework.Content.Pipeline.Media.csproj
@@ -4,8 +4,8 @@
..\..\Artifacts\Xna.Framework.Content.Pipeline.Media\
- 3.12.9001.0
- 3.12.9001.0
+ 3.13.9001.0
+ 3.13.9001.0
diff --git a/src/Xna.Framework.Content.Pipeline/Properties/AssemblyInfo.net4.cs b/src/Xna.Framework.Content.Pipeline/Properties/AssemblyInfo.net4.cs
index fe3a07b0302..96bcb897922 100644
--- a/src/Xna.Framework.Content.Pipeline/Properties/AssemblyInfo.net4.cs
+++ b/src/Xna.Framework.Content.Pipeline/Properties/AssemblyInfo.net4.cs
@@ -32,5 +32,5 @@
// You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")]
-[assembly: AssemblyVersion("3.12.9001.0")]
-[assembly: AssemblyFileVersion("3.12.9001.0")]
+[assembly: AssemblyVersion("3.13.9001.0")]
+[assembly: AssemblyFileVersion("3.13.9001.0")]
diff --git a/src/Xna.Framework.Content.Pipeline/XNA.Framework.Content.Pipeline.csproj b/src/Xna.Framework.Content.Pipeline/XNA.Framework.Content.Pipeline.csproj
index b679c102e89..dc3dab07450 100644
--- a/src/Xna.Framework.Content.Pipeline/XNA.Framework.Content.Pipeline.csproj
+++ b/src/Xna.Framework.Content.Pipeline/XNA.Framework.Content.Pipeline.csproj
@@ -4,8 +4,8 @@
..\..\Artifacts\Xna.Framework.Content.Pipeline\
- 3.12.9001.0
- 3.12.9001.0
+ 3.13.9001.0
+ 3.13.9001.0
diff --git a/src/Xna.Framework.Content/Xna.Framework.Content.csproj b/src/Xna.Framework.Content/Xna.Framework.Content.csproj
index eb56e780a3d..d08c7fe1ab9 100644
--- a/src/Xna.Framework.Content/Xna.Framework.Content.csproj
+++ b/src/Xna.Framework.Content/Xna.Framework.Content.csproj
@@ -4,8 +4,8 @@
..\..\Artifacts\Xna.Framework.Content\
- 3.12.9001.0
- 3.12.9001.0
+ 3.13.9001.0
+ 3.13.9001.0
diff --git a/src/Xna.Framework.Design/Xna.Framework.Design.csproj b/src/Xna.Framework.Design/Xna.Framework.Design.csproj
index 6ec18973a49..aab17011ea2 100644
--- a/src/Xna.Framework.Design/Xna.Framework.Design.csproj
+++ b/src/Xna.Framework.Design/Xna.Framework.Design.csproj
@@ -4,8 +4,8 @@
..\..\Artifacts\Xna.Framework.Design\
- 3.12.9001.0
- 3.12.9001.0
+ 3.13.9001.0
+ 3.13.9001.0
diff --git a/src/Xna.Framework.Game/Xna.Framework.Game.csproj b/src/Xna.Framework.Game/Xna.Framework.Game.csproj
index d33a7538393..0d9062036eb 100644
--- a/src/Xna.Framework.Game/Xna.Framework.Game.csproj
+++ b/src/Xna.Framework.Game/Xna.Framework.Game.csproj
@@ -4,8 +4,8 @@
..\..\Artifacts\Xna.Framework.Game\
- 3.12.9001.0
- 3.12.9001.0
+ 3.13.9001.0
+ 3.13.9001.0
diff --git a/src/Xna.Framework.Graphics/Xna.Framework.Graphics.csproj b/src/Xna.Framework.Graphics/Xna.Framework.Graphics.csproj
index 58d036f006c..930f56be811 100644
--- a/src/Xna.Framework.Graphics/Xna.Framework.Graphics.csproj
+++ b/src/Xna.Framework.Graphics/Xna.Framework.Graphics.csproj
@@ -4,8 +4,8 @@
..\..\Artifacts\Xna.Framework.Graphics\
- 3.12.9001.0
- 3.12.9001.0
+ 3.13.9001.0
+ 3.13.9001.0
diff --git a/src/Xna.Framework.Input/Xna.Framework.Input.csproj b/src/Xna.Framework.Input/Xna.Framework.Input.csproj
index fabd40212e6..a532ccb742b 100644
--- a/src/Xna.Framework.Input/Xna.Framework.Input.csproj
+++ b/src/Xna.Framework.Input/Xna.Framework.Input.csproj
@@ -4,8 +4,8 @@
..\..\Artifacts\Xna.Framework.Input\
- 3.12.9001.1
- 3.12.9001.1
+ 3.13.9001.0
+ 3.13.9001.0
diff --git a/src/Xna.Framework.Media/XNA.Framework.Media.csproj b/src/Xna.Framework.Media/XNA.Framework.Media.csproj
index 74f82ca8b6e..7b6861f1bd0 100644
--- a/src/Xna.Framework.Media/XNA.Framework.Media.csproj
+++ b/src/Xna.Framework.Media/XNA.Framework.Media.csproj
@@ -4,8 +4,8 @@
..\..\Artifacts\Xna.Framework.Media\
- 3.12.9001.0
- 3.12.9001.0
+ 3.13.9001.0
+ 3.13.9001.0
diff --git a/src/Xna.Framework/Xna.Framework.csproj b/src/Xna.Framework/Xna.Framework.csproj
index 2458b721e94..0e10c400a67 100644
--- a/src/Xna.Framework/Xna.Framework.csproj
+++ b/src/Xna.Framework/Xna.Framework.csproj
@@ -4,8 +4,8 @@
..\..\Artifacts\Xna.Framework\
- 3.12.9001.0
- 3.12.9001.0
+ 3.13.9001.0
+ 3.13.9001.0