AssemblyInfo.cs 731 B

12345678910
  1. using System.Reflection;
  2. using static CombatChipChest.CombatChipChest;
  3. [assembly: AssemblyProduct("Combat Chip Simulator Mod")] //Set this to the full name of the mod including spaces.
  4. [assembly: AssemblyTitle("Combat Chip Simulator")] //This is only used when mousing over a dll file in Windows explorer.
  5. [assembly: AssemblyDescription("A Gadget mod for Roguelands, adding a Combat Chip Simulator.")] //This is a short description for your mod's assembly.
  6. [assembly: AssemblyCompany("")] //Set this to your name/nickname and/or website
  7. [assembly: AssemblyCopyright("© 2021 Zariteis. All rights reserved.")] //Set this to your copyright name.
  8. [assembly: AssemblyVersion(MOD_VERSION)]
  9. [assembly: AssemblyFileVersion(MOD_VERSION)]