-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathProcessDrive.csproj
More file actions
18 lines (18 loc) · 817 Bytes
/
Copy pathProcessDrive.csproj
File metadata and controls
18 lines (18 loc) · 817 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net8.0-windows</TargetFramework>
<AssemblyName>ProcessDrive</AssemblyName>
<RootNamespace>ProcessDrive</RootNamespace>
<Nullable>enable</Nullable>
<ImplicitUsings>disable</ImplicitUsings>
<Version>0.1.0</Version>
<Authors>Yoshifumi Tsuda</Authors>
<Description>Navigate Windows process tree as a PowerShell drive. A CLI alternative to Process Explorer.</Description>
<Copyright>Copyright (c) 2026 Yoshifumi Tsuda</Copyright>
<RepositoryType>git</RepositoryType>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="PowerShellStandard.Library" Version="5.1.1" PrivateAssets="all" />
<PackageReference Include="System.Management" Version="9.0.0" PrivateAssets="all" />
</ItemGroup>
</Project>