CpuLoad.csproj 423 B

12345678910111213141516
  1. <Project Sdk="Microsoft.NET.Sdk">
  2. <PropertyGroup>
  3. <OutputType>Exe</OutputType>
  4. <TargetFramework>net8.0</TargetFramework>
  5. <ImplicitUsings>false</ImplicitUsings>
  6. <Nullable>enable</Nullable>
  7. <InvariantGlobalization>true</InvariantGlobalization>
  8. </PropertyGroup>
  9. <ItemGroup>
  10. <PackageReference Include="System.Diagnostics.PerformanceCounter" Version="8.0.0" />
  11. </ItemGroup>
  12. </Project>