Skip to content

Commit

Permalink
Make builds from this repo identifiable through Utils.GetSoftwareBuild()
Browse files Browse the repository at this point in the history
  • Loading branch information
datadiode committed Aug 8, 2020
1 parent 0d1fb9e commit 174458a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion SQLiteTurbo/Utils.cs
Original file line number Diff line number Diff line change
Expand Up @@ -247,7 +247,7 @@ public static string GetSoftwareVersion()
public static string GetSoftwareBuild()
{
Assembly assembly = Assembly.GetExecutingAssembly();
string ver = "" + assembly.GetName().Version.Build;
string ver = "datadiode " + assembly.GetName().Version.Build;
return ver;
}

Expand Down

0 comments on commit 174458a

Please # to comment.