OpenHardwareMonitor.csproj
author moel.mich
Sat, 12 Jun 2010 12:15:00 +0000
changeset 139 9611b4d9d898
parent 135 51a15cf90d22
child 150 522da3b8cb1a
permissions -rw-r--r--
Fixed Issue 73.
     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\CrashReportForm.cs">
    65       <SubType>Form</SubType>
    66     </Compile>
    67     <Compile Include="GUI\CrashReportForm.Designer.cs">
    68       <DependentUpon>CrashReportForm.cs</DependentUpon>
    69     </Compile>
    70     <Compile Include="GUI\Node.cs" />
    71     <Compile Include="GUI\ParameterForm.cs">
    72       <SubType>Form</SubType>
    73     </Compile>
    74     <Compile Include="GUI\ParameterForm.Designer.cs">
    75       <DependentUpon>ParameterForm.cs</DependentUpon>
    76     </Compile>
    77     <Compile Include="GUI\SensorNotifyIcon.cs" />
    78     <Compile Include="GUI\SystemTray.cs" />
    79     <Compile Include="GUI\StartupManager.cs" />
    80     <Compile Include="GUI\TaskScheduler.cs" />
    81     <Compile Include="GUI\TreeModel.cs" />
    82     <Compile Include="GUI\TypeNode.cs" />
    83     <Compile Include="GUI\UnitManager.cs" />
    84     <Compile Include="GUI\UpdateVisitor.cs" />
    85     <Compile Include="Hardware\CPU\AMD10CPU.cs" />
    86     <Compile Include="Hardware\CPU\AMD0FCPU.cs" />
    87     <Compile Include="Hardware\CPU\CPUID.cs" />
    88     <Compile Include="Hardware\CPU\CPULoad.cs" />
    89     <Compile Include="Hardware\Hardware.cs" />
    90     <Compile Include="Hardware\HDD\HDD.cs" />
    91     <Compile Include="Hardware\HDD\HDDGroup.cs" />
    92     <Compile Include="Hardware\HDD\SMART.cs" />
    93     <Compile Include="Hardware\IComputer.cs" />
    94     <Compile Include="Hardware\Identifier.cs" />
    95     <Compile Include="Hardware\IElement.cs" />
    96     <Compile Include="Hardware\IVisitor.cs" />
    97     <Compile Include="Hardware\IParameter.cs" />
    98     <Compile Include="Hardware\LPC\Chip.cs" />
    99     <Compile Include="Hardware\LPC\F718XX.cs" />
   100     <Compile Include="Hardware\LPC\ISuperIO.cs" />
   101     <Compile Include="Hardware\Mainboard\SuperIOHardware.cs" />
   102     <Compile Include="Hardware\Mainboard\Mainboard.cs" />
   103     <Compile Include="Hardware\Mainboard\MainboardGroup.cs" />
   104     <Compile Include="Hardware\Mainboard\Model.cs" />
   105     <Compile Include="Hardware\Mainboard\Manufacturer.cs" />
   106     <Compile Include="Hardware\Parameter.cs" />
   107     <Compile Include="Hardware\Mainboard\SMBIOS.cs" />
   108     <Compile Include="Hardware\LPC\W836XX.cs" />
   109     <Compile Include="Hardware\Computer.cs" />
   110     <Compile Include="Hardware\TBalancer\FTD2XX.cs" />
   111     <Compile Include="Properties\AssemblyInfo.cs" />
   112     <Compile Include="GUI\AboutBox.cs">
   113       <SubType>Form</SubType>
   114     </Compile>
   115     <Compile Include="GUI\AboutBox.Designer.cs">
   116       <DependentUpon>AboutBox.cs</DependentUpon>
   117     </Compile>
   118     <Compile Include="Hardware\ATI\ADL.cs" />
   119     <Compile Include="Hardware\ATI\ATIGroup.cs" />
   120     <Compile Include="Hardware\ATI\ATIGPU.cs" />
   121     <Compile Include="Utilities\Config.cs" />
   122     <Compile Include="Utilities\EmbeddedResources.cs" />
   123     <Compile Include="GUI\HardwareNode.cs" />
   124     <Compile Include="Hardware\IGroup.cs" />
   125     <Compile Include="Hardware\IHardware.cs" />
   126     <Compile Include="Hardware\ISensor.cs" />
   127     <Compile Include="Hardware\LPC\IT87XX.cs" />
   128     <Compile Include="Hardware\LPC\LPCIO.cs" />
   129     <Compile Include="GUI\MainForm.cs">
   130       <SubType>Form</SubType>
   131     </Compile>
   132     <Compile Include="GUI\MainForm.Designer.cs">
   133       <DependentUpon>MainForm.cs</DependentUpon>
   134     </Compile>
   135     <Compile Include="Hardware\Nvidia\NVAPI.cs" />
   136     <Compile Include="Hardware\Nvidia\NvidiaGPU.cs" />
   137     <Compile Include="Hardware\Nvidia\NvidiaGroup.cs" />
   138     <Compile Include="Utilities\HexStringArray.cs" />
   139     <Compile Include="Utilities\IconFactory.cs" />
   140     <Compile Include="Utilities\IReadOnlyArray.cs" />
   141     <Compile Include="Utilities\ListSet.cs" />
   142     <Compile Include="Utilities\PInvokeDelegateFactory.cs" />
   143     <Compile Include="GUI\PlotPanel.cs">
   144       <SubType>UserControl</SubType>
   145     </Compile>
   146     <Compile Include="GUI\PlotPanel.Designer.cs">
   147       <DependentUpon>PlotPanel.cs</DependentUpon>
   148     </Compile>
   149     <Compile Include="Program.cs" />
   150     <Compile Include="Hardware\CPU\IntelCPU.cs" />
   151     <Compile Include="Hardware\CPU\CPUGroup.cs" />
   152     <Compile Include="Hardware\Sensor.cs" />
   153     <Compile Include="GUI\SensorNode.cs" />
   154     <Compile Include="Hardware\TBalancer\TBalancer.cs" />
   155     <Compile Include="Hardware\TBalancer\TBalancerGroup.cs" />
   156     <Compile Include="Hardware\WinRing0.cs" />
   157     <Compile Include="Utilities\ReadOnlyArray.cs" />
   158     <Compile Include="Hardware\LPC\LMSensors.cs" />
   159   </ItemGroup>
   160   <ItemGroup>
   161     <EmbeddedResource Include="GUI\AboutBox.resx">
   162       <DependentUpon>AboutBox.cs</DependentUpon>
   163       <SubType>Designer</SubType>
   164     </EmbeddedResource>
   165     <EmbeddedResource Include="GUI\MainForm.resx">
   166       <DependentUpon>MainForm.cs</DependentUpon>
   167       <SubType>Designer</SubType>
   168     </EmbeddedResource>
   169     <EmbeddedResource Include="GUI\PlotPanel.resx">
   170       <DependentUpon>PlotPanel.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\CrashReportForm.resx">
   204       <DependentUpon>CrashReportForm.cs</DependentUpon>
   205     </EmbeddedResource>
   206     <EmbeddedResource Include="Resources\mainboard.png" />
   207   </ItemGroup>
   208   <ItemGroup>
   209     <EmbeddedResource Include="Resources\control.png" />
   210   </ItemGroup>
   211   <Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
   212   <ProjectExtensions>
   213     <VisualStudio AllowExistingFolder="true" />
   214   </ProjectExtensions>
   215   <PropertyGroup>
   216     <PreBuildEvent>
   217     </PreBuildEvent>
   218     <PostBuildEvent>copy "$(ProjectDir)External\*.*" "$(TargetDir)"
   219 copy "$(ProjectDir)Licenses\*.*" "$(TargetDir)"</PostBuildEvent>
   220   </PropertyGroup>
   221 </Project>