OpenHardwareMonitor.csproj
author moel.mich
Wed, 03 Feb 2010 18:10:11 +0000
changeset 23 1662dea7a261
parent 14 51c2f209da6d
child 24 09ab31bee6bd
permissions -rw-r--r--
Fixed Intel CPU coreCount in case CPUID 0x0B is supported but returns only 0.
     1 <?xml version="1.0" encoding="utf-8"?>
     2 <Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003" ToolsVersion="3.5">
     3   <PropertyGroup>
     4     <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
     5     <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
     6     <ProjectGuid>{F5E0C1F7-9E9B-46F2-AC88-8C9C1C923880}</ProjectGuid>
     7     <ProductVersion>9.0.21022</ProductVersion>
     8     <SchemaVersion>2.0</SchemaVersion>
     9     <OutputType>WinExe</OutputType>
    10     <NoStandardLibraries>false</NoStandardLibraries>
    11     <AssemblyName>OpenHardwareMonitor</AssemblyName>
    12     <TargetFrameworkVersion>v2.0</TargetFrameworkVersion>
    13     <FileAlignment>512</FileAlignment>
    14     <RootNamespace>OpenHardwareMonitor</RootNamespace>
    15     <ApplicationIcon>Resources\icon.ico</ApplicationIcon>
    16   </PropertyGroup>
    17   <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
    18     <DebugSymbols>true</DebugSymbols>
    19     <DebugType>full</DebugType>
    20     <Optimize>false</Optimize>
    21     <OutputPath>Bin\Debug\</OutputPath>
    22     <DefineConstants>TRACE;DEBUG</DefineConstants>
    23     <ErrorReport>prompt</ErrorReport>
    24     <WarningLevel>4</WarningLevel>
    25     <UseVSHostingProcess>false</UseVSHostingProcess>
    26   </PropertyGroup>
    27   <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
    28     <DebugType>none</DebugType>
    29     <Optimize>true</Optimize>
    30     <OutputPath>Bin\Release\</OutputPath>
    31     <DefineConstants>TRACE</DefineConstants>
    32     <ErrorReport>prompt</ErrorReport>
    33     <WarningLevel>4</WarningLevel>
    34     <UseVSHostingProcess>false</UseVSHostingProcess>
    35   </PropertyGroup>
    36   <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Merge|AnyCPU' ">
    37     <OutputPath>bin\Merge\</OutputPath>
    38     <DefineConstants>TRACE</DefineConstants>
    39     <Optimize>true</Optimize>
    40     <PlatformTarget>AnyCPU</PlatformTarget>
    41     <UseVSHostingProcess>false</UseVSHostingProcess>
    42     <ErrorReport>prompt</ErrorReport>
    43     <OutputType>Module</OutputType>
    44   </PropertyGroup>
    45   <ItemGroup>
    46     <Reference Include="Aga.Controls, Version=1.7.0.0, Culture=neutral, PublicKeyToken=fcc90fbf924463a3, processorArchitecture=MSIL">
    47       <SpecificVersion>False</SpecificVersion>
    48       <HintPath>External\Aga.Controls.dll</HintPath>
    49     </Reference>
    50     <Reference Include="System" />
    51     <Reference Include="System.Configuration" />
    52     <Reference Include="System.Data" />
    53     <Reference Include="System.Drawing" />
    54     <Reference Include="System.Management" />
    55     <Reference Include="System.Windows.Forms" />
    56     <Reference Include="System.Xml" />
    57   </ItemGroup>
    58   <ItemGroup>
    59     <Compile Include="GUI\TypeNode.cs" />
    60     <Compile Include="Hardware\CPU\AMD10CPU.cs" />
    61     <Compile Include="Hardware\CPU\AMD0FCPU.cs" />
    62     <Compile Include="Hardware\HDD\HDD.cs" />
    63     <Compile Include="Hardware\HDD\HDDGroup.cs" />
    64     <Compile Include="Hardware\HDD\SMART.cs" />
    65     <Compile Include="Hardware\LPC\Chip.cs" />
    66     <Compile Include="Hardware\LPC\F718XX.cs" />
    67     <Compile Include="Hardware\SMBIOS\SMBIOSGroup.cs" />
    68     <Compile Include="Hardware\LPC\W83627DHG.cs" />
    69     <Compile Include="Hardware\ReportWriter.cs" />
    70     <Compile Include="Properties\AssemblyInfo.cs" />
    71     <Compile Include="GUI\AboutBox.cs">
    72       <SubType>Form</SubType>
    73     </Compile>
    74     <Compile Include="GUI\AboutBox.Designer.cs">
    75       <DependentUpon>AboutBox.cs</DependentUpon>
    76     </Compile>
    77     <Compile Include="Hardware\ATI\ADL.cs" />
    78     <Compile Include="Hardware\ATI\ATIGroup.cs" />
    79     <Compile Include="Hardware\ATI\ATIGPU.cs" />
    80     <Compile Include="Utilities\Configuration.cs" />
    81     <Compile Include="Utilities\CrashReport.cs" />
    82     <Compile Include="Utilities\EmbeddedResources.cs" />
    83     <Compile Include="GUI\HardwareNode.cs" />
    84     <Compile Include="Hardware\IGroup.cs" />
    85     <Compile Include="Hardware\IHardware.cs" />
    86     <Compile Include="Hardware\ISensor.cs" />
    87     <Compile Include="Hardware\LPC\IT87XX.cs" />
    88     <Compile Include="Hardware\LPC\LPCGroup.cs" />
    89     <Compile Include="GUI\MainForm.cs">
    90       <SubType>Form</SubType>
    91     </Compile>
    92     <Compile Include="GUI\MainForm.Designer.cs">
    93       <DependentUpon>MainForm.cs</DependentUpon>
    94     </Compile>
    95     <Compile Include="Hardware\Nvidia\NVAPI.cs" />
    96     <Compile Include="Hardware\Nvidia\NvidiaGPU.cs" />
    97     <Compile Include="Hardware\Nvidia\NvidiaGroup.cs" />
    98     <Compile Include="Utilities\HexStringArray.cs" />
    99     <Compile Include="Utilities\PInvokeDelegateFactory.cs" />
   100     <Compile Include="GUI\PlotPanel.cs">
   101       <SubType>UserControl</SubType>
   102     </Compile>
   103     <Compile Include="GUI\PlotPanel.Designer.cs">
   104       <DependentUpon>PlotPanel.cs</DependentUpon>
   105     </Compile>
   106     <Compile Include="Program.cs" />
   107     <Compile Include="Hardware\CPU\IntelCPU.cs" />
   108     <Compile Include="Hardware\CPU\CPUGroup.cs" />
   109     <Compile Include="Hardware\Sensor.cs" />
   110     <Compile Include="GUI\SensorNode.cs" />
   111     <Compile Include="Hardware\TBalancer\TBalancer.cs" />
   112     <Compile Include="Hardware\TBalancer\TBalancerGroup.cs" />
   113     <Compile Include="Hardware\WinRing0.cs" />
   114   </ItemGroup>
   115   <ItemGroup>
   116     <EmbeddedResource Include="GUI\AboutBox.resx">
   117       <DependentUpon>AboutBox.cs</DependentUpon>
   118     </EmbeddedResource>
   119     <EmbeddedResource Include="GUI\MainForm.resx">
   120       <DependentUpon>MainForm.cs</DependentUpon>
   121     </EmbeddedResource>
   122     <EmbeddedResource Include="GUI\PlotPanel.resx">
   123       <DependentUpon>PlotPanel.cs</DependentUpon>
   124     </EmbeddedResource>
   125     <EmbeddedResource Include="Resources\ati.png">
   126     </EmbeddedResource>
   127     <EmbeddedResource Include="Resources\bigng.png" />
   128     <EmbeddedResource Include="Resources\clock.png" />
   129     <EmbeddedResource Include="Resources\computer.png" />
   130     <EmbeddedResource Include="Resources\cpu.png" />
   131     <EmbeddedResource Include="Resources\fan.png" />
   132     <EmbeddedResource Include="Resources\temperature.png" />
   133   </ItemGroup>
   134   <ItemGroup>
   135     <EmbeddedResource Include="Resources\chip.png" />
   136     <EmbeddedResource Include="Resources\hdd.png" />
   137     <Content Include="Resources\icon.ico" />
   138     <EmbeddedResource Include="Resources\voltage.png" />
   139     <EmbeddedResource Include="Resources\nvidia.png" />
   140   </ItemGroup>
   141   <Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
   142   <ProjectExtensions>
   143     <VisualStudio AllowExistingFolder="true" />
   144   </ProjectExtensions>
   145   <PropertyGroup>
   146     <PreBuildEvent>
   147     </PreBuildEvent>
   148     <PostBuildEvent>copy "$(ProjectDir)External\*.*" "$(TargetDir)"
   149 copy "$(ProjectDir)Licenses\*.*" "$(TargetDir)"</PostBuildEvent>
   150   </PropertyGroup>
   151 </Project>