blob: 90cf14c297606f11ce8787766af5a23f270a87c4 (
plain)
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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
|
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="15.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
<PropertyGroup>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
<ProjectGuid>{997A961C-BEDA-4B56-AA0F-C39E532F7FFA}</ProjectGuid>
<OutputType>Library</OutputType>
<AppDesignerFolder>Properties</AppDesignerFolder>
<RootNamespace>Tango.SystemInfo</RootNamespace>
<AssemblyName>Tango.SystemInfo</AssemblyName>
<TargetFrameworkVersion>v4.6.1</TargetFrameworkVersion>
<FileAlignment>512</FileAlignment>
<Deterministic>true</Deterministic>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<DebugSymbols>true</DebugSymbols>
<DebugType>full</DebugType>
<Optimize>false</Optimize>
<OutputPath>bin\Debug\</OutputPath>
<DefineConstants>DEBUG;TRACE</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
<DebugType>pdbonly</DebugType>
<Optimize>true</Optimize>
<OutputPath>bin\Release\</OutputPath>
<DefineConstants>TRACE</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
</PropertyGroup>
<ItemGroup>
<Reference Include="System" />
<Reference Include="System.Core" />
<Reference Include="System.Management" />
<Reference Include="System.Xml.Linq" />
<Reference Include="System.Data.DataSetExtensions" />
<Reference Include="Microsoft.CSharp" />
<Reference Include="System.Data" />
<Reference Include="System.Net.Http" />
<Reference Include="System.Xml" />
</ItemGroup>
<ItemGroup>
<Compile Include="Connection.cs" />
<Compile Include="SystemObject.cs" />
<Compile Include="SystemObjectProperty.cs" />
<Compile Include="SystemObjectsCollection.cs" />
<Compile Include="WMIReader.cs" />
<Compile Include="XMLConfig.cs" />
<Compile Include="IWMI.cs" />
<Compile Include="Win32_BaseBoard.cs" />
<Compile Include="Win32_Battery.cs" />
<Compile Include="Win32_BIOS.cs" />
<Compile Include="Win32_Bus.cs" />
<Compile Include="Win32_CDROMDrive.cs" />
<Compile Include="Win32_DiskDrive.cs" />
<Compile Include="Win32_DMAChannel.cs" />
<Compile Include="Win32_Fan.cs" />
<Compile Include="Win32_FloppyController.cs" />
<Compile Include="Win32_FloppyDrive.cs" />
<Compile Include="Win32_IDEController.cs" />
<Compile Include="Win32_IRQResource.cs" />
<Compile Include="Win32_Keyboard.cs" />
<Compile Include="Win32_MemoryDevice.cs" />
<Compile Include="Win32_NetworkAdapter.cs" />
<Compile Include="Win32_NetworkAdapterConfiguration.cs" />
<Compile Include="Win32_OnBoardDevice.cs" />
<Compile Include="Win32_OperatingSystem.cs" />
<Compile Include="Win32_ParallelPort.cs" />
<Compile Include="Win32_PCMCIController.cs" />
<Compile Include="Win32_PhysicalMedia.cs" />
<Compile Include="Win32_PhysicalMemory.cs" />
<Compile Include="Win32_PortConnector.cs" />
<Compile Include="Win32_PortResource.cs" />
<Compile Include="Win32_POTSModem.cs" />
<Compile Include="Win32_Processor.cs" />
<Compile Include="Win32_SCSIController.cs" />
<Compile Include="Win32_SerialPort.cs" />
<Compile Include="Win32_SerialPortConfiguration.cs" />
<Compile Include="Win32_SoundDevice.cs" />
<Compile Include="Win32_SystemEnclosure.cs" />
<Compile Include="Win32_TapeDrive.cs" />
<Compile Include="Win32_TemperatureProbe.cs" />
<Compile Include="Win32_UninterruptiblePowerSupply.cs" />
<Compile Include="Win32_USBController.cs" />
<Compile Include="Win32_USBHub.cs" />
<Compile Include="Win32_VideoController.cs" />
<Compile Include="Win32_VoltageProbe.cs" />
<Compile Include="Properties\AssemblyInfo.cs" />
</ItemGroup>
<ItemGroup>
<EmbeddedResource Include="settings.xml" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\Tango.Core\Tango.Core.csproj">
<Project>{a34ee0f0-649d-41c8-8489-b6f1cc6924ee}</Project>
<Name>Tango.Core</Name>
</ProjectReference>
</ItemGroup>
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
</Project>
|