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