wasStitchNET

Subversion Repositories:
Compare Path: Rev
With Path: Rev
?path1? @ 20  →  ?path2? @ 21
/Repository/Stitching/Stitching.cs
@@ -370,7 +370,7 @@
 
// Retrive working file.
var workingFilePath = string.Join(Path.DirectorySeparatorChar.ToString(),
path, Constants.WORKING_CONFIGURATION_FILE);
path, STITCH_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, Constants.DEFAULT_CONFIGURATION_FILE));
path, STITCH_CONSTANTS.DEFAULT_CONFIGURATION_FILE));
}
catch (Exception ex)
{
@@ -420,7 +420,7 @@
if (!dryrun)
File.Copy(workingFilePath,
string.Join(Path.DirectorySeparatorChar.ToString(),
path, Constants.BACKUP_CONFIGURATION_FILE), true);
path, STITCH_CONSTANTS.BACKUP_CONFIGURATION_FILE), true);
}
catch (Exception ex)
{
@@ -433,7 +433,7 @@
{
if (!dryrun)
patchedFile.Save(string.Join(Path.DirectorySeparatorChar.ToString(),
path, Constants.WORKING_CONFIGURATION_FILE));
path, STITCH_CONSTANTS.WORKING_CONFIGURATION_FILE));
}
catch (Exception ex)
{