openhardwaremonitor/OpenHardwareMonitor.csproj

221 lines
9.5 KiB
XML
Raw Normal View History

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>
<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>
<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>
<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" />
<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" />
<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>
<Compile Include="GUI\CrashReportForm.cs">
<SubType>Form</SubType>
</Compile>
<Compile Include="GUI\CrashReportForm.Designer.cs">
<DependentUpon>CrashReportForm.cs</DependentUpon>
</Compile>
<Compile Include="GUI\Node.cs" />
<Compile Include="GUI\ParameterForm.cs">
<SubType>Form</SubType>
</Compile>
<Compile Include="GUI\ParameterForm.Designer.cs">
<DependentUpon>ParameterForm.cs</DependentUpon>
</Compile>
<Compile Include="GUI\SensorNotifyIcon.cs" />
2010-06-05 18:59:54 +00:00
<Compile Include="GUI\SystemTray.cs" />
<Compile Include="GUI\StartupManager.cs" />
<Compile Include="GUI\TaskScheduler.cs" />
<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" />
<Compile Include="GUI\UpdateVisitor.cs" />
2010-01-26 22:37:48 +00:00
<Compile Include="Hardware\CPU\AMD10CPU.cs" />
<Compile Include="Hardware\CPU\AMD0FCPU.cs" />
<Compile Include="Hardware\CPU\CPUID.cs" />
<Compile Include="Hardware\CPU\CPULoad.cs" />
<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" />
<Compile Include="Hardware\IComputer.cs" />
<Compile Include="Hardware\Identifier.cs" />
<Compile Include="Hardware\IElement.cs" />
<Compile Include="Hardware\IVisitor.cs" />
<Compile Include="Hardware\IParameter.cs" />
2010-01-26 22:37:48 +00:00
<Compile Include="Hardware\LPC\Chip.cs" />
<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" />
<Compile Include="Hardware\Mainboard\Mainboard.cs" />
<Compile Include="Hardware\Mainboard\MainboardGroup.cs" />
<Compile Include="Hardware\Mainboard\Model.cs" />
<Compile Include="Hardware\Mainboard\Manufacturer.cs" />
<Compile Include="Hardware\Parameter.cs" />
<Compile Include="Hardware\Mainboard\SMBIOS.cs" />
<Compile Include="Hardware\LPC\W836XX.cs" />
<Compile Include="Hardware\Computer.cs" />
<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" />
<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" />
<Compile Include="Hardware\LPC\IT87XX.cs" />
<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" />
<Compile Include="Utilities\HexStringArray.cs" />
<Compile Include="Utilities\IconFactory.cs" />
<Compile Include="Utilities\IReadOnlyArray.cs" />
<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" />
<Compile Include="Utilities\ReadOnlyArray.cs" />
<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>
<SubType>Designer</SubType>
2010-01-26 22:37:48 +00:00
</EmbeddedResource>
<EmbeddedResource Include="GUI\MainForm.resx">
<DependentUpon>MainForm.cs</DependentUpon>
<SubType>Designer</SubType>
2010-01-26 22:37:48 +00:00
</EmbeddedResource>
<EmbeddedResource Include="GUI\PlotPanel.resx">
<DependentUpon>PlotPanel.cs</DependentUpon>
<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" />
<EmbeddedResource Include="Resources\load.png" />
2010-01-26 22:37:48 +00:00
<EmbeddedResource Include="Resources\voltage.png" />
<EmbeddedResource Include="Resources\nvidia.png" />
</ItemGroup>
<ItemGroup>
<None Include="Resources\app.manifest" />
<None Include="Resources\icon.ico" />
</ItemGroup>
<ItemGroup>
<EmbeddedResource Include="Resources\smallicon.ico" />
</ItemGroup>
<ItemGroup>
<EmbeddedResource Include="GUI\ParameterForm.resx">
<DependentUpon>ParameterForm.cs</DependentUpon>
</EmbeddedResource>
<EmbeddedResource Include="Resources\flow.png" />
</ItemGroup>
<ItemGroup>
<EmbeddedResource Include="GUI\CrashReportForm.resx">
<DependentUpon>CrashReportForm.cs</DependentUpon>
</EmbeddedResource>
<EmbeddedResource Include="Resources\mainboard.png" />
</ItemGroup>
<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>