-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathHWHash.csproj
49 lines (44 loc) · 1.85 KB
/
HWHash.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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net6.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<SignAssembly>True</SignAssembly>
<Title>HWHash - HWInfo data to Dictionary</Title>
<Authors>$(AssemblyName) - DLain</Authors>
<Description>HWHash is a static class that grabs HWInfo sensor information and saves it to a Dictionary so it can be easily read and upload to InfluxDB or any other application you may deem useful.</Description>
<RepositoryType>git</RepositoryType>
<PackageTags>hwhash,hwinfo,hwinfo dictionary,hwinfo shared memory, metrics, hardware metrics,</PackageTags>
<PackageLicenseFile>LICENSE</PackageLicenseFile>
<RepositoryUrl>https://github.com/layer07/HWHash</RepositoryUrl>
<PackageReadmeFile>readme.md</PackageReadmeFile>
<PackageIcon></PackageIcon>
<PackageProjectUrl>https://kernelriot.com</PackageProjectUrl>
<GenerateDocumentationFile>False</GenerateDocumentationFile>
<VersionPrefix>1.3.0</VersionPrefix>
<AssemblyVersion>1.1.0.0</AssemblyVersion>
<FileVersion>1.1.0.0</FileVersion>
<Copyright>Everyone but the Author</Copyright>
<GeneratePackageOnBuild>True</GeneratePackageOnBuild>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
<Deterministic>True</Deterministic>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
<Deterministic>True</Deterministic>
</PropertyGroup>
<ItemGroup>
<None Update="LICENSE">
<Pack>True</Pack>
<PackagePath>\</PackagePath>
</None>
<None Update="media\icon.png">
<Pack>True</Pack>
<PackagePath>\</PackagePath>
</None>
<None Update="readme.md">
<Pack>True</Pack>
<PackagePath>\</PackagePath>
</None>
</ItemGroup>
</Project>