-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathInfoPanel.SystemIdentifiers.csproj
More file actions
31 lines (26 loc) · 1 KB
/
Copy pathInfoPanel.SystemIdentifiers.csproj
File metadata and controls
31 lines (26 loc) · 1 KB
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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net8.0-windows</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<AssemblyName>InfoPanel.SystemIdentifiers</AssemblyName>
<RootNamespace>InfoPanel.SystemIdentifiers</RootNamespace>
<!-- InfoPanel Display Metadata -->
<Version>1.0.1</Version>
<Authors>kognitix</Authors>
<Company>kognitix</Company>
<Product>InfoPanel System Identifiers</Product>
<Description>Exposes detailed system hardware and software identifiers.</Description>
<RepositoryUrl>https://github.com/kognitix/InfoPanel.SystemIdentifiers</RepositoryUrl>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="System.Management" Version="8.0.0" />
</ItemGroup>
<ItemGroup>
<Reference Include="InfoPanel.Plugins">
<HintPath>lib\InfoPanel.Plugins.dll</HintPath>
<Private>False</Private>
<ExcludeAssets>runtime</ExcludeAssets>
</Reference>
</ItemGroup>
</Project>