コード例 #1
0
ファイル: TokenHelper.cs プロジェクト: GHLabs/SambaPOS-3
 /// <summary>
 /// Creates a version literal token from the information supplied
 /// </summary>
 /// <param name="text">The text representing the version</param>
 /// <returns></returns>
 public static Token ToLiteralVersion(string text)
 {
     var val = Version.Parse(text);
     var lv = new LVersion(val);
     return new Token(TokenKind.LiteralOther, TokenTypes.LiteralVersion, text, lv);
 }
コード例 #2
0
ファイル: IOPlugin.cs プロジェクト: GHLabs/SambaPOS-3
        /// <summary>
        /// Gets the version of the file specified.
        /// </summary>
        /// <param name="path"></param>
        /// <returns></returns>
        public static LVersion GetVersion(string path)
        {
            // ? This is a problem. Do not have the debug/source code information here.
            if (!global::System.IO.File.Exists(path))
                throw new LangException("File not found", "File : " + path + " not found", string.Empty, 0, 0);

            // Throw exception?
            var ext = Path.GetExtension(path);
            if (ext != "dll" && ext != "exe")
                return new LVersion(Version.Parse("0.0.0.0"));

            var asm = Assembly.LoadFrom(path);
            var version = asm.GetName().Version;
            var lversion = new LVersion(version);
            return lversion;
        }