Beispiel #1
0
        public AssemblyProcessor(string name, string sn, string[] refFiles)
        {
            var n = name.Substring(0, name.Length - 4);

            if (File.Exists(n + ProcessorSettings.GetExtName()))
            {
                _hasSymbols = true;
            }
            this._oldName  = n + ".bak";
            this._name     = name;
            this._sn       = sn;
            this._refFiles = refFiles;
            Logger.Default.Info(_hasSymbols);
        }