-
Notifications
You must be signed in to change notification settings - Fork 0
/
FluentSysInfo.Core.csproj
78 lines (65 loc) · 2.97 KB
/
FluentSysInfo.Core.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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFrameworks>net48;net6.0-windows;net7.0-windows;net8.0-windows</TargetFrameworks>
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
<CopyLocalLockFileAssemblies>true</CopyLocalLockFileAssemblies>
<Deterministic>false</Deterministic>
<PlatformTarget>AnyCPU</PlatformTarget>
<ApplicationIcon>Icon.ico</ApplicationIcon>
<PackageIcon>Icon.png</PackageIcon>
<ApplicationManifest>app.manifest</ApplicationManifest>
<GeneratePackageOnBuild>True</GeneratePackageOnBuild>
<PackageId>FluentSysInfo.Core</PackageId>
<Title>Fluent System Information (Core Module)</Title>
<Authors>Shayan Firoozi</Authors>
<Description>Provides the accessibility to the various System Informations with Fast Response caching feature</Description>
<Copyright>Under MIT License</Copyright>
<PackageProjectUrl>https://github.com/ShayanFiroozi/FluentSysInfo.Core</PackageProjectUrl>
<RepositoryUrl>https://github.com/ShayanFiroozi/FluentSysInfo.Core</RepositoryUrl>
<PackageTags>csharp,dotnet,dotnetcore,netcore,dotnet-core,powershell,powershell-script,fluent csharp-code,hardware-information,systeminfo,systeminformation,wmi-query,softlock</PackageTags>
<PackageReleaseNotes> ✔ Accept the User-Defined WMI Class.
✔ Accept the User-Defined Fast Response WMI Class.
✔ Able to get all available WMI Class on running OS.</PackageReleaseNotes>
<PackageReadmeFile>README-Nuget.md</PackageReadmeFile>
<PackageLicenseFile>LICENSE.md</PackageLicenseFile>
<PackageRequireLicenseAcceptance>True</PackageRequireLicenseAcceptance>
<Version>1.0.8860</Version>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
<DebugType>full</DebugType>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
<DebugType>full</DebugType>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(TargetFramework)|$(Platform)'=='Release|net48|AnyCPU'">
<DebugType>none</DebugType>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(TargetFramework)|$(Platform)'=='Release|net6.0-windows|AnyCPU'">
<DebugType>none</DebugType>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(TargetFramework)|$(Platform)'=='Release|net7.0-windows|AnyCPU'">
<DebugType>none</DebugType>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(TargetFramework)|$(Platform)'=='Release|net8.0-windows|AnyCPU'">
<DebugType>none</DebugType>
</PropertyGroup>
<ItemGroup>
<Content Include="Icon.ico" />
</ItemGroup>
<ItemGroup>
<None Include="..\..\LICENSE.md">
<Pack>True</Pack>
<PackagePath>\</PackagePath>
</None>
<None Include="..\..\README-Nuget.md">
<Pack>True</Pack>
<PackagePath>\</PackagePath>
</None>
</ItemGroup>
<ItemGroup>
<None Include="Icon.png">
<Pack>True</Pack>
<PackagePath>\</PackagePath>
</None>
</ItemGroup>
</Project>