Chapter.Net.Processes 2.0.0

dotnet add package Chapter.Net.Processes --version 2.0.0                
NuGet\Install-Package Chapter.Net.Processes -Version 2.0.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="2.0.0" />                
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Chapter.Net.Processes --version 2.0.0                
#r "nuget: Chapter.Net.Processes, 2.0.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=2.0.0

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

<img src="https://raw.githubusercontent.com/dwndlnd/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 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. 
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