Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/duplicati/duplicati.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'Duplicati/License/VersionNumbers.cs')
-rw-r--r--Duplicati/License/VersionNumbers.cs14
1 files changed, 7 insertions, 7 deletions
diff --git a/Duplicati/License/VersionNumbers.cs b/Duplicati/License/VersionNumbers.cs
index 40766e47a..ccfd5afcb 100644
--- a/Duplicati/License/VersionNumbers.cs
+++ b/Duplicati/License/VersionNumbers.cs
@@ -26,7 +26,7 @@ namespace Duplicati.License
public static class VersionNumbers
{
public static readonly string TAG;
- public static readonly string VERSION_NAME;
+ public static readonly string VERSION_NAME;
static VersionNumbers()
{
@@ -45,13 +45,13 @@ namespace Duplicati.License
TAG = tag.Trim();
- var v = VersionNumber;
- if (!string.IsNullOrWhiteSpace(TAG))
- v = " - " + TAG;
+ var v = VersionNumber;
+ if (!string.IsNullOrWhiteSpace(TAG))
+ v = " - " + TAG;
#if DEBUG
- v = " - debug";
+ v = " - debug";
#endif
- VERSION_NAME = v;
+ VERSION_NAME = v;
}
@@ -59,7 +59,7 @@ namespace Duplicati.License
{
get
{
- return VERSION_NAME;
+ return VERSION_NAME;
}
}