-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathProcessResourcesMonitor.csproj
34 lines (25 loc) · 1.17 KB
/
ProcessResourcesMonitor.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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net8.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
<GenerateTargetFrameworkAttribute>false</GenerateTargetFrameworkAttribute>
<PackageId>ProcessResourcesMonitor</PackageId>
<Version>1.0.1</Version>
<PackageReleaseNotes>Initial release</PackageReleaseNotes>
<Authors>Mr.Mouihbi</Authors>
<Description>
Track a process resources usage over any interval of time and save them in desired format (json, csv, more to come..)
</Description>
<PackageTags>process;monitor;resources</PackageTags>
<RepositoryUrl>https://github.com/MrMouihbi/ProcessResourcesMonitor</RepositoryUrl>
<LicenseUrl>https://www.apache.org/licenses/LICENSE-2.0</LicenseUrl>
<PackageLicenseFile>LICENSE</PackageLicenseFile>
<PackageReadmeFile>README.md</PackageReadmeFile>
</PropertyGroup>
<ItemGroup>
<None Include="LICENSE" Pack="true" PackagePath=""/>
<None Include="README.md" Pack="true" PackagePath="" />
</ItemGroup>
</Project>