Skip to content

Commit

Permalink
Fix typos
Browse files Browse the repository at this point in the history
  • Loading branch information
JusterZhu committed Nov 4, 2023
1 parent 7b8fd97 commit 878a5e9
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 66 deletions.
6 changes: 3 additions & 3 deletions src/c#/GeneralUpdate.ClientCore/GeneralClientBootstrap.cs
Original file line number Diff line number Diff line change
Expand Up @@ -85,10 +85,10 @@ public GeneralClientBootstrap Config(string url, string appSecretKey, string app
Packet.AppSecretKey = appSecretKey;
//update app.
Packet.AppName = appName;
string clienVersion = GetFileVersion(Path.Combine(basePath, $"{Packet.AppName}.exe"));
Packet.ClientVersion = clienVersion;
string clientVersion = GetFileVersion(Path.Combine(basePath, $"{Packet.AppName}.exe"));
Packet.ClientVersion = clientVersion;
Packet.AppType = AppType.ClientApp;
Packet.UpdateUrl = $"{url}/versions/{AppType.ClientApp}/{clienVersion}/{Packet.AppSecretKey}";
Packet.UpdateUrl = $"{url}/versions/{AppType.ClientApp}/{clientVersion}/{Packet.AppSecretKey}";
//main app.
string mainAppName = Path.GetFileNameWithoutExtension(Process.GetCurrentProcess().MainModule.FileName);
string mainVersion = Assembly.GetExecutingAssembly().GetName().Version.ToString();
Expand Down
63 changes: 0 additions & 63 deletions src/c#/GeneralUpdate.Core/Testament/GeneralTestamentProvider.cs

This file was deleted.

0 comments on commit 878a5e9

Please sign in to comment.