forked from nkast/MonoGame
-
-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Projects ver3.14.9001 * Packages ver3.14.9001 * Templates ver3.14.9001 * Changelog ver3.14.9001 * Migrate ver3.14.9001
- Loading branch information
Showing
58 changed files
with
468 additions
and
305 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,119 @@ | ||
# Migrating from 3.13 to 3.14 | ||
|
||
|
||
## Migrating Framework | ||
|
||
Edit your .csproj file and replace: | ||
|
||
```xml | ||
<PackageReference Include="nkast.Xna.Framework" Version="3.13.9001" /> | ||
<PackageReference Include="nkast.Xna.Framework.Content" Version="3.13.9001" /> | ||
<PackageReference Include="nkast.Xna.Framework.Graphics" Version="3.13.9001" /> | ||
<PackageReference Include="nkast.Xna.Framework.Audio" Version="3.13.9001" /> | ||
<PackageReference Include="nkast.Xna.Framework.Media" Version="3.13.9001" /> | ||
<PackageReference Include="nkast.Xna.Framework.Input" Version="3.13.9001" /> | ||
<PackageReference Include="nkast.Xna.Framework.Game" Version="3.13.9001" /> | ||
<PackageReference Include="MonoGame.Framework.{Platform}.9000" Version="3.13.9001" /> | ||
``` | ||
|
||
to: | ||
|
||
```xml | ||
<PackageReference Include="nkast.Xna.Framework" Version="3.14.9001" /> | ||
<PackageReference Include="nkast.Xna.Framework.Content" Version="3.14.9001" /> | ||
<PackageReference Include="nkast.Xna.Framework.Graphics" Version="3.14.9001" /> | ||
<PackageReference Include="nkast.Xna.Framework.Audio" Version="3.14.9001" /> | ||
<PackageReference Include="nkast.Xna.Framework.Media" Version="3.14.9001" /> | ||
<PackageReference Include="nkast.Xna.Framework.Input" Version="3.14.9001" /> | ||
<PackageReference Include="nkast.Xna.Framework.Game" Version="3.14.9001" /> | ||
<PackageReference Include="MonoGame.Framework.{Platform}.9000" Version="3.14.9001" /> | ||
``` | ||
|
||
For libraries, edit your .csproj file and replace: | ||
|
||
```xml | ||
<PackageReference Include="nkast.Xna.Framework" Version="3.13.9002" /> | ||
<PackageReference Include="nkast.Xna.Framework.Content" Version="3.13.9001" /> | ||
<PackageReference Include="nkast.Xna.Framework.Graphics" Version="3.13.9001" /> | ||
<PackageReference Include="nkast.Xna.Framework.Audio" Version="3.13.9001" /> | ||
<PackageReference Include="nkast.Xna.Framework.Media" Version="3.13.9001" /> | ||
<PackageReference Include="nkast.Xna.Framework.Input" Version="3.13.9001" /> | ||
<PackageReference Include="nkast.Xna.Framework.Game" Version="3.13.9001" /> | ||
``` | ||
|
||
to: | ||
|
||
```xml | ||
<PackageReference Include="nkast.Xna.Framework" Version="3.14.9001" /> | ||
<PackageReference Include="nkast.Xna.Framework.Content" Version="3.14.9001" /> | ||
<PackageReference Include="nkast.Xna.Framework.Graphics" Version="3.14.9001" /> | ||
<PackageReference Include="nkast.Xna.Framework.Audio" Version="3.14.9001" /> | ||
<PackageReference Include="nkast.Xna.Framework.Media" Version="3.14.9001" /> | ||
<PackageReference Include="nkast.Xna.Framework.Input" Version="3.14.9001" /> | ||
<PackageReference Include="nkast.Xna.Framework.Game" Version="3.14.9001" /> | ||
``` | ||
|
||
## Migrating Content Builder | ||
|
||
Edit your .csproj file and replace: | ||
|
||
```xml | ||
<ItemGroup> | ||
<PackageReference Include="nkast.Xna.Framework.Content.Pipeline.Builder" Version="3.13.9001" /> | ||
</ItemGroup> | ||
``` | ||
|
||
to: | ||
|
||
```xml | ||
<ItemGroup> | ||
<PackageReference Include="nkast.Xna.Framework.Content.Pipeline.Builder" Version="3.14.9001" /> | ||
</ItemGroup> | ||
``` | ||
|
||
if your importers require Windows libraries (WinForms,WPF), use the 'nkast.Xna.Framework.Content.Pipeline.Builder.Windows' package. | ||
|
||
|
||
### Migrating BlazorGL projects | ||
|
||
Edit index.html file and replace: | ||
|
||
``` | ||
<script src="_content/nkast.Wasm.Dom/js/JSObject.8.0.1.js"></script> | ||
<script src="_content/nkast.Wasm.Dom/js/Window.8.0.1.js"></script> | ||
<script src="_content/nkast.Wasm.Dom/js/Document.8.0.1.js"></script> | ||
<script src="_content/nkast.Wasm.Dom/js/Media.8.0.1.js"></script> | ||
<script src="_content/nkast.Wasm.XHR/js/XHR.8.0.1.js"></script> | ||
<script src="_content/nkast.Wasm.Canvas/js/Canvas.8.0.1.js"></script> | ||
<script src="_content/nkast.Wasm.Canvas/js/CanvasGLContext.8.0.1.js"></script> | ||
<script src="_content/nkast.Wasm.Audio/js/Audio.8.0.1.js"></script> | ||
``` | ||
|
||
with: | ||
|
||
``` | ||
<script src="_content/nkast.Wasm.Dom/js/JSObject.8.0.2.js"></script> | ||
<script src="_content/nkast.Wasm.Dom/js/Window.8.0.2.js"></script> | ||
<script src="_content/nkast.Wasm.Dom/js/Document.8.0.2.js"></script> | ||
<script src="_content/nkast.Wasm.Dom/js/Navigator.8.0.2.js"></script> | ||
<script src="_content/nkast.Wasm.Dom/js/Gamepad.8.0.2.js"></script> | ||
<script src="_content/nkast.Wasm.Dom/js/Media.8.0.2.js"></script> | ||
<script src="_content/nkast.Wasm.XHR/js/XHR.8.0.2.js"></script> | ||
<script src="_content/nkast.Wasm.Canvas/js/Canvas.8.0.2.js"></script> | ||
<script src="_content/nkast.Wasm.Canvas/js/CanvasGLContext.8.0.2.js"></script> | ||
<script src="_content/nkast.Wasm.Audio/js/Audio.8.0.2.js"></script> | ||
``` | ||
|
||
### Migrating OculusVR projects | ||
|
||
Edit your .csproj file and replace: | ||
|
||
```xml | ||
<PackageReference Include="nkast.Xna.Framework.Oculus.OvrDX11" Version="3.13.9001" /> | ||
``` | ||
|
||
with: | ||
|
||
```xml | ||
<PackageReference Include="nkast.Xna.Framework.Oculus.OvrDX11" Version="3.14.9001" /> | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.