AssemblyInfo.cs 680 B

1234567891011
  1. using System.Reflection;
  2. using System.Runtime.InteropServices;
  3. using static First.First;
  4. [assembly: AssemblyProduct("First")] //Set this to the full name of the mod including spaces.
  5. [assembly: AssemblyTitle("First")] //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("© 2021 Zariteis. All rights reserved.")] //Set this to your copyright name.
  9. [assembly: AssemblyVersion(MOD_VERSION)]
  10. [assembly: AssemblyFileVersion(MOD_VERSION)]