Skip to content

Commit

Permalink
Added SetAlive.
Browse files Browse the repository at this point in the history
  • Loading branch information
dlebansais committed Sep 8, 2019
1 parent 2638559 commit e98d106
Show file tree
Hide file tree
Showing 9 changed files with 40 additions and 4 deletions.
6 changes: 6 additions & 0 deletions Kill-Update/App.xaml.cs
Original file line number Diff line number Diff line change
Expand Up @@ -404,7 +404,11 @@ private void InitZombification()

Zombification = new Zombification("Kill-Update");
Zombification.Delay = TimeSpan.FromMinutes(1);
Zombification.WatchingMessage = null;
Zombification.RestartMessage = null;
Zombification.Flags = Flags.NoWindow | Flags.ForwardArguments;
Zombification.IsSymetric = true;
Zombification.AliveTimeout = TimeSpan.FromMinutes(1);
Zombification.ZombifyMe();

App.AddLog("InitZombification done");
Expand Down Expand Up @@ -556,6 +560,8 @@ private void OnUpdate()
PreviousStartType = StartType;
break;
}

Zombification?.SetAlive();
}
catch (Exception e)
{
Expand Down
4 changes: 2 additions & 2 deletions Kill-Update/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@
// You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("1.0.0.88")]
[assembly: AssemblyFileVersion("1.0.0.51")]
[assembly: AssemblyVersion("1.0.0.90")]
[assembly: AssemblyFileVersion("1.0.0.90")]
[assembly: NeutralResourcesLanguage("en-US")]

4 changes: 2 additions & 2 deletions SinglePluginHost/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@
// You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("1.0.0.88")]
[assembly: AssemblyFileVersion("1.0.0.82")]
[assembly: AssemblyVersion("1.0.0.90")]
[assembly: AssemblyFileVersion("1.0.0.84")]
[assembly: NeutralResourcesLanguage("en-US")]

Binary file modified ZombifyMe/x64/Debug/ZombifyMe.dll
Binary file not shown.
Binary file modified ZombifyMe/x64/Debug/ZombifyMe.pdb
Binary file not shown.
15 changes: 15 additions & 0 deletions ZombifyMe/x64/Debug/ZombifyMe.xml

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

Binary file modified ZombifyMe/x64/Release/ZombifyMe.dll
Binary file not shown.
Binary file modified ZombifyMe/x64/Release/ZombifyMe.pdb
Binary file not shown.
15 changes: 15 additions & 0 deletions ZombifyMe/x64/Release/ZombifyMe.xml

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

0 comments on commit e98d106

Please sign in to comment.