diff --git a/ShimmerAPI/ShimmerBLEGrpc/Program.cs b/ShimmerAPI/ShimmerBLEGrpc/Program.cs
index e08330a..1204d94 100644
--- a/ShimmerAPI/ShimmerBLEGrpc/Program.cs
+++ b/ShimmerAPI/ShimmerBLEGrpc/Program.cs
@@ -1,8 +1,10 @@
using com.shimmerresearch.grpc;
+using Google.Protobuf.Compiler;
using Grpc.Core;
using System;
using System.Collections.Generic;
using System.Linq;
+using System.Reflection;
using System.Text;
using System.Threading.Tasks;
@@ -12,7 +14,10 @@ class Program
{
static void Main(string[] args)
{
-
+ var version = Assembly.GetExecutingAssembly()
+ .GetName()
+ .Version;
+ Console.WriteLine($"Shimmer GRPC Server App Version: {version}");
int Port = 50052; // Port on which the server will listen
if (args.Length>0)
{
diff --git a/ShimmerAPI/ShimmerBLEGrpc/README.md b/ShimmerAPI/ShimmerBLEGrpc/README.md
new file mode 100644
index 0000000..d3e6ad9
--- /dev/null
+++ b/ShimmerAPI/ShimmerBLEGrpc/README.md
@@ -0,0 +1,6 @@
+When creating a new version of the GRPC Server, note that the version can be updated via .csproj file.
+```
+
+ 1.0.0
+
+```
\ No newline at end of file
diff --git a/ShimmerAPI/ShimmerBLEGrpc/ShimmerBLEGrpc.csproj b/ShimmerAPI/ShimmerBLEGrpc/ShimmerBLEGrpc.csproj
index d3b95f7..b79054a 100644
--- a/ShimmerAPI/ShimmerBLEGrpc/ShimmerBLEGrpc.csproj
+++ b/ShimmerAPI/ShimmerBLEGrpc/ShimmerBLEGrpc.csproj
@@ -15,6 +15,9 @@
+
+ 1.0.0
+
AnyCPU
true