SEToolbox.Support.ToolboxUpdater.IsBaseAssembliesChanged C# (CSharp) 메소드

IsBaseAssembliesChanged() 공개 정적인 메소드

public static IsBaseAssembliesChanged ( ) : bool
리턴 bool
        public static bool IsBaseAssembliesChanged()
        {
            var baseFilePath = GetApplicationFilePath();
            var appFilePath = Path.GetDirectoryName(Assembly.GetEntryAssembly().Location);

            foreach (var filename in CoreSpaceEngineersFiles)
            {
                if (DoFilesDiffer(baseFilePath, appFilePath, filename))
                    return true;
            }

            return false;
        }