From d9f29007af2bc977ab90ad94e42b1eeb4027a1ff Mon Sep 17 00:00:00 2001 From: Simon G Date: Fri, 16 Apr 2021 16:06:36 +0200 Subject: [PATCH] - start implementing process managing --- Lib.ProcessManaging/Interfaces/IObservedProcess.cs | 11 +++++++++++ Lib.ProcessManaging/Interfaces/IProcessManager.cs | 11 +++++++++++ Lib.ProcessManaging/Lib.ProcessManaging.csproj | 12 ++++++++++++ Lib.ProcessManaging/Properties/AssemblyInfo.cs | 7 +++++++ Mystify.sln | 6 ++++++ 5 files changed, 47 insertions(+) create mode 100644 Lib.ProcessManaging/Interfaces/IObservedProcess.cs create mode 100644 Lib.ProcessManaging/Interfaces/IProcessManager.cs create mode 100644 Lib.ProcessManaging/Lib.ProcessManaging.csproj create mode 100644 Lib.ProcessManaging/Properties/AssemblyInfo.cs diff --git a/Lib.ProcessManaging/Interfaces/IObservedProcess.cs b/Lib.ProcessManaging/Interfaces/IObservedProcess.cs new file mode 100644 index 0000000..1900151 --- /dev/null +++ b/Lib.ProcessManaging/Interfaces/IObservedProcess.cs @@ -0,0 +1,11 @@ +// Author: Gockner, Simon +// Created: 2021-04-16 +// Copyright(c) 2021 SimonG. All Rights Reserved. + +namespace Lib.ProcessManaging.Interfaces +{ + public interface IObservedProcess + { + + } +} \ No newline at end of file diff --git a/Lib.ProcessManaging/Interfaces/IProcessManager.cs b/Lib.ProcessManaging/Interfaces/IProcessManager.cs new file mode 100644 index 0000000..c28793a --- /dev/null +++ b/Lib.ProcessManaging/Interfaces/IProcessManager.cs @@ -0,0 +1,11 @@ +// Author: Gockner, Simon +// Created: 2021-04-16 +// Copyright(c) 2021 SimonG. All Rights Reserved. + +namespace Lib.ProcessManaging.Interfaces +{ + public interface IProcessManager + { + + } +} \ No newline at end of file diff --git a/Lib.ProcessManaging/Lib.ProcessManaging.csproj b/Lib.ProcessManaging/Lib.ProcessManaging.csproj new file mode 100644 index 0000000..a3619cc --- /dev/null +++ b/Lib.ProcessManaging/Lib.ProcessManaging.csproj @@ -0,0 +1,12 @@ + + + + net5.0 + enable + + + + + + + diff --git a/Lib.ProcessManaging/Properties/AssemblyInfo.cs b/Lib.ProcessManaging/Properties/AssemblyInfo.cs new file mode 100644 index 0000000..21da8f4 --- /dev/null +++ b/Lib.ProcessManaging/Properties/AssemblyInfo.cs @@ -0,0 +1,7 @@ +// Author: Gockner, Simon +// Created: 2021-04-16 +// Copyright(c) 2021 SimonG. All Rights Reserved. + +using Lib.Logging; + +[assembly:LogComponent("PROCESS_MANAGING")] \ No newline at end of file diff --git a/Mystify.sln b/Mystify.sln index 421cefb..749266f 100644 --- a/Mystify.sln +++ b/Mystify.sln @@ -14,6 +14,8 @@ Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Lib.Logging", "Lib.Logging\ EndProject Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Lib.Tools", "Lib.Tools\Lib.Tools.csproj", "{4E283FDE-3E28-49F6-9FCF-529D8E82FBB9}" EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Lib.ProcessManaging", "Lib.ProcessManaging\Lib.ProcessManaging.csproj", "{F9289F56-8780-45E0-9285-55710DFEDD0F}" +EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution Debug|Any CPU = Debug|Any CPU @@ -48,5 +50,9 @@ Global {4E283FDE-3E28-49F6-9FCF-529D8E82FBB9}.Debug|Any CPU.Build.0 = Debug|Any CPU {4E283FDE-3E28-49F6-9FCF-529D8E82FBB9}.Release|Any CPU.ActiveCfg = Release|Any CPU {4E283FDE-3E28-49F6-9FCF-529D8E82FBB9}.Release|Any CPU.Build.0 = Release|Any CPU + {F9289F56-8780-45E0-9285-55710DFEDD0F}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {F9289F56-8780-45E0-9285-55710DFEDD0F}.Debug|Any CPU.Build.0 = Debug|Any CPU + {F9289F56-8780-45E0-9285-55710DFEDD0F}.Release|Any CPU.ActiveCfg = Release|Any CPU + {F9289F56-8780-45E0-9285-55710DFEDD0F}.Release|Any CPU.Build.0 = Release|Any CPU EndGlobalSection EndGlobal