wasStitchNET

Subversion Repositories:
Compare Path: Rev
With Path: Rev
?path1? @ 19  →  ?path2? @ 20
/Repository/Stitching/Stitching.cs
@@ -13,7 +13,7 @@
using System.Xml.Linq;
using wasDAVClient;
using wasSharp;
using wasSharp.Linq;
using wasSharp.Sets;
using wasSharpNET.IO.Utilities;
using wasStitchNET.Structures;
using XML = wasStitchNET.Patchers.XML;
@@ -370,7 +370,7 @@
 
// Retrive working file.
var workingFilePath = string.Join(Path.DirectorySeparatorChar.ToString(),
path, @"Corrade.ini");
path, Constants.WORKING_CONFIGURATION_FILE);
 
StitchProgressUpdate("Parsing working file to be patched.");
XDocument workingFile;
@@ -389,7 +389,7 @@
try
{
defaultFile = XDocument.Load(string.Join(Path.DirectorySeparatorChar.ToString(),
path, @"Corrade.ini.default"));
path, Constants.DEFAULT_CONFIGURATION_FILE));
}
catch (Exception ex)
{
@@ -420,7 +420,7 @@
if (!dryrun)
File.Copy(workingFilePath,
string.Join(Path.DirectorySeparatorChar.ToString(),
path, @"Corrade.ini.bak"), true);
path, Constants.BACKUP_CONFIGURATION_FILE), true);
}
catch (Exception ex)
{
@@ -433,7 +433,7 @@
{
if (!dryrun)
patchedFile.Save(string.Join(Path.DirectorySeparatorChar.ToString(),
path, @"Corrade.ini"));
path, Constants.WORKING_CONFIGURATION_FILE));
}
catch (Exception ex)
{