Skip to content

Latest commit

 

History

History
 
 

BuildScripts

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 
 
 
 
 

Build & Publish

The information below describes the steps that the default build script (Build-All.ps1) performs.

Game configurations

The script will build the 3 supported Game configurations in Release mode:

  • Ares
  • TS
  • YR

Engine configurations

For each Game configuration several Engine configurations will be build, depending on the platform where the script is run:

On all platforms:

  • UniversalGL

On Windows:

  • UniversalGL
  • WindowsDX
  • WindowsGL
  • WindowsXNA

TargetFramework configurations

For each Engine configuration one or more TargetFrameworks will be build:

UniversalGL:

  • net7.0

WindowsDX, WindowsGL & WindowsXNA:

  • net7.0-windows

Overview of the Engine configurations differences:

OS Support Default Platform Technology
UniversalGL Any AnyCPU MonoGame DesktopGL
WindowsDX Windows AnyCPU MonoGame WindowsDX + WinForms
WindowsGL Windows AnyCPU MonoGame DesktopGL + WinForms
WindowsXNA Windows x86 Microsoft XNA + WinForms

Build output

The build output when using the dotnet publish command is created in \Compiled.

Launching the client is done by running e.g.:

dotnet clientogl.dll

Building with Visual Studio

You can select the desired configuration directly from the solution configurations:

Screenshot 2022-09-09 235432

Note that the XNA configurations can only be built/debugged with x86.

Screenshot 2022-09-09 235556

After changing the solution configuration you should exit Visual Studio and reload the solution in order for all the dynamic dependencies to be loaded correctly.