Table of Contents

Create a package

Intermediate

In this guide, we will dive into how to create custom project packages.

For .NET developers: a Stride project package is a standard C# project.

Create a platform package

Platform packages are created when adding a platform to the project. Steps on how to do that are located in the add or remove a platform page.

Create a standard package

To create a new platform package, in the Solution explorer panel right click on your solution and select New project...

You can select from one of two templates:

  • New game - creates a new project package for a new game, along with additional platform packages for selected targets.
  • Code library - a standard empty project package that is meant to be used by other packages for code and assets.

Using your new project package

By default, all code and assets in a newly created project package won't be accessible from any other package, due to not being referenced.

To change that, you'll have to add it as a dependency to the package(s) that you want to use it.

For more information, visit the dependencies page.

See also