GlobalAssemblyInfo.cs 2.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. #region Licensing Information
  2. //----------------------------------------------------------------------------------
  3. // <copyright file="GlobalAssemblyInfo.cs" company="NasuTek Enterprises">
  4. // NasuTek Grabbie
  5. // Copyright © NasuTek Enterprises 2009-2011.
  6. //
  7. // Licensed under the Apache License, Version 2.0 (the "License");
  8. // you may not use this file except in compliance with the License.
  9. // You may obtain a copy of the License at
  10. //
  11. // http://www.apache.org/licenses/LICENSE-2.0
  12. //
  13. // Unless required by applicable law or agreed to in writing, software
  14. // distributed under the License is distributed on an "AS IS" BASIS,
  15. // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  16. // See the License for the specific language governing permissions and
  17. // limitations under the License.
  18. // </copyright>
  19. // <summary>
  20. // Global Assembly Information
  21. // </summary>
  22. //----------------------------------------------------------------------------------
  23. #endregion
  24. #region Using Directives
  25. using System;
  26. using System.Collections.Generic;
  27. using System.Linq;
  28. using System.Reflection;
  29. #endregion
  30. //////////////////////////////////////////////////////////////////////////////////////////
  31. // Autogenerated GlobalAssemblyInfo.cs file generated by NasuTek Generation Tools
  32. // Edit GlobalAssemblyInfo.template to change information and not GlobalAssemblyInfo.cs
  33. // as it will be regenerated on compile
  34. //////////////////////////////////////////////////////////////////////////////////////////
  35. [assembly: AssemblyCompany("NasuTek Enterprises")]
  36. [assembly: AssemblyProduct("NasuTek Grabbie")]
  37. [assembly: AssemblyCopyright("Copyright © NasuTek Enterprises 2009-2013")]
  38. [assembly: AssemblyTrademark("")]
  39. [assembly: AssemblyCulture("")]
  40. [assembly: AssemblyVersion(GlobalAssemblyInfo.UpdaterVersion)]
  41. [assembly: AssemblyFileVersion(GlobalAssemblyInfo.UpdaterVersion)]
  42. internal class GlobalAssemblyInfo {
  43. public const string UpdaterVersion = "2.3.0.0";
  44. #if DEBUG
  45. public const string CleanVersion = "2.3 \"Megumi\"";
  46. #else
  47. public const string CleanVersion = "2.3";
  48. #endif
  49. public const string FullVersion = "2.3.0.0-Megumi";
  50. }