Skip to content

Latest commit

 

History

History
 
 

MonoGame

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 
 
 

Building a MonoGame app with CoreRT

This document will guide you through compiling a .NET Core MonoGame game with CoreRT.

Install the .NET Core SDK

CoreRT is an AOT-optimized .NET Core runtime. If you're new to .NET Core make sure to visit the official starting page. It will guide you through installing pre-requisites and building your first app. If you're already familiar with .NET Core make sure you've downloaded and installed the .NET Core 2 SDK.

Create .NET Core MonoGame project

Open a new shell/command prompt window and run the following commands.

> dotnet new --install MonoGame.Template.CSharp
> dotnet new mgdesktopgl -o MyGame
> cd MyGame

This will install .NET Core MonoGame template and create empty game project. .NET Core MonoGame port lives at https://github.com/cra0zy/MonoGame/tree/core currently. Thank you @cra0zy for the great work!

Verify that the empty game builds and runs. You should see blue window:

> dotnet run

MonoGame tools require Mono on non-Windows platforms.

Add CoreRT to your project

Using CoreRT to compile your application is done via the ILCompiler NuGet package, which is published to MyGet with the CoreRT daily builds. For the compiler to work, it first needs to be added to your project.

In your shell/command prompt navigate to the root directory of your project and run the command:

> dotnet new nuget 

This will add a nuget.config file to your application. Open the file and in the <packageSources> element under <clear/> add the following:

<add key="dotnet-core" value="https://dotnet.myget.org/F/dotnet-core/api/v3/index.json" />
<add key="nuget.org" value="https://api.nuget.org/v3/index.json" protocolVersion="3" />

Once you've added the package source, add a reference to the compiler by running the following command:

> dotnet add package Microsoft.DotNet.ILCompiler -v 1.0.0-alpha-* 

Restore and Publish your app

Once the package has been successfully added it's time to compile and publish your app! If you're using Windows, make sure you're using x64 Native Tools Command Prompt for VS 2017 instead of the standard Windows command prompt. In the shell/command prompt window, run the following command:

> dotnet publish -r <RID> -c <Configuration>

where <Configuration> is your project configuration (such as Debug or Release) and <RID> is the runtime identifier (one of win-x64, linux-x64, osx-x64). For example, if you want to publish a release configuration of your app for a 64-bit version of Windows the command would look like:

> dotnet publish -r win-x64 -c release

Once completed, you can find the native executable in the root folder of your project under /bin/x64/<Configuration>/netcoreapp2.0/publish/. Navigate to /bin/x64/<Configuration>/netcoreapp2.0/publish/ in your project folder and run the produced native executable.

Try MonoGame sample game

Clone MonoGame samples from github:

> git clone https://github.com/MonoGame/MonoGame.Samples

MonoGame samples include project files for number of targets, but not for .NET Core yet. One has to create the project using above steps and transplant links to sample sources and assets to it. This directory contains .NET Core project for Platformer2D and NeonShooter samples that assume MonoGame.Samples is cloned under it. Build it and start playing!

> dotnet publish -r win-x64 -c release Platformer2D.csproj
> bin\x64\Release\netcoreapp2.0\publish\Platformer2D.exe

The NeonShooter sample works on Windows-only due to MonoGame/MonoGame#3270.

Using reflection

Runtime directives are XML configuration files, which specify which otherwise unreachable elements of your program are available for reflection. They are used at compile-time to enable AOT compilation in applications at runtime. The runtime directives are reference in the project via RdXmlFile item:

<ItemGroup>
  <RdXmlFile Include="rd.xml" />
</ItemGroup>

MonoGame serialization engine uses reflection to create types representing the game assets that needs to mentioned in the rd.xml file. If you see MissingMetadataException thrown during game startup, add the missing types to the rd.xml file.

Feel free to modify the sample application and experiment. However, keep in mind some functionality might not yet be supported in CoreRT. Let us know on the Issues page.