-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathfpprocess.csproj
60 lines (54 loc) · 2.17 KB
/
fpprocess.csproj
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net6.0-windows10.0.22000.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<ApplicationManifest>app.manifest</ApplicationManifest>
<AssemblyName>fpprocess</AssemblyName>
<DebugType>none</DebugType>
<SignAssembly>False</SignAssembly>
<GeneratePackageOnBuild>True</GeneratePackageOnBuild>
<PackageLicenseFile>LICENSE</PackageLicenseFile>
<NeutralLanguage>en-001</NeutralLanguage>
<RepositoryType>git</RepositoryType>
<RepositoryUrl>https://github.com/Papishushi/fpprocess</RepositoryUrl>
<PackageReadmeFile>README.md</PackageReadmeFile>
<PackageProjectUrl>https://github.com/Papishushi/fpprocess</PackageProjectUrl>
<Copyright>MIT License</Copyright>
<Description>Terminal tool targeted for Windows, its purpose is to find the full list of parent processes based on supplied PIDs by stdin.</Description>
<Authors>papishushi</Authors>
<Product>fpprocess</Product>
<PackageId>fpprocess</PackageId>
<ErrorReport>none</ErrorReport>
<RootNamespace>fpprocess</RootNamespace>
<SupportedOSPlatformVersion>7.0</SupportedOSPlatformVersion>
<ProduceReferenceAssembly>False</ProduceReferenceAssembly>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="System.Diagnostics.PerformanceCounter" Version="6.0.1" />
</ItemGroup>
<ItemGroup>
<None Update="README.md">
<Pack>True</Pack>
<PackagePath>\</PackagePath>
</None>
</ItemGroup>
<PropertyGroup>
<PackageLicenseFile>LICENSE</PackageLicenseFile>
<Version>1.1.1</Version>
<PackageTags>windows ; cli; terminal; parent; elevated-rights; processmonitoring; dotnet6; processparent</PackageTags>
<PackageReleaseNotes>
Changelog for the v1.1.1:
- Fixed #3
- Fixed #4
- Fixed #5
- Created a usefull workflow for adding paramaters to fpprocess.
- Some minor changes, typos solved, and renames.
- Metadata updated.
</PackageReleaseNotes>
</PropertyGroup>
<ItemGroup>
<None Include="LICENSE" Pack="true" PackagePath="" />
</ItemGroup>
</Project>