moel@1: <?xml version="1.0" encoding="utf-8"?> moel@1: <Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003" ToolsVersion="3.5"> moel@1: <PropertyGroup> moel@1: <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration> moel@1: <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform> moel@1: <ProjectGuid>{F5E0C1F7-9E9B-46F2-AC88-8C9C1C923880}</ProjectGuid> moel@24: <ProductVersion>9.0.30729</ProductVersion> moel@1: <SchemaVersion>2.0</SchemaVersion> moel@1: <OutputType>WinExe</OutputType> moel@1: <NoStandardLibraries>false</NoStandardLibraries> moel@1: <AssemblyName>OpenHardwareMonitor</AssemblyName> moel@1: <TargetFrameworkVersion>v2.0</TargetFrameworkVersion> moel@1: <FileAlignment>512</FileAlignment> moel@1: <RootNamespace>OpenHardwareMonitor</RootNamespace> moel@1: <ApplicationIcon>Resources\icon.ico</ApplicationIcon> moel@26: <ApplicationManifest>Resources\app.manifest</ApplicationManifest> moel@26: <StartupObject>OpenHardwareMonitor.Program</StartupObject> moel@1: </PropertyGroup> moel@1: <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> moel@1: <DebugSymbols>true</DebugSymbols> moel@1: <DebugType>full</DebugType> moel@1: <Optimize>false</Optimize> moel@1: <OutputPath>Bin\Debug\</OutputPath> moel@1: <DefineConstants>TRACE;DEBUG</DefineConstants> moel@1: <ErrorReport>prompt</ErrorReport> moel@1: <WarningLevel>4</WarningLevel> moel@1: <UseVSHostingProcess>false</UseVSHostingProcess> moel@1: </PropertyGroup> moel@1: <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' "> moel@1: <DebugType>none</DebugType> moel@1: <Optimize>true</Optimize> moel@1: <OutputPath>Bin\Release\</OutputPath> moel@1: <DefineConstants>TRACE</DefineConstants> moel@1: <ErrorReport>prompt</ErrorReport> moel@1: <WarningLevel>4</WarningLevel> moel@1: <UseVSHostingProcess>false</UseVSHostingProcess> moel@1: </PropertyGroup> moel@1: <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Merge|AnyCPU' "> moel@1: <OutputPath>bin\Merge\</OutputPath> moel@1: <DefineConstants>TRACE</DefineConstants> moel@1: <Optimize>true</Optimize> moel@1: <PlatformTarget>AnyCPU</PlatformTarget> moel@1: <UseVSHostingProcess>false</UseVSHostingProcess> moel@1: <ErrorReport>prompt</ErrorReport> moel@1: <OutputType>Module</OutputType> moel@1: </PropertyGroup> moel@1: <ItemGroup> moel@1: <Reference Include="Aga.Controls, Version=1.7.0.0, Culture=neutral, PublicKeyToken=fcc90fbf924463a3, processorArchitecture=MSIL"> moel@1: <SpecificVersion>False</SpecificVersion> moel@1: <HintPath>External\Aga.Controls.dll</HintPath> moel@1: </Reference> moel@1: <Reference Include="System" /> moel@1: <Reference Include="System.Configuration" /> moel@1: <Reference Include="System.Data" /> moel@1: <Reference Include="System.Drawing" /> moel@1: <Reference Include="System.Management" /> moel@1: <Reference Include="System.Windows.Forms" /> moel@1: <Reference Include="System.Xml" /> moel@1: </ItemGroup> moel@1: <ItemGroup> moel@40: <Compile Include="GUI\SensorNotifyIcon.cs" /> moel@40: <Compile Include="GUI\SensorSystemTray.cs" /> moel@1: <Compile Include="GUI\TypeNode.cs" /> moel@1: <Compile Include="Hardware\CPU\AMD10CPU.cs" /> moel@14: <Compile Include="Hardware\CPU\AMD0FCPU.cs" /> moel@26: <Compile Include="Hardware\CPU\CPULoad.cs" /> moel@31: <Compile Include="Hardware\Hardware.cs" /> moel@1: <Compile Include="Hardware\HDD\HDD.cs" /> moel@1: <Compile Include="Hardware\HDD\HDDGroup.cs" /> moel@1: <Compile Include="Hardware\HDD\SMART.cs" /> moel@1: <Compile Include="Hardware\LPC\Chip.cs" /> moel@16: <Compile Include="Hardware\LPC\F718XX.cs" /> moel@31: <Compile Include="Hardware\LPC\LPCHardware.cs" /> moel@1: <Compile Include="Hardware\SMBIOS\SMBIOSGroup.cs" /> moel@34: <Compile Include="Hardware\LPC\W836XX.cs" /> moel@28: <Compile Include="Hardware\Computer.cs" /> moel@1: <Compile Include="Properties\AssemblyInfo.cs" /> moel@1: <Compile Include="GUI\AboutBox.cs"> moel@1: <SubType>Form</SubType> moel@1: </Compile> moel@1: <Compile Include="GUI\AboutBox.Designer.cs"> moel@1: <DependentUpon>AboutBox.cs</DependentUpon> moel@1: </Compile> moel@1: <Compile Include="Hardware\ATI\ADL.cs" /> moel@1: <Compile Include="Hardware\ATI\ATIGroup.cs" /> moel@1: <Compile Include="Hardware\ATI\ATIGPU.cs" /> moel@1: <Compile Include="Utilities\Configuration.cs" /> moel@1: <Compile Include="Utilities\CrashReport.cs" /> moel@1: <Compile Include="Utilities\EmbeddedResources.cs" /> moel@1: <Compile Include="GUI\HardwareNode.cs" /> moel@1: <Compile Include="Hardware\IGroup.cs" /> moel@1: <Compile Include="Hardware\IHardware.cs" /> moel@1: <Compile Include="Hardware\ISensor.cs" /> moel@16: <Compile Include="Hardware\LPC\IT87XX.cs" /> moel@1: <Compile Include="Hardware\LPC\LPCGroup.cs" /> moel@1: <Compile Include="GUI\MainForm.cs"> moel@1: <SubType>Form</SubType> moel@1: </Compile> moel@1: <Compile Include="GUI\MainForm.Designer.cs"> moel@1: <DependentUpon>MainForm.cs</DependentUpon> moel@1: </Compile> moel@1: <Compile Include="Hardware\Nvidia\NVAPI.cs" /> moel@1: <Compile Include="Hardware\Nvidia\NvidiaGPU.cs" /> moel@1: <Compile Include="Hardware\Nvidia\NvidiaGroup.cs" /> moel@9: <Compile Include="Utilities\HexStringArray.cs" /> moel@40: <Compile Include="Utilities\IconFactory.cs" /> moel@1: <Compile Include="Utilities\PInvokeDelegateFactory.cs" /> moel@1: <Compile Include="GUI\PlotPanel.cs"> moel@1: <SubType>UserControl</SubType> moel@1: </Compile> moel@1: <Compile Include="GUI\PlotPanel.Designer.cs"> moel@1: <DependentUpon>PlotPanel.cs</DependentUpon> moel@1: </Compile> moel@1: <Compile Include="Program.cs" /> moel@1: <Compile Include="Hardware\CPU\IntelCPU.cs" /> moel@1: <Compile Include="Hardware\CPU\CPUGroup.cs" /> moel@1: <Compile Include="Hardware\Sensor.cs" /> moel@1: <Compile Include="GUI\SensorNode.cs" /> moel@1: <Compile Include="Hardware\TBalancer\TBalancer.cs" /> moel@1: <Compile Include="Hardware\TBalancer\TBalancerGroup.cs" /> moel@1: <Compile Include="Hardware\WinRing0.cs" /> moel@1: </ItemGroup> moel@1: <ItemGroup> moel@1: <EmbeddedResource Include="GUI\AboutBox.resx"> moel@1: <DependentUpon>AboutBox.cs</DependentUpon> moel@1: </EmbeddedResource> moel@1: <EmbeddedResource Include="GUI\MainForm.resx"> moel@1: <DependentUpon>MainForm.cs</DependentUpon> moel@1: </EmbeddedResource> moel@1: <EmbeddedResource Include="GUI\PlotPanel.resx"> moel@1: <DependentUpon>PlotPanel.cs</DependentUpon> moel@1: </EmbeddedResource> moel@1: <EmbeddedResource Include="Resources\ati.png"> moel@1: </EmbeddedResource> moel@1: <EmbeddedResource Include="Resources\bigng.png" /> moel@1: <EmbeddedResource Include="Resources\clock.png" /> moel@1: <EmbeddedResource Include="Resources\computer.png" /> moel@1: <EmbeddedResource Include="Resources\cpu.png" /> moel@1: <EmbeddedResource Include="Resources\fan.png" /> moel@1: <EmbeddedResource Include="Resources\temperature.png" /> moel@1: </ItemGroup> moel@1: <ItemGroup> moel@1: <EmbeddedResource Include="Resources\chip.png" /> moel@1: <EmbeddedResource Include="Resources\hdd.png" /> moel@24: <EmbeddedResource Include="Resources\load.png" /> moel@1: <EmbeddedResource Include="Resources\voltage.png" /> moel@1: <EmbeddedResource Include="Resources\nvidia.png" /> moel@1: </ItemGroup> moel@26: <ItemGroup> moel@26: <None Include="Resources\app.manifest" /> moel@40: <None Include="Resources\icon.ico" /> moel@40: </ItemGroup> moel@40: <ItemGroup> moel@40: <EmbeddedResource Include="Resources\smallicon.ico" /> moel@26: </ItemGroup> moel@1: <Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" /> moel@1: <ProjectExtensions> moel@1: <VisualStudio AllowExistingFolder="true" /> moel@1: </ProjectExtensions> moel@1: <PropertyGroup> moel@1: <PreBuildEvent> moel@1: </PreBuildEvent> moel@1: <PostBuildEvent>copy "$(ProjectDir)External\*.*" "$(TargetDir)" moel@1: copy "$(ProjectDir)Licenses\*.*" "$(TargetDir)"</PostBuildEvent> moel@1: </PropertyGroup> moel@1: </Project>