Exemplo n.º 1
0
        private void GeneratePatchFile()
        {
            if (!Alterations.Any())
            {
                return;
            }
            List <string> allfiles = Alterations.Select(x => x.Name).ToList();

            // Diff with the previous version
            Utilities.GeneratePatchFile(allfiles, m_Area.Root.FullName, m_Version.ID.ToString());
        }