Mykeels.Processes 0.0.12

dotnet add package Mykeels.Processes --version 0.0.12
NuGet\Install-Package Mykeels.Processes -Version 0.0.12
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="Mykeels.Processes" Version="0.0.12" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Mykeels.Processes --version 0.0.12
#r "nuget: Mykeels.Processes, 0.0.12"
#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 Mykeels.Processes as a Cake Addin
#addin nuget:?package=Mykeels.Processes&version=0.0.12

// Install Mykeels.Processes as a Cake Tool
#tool nuget:?package=Mykeels.Processes&version=0.0.12

Mykeels.Processes

A library for:

  • Listing Processes
  • Killing a Process

Usage

using Mykeels.Processes;

const processes = await Sherlock.ListProcesses();

// to kill a process running at port 3000
const culpritProcess = processes.Find(p => p.LocalAddress?.EndsWith($":3000") ?? false);
if (culpritProcess != null) {
    await Sherlock.KillProcess();
}

// or
await Sherlock.KillProcessByPort(3000);
Product Compatible and additional computed target framework versions.
.NET 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 was computed.  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 was computed.  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.
  • net6.0

    • No dependencies.

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
0.0.12 1,201 11/2/2022
0.0.11 349 11/2/2022
0.0.10 343 11/2/2022
0.0.9 330 11/2/2022
0.0.8 359 10/30/2022
0.0.7 387 10/27/2022
0.0.6 351 10/27/2022
0.0.5 358 10/27/2022
0.0.4 362 10/8/2022
0.0.3 378 10/8/2022
0.0.2 416 10/8/2022
0.0.1 377 10/8/2022