OpenHardwareMonitor.csproj
author moel.mich
Sun, 18 Jul 2010 17:08:33 +0000
changeset 157 0b5cc38501e1
parent 151 76e18684713d
child 158 119693c3b7d1
permissions -rw-r--r--
Delete the config file if it can not be parsed, and restart with a new one.
moel@139
     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@63
     7
    <ProductVersion>9.0.30729</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@26
    16
    <ApplicationManifest>Resources\app.manifest</ApplicationManifest>
moel@26
    17
    <StartupObject>OpenHardwareMonitor.Program</StartupObject>
moel@1
    18
  </PropertyGroup>
moel@1
    19
  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
moel@1
    20
    <DebugSymbols>true</DebugSymbols>
moel@1
    21
    <DebugType>full</DebugType>
moel@1
    22
    <Optimize>false</Optimize>
moel@1
    23
    <OutputPath>Bin\Debug\</OutputPath>
moel@1
    24
    <DefineConstants>TRACE;DEBUG</DefineConstants>
moel@1
    25
    <ErrorReport>prompt</ErrorReport>
moel@1
    26
    <WarningLevel>4</WarningLevel>
moel@1
    27
    <UseVSHostingProcess>false</UseVSHostingProcess>
moel@1
    28
  </PropertyGroup>
moel@1
    29
  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
moel@1
    30
    <DebugType>none</DebugType>
moel@1
    31
    <Optimize>true</Optimize>
moel@1
    32
    <OutputPath>Bin\Release\</OutputPath>
moel@1
    33
    <DefineConstants>TRACE</DefineConstants>
moel@1
    34
    <ErrorReport>prompt</ErrorReport>
moel@1
    35
    <WarningLevel>4</WarningLevel>
moel@1
    36
    <UseVSHostingProcess>false</UseVSHostingProcess>
moel@1
    37
  </PropertyGroup>
moel@1
    38
  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Merge|AnyCPU' ">
moel@1
    39
    <OutputPath>bin\Merge\</OutputPath>
moel@1
    40
    <DefineConstants>TRACE</DefineConstants>
moel@1
    41
    <Optimize>true</Optimize>
moel@1
    42
    <PlatformTarget>AnyCPU</PlatformTarget>
moel@1
    43
    <UseVSHostingProcess>false</UseVSHostingProcess>
moel@1
    44
    <ErrorReport>prompt</ErrorReport>
moel@1
    45
    <OutputType>Module</OutputType>
moel@135
    46
    <DebugType>none</DebugType>
moel@135
    47
    <WarningLevel>4</WarningLevel>
moel@1
    48
  </PropertyGroup>
moel@1
    49
  <ItemGroup>
moel@1
    50
    <Reference Include="System" />
moel@1
    51
    <Reference Include="System.Configuration" />
moel@130
    52
    <Reference Include="System.Data" />
moel@1
    53
    <Reference Include="System.Drawing" />
moel@1
    54
    <Reference Include="System.Management" />
moel@86
    55
    <Reference Include="System.Web" />
moel@1
    56
    <Reference Include="System.Windows.Forms" />
moel@130
    57
    <Reference Include="System.Xml" />
moel@135
    58
    <Reference Include="Aga.Controls, Version=1.7.0.0, Culture=neutral, PublicKeyToken=fcc90fbf924463a3">
moel@135
    59
      <SpecificVersion>False</SpecificVersion>
moel@135
    60
      <HintPath>External\Aga.Controls.dll</HintPath>
moel@135
    61
    </Reference>
moel@1
    62
  </ItemGroup>
moel@1
    63
  <ItemGroup>
moel@150
    64
    <Compile Include="GUI\ReportForm.cs">
moel@86
    65
      <SubType>Form</SubType>
moel@86
    66
    </Compile>
moel@150
    67
    <Compile Include="GUI\ReportForm.Designer.cs">
moel@150
    68
      <DependentUpon>ReportForm.cs</DependentUpon>
moel@150
    69
    </Compile>
moel@150
    70
    <Compile Include="GUI\CrashForm.cs">
moel@150
    71
      <SubType>Form</SubType>
moel@150
    72
    </Compile>
moel@150
    73
    <Compile Include="GUI\CrashForm.Designer.cs">
moel@150
    74
      <DependentUpon>CrashForm.cs</DependentUpon>
moel@86
    75
    </Compile>
moel@111
    76
    <Compile Include="GUI\Node.cs" />
moel@63
    77
    <Compile Include="GUI\ParameterForm.cs">
moel@63
    78
      <SubType>Form</SubType>
moel@63
    79
    </Compile>
moel@63
    80
    <Compile Include="GUI\ParameterForm.Designer.cs">
moel@63
    81
      <DependentUpon>ParameterForm.cs</DependentUpon>
moel@63
    82
    </Compile>
moel@151
    83
    <Compile Include="GUI\ResetMinMaxVisitor.cs" />
moel@40
    84
    <Compile Include="GUI\SensorNotifyIcon.cs" />
moel@133
    85
    <Compile Include="GUI\SystemTray.cs" />
moel@82
    86
    <Compile Include="GUI\StartupManager.cs" />
moel@82
    87
    <Compile Include="GUI\TaskScheduler.cs" />
moel@111
    88
    <Compile Include="GUI\TreeModel.cs" />
moel@1
    89
    <Compile Include="GUI\TypeNode.cs" />
moel@122
    90
    <Compile Include="GUI\UnitManager.cs" />
moel@110
    91
    <Compile Include="GUI\UpdateVisitor.cs" />
moel@156
    92
    <Compile Include="GUI\UserOption.cs" />
moel@1
    93
    <Compile Include="Hardware\CPU\AMD10CPU.cs" />
moel@14
    94
    <Compile Include="Hardware\CPU\AMD0FCPU.cs" />
moel@90
    95
    <Compile Include="Hardware\CPU\CPUID.cs" />
moel@26
    96
    <Compile Include="Hardware\CPU\CPULoad.cs" />
moel@31
    97
    <Compile Include="Hardware\Hardware.cs" />
moel@1
    98
    <Compile Include="Hardware\HDD\HDD.cs" />
moel@1
    99
    <Compile Include="Hardware\HDD\HDDGroup.cs" />
moel@1
   100
    <Compile Include="Hardware\HDD\SMART.cs" />
moel@83
   101
    <Compile Include="Hardware\IComputer.cs" />
moel@109
   102
    <Compile Include="Hardware\Identifier.cs" />
moel@110
   103
    <Compile Include="Hardware\IElement.cs" />
moel@110
   104
    <Compile Include="Hardware\IVisitor.cs" />
moel@63
   105
    <Compile Include="Hardware\IParameter.cs" />
moel@1
   106
    <Compile Include="Hardware\LPC\Chip.cs" />
moel@16
   107
    <Compile Include="Hardware\LPC\F718XX.cs" />
moel@130
   108
    <Compile Include="Hardware\LPC\ISuperIO.cs" />
moel@130
   109
    <Compile Include="Hardware\Mainboard\SuperIOHardware.cs" />
moel@64
   110
    <Compile Include="Hardware\Mainboard\Mainboard.cs" />
moel@64
   111
    <Compile Include="Hardware\Mainboard\MainboardGroup.cs" />
moel@126
   112
    <Compile Include="Hardware\Mainboard\Model.cs" />
moel@64
   113
    <Compile Include="Hardware\Mainboard\Manufacturer.cs" />
moel@63
   114
    <Compile Include="Hardware\Parameter.cs" />
moel@64
   115
    <Compile Include="Hardware\Mainboard\SMBIOS.cs" />
moel@34
   116
    <Compile Include="Hardware\LPC\W836XX.cs" />
moel@28
   117
    <Compile Include="Hardware\Computer.cs" />
moel@87
   118
    <Compile Include="Hardware\TBalancer\FTD2XX.cs" />
moel@1
   119
    <Compile Include="Properties\AssemblyInfo.cs" />
moel@1
   120
    <Compile Include="GUI\AboutBox.cs">
moel@1
   121
      <SubType>Form</SubType>
moel@1
   122
    </Compile>
moel@1
   123
    <Compile Include="GUI\AboutBox.Designer.cs">
moel@1
   124
      <DependentUpon>AboutBox.cs</DependentUpon>
moel@1
   125
    </Compile>
moel@1
   126
    <Compile Include="Hardware\ATI\ADL.cs" />
moel@1
   127
    <Compile Include="Hardware\ATI\ATIGroup.cs" />
moel@1
   128
    <Compile Include="Hardware\ATI\ATIGPU.cs" />
moel@63
   129
    <Compile Include="Utilities\Config.cs" />
moel@1
   130
    <Compile Include="Utilities\EmbeddedResources.cs" />
moel@1
   131
    <Compile Include="GUI\HardwareNode.cs" />
moel@1
   132
    <Compile Include="Hardware\IGroup.cs" />
moel@1
   133
    <Compile Include="Hardware\IHardware.cs" />
moel@1
   134
    <Compile Include="Hardware\ISensor.cs" />
moel@16
   135
    <Compile Include="Hardware\LPC\IT87XX.cs" />
moel@110
   136
    <Compile Include="Hardware\LPC\LPCIO.cs" />
moel@1
   137
    <Compile Include="GUI\MainForm.cs">
moel@1
   138
      <SubType>Form</SubType>
moel@1
   139
    </Compile>
moel@1
   140
    <Compile Include="GUI\MainForm.Designer.cs">
moel@1
   141
      <DependentUpon>MainForm.cs</DependentUpon>
moel@1
   142
    </Compile>
moel@1
   143
    <Compile Include="Hardware\Nvidia\NVAPI.cs" />
moel@1
   144
    <Compile Include="Hardware\Nvidia\NvidiaGPU.cs" />
moel@1
   145
    <Compile Include="Hardware\Nvidia\NvidiaGroup.cs" />
moel@9
   146
    <Compile Include="Utilities\HexStringArray.cs" />
moel@40
   147
    <Compile Include="Utilities\IconFactory.cs" />
moel@63
   148
    <Compile Include="Utilities\IReadOnlyArray.cs" />
moel@109
   149
    <Compile Include="Utilities\ListSet.cs" />
moel@1
   150
    <Compile Include="Utilities\PInvokeDelegateFactory.cs" />
moel@1
   151
    <Compile Include="GUI\PlotPanel.cs">
moel@1
   152
      <SubType>UserControl</SubType>
moel@1
   153
    </Compile>
moel@1
   154
    <Compile Include="GUI\PlotPanel.Designer.cs">
moel@1
   155
      <DependentUpon>PlotPanel.cs</DependentUpon>
moel@1
   156
    </Compile>
moel@1
   157
    <Compile Include="Program.cs" />
moel@1
   158
    <Compile Include="Hardware\CPU\IntelCPU.cs" />
moel@1
   159
    <Compile Include="Hardware\CPU\CPUGroup.cs" />
moel@1
   160
    <Compile Include="Hardware\Sensor.cs" />
moel@1
   161
    <Compile Include="GUI\SensorNode.cs" />
moel@1
   162
    <Compile Include="Hardware\TBalancer\TBalancer.cs" />
moel@1
   163
    <Compile Include="Hardware\TBalancer\TBalancerGroup.cs" />
moel@1
   164
    <Compile Include="Hardware\WinRing0.cs" />
moel@63
   165
    <Compile Include="Utilities\ReadOnlyArray.cs" />
moel@135
   166
    <Compile Include="Hardware\LPC\LMSensors.cs" />
moel@1
   167
  </ItemGroup>
moel@1
   168
  <ItemGroup>
moel@1
   169
    <EmbeddedResource Include="GUI\AboutBox.resx">
moel@1
   170
      <DependentUpon>AboutBox.cs</DependentUpon>
moel@60
   171
      <SubType>Designer</SubType>
moel@1
   172
    </EmbeddedResource>
moel@1
   173
    <EmbeddedResource Include="GUI\PlotPanel.resx">
moel@1
   174
      <DependentUpon>PlotPanel.cs</DependentUpon>
moel@60
   175
      <SubType>Designer</SubType>
moel@1
   176
    </EmbeddedResource>
moel@1
   177
    <EmbeddedResource Include="Resources\ati.png">
moel@1
   178
    </EmbeddedResource>
moel@1
   179
    <EmbeddedResource Include="Resources\bigng.png" />
moel@1
   180
    <EmbeddedResource Include="Resources\clock.png" />
moel@1
   181
    <EmbeddedResource Include="Resources\computer.png" />
moel@1
   182
    <EmbeddedResource Include="Resources\cpu.png" />
moel@1
   183
    <EmbeddedResource Include="Resources\fan.png" />
moel@1
   184
    <EmbeddedResource Include="Resources\temperature.png" />
moel@1
   185
  </ItemGroup>
moel@1
   186
  <ItemGroup>
moel@1
   187
    <EmbeddedResource Include="Resources\chip.png" />
moel@1
   188
    <EmbeddedResource Include="Resources\hdd.png" />
moel@24
   189
    <EmbeddedResource Include="Resources\load.png" />
moel@1
   190
    <EmbeddedResource Include="Resources\voltage.png" />
moel@1
   191
    <EmbeddedResource Include="Resources\nvidia.png" />
moel@1
   192
  </ItemGroup>
moel@26
   193
  <ItemGroup>
moel@26
   194
    <None Include="Resources\app.manifest" />
moel@40
   195
    <None Include="Resources\icon.ico" />
moel@40
   196
  </ItemGroup>
moel@40
   197
  <ItemGroup>
moel@40
   198
    <EmbeddedResource Include="Resources\smallicon.ico" />
moel@26
   199
  </ItemGroup>
moel@57
   200
  <ItemGroup>
moel@63
   201
    <EmbeddedResource Include="GUI\ParameterForm.resx">
moel@63
   202
      <DependentUpon>ParameterForm.cs</DependentUpon>
moel@63
   203
    </EmbeddedResource>
moel@57
   204
    <EmbeddedResource Include="Resources\flow.png" />
moel@57
   205
  </ItemGroup>
moel@64
   206
  <ItemGroup>
moel@150
   207
    <EmbeddedResource Include="GUI\CrashForm.resx">
moel@150
   208
      <DependentUpon>CrashForm.cs</DependentUpon>
moel@86
   209
    </EmbeddedResource>
moel@64
   210
    <EmbeddedResource Include="Resources\mainboard.png" />
moel@64
   211
  </ItemGroup>
moel@118
   212
  <ItemGroup>
moel@156
   213
    <EmbeddedResource Include="GUI\MainForm.resx">
moel@156
   214
      <DependentUpon>MainForm.cs</DependentUpon>
moel@156
   215
    </EmbeddedResource>
moel@150
   216
    <EmbeddedResource Include="GUI\ReportForm.resx">
moel@150
   217
      <DependentUpon>ReportForm.cs</DependentUpon>
moel@150
   218
    </EmbeddedResource>
moel@118
   219
    <EmbeddedResource Include="Resources\control.png" />
moel@118
   220
  </ItemGroup>
moel@1
   221
  <Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
moel@1
   222
  <ProjectExtensions>
moel@1
   223
    <VisualStudio AllowExistingFolder="true" />
moel@1
   224
  </ProjectExtensions>
moel@1
   225
  <PropertyGroup>
moel@1
   226
    <PreBuildEvent>
moel@1
   227
    </PreBuildEvent>
moel@1
   228
    <PostBuildEvent>copy "$(ProjectDir)External\*.*" "$(TargetDir)"
moel@1
   229
copy "$(ProjectDir)Licenses\*.*" "$(TargetDir)"</PostBuildEvent>
moel@1
   230
  </PropertyGroup>
moel@1
   231
</Project>