Ejemplo n.º 1
0
        private static async Task SaveZipFile(string zipFilePath, HttpResponseMessage result)
        {
            using (var fs = new FileStream(zipFilePath, FileMode.Create)) await result.Content.CopyToAsync(fs);

            Dataset.SetChangelogPath(DataFolder);
        }
Ejemplo n.º 2
0
        private static void ResetAbortedChangeLog()
        {
            Dataset.ResetAbortedChangelog();

            Dataset.SetOrderedChangelogId("0");
        }