Chapter.Net.Processes 1.1.0

There is a newer version of this package available.
See the version list below for details.
dotnet add package Chapter.Net.Processes --version 1.1.0                
NuGet\Install-Package Chapter.Net.Processes -Version 1.1.0                
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="Chapter.Net.Processes" Version="1.1.0" />                
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Chapter.Net.Processes --version 1.1.0                
#r "nuget: Chapter.Net.Processes, 1.1.0"                
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install Chapter.Net.Processes as a Cake Addin
#addin nuget:?package=Chapter.Net.Processes&version=1.1.0

// Install Chapter.Net.Processes as a Cake Tool
#tool nuget:?package=Chapter.Net.Processes&version=1.1.0                

<img src="https://raw.githubusercontent.com/dwndland/Chapter.Net.Processes/master/Icon.png" alt="logo" width="64"/>

Chapter.Net.Processes Library

Overview

Chapter.Net.Processes brings access and handlers to local processes and assemblies.

Features

  • IAssemblyReader: Reads data from the current executable.
  • IProcessHandler: Birngs features to work with processes.
  • Wrappers and Interfaces: All methods are available static, but also with an interface and wrapper class for mocking.

Getting Started

  1. Installation:

    • Install the Chapter.Net.Processes library via NuGet Package Manager:
    dotnet add package Chapter.Net.Processes
    
  2. IAssemblyReader

    • Usage
    public class ViewModel
    {
        public string GetVersion()
        {
            var version = AssemblyReader.GetExeVersion();
            return $"v{version.ToString(2)}";
        }
    }
    
    public class ViewModel
    {
        private readonly IAssemblyReader _assemblyReader;
    
        public ViewModel(IAssemblyReader assemblyReader)
        {
            _assemblyReader = assemblyReader;
        }
    
        public string GetVersion()
        {
            var version = _assemblyReader.GetExeVersion();
            return $"v{version.ToString(2)}";
        }
    }
    
  3. IProcessHandler

    • Usage
    public class ViewModel : ObservableObject
    {
        public void ChangeSetting()
        {
            // Apply new setting
    
            // Restart application
            ProcessHandler.Restart(4);
        }
    }
    
    public class Bootstrapper
    {
        public void CheckSingleInstance()
        {
            var other = ProcessHandler.GetSimilarProcess();
            if (other != null)
            {
                ProcessHandler.BringInFront(other);
                Application.Current.Shutdown();
            }
        }
    }
    
    public class ViewModel : ObservableObject
    {
        private readonly IProcessHandler _processHandler;
    
        public ViewModel(IProcessHandler processHandler)
        {
            _processHandler = processHandler;
        }
    
        public void ChangeSetting()
        {
            // Apply new setting
    
            // Restart application
            _processHandler.Restart(4);
        }
    }
    
    public class Bootstrapper
    {
        private readonly IProcessHandler _processHandler;
    
        public Bootstrapper(IProcessHandler processHandler)
        {
            _processHandler = processHandler;
        }
    
        public void CheckSingleInstance()
        {
            var other = _processHandler.GetSimilarProcess();
            if (other != null)
            {
                _processHandler.BringInFront(other);
                Application.Current.Shutdown();
            }
        }
    }
    

License

Copyright (c) David Wendland. All rights reserved. Licensed under the MIT License. See LICENSE file in the project root for full license information.

Product Compatible and additional computed target framework versions.
.NET net5.0 is compatible.  net5.0-windows was computed.  net6.0 is compatible.  net6.0-android was computed.  net6.0-ios was computed.  net6.0-maccatalyst was computed.  net6.0-macos was computed.  net6.0-tvos was computed.  net6.0-windows was computed.  net7.0 is compatible.  net7.0-android was computed.  net7.0-ios was computed.  net7.0-maccatalyst was computed.  net7.0-macos was computed.  net7.0-tvos was computed.  net7.0-windows was computed.  net8.0 is compatible.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed. 
.NET Core netcoreapp2.0 was computed.  netcoreapp2.1 was computed.  netcoreapp2.2 was computed.  netcoreapp3.0 is compatible.  netcoreapp3.1 was computed. 
.NET Standard netstandard2.0 is compatible.  netstandard2.1 was computed. 
.NET Framework net45 is compatible.  net451 was computed.  net452 was computed.  net46 was computed.  net461 was computed.  net462 was computed.  net463 was computed.  net47 was computed.  net471 was computed.  net472 was computed.  net48 was computed.  net481 was computed. 
MonoAndroid monoandroid was computed. 
MonoMac monomac was computed. 
MonoTouch monotouch was computed. 
Tizen tizen40 was computed.  tizen60 was computed. 
Xamarin.iOS xamarinios was computed. 
Xamarin.Mac xamarinmac was computed. 
Xamarin.TVOS xamarintvos was computed. 
Xamarin.WatchOS xamarinwatchos was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
2.0.0 77 6/7/2024
1.1.0 134 3/31/2024
1.0.0 374 12/23/2023