AssemblyInfo.cs 2.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. //
  2. // Copyright 2020 Electronic Arts Inc.
  3. //
  4. // The Command & Conquer Map Editor and corresponding source code is free
  5. // software: you can redistribute it and/or modify it under the terms of
  6. // the GNU General Public License as published by the Free Software Foundation,
  7. // either version 3 of the License, or (at your option) any later version.
  8. // The Command & Conquer Map Editor and corresponding source code is distributed
  9. // in the hope that it will be useful, but with permitted additional restrictions
  10. // under Section 7 of the GPL. See the GNU General Public License in LICENSE.TXT
  11. // distributed with this program. You should have received a copy of the
  12. // GNU General Public License along with permitted additional restrictions
  13. // with this program. If not, see https://github.com/electronicarts/CnC_Remastered_Collection
  14. using System.Reflection;
  15. using System.Runtime.CompilerServices;
  16. using System.Runtime.InteropServices;
  17. // General Information about an assembly is controlled through the following
  18. // set of attributes. Change these attribute values to modify the information
  19. // associated with an assembly.
  20. [assembly: AssemblyTitle("CnC TDRA Map Editor")]
  21. [assembly: AssemblyDescription("")]
  22. [assembly: AssemblyConfiguration("")]
  23. [assembly: AssemblyCompany("Electronic Arts Inc.")]
  24. [assembly: AssemblyProduct("CnC TDRA Map Editor")]
  25. [assembly: AssemblyCopyright("© 2020 Electronic Arts Inc. All rights reserved.")]
  26. [assembly: AssemblyTrademark("")]
  27. [assembly: AssemblyCulture("")]
  28. // Setting ComVisible to false makes the types in this assembly not visible
  29. // to COM components. If you need to access a type in this assembly from
  30. // COM, set the ComVisible attribute to true on that type.
  31. [assembly: ComVisible(false)]
  32. // The following GUID is for the ID of the typelib if this project is exposed to COM
  33. [assembly: Guid("397cef00-8930-4ec8-b15f-f7cf7193fb22")]
  34. // Version information for an assembly consists of the following four values:
  35. //
  36. // Major Version
  37. // Minor Version
  38. // Build Number
  39. // Revision
  40. //
  41. // You can specify all the values or you can default the Build and Revision Numbers
  42. // by using the '*' as shown below:
  43. // [assembly: AssemblyVersion("1.0.*")]
  44. [assembly: AssemblyVersion("1.0.0.0")]
  45. [assembly: AssemblyFileVersion("1.0.0.0")]