Tutorial:Building PMDO: Difference between revisions
From PMDOWiki
m Imbion moved page Building PMDO to Tutorial:Building PMDO |
No edit summary |
||
| Line 20: | Line 20: | ||
The [https://github.com/audinowho/PMDODump/tree/master/.github/workflows Github Action Workflows] perform all these steps automatically on github push! | The [https://github.com/audinowho/PMDODump/tree/master/.github/workflows Github Action Workflows] perform all these steps automatically on github push! | ||
[[Category: Maintenance]] | [[Category: Maintenance]] | ||
[[Category: Tutorial]] | |||
Latest revision as of 18:26, 24 November 2025
Building Game
- Run
dotnet publish -c Release -r win-x86 PMDC/PMDC/PMDC.csprojto publish to Windows x86. - Run
dotnet publish -c Release -r win-x64 PMDC/PMDC/PMDC.csprojto publish to Windows. - Run
dotnet publish -c Release -r linux-x64 PMDC/PMDC/PMDC.csprojto publish to Linux. - Run
dotnet publish -c Release -r osx-x64 PMDC/PMDC/PMDC.csprojto publish to Mac. - Files will appear in the
publishfolder.
Building Server
- Run
dotnet publish -c Release -r win-x64 PMDC/RogueEssence/WaypointServer/WaypointServer.csprojto publish to Windows. - Run
dotnet publish -c Release -r linux-x64 PMDC/RogueEssence/WaypointServer/WaypointServer.csprojto publish to Linux.
Building Installer/Updater
- Run
dotnet publish -c Release -r win-x64 PMDOSetup/PMDOSetup.csprojto publish to Windows. - Run
dotnet publish -c Release -r linux-x64 PMDOSetup/PMDOSetup.csprojto publish to Linux. - Run
dotnet publish -c Release -r osx-x64 PMDOSetup/PMDOSetup.csprojto publish to Mac. - Files will appear in the
publishfolder.
Github Actions
The Github Action Workflows perform all these steps automatically on github push!
