use this template to get started with developing your mod for ignitron
- create new repo from this template with
Use this template - clone the new repo on your pc
- install ignitron
- configure the workspace
- make some changes to make it yours:
- rename the project and solution files to match your mod name
- update metadata file:
- modify
assembly_relative_pathproperty to<PROJECT_NAME>.dll - edit remaining properties to match your mod
- modify
- replace
LICENSEwith license you would like to use, such as MIT
- now you're ready to work on your mod
building in Debug configuration will automatically copy the mod to the 'mods/' directory of your game:
dotnet build -c Debug
but building in Release configuration won't copy it anywhere other than build folder (
ExampleMod/bin/Release/net9.0/):
dotnet build -c Release