2010-06-12 12:15:00 +00:00
|
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2010-01-26 22:37:48 +00:00
|
|
|
|
<Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003" ToolsVersion="3.5">
|
|
|
|
|
<PropertyGroup>
|
|
|
|
|
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
|
|
|
|
|
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
|
|
|
|
|
<ProjectGuid>{F5E0C1F7-9E9B-46F2-AC88-8C9C1C923880}</ProjectGuid>
|
2010-02-27 15:55:17 +00:00
|
|
|
|
<ProductVersion>9.0.30729</ProductVersion>
|
2010-01-26 22:37:48 +00:00
|
|
|
|
<SchemaVersion>2.0</SchemaVersion>
|
|
|
|
|
<OutputType>WinExe</OutputType>
|
|
|
|
|
<NoStandardLibraries>false</NoStandardLibraries>
|
|
|
|
|
<AssemblyName>OpenHardwareMonitor</AssemblyName>
|
|
|
|
|
<TargetFrameworkVersion>v2.0</TargetFrameworkVersion>
|
|
|
|
|
<FileAlignment>512</FileAlignment>
|
|
|
|
|
<RootNamespace>OpenHardwareMonitor</RootNamespace>
|
|
|
|
|
<ApplicationIcon>Resources\icon.ico</ApplicationIcon>
|
2010-02-04 21:19:27 +00:00
|
|
|
|
<ApplicationManifest>Resources\app.manifest</ApplicationManifest>
|
|
|
|
|
<StartupObject>OpenHardwareMonitor.Program</StartupObject>
|
2010-01-26 22:37:48 +00:00
|
|
|
|
</PropertyGroup>
|
|
|
|
|
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
|
|
|
|
|
<DebugSymbols>true</DebugSymbols>
|
|
|
|
|
<DebugType>full</DebugType>
|
|
|
|
|
<Optimize>false</Optimize>
|
|
|
|
|
<OutputPath>Bin\Debug\</OutputPath>
|
|
|
|
|
<DefineConstants>TRACE;DEBUG</DefineConstants>
|
|
|
|
|
<ErrorReport>prompt</ErrorReport>
|
|
|
|
|
<WarningLevel>4</WarningLevel>
|
|
|
|
|
<UseVSHostingProcess>false</UseVSHostingProcess>
|
|
|
|
|
</PropertyGroup>
|
|
|
|
|
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
|
|
|
|
|
<DebugType>none</DebugType>
|
|
|
|
|
<Optimize>true</Optimize>
|
|
|
|
|
<OutputPath>Bin\Release\</OutputPath>
|
|
|
|
|
<DefineConstants>TRACE</DefineConstants>
|
|
|
|
|
<ErrorReport>prompt</ErrorReport>
|
|
|
|
|
<WarningLevel>4</WarningLevel>
|
|
|
|
|
<UseVSHostingProcess>false</UseVSHostingProcess>
|
|
|
|
|
</PropertyGroup>
|
|
|
|
|
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Merge|AnyCPU' ">
|
|
|
|
|
<OutputPath>bin\Merge\</OutputPath>
|
|
|
|
|
<DefineConstants>TRACE</DefineConstants>
|
|
|
|
|
<Optimize>true</Optimize>
|
|
|
|
|
<PlatformTarget>AnyCPU</PlatformTarget>
|
|
|
|
|
<UseVSHostingProcess>false</UseVSHostingProcess>
|
|
|
|
|
<ErrorReport>prompt</ErrorReport>
|
|
|
|
|
<OutputType>Module</OutputType>
|
2010-06-06 14:44:53 +00:00
|
|
|
|
<DebugType>none</DebugType>
|
|
|
|
|
<WarningLevel>4</WarningLevel>
|
2010-01-26 22:37:48 +00:00
|
|
|
|
</PropertyGroup>
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
<Reference Include="System" />
|
|
|
|
|
<Reference Include="System.Configuration" />
|
2010-06-03 22:40:18 +00:00
|
|
|
|
<Reference Include="System.Data" />
|
2010-01-26 22:37:48 +00:00
|
|
|
|
<Reference Include="System.Drawing" />
|
|
|
|
|
<Reference Include="System.Management" />
|
2010-04-02 16:05:07 +00:00
|
|
|
|
<Reference Include="System.Web" />
|
2010-01-26 22:37:48 +00:00
|
|
|
|
<Reference Include="System.Windows.Forms" />
|
2010-06-03 22:40:18 +00:00
|
|
|
|
<Reference Include="System.Xml" />
|
2010-06-06 14:44:53 +00:00
|
|
|
|
<Reference Include="Aga.Controls, Version=1.7.0.0, Culture=neutral, PublicKeyToken=fcc90fbf924463a3">
|
|
|
|
|
<SpecificVersion>False</SpecificVersion>
|
|
|
|
|
<HintPath>External\Aga.Controls.dll</HintPath>
|
|
|
|
|
</Reference>
|
2010-01-26 22:37:48 +00:00
|
|
|
|
</ItemGroup>
|
|
|
|
|
<ItemGroup>
|
2010-04-02 16:05:07 +00:00
|
|
|
|
<Compile Include="GUI\CrashReportForm.cs">
|
|
|
|
|
<SubType>Form</SubType>
|
|
|
|
|
</Compile>
|
|
|
|
|
<Compile Include="GUI\CrashReportForm.Designer.cs">
|
|
|
|
|
<DependentUpon>CrashReportForm.cs</DependentUpon>
|
|
|
|
|
</Compile>
|
2010-05-14 22:30:06 +00:00
|
|
|
|
<Compile Include="GUI\Node.cs" />
|
2010-02-27 15:55:17 +00:00
|
|
|
|
<Compile Include="GUI\ParameterForm.cs">
|
|
|
|
|
<SubType>Form</SubType>
|
|
|
|
|
</Compile>
|
|
|
|
|
<Compile Include="GUI\ParameterForm.Designer.cs">
|
|
|
|
|
<DependentUpon>ParameterForm.cs</DependentUpon>
|
|
|
|
|
</Compile>
|
2010-02-12 00:36:56 +00:00
|
|
|
|
<Compile Include="GUI\SensorNotifyIcon.cs" />
|
2010-06-05 18:59:54 +00:00
|
|
|
|
<Compile Include="GUI\SystemTray.cs" />
|
2010-03-26 20:58:10 +00:00
|
|
|
|
<Compile Include="GUI\StartupManager.cs" />
|
|
|
|
|
<Compile Include="GUI\TaskScheduler.cs" />
|
2010-05-14 22:30:06 +00:00
|
|
|
|
<Compile Include="GUI\TreeModel.cs" />
|
2010-01-26 22:37:48 +00:00
|
|
|
|
<Compile Include="GUI\TypeNode.cs" />
|
2010-05-20 21:23:54 +00:00
|
|
|
|
<Compile Include="GUI\UnitManager.cs" />
|
2010-05-09 16:22:13 +00:00
|
|
|
|
<Compile Include="GUI\UpdateVisitor.cs" />
|
2010-01-26 22:37:48 +00:00
|
|
|
|
<Compile Include="Hardware\CPU\AMD10CPU.cs" />
|
2010-01-31 20:57:18 +00:00
|
|
|
|
<Compile Include="Hardware\CPU\AMD0FCPU.cs" />
|
2010-04-24 19:59:52 +00:00
|
|
|
|
<Compile Include="Hardware\CPU\CPUID.cs" />
|
2010-02-04 21:19:27 +00:00
|
|
|
|
<Compile Include="Hardware\CPU\CPULoad.cs" />
|
2010-02-07 19:53:51 +00:00
|
|
|
|
<Compile Include="Hardware\Hardware.cs" />
|
2010-01-26 22:37:48 +00:00
|
|
|
|
<Compile Include="Hardware\HDD\HDD.cs" />
|
|
|
|
|
<Compile Include="Hardware\HDD\HDDGroup.cs" />
|
|
|
|
|
<Compile Include="Hardware\HDD\SMART.cs" />
|
2010-03-27 12:57:09 +00:00
|
|
|
|
<Compile Include="Hardware\IComputer.cs" />
|
2010-05-06 19:20:38 +00:00
|
|
|
|
<Compile Include="Hardware\Identifier.cs" />
|
2010-05-09 16:22:13 +00:00
|
|
|
|
<Compile Include="Hardware\IElement.cs" />
|
|
|
|
|
<Compile Include="Hardware\IVisitor.cs" />
|
2010-02-27 15:55:17 +00:00
|
|
|
|
<Compile Include="Hardware\IParameter.cs" />
|
2010-01-26 22:37:48 +00:00
|
|
|
|
<Compile Include="Hardware\LPC\Chip.cs" />
|
2010-02-01 20:16:26 +00:00
|
|
|
|
<Compile Include="Hardware\LPC\F718XX.cs" />
|
2010-06-03 22:40:18 +00:00
|
|
|
|
<Compile Include="Hardware\LPC\ISuperIO.cs" />
|
|
|
|
|
<Compile Include="Hardware\Mainboard\SuperIOHardware.cs" />
|
2010-02-27 20:08:13 +00:00
|
|
|
|
<Compile Include="Hardware\Mainboard\Mainboard.cs" />
|
|
|
|
|
<Compile Include="Hardware\Mainboard\MainboardGroup.cs" />
|
2010-05-24 15:27:46 +00:00
|
|
|
|
<Compile Include="Hardware\Mainboard\Model.cs" />
|
2010-02-27 20:08:13 +00:00
|
|
|
|
<Compile Include="Hardware\Mainboard\Manufacturer.cs" />
|
2010-02-27 15:55:17 +00:00
|
|
|
|
<Compile Include="Hardware\Parameter.cs" />
|
2010-02-27 20:08:13 +00:00
|
|
|
|
<Compile Include="Hardware\Mainboard\SMBIOS.cs" />
|
2010-02-08 20:18:25 +00:00
|
|
|
|
<Compile Include="Hardware\LPC\W836XX.cs" />
|
2010-02-07 16:37:15 +00:00
|
|
|
|
<Compile Include="Hardware\Computer.cs" />
|
2010-04-05 15:31:19 +00:00
|
|
|
|
<Compile Include="Hardware\TBalancer\FTD2XX.cs" />
|
2010-01-26 22:37:48 +00:00
|
|
|
|
<Compile Include="Properties\AssemblyInfo.cs" />
|
|
|
|
|
<Compile Include="GUI\AboutBox.cs">
|
|
|
|
|
<SubType>Form</SubType>
|
|
|
|
|
</Compile>
|
|
|
|
|
<Compile Include="GUI\AboutBox.Designer.cs">
|
|
|
|
|
<DependentUpon>AboutBox.cs</DependentUpon>
|
|
|
|
|
</Compile>
|
|
|
|
|
<Compile Include="Hardware\ATI\ADL.cs" />
|
|
|
|
|
<Compile Include="Hardware\ATI\ATIGroup.cs" />
|
|
|
|
|
<Compile Include="Hardware\ATI\ATIGPU.cs" />
|
2010-02-27 15:55:17 +00:00
|
|
|
|
<Compile Include="Utilities\Config.cs" />
|
2010-01-26 22:37:48 +00:00
|
|
|
|
<Compile Include="Utilities\EmbeddedResources.cs" />
|
|
|
|
|
<Compile Include="GUI\HardwareNode.cs" />
|
|
|
|
|
<Compile Include="Hardware\IGroup.cs" />
|
|
|
|
|
<Compile Include="Hardware\IHardware.cs" />
|
|
|
|
|
<Compile Include="Hardware\ISensor.cs" />
|
2010-02-01 20:16:26 +00:00
|
|
|
|
<Compile Include="Hardware\LPC\IT87XX.cs" />
|
2010-05-09 16:22:13 +00:00
|
|
|
|
<Compile Include="Hardware\LPC\LPCIO.cs" />
|
2010-01-26 22:37:48 +00:00
|
|
|
|
<Compile Include="GUI\MainForm.cs">
|
|
|
|
|
<SubType>Form</SubType>
|
|
|
|
|
</Compile>
|
|
|
|
|
<Compile Include="GUI\MainForm.Designer.cs">
|
|
|
|
|
<DependentUpon>MainForm.cs</DependentUpon>
|
|
|
|
|
</Compile>
|
|
|
|
|
<Compile Include="Hardware\Nvidia\NVAPI.cs" />
|
|
|
|
|
<Compile Include="Hardware\Nvidia\NvidiaGPU.cs" />
|
|
|
|
|
<Compile Include="Hardware\Nvidia\NvidiaGroup.cs" />
|
2010-01-29 20:05:32 +00:00
|
|
|
|
<Compile Include="Utilities\HexStringArray.cs" />
|
2010-02-12 00:36:56 +00:00
|
|
|
|
<Compile Include="Utilities\IconFactory.cs" />
|
2010-02-27 15:55:17 +00:00
|
|
|
|
<Compile Include="Utilities\IReadOnlyArray.cs" />
|
2010-05-06 19:20:38 +00:00
|
|
|
|
<Compile Include="Utilities\ListSet.cs" />
|
2010-01-26 22:37:48 +00:00
|
|
|
|
<Compile Include="Utilities\PInvokeDelegateFactory.cs" />
|
|
|
|
|
<Compile Include="GUI\PlotPanel.cs">
|
|
|
|
|
<SubType>UserControl</SubType>
|
|
|
|
|
</Compile>
|
|
|
|
|
<Compile Include="GUI\PlotPanel.Designer.cs">
|
|
|
|
|
<DependentUpon>PlotPanel.cs</DependentUpon>
|
|
|
|
|
</Compile>
|
|
|
|
|
<Compile Include="Program.cs" />
|
|
|
|
|
<Compile Include="Hardware\CPU\IntelCPU.cs" />
|
|
|
|
|
<Compile Include="Hardware\CPU\CPUGroup.cs" />
|
|
|
|
|
<Compile Include="Hardware\Sensor.cs" />
|
|
|
|
|
<Compile Include="GUI\SensorNode.cs" />
|
|
|
|
|
<Compile Include="Hardware\TBalancer\TBalancer.cs" />
|
|
|
|
|
<Compile Include="Hardware\TBalancer\TBalancerGroup.cs" />
|
|
|
|
|
<Compile Include="Hardware\WinRing0.cs" />
|
2010-02-27 15:55:17 +00:00
|
|
|
|
<Compile Include="Utilities\ReadOnlyArray.cs" />
|
2010-06-06 14:44:53 +00:00
|
|
|
|
<Compile Include="Hardware\LPC\LMSensors.cs" />
|
2010-01-26 22:37:48 +00:00
|
|
|
|
</ItemGroup>
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
<EmbeddedResource Include="GUI\AboutBox.resx">
|
|
|
|
|
<DependentUpon>AboutBox.cs</DependentUpon>
|
2010-02-22 09:57:02 +00:00
|
|
|
|
<SubType>Designer</SubType>
|
2010-01-26 22:37:48 +00:00
|
|
|
|
</EmbeddedResource>
|
|
|
|
|
<EmbeddedResource Include="GUI\MainForm.resx">
|
|
|
|
|
<DependentUpon>MainForm.cs</DependentUpon>
|
2010-02-22 09:57:02 +00:00
|
|
|
|
<SubType>Designer</SubType>
|
2010-01-26 22:37:48 +00:00
|
|
|
|
</EmbeddedResource>
|
|
|
|
|
<EmbeddedResource Include="GUI\PlotPanel.resx">
|
|
|
|
|
<DependentUpon>PlotPanel.cs</DependentUpon>
|
2010-02-22 09:57:02 +00:00
|
|
|
|
<SubType>Designer</SubType>
|
2010-01-26 22:37:48 +00:00
|
|
|
|
</EmbeddedResource>
|
|
|
|
|
<EmbeddedResource Include="Resources\ati.png">
|
|
|
|
|
</EmbeddedResource>
|
|
|
|
|
<EmbeddedResource Include="Resources\bigng.png" />
|
|
|
|
|
<EmbeddedResource Include="Resources\clock.png" />
|
|
|
|
|
<EmbeddedResource Include="Resources\computer.png" />
|
|
|
|
|
<EmbeddedResource Include="Resources\cpu.png" />
|
|
|
|
|
<EmbeddedResource Include="Resources\fan.png" />
|
|
|
|
|
<EmbeddedResource Include="Resources\temperature.png" />
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
<EmbeddedResource Include="Resources\chip.png" />
|
|
|
|
|
<EmbeddedResource Include="Resources\hdd.png" />
|
2010-02-03 20:35:10 +00:00
|
|
|
|
<EmbeddedResource Include="Resources\load.png" />
|
2010-01-26 22:37:48 +00:00
|
|
|
|
<EmbeddedResource Include="Resources\voltage.png" />
|
|
|
|
|
<EmbeddedResource Include="Resources\nvidia.png" />
|
|
|
|
|
</ItemGroup>
|
2010-02-04 21:19:27 +00:00
|
|
|
|
<ItemGroup>
|
|
|
|
|
<None Include="Resources\app.manifest" />
|
2010-02-12 00:36:56 +00:00
|
|
|
|
<None Include="Resources\icon.ico" />
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
<EmbeddedResource Include="Resources\smallicon.ico" />
|
2010-02-04 21:19:27 +00:00
|
|
|
|
</ItemGroup>
|
2010-02-21 18:10:30 +00:00
|
|
|
|
<ItemGroup>
|
2010-02-27 15:55:17 +00:00
|
|
|
|
<EmbeddedResource Include="GUI\ParameterForm.resx">
|
|
|
|
|
<DependentUpon>ParameterForm.cs</DependentUpon>
|
|
|
|
|
</EmbeddedResource>
|
2010-02-21 18:10:30 +00:00
|
|
|
|
<EmbeddedResource Include="Resources\flow.png" />
|
|
|
|
|
</ItemGroup>
|
2010-02-27 20:08:13 +00:00
|
|
|
|
<ItemGroup>
|
2010-04-02 16:05:07 +00:00
|
|
|
|
<EmbeddedResource Include="GUI\CrashReportForm.resx">
|
|
|
|
|
<DependentUpon>CrashReportForm.cs</DependentUpon>
|
|
|
|
|
</EmbeddedResource>
|
2010-02-27 20:08:13 +00:00
|
|
|
|
<EmbeddedResource Include="Resources\mainboard.png" />
|
|
|
|
|
</ItemGroup>
|
2010-05-15 14:16:00 +00:00
|
|
|
|
<ItemGroup>
|
|
|
|
|
<EmbeddedResource Include="Resources\control.png" />
|
|
|
|
|
</ItemGroup>
|
2010-01-26 22:37:48 +00:00
|
|
|
|
<Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
|
|
|
|
|
<ProjectExtensions>
|
|
|
|
|
<VisualStudio AllowExistingFolder="true" />
|
|
|
|
|
</ProjectExtensions>
|
|
|
|
|
<PropertyGroup>
|
|
|
|
|
<PreBuildEvent>
|
|
|
|
|
</PreBuildEvent>
|
|
|
|
|
<PostBuildEvent>copy "$(ProjectDir)External\*.*" "$(TargetDir)"
|
|
|
|
|
copy "$(ProjectDir)Licenses\*.*" "$(TargetDir)"</PostBuildEvent>
|
|
|
|
|
</PropertyGroup>
|
|
|
|
|
</Project>
|