diff --git a/app/Desktop/Desktop.csproj b/app/Desktop/Desktop.csproj
index 2038a1a..dfdb7c4 100644
--- a/app/Desktop/Desktop.csproj
+++ b/app/Desktop/Desktop.csproj
@@ -12,10 +12,9 @@
true
en
DiscordHistoryTracker
- 33.1.0.0
- $(Version)
- $(Version)
- $(Version)
+ false
+ false
+ false
true
@@ -29,6 +28,9 @@
+
+
+
MainWindow.axaml
diff --git a/app/Server/Server.csproj b/app/Server/Server.csproj
index 480824e..a157731 100644
--- a/app/Server/Server.csproj
+++ b/app/Server/Server.csproj
@@ -7,10 +7,9 @@
chylex
DiscordHistoryTracker
DiscordHistoryTrackerServer
- 33.1.0.0
- $(Version)
- $(Version)
- $(Version)
+ false
+ false
+ false
true
@@ -25,4 +24,7 @@
+
+
+
diff --git a/app/Utils/Utils.csproj b/app/Utils/Utils.csproj
index d1db0f3..c2c16af 100644
--- a/app/Utils/Utils.csproj
+++ b/app/Utils/Utils.csproj
@@ -7,10 +7,9 @@
chylex
DiscordHistoryTracker
DiscordHistoryTrackerUtils
- 33.1.0.0
- $(Version)
- $(Version)
- $(Version)
+ false
+ false
+ false
true
@@ -19,4 +18,7 @@
+
+
+
diff --git a/app/Version.cs b/app/Version.cs
new file mode 100644
index 0000000..13e0c75
--- /dev/null
+++ b/app/Version.cs
@@ -0,0 +1,12 @@
+using System.Reflection;
+using DHT.Utils;
+
+[assembly: AssemblyVersion(Version.Tag)]
+[assembly: AssemblyFileVersion(Version.Tag)]
+[assembly: AssemblyInformationalVersion(Version.Tag)]
+
+namespace DHT.Utils {
+ static class Version {
+ public const string Tag = "32.1.0.0";
+ }
+}