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