12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667 |
- <@
- <% NasuTekPreprocessor version="1.0" %>
- <% Import dll="NasuTek.Preprocessor.Core.dll" %>
- <% Import dll="NasuTek.Preprocessor.Git.dll" %>
- <% Import namespace="NasuTek.Preprocessor.Core" %>
- <% Import namespace="NasuTek.Preprocessor.Git" %>
- <% DateTimeStamp domain="DateTimeStamp" %>
- <% GitProcessor domain="Git" %>
- @>
- #region Licensing Information
- //----------------------------------------------------------------------------------
- // <copyright file="GlobalAssemblyInfo.cs" company="NasuTek Enterprises">
- // NasuTek Grabbie
- // Copyright © NasuTek Enterprises 2009-2011.
- //
- // Licensed under the Apache License, Version 2.0 (the "License");
- // you may not use this file except in compliance with the License.
- // You may obtain a copy of the License at
- //
- // http://www.apache.org/licenses/LICENSE-2.0
- //
- // Unless required by applicable law or agreed to in writing, software
- // distributed under the License is distributed on an "AS IS" BASIS,
- // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- // See the License for the specific language governing permissions and
- // limitations under the License.
- // </copyright>
- // <summary>
- // Global Assembly Information
- // </summary>
- //----------------------------------------------------------------------------------
- #endregion
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Reflection;
- //////////////////////////////////////////////////////////////////////////////////////////
- // Autogenerated GlobalAssemblyInfo.cs file generated by NasuTek Generation Tools
- // Edit GlobalAssemblyInfo.template to change information and not GlobalAssemblyInfo.cs
- // as it will be regenerated on compile
- //////////////////////////////////////////////////////////////////////////////////////////
- [assembly: AssemblyCompany("NasuTek Enterprises")]
- [assembly: AssemblyProduct("NasuTek Grabbie")]
- [assembly: AssemblyCopyright("Copyright © NasuTek Enterprises 2009-2013")]
- [assembly: AssemblyTrademark("")]
- [assembly: AssemblyCulture("")]
- [assembly: AssemblyVersion(GlobalAssemblyInfo.UpdaterVersion)]
- [assembly: AssemblyFileVersion(GlobalAssemblyInfo.UpdaterVersion)]
- internal class GlobalAssemblyInfo {
- public const string UpdaterVersion = "2.3.0.0";
- #if DEBUG
- public const string CleanVersion = "2.3 \"Megumi\"";
- #else
- public const string CleanVersion = "2.3";
- #endif
- public const string GitHash = "##Git.Hash##";
- public const string GitBranch = "##Git.Branch##";
- public const string Revision = "##Git.RevNumber##";
- public const string TimeStamp = "##DateTimeStamp.Stamp##";
- public const string FullVersion = "2.3.0.0-Megumi_" + GitHash + "-" + GitBranch + "_" + TimeStamp;
- }
|