wasStitchNET – Diff between revs 17 and 21

Subversion Repositories:
Rev:
Show entire fileIgnore whitespace
Rev 17 Rev 21
Line 7... Line 7...
7 using System.Net.Http.Headers; 7 using System.Net.Http.Headers;
8 using System.Reflection; 8 using System.Reflection;
Line 9... Line 9...
9   9  
10 namespace wasStitchNET 10 namespace wasStitchNET
11 { 11 {
12 public struct STITCH_CONSTANTS 12 public static class STITCH_CONSTANTS
13 { 13 {
14 public const string SERVER_IP_PATH = @"ip"; 14 public const string SERVER_IP_PATH = @"ip";
15 public const string UPDATE_PATH = @"update"; 15 public const string UPDATE_PATH = @"update";
16 public const string LATEST_RELEASE_PATH = @"latest"; 16 public const string LATEST_RELEASE_PATH = @"latest";
Line 32... Line 32...
32 public const string SERVICE_NAME = @"Stitch"; 32 public const string SERVICE_NAME = @"Stitch";
33 public const string SERVICE_DESCRIPTION = @"The Stitch Software Update Service."; 33 public const string SERVICE_DESCRIPTION = @"The Stitch Software Update Service.";
34 public const string DATE_TIME_STAMP = @"dd-MM-yyyy HH:mm:ss"; 34 public const string DATE_TIME_STAMP = @"dd-MM-yyyy HH:mm:ss";
35 public const string LOG_FILE_PATH = @"logs/Stitch.log"; 35 public const string LOG_FILE_PATH = @"logs/Stitch.log";
Line -... Line 36...
-   36  
-   37 public const string WORKING_CONFIGURATION_FILE = @"Configuration.xml";
-   38 public const string DEFAULT_CONFIGURATION_FILE = @"Configuration.xml.default";
-   39 public const string BACKUP_CONFIGURATION_FILE = @"Configuration.xml.bak";
36   40  
37 public const int LOCAL_FILE_ACCESS_TIMEOUT = 60000; 41 public const int LOCAL_FILE_ACCESS_TIMEOUT = 60000;
38 } 42 }
39 } 43 }