AssemblyInfo.cs 741 B

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