This repository provides a template for creating a Limbus Company BepInEx mod.
- Make sure you have installed BepInEx #577 on Limbus Company, and that you have launched Limbus Company with BepInEx installed at least once
- To setup a dev environment, copy the file
Directory.Build.example.propsinsrc/and rename the copy toDirectory.Build.props - Modify the file as per the instructions inside
- Modify
BasePlugin.csproj, changeRootNamespaceto the name of your mod. - Modify
main.cs, changeBaseModinnamespace BaseMod;to what you've entered in step 4. ChangeName,Version, andAuthoras you wish. - Modify
AssemblyInfo.csand fix the lineusing static BaseMod.Main;to use the proper root namespace. - Whenever you build, the development build of the BepInEx plugin should automatically be copied to your game folder.