Skip to content
This repository has been archived by the owner on Jan 25, 2024. It is now read-only.

Commit

Permalink
Fix pipeline
Browse files Browse the repository at this point in the history
  • Loading branch information
valnoxy committed Sep 5, 2022
1 parent 11da299 commit 6bdbae6
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 5 deletions.
1 change: 1 addition & 0 deletions Service/ZeroKeyServiceCore/ServiceCore.cs
Original file line number Diff line number Diff line change
Expand Up @@ -632,6 +632,7 @@ private void Disconnected(object sender, SuperSimpleTcp.ConnectionEventArgs e)

private void DataReceived(object sender, SuperSimpleTcp.DataReceivedEventArgs e)
{
if (e.Data.Array == null) return;
string message = Encoding.UTF8.GetString(e.Data.Array, 0, e.Data.Count);

Debug.WriteLine("Got response from server... sync file now...");
Expand Down
5 changes: 0 additions & 5 deletions Setup/Scripts/Server.iss
Original file line number Diff line number Diff line change
Expand Up @@ -42,17 +42,12 @@ Name: "desktopicon"; Description: "{cm:CreateDesktopIcon}"; GroupDescription: "{
; exe file
Source: "..\..\bin\Release\ServerUI\ZeroKey.ServerUI.exe"; DestDir: {app}; Flags: ignoreversion; \
BeforeInstall: TaskKill('ZeroKey.ServerUI.exe')
Source: "..\..\bin\Release\ServerUI\ZeroKey.Server.Main.exe"; DestDir: {app}; Flags: ignoreversion; \
BeforeInstall: TaskKill('ZeroKey.Server.Main.exe')

; Application files
Source: "..\..\bin\Release\ServerUI\Newtonsoft.Json.dll"; DestDir: {app}; Flags: ignoreversion
Source: "server.pfx"; DestDir: {app}; Flags: ignoreversion
Source: "..\..\bin\Release\ServerUI\System.ServiceProcess.ServiceController.dll"; DestDir: {app}; Flags: ignoreversion
Source: "..\..\bin\Release\ServerUI\Wpf.Ui.dll"; DestDir: {app}; Flags: ignoreversion
Source: "..\..\bin\Release\ServerUI\ZeroKey.Server.Main.deps.json"; DestDir: {app}; Flags: ignoreversion
Source: "..\..\bin\Release\ServerUI\ZeroKey.Server.Main.dll"; DestDir: {app}; Flags: ignoreversion
Source: "..\..\bin\Release\ServerUI\ZeroKey.Server.Main.runtimeconfig.json"; DestDir: {app}; Flags: ignoreversion
Source: "..\..\bin\Release\ServerUI\ZeroKey.ServerUI.deps.json"; DestDir: {app}; Flags: ignoreversion
Source: "..\..\bin\Release\ServerUI\ZeroKey.ServerUI.dll"; DestDir: {app}; Flags: ignoreversion
Source: "..\..\bin\Release\ServerUI\ZeroKey.ServerUI.runtimeconfig.json"; DestDir: {app}; Flags: ignoreversion
Expand Down

0 comments on commit 6bdbae6

Please sign in to comment.