OpenHardwareMonitor.csproj
author moel.mich
Sun, 08 Aug 2010 13:57:26 +0000
changeset 165 813d8bc3192f
parent 159 eda3e3458cf4
child 166 fa9dfbfc4145
permissions -rw-r--r--
Refactored the hardware monitoring code into a library (Issue 101).
     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.Data" />
    52     <Reference Include="System.Drawing" />
    53     <Reference Include="System.Management" />
    54     <Reference Include="System.Web" />
    55     <Reference Include="System.Windows.Forms" />
    56     <Reference Include="System.Xml" />
    57     <Reference Include="Aga.Controls, Version=1.7.0.0, Culture=neutral, PublicKeyToken=fcc90fbf924463a3">
    58       <SpecificVersion>False</SpecificVersion>
    59       <HintPath>External\Aga.Controls.dll</HintPath>
    60     </Reference>
    61   </ItemGroup>
    62   <ItemGroup>
    63     <Compile Include="GUI\PlotPanel.cs">
    64       <SubType>UserControl</SubType>
    65     </Compile>
    66     <Compile Include="GUI\ReportForm.cs">
    67       <SubType>Form</SubType>
    68     </Compile>
    69     <Compile Include="GUI\ReportForm.Designer.cs">
    70       <DependentUpon>ReportForm.cs</DependentUpon>
    71     </Compile>
    72     <Compile Include="GUI\CrashForm.cs">
    73       <SubType>Form</SubType>
    74     </Compile>
    75     <Compile Include="GUI\CrashForm.Designer.cs">
    76       <DependentUpon>CrashForm.cs</DependentUpon>
    77     </Compile>
    78     <Compile Include="GUI\Node.cs" />
    79     <Compile Include="GUI\ParameterForm.cs">
    80       <SubType>Form</SubType>
    81     </Compile>
    82     <Compile Include="GUI\ParameterForm.Designer.cs">
    83       <DependentUpon>ParameterForm.cs</DependentUpon>
    84     </Compile>
    85     <Compile Include="GUI\SensorNotifyIcon.cs" />
    86     <Compile Include="GUI\SplitContainerAdv.cs">
    87       <SubType>Component</SubType>
    88     </Compile>
    89     <Compile Include="GUI\SystemTray.cs" />
    90     <Compile Include="GUI\StartupManager.cs" />
    91     <Compile Include="GUI\TaskScheduler.cs" />
    92     <Compile Include="GUI\TreeModel.cs" />
    93     <Compile Include="GUI\TypeNode.cs" />
    94     <Compile Include="GUI\UnitManager.cs" />
    95     <Compile Include="GUI\UpdateVisitor.cs" />
    96     <Compile Include="GUI\UserOption.cs" />
    97     <Compile Include="Utilities\PersistentSettings.cs" />
    98     <Compile Include="Properties\AssemblyInfo.cs" />
    99     <Compile Include="GUI\AboutBox.cs">
   100       <SubType>Form</SubType>
   101     </Compile>
   102     <Compile Include="GUI\AboutBox.Designer.cs">
   103       <DependentUpon>AboutBox.cs</DependentUpon>
   104     </Compile>
   105     <Compile Include="GUI\HardwareNode.cs" />
   106     <Compile Include="GUI\MainForm.cs">
   107       <SubType>Form</SubType>
   108     </Compile>
   109     <Compile Include="GUI\MainForm.Designer.cs">
   110       <DependentUpon>MainForm.cs</DependentUpon>
   111     </Compile>
   112     <Compile Include="Program.cs" />
   113     <Compile Include="GUI\SensorNode.cs" />
   114     <Compile Include="Utilities\EmbeddedResources.cs" />
   115     <Compile Include="Utilities\IconFactory.cs" />
   116   </ItemGroup>
   117   <ItemGroup>
   118     <EmbeddedResource Include="GUI\AboutBox.resx">
   119       <DependentUpon>AboutBox.cs</DependentUpon>
   120       <SubType>Designer</SubType>
   121     </EmbeddedResource>
   122     <EmbeddedResource Include="Resources\ati.png">
   123     </EmbeddedResource>
   124     <EmbeddedResource Include="Resources\bigng.png" />
   125     <EmbeddedResource Include="Resources\clock.png" />
   126     <EmbeddedResource Include="Resources\computer.png" />
   127     <EmbeddedResource Include="Resources\cpu.png" />
   128     <EmbeddedResource Include="Resources\fan.png" />
   129     <EmbeddedResource Include="Resources\temperature.png" />
   130   </ItemGroup>
   131   <ItemGroup>
   132     <EmbeddedResource Include="Resources\chip.png" />
   133     <EmbeddedResource Include="Resources\hdd.png" />
   134     <EmbeddedResource Include="Resources\load.png" />
   135     <EmbeddedResource Include="Resources\voltage.png" />
   136     <EmbeddedResource Include="Resources\nvidia.png" />
   137   </ItemGroup>
   138   <ItemGroup>
   139     <None Include="Resources\app.manifest" />
   140     <None Include="Resources\icon.ico" />
   141   </ItemGroup>
   142   <ItemGroup>
   143     <EmbeddedResource Include="Resources\smallicon.ico" />
   144   </ItemGroup>
   145   <ItemGroup>
   146     <EmbeddedResource Include="GUI\ParameterForm.resx">
   147       <DependentUpon>ParameterForm.cs</DependentUpon>
   148     </EmbeddedResource>
   149     <EmbeddedResource Include="Resources\flow.png" />
   150   </ItemGroup>
   151   <ItemGroup>
   152     <EmbeddedResource Include="GUI\CrashForm.resx">
   153       <DependentUpon>CrashForm.cs</DependentUpon>
   154     </EmbeddedResource>
   155     <EmbeddedResource Include="Resources\mainboard.png" />
   156   </ItemGroup>
   157   <ItemGroup>
   158     <EmbeddedResource Include="GUI\MainForm.resx">
   159       <DependentUpon>MainForm.cs</DependentUpon>
   160     </EmbeddedResource>
   161     <EmbeddedResource Include="GUI\ReportForm.resx">
   162       <DependentUpon>ReportForm.cs</DependentUpon>
   163     </EmbeddedResource>
   164     <EmbeddedResource Include="Resources\control.png" />
   165   </ItemGroup>
   166   <ItemGroup>
   167     <ProjectReference Include="OpenHardwareMonitorLib.csproj">
   168       <Project>{B0397530-545A-471D-BB74-027AE456DF1A}</Project>
   169       <Name>OpenHardwareMonitorLib</Name>
   170     </ProjectReference>
   171   </ItemGroup>
   172   <Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
   173   <ProjectExtensions>
   174     <VisualStudio AllowExistingFolder="true" />
   175   </ProjectExtensions>
   176   <PropertyGroup>
   177     <PreBuildEvent>
   178     </PreBuildEvent>
   179     <PostBuildEvent>copy "$(ProjectDir)External\*.*" "$(TargetDir)"
   180 copy "$(ProjectDir)Licenses\*.*" "$(TargetDir)"</PostBuildEvent>
   181   </PropertyGroup>
   182 </Project>