Skip to content

Commit

Permalink
Adding a timeout for Named Pipe connection to the Pahkat Service #50
Browse files Browse the repository at this point in the history
  • Loading branch information
alvskar committed May 16, 2023
1 parent 897962c commit d18315d
Show file tree
Hide file tree
Showing 9 changed files with 483 additions and 373 deletions.
6 changes: 3 additions & 3 deletions Divvun.Installer.sln
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@

Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio Version 16
VisualStudioVersion = 16.0.29025.244
# Visual Studio Version 17
VisualStudioVersion = 17.5.33530.505
MinimumVisualStudioVersion = 10.0.40219.1
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Divvun.Installer", "Divvun.Installer\Divvun.Installer.csproj", "{B876899E-C40F-4D5A-84DE-8BF1B0064A28}"
EndProject
Expand Down Expand Up @@ -34,7 +34,7 @@ Global
{20F56DAF-5D1D-421D-8BB0-203F2F591074}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{20F56DAF-5D1D-421D-8BB0-203F2F591074}.Debug|x86.ActiveCfg = Debug|Any CPU
{20F56DAF-5D1D-421D-8BB0-203F2F591074}.Debug|x86.Build.0 = Debug|Any CPU
{20F56DAF-5D1D-421D-8BB0-203F2F591074}.Release|Any CPU.ActiveCfg = Release|x86
{20F56DAF-5D1D-421D-8BB0-203F2F591074}.Release|Any CPU.ActiveCfg = Release|Any CPU
{20F56DAF-5D1D-421D-8BB0-203F2F591074}.Release|x86.ActiveCfg = Release|x86
{20F56DAF-5D1D-421D-8BB0-203F2F591074}.Release|x86.Build.0 = Release|x86
{5C78E2EC-FF0C-4AEA-B146-DDCA6291C025}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
Expand Down
7 changes: 4 additions & 3 deletions Divvun.Installer/App.xaml.cs
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@
using System.Windows.Controls;
using System.Windows.Media.Imaging;
using Divvun.Installer.Models;
using Divvun.Installer.Properties;
using Divvun.Installer.Service;
using Divvun.Installer.UI.About;
using Divvun.Installer.UI.Main;
Expand All @@ -30,11 +29,13 @@
namespace Divvun.Installer {

public partial class PahkatApp : Application, ISingleInstance {
// public static DispatcherScheduler Scheduler;
//public static DispatcherScheduler Scheduler;

public bool IsShutdown = false;
public const string ArgsSilent = "-s";
private const int AttachParentProcess = -1;

private const int AttachParentProcess = -1;

private CompositeDisposable _bag = new CompositeDisposable();
private TaskbarIcon _icon;

Expand Down
11 changes: 10 additions & 1 deletion Divvun.Installer/Strings.Designer.cs

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit d18315d

Please sign in to comment.