OpenHardwareMonitor.csproj
author moel.mich
Sun, 01 Jan 2012 10:14:42 +0000
changeset 325 4c31341a4800
parent 317 1ccf99e620a9
child 340 600962f8a298
permissions -rw-r--r--
Added the hard drive firmware version to the report. This could be important if the SMART attribute layout changes with firmware versions on some drives.
     1 <?xml version="1.0" encoding="utf-8"?>
     2 <Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003" ToolsVersion="4.0">
     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     <FileUpgradeFlags>
    19     </FileUpgradeFlags>
    20     <OldToolsVersion>3.5</OldToolsVersion>
    21     <UpgradeBackupLocation />
    22     <PublishUrl>publish\</PublishUrl>
    23     <Install>true</Install>
    24     <InstallFrom>Disk</InstallFrom>
    25     <UpdateEnabled>false</UpdateEnabled>
    26     <UpdateMode>Foreground</UpdateMode>
    27     <UpdateInterval>7</UpdateInterval>
    28     <UpdateIntervalUnits>Days</UpdateIntervalUnits>
    29     <UpdatePeriodically>false</UpdatePeriodically>
    30     <UpdateRequired>false</UpdateRequired>
    31     <MapFileExtensions>true</MapFileExtensions>
    32     <ApplicationRevision>0</ApplicationRevision>
    33     <ApplicationVersion>1.0.0.%2a</ApplicationVersion>
    34     <IsWebBootstrapper>false</IsWebBootstrapper>
    35     <UseApplicationTrust>false</UseApplicationTrust>
    36     <BootstrapperEnabled>true</BootstrapperEnabled>
    37   </PropertyGroup>
    38   <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
    39     <DebugSymbols>true</DebugSymbols>
    40     <DebugType>full</DebugType>
    41     <Optimize>false</Optimize>
    42     <OutputPath>Bin\Debug\</OutputPath>
    43     <DefineConstants>TRACE;DEBUG</DefineConstants>
    44     <ErrorReport>prompt</ErrorReport>
    45     <WarningLevel>4</WarningLevel>
    46     <UseVSHostingProcess>true</UseVSHostingProcess>
    47     <CodeAnalysisRuleSet>AllRules.ruleset</CodeAnalysisRuleSet>
    48     <PlatformTarget>AnyCPU</PlatformTarget>
    49   </PropertyGroup>
    50   <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
    51     <DebugType>none</DebugType>
    52     <Optimize>true</Optimize>
    53     <OutputPath>Bin\Release\</OutputPath>
    54     <DefineConstants>TRACE</DefineConstants>
    55     <ErrorReport>prompt</ErrorReport>
    56     <WarningLevel>4</WarningLevel>
    57     <UseVSHostingProcess>false</UseVSHostingProcess>
    58     <CodeAnalysisRuleSet>AllRules.ruleset</CodeAnalysisRuleSet>
    59   </PropertyGroup>
    60   <ItemGroup>
    61     <Reference Include="System" />
    62     <Reference Include="System.Configuration.Install" />
    63     <Reference Include="System.Drawing" />
    64     <Reference Include="System.Management" />
    65     <Reference Include="System.Windows.Forms" />
    66     <Reference Include="System.Xml" />
    67     <Reference Include="Aga.Controls, Version=1.7.0.0, Culture=neutral, PublicKeyToken=fcc90fbf924463a3">
    68       <SpecificVersion>False</SpecificVersion>
    69       <HintPath>External\Aga.Controls.dll</HintPath>
    70     </Reference>
    71   </ItemGroup>
    72   <ItemGroup>
    73     <Compile Include="GUI\GadgetWindow.cs" />
    74     <Compile Include="GUI\Gadget.cs" />
    75     <Compile Include="GUI\HardwareTypeImage.cs" />
    76     <Compile Include="GUI\PlotPanel.cs">
    77       <SubType>UserControl</SubType>
    78     </Compile>
    79     <Compile Include="GUI\ReportForm.cs">
    80       <SubType>Form</SubType>
    81     </Compile>
    82     <Compile Include="GUI\ReportForm.Designer.cs">
    83       <DependentUpon>ReportForm.cs</DependentUpon>
    84     </Compile>
    85     <Compile Include="GUI\CrashForm.cs">
    86       <SubType>Form</SubType>
    87     </Compile>
    88     <Compile Include="GUI\CrashForm.Designer.cs">
    89       <DependentUpon>CrashForm.cs</DependentUpon>
    90     </Compile>
    91     <Compile Include="GUI\Node.cs" />
    92     <Compile Include="GUI\ParameterForm.cs">
    93       <SubType>Form</SubType>
    94     </Compile>
    95     <Compile Include="GUI\ParameterForm.Designer.cs">
    96       <DependentUpon>ParameterForm.cs</DependentUpon>
    97     </Compile>
    98     <Compile Include="GUI\SensorGadget.cs" />
    99     <Compile Include="GUI\SensorNotifyIcon.cs" />
   100     <Compile Include="GUI\ShowDesktop.cs" />
   101     <Compile Include="GUI\SplitContainerAdv.cs">
   102       <SubType>Component</SubType>
   103     </Compile>
   104     <Compile Include="GUI\SystemTray.cs" />
   105     <Compile Include="GUI\StartupManager.cs" />
   106     <Compile Include="GUI\TaskScheduler.cs" />
   107     <Compile Include="GUI\TreeModel.cs" />
   108     <Compile Include="GUI\TypeNode.cs" />
   109     <Compile Include="GUI\UnitManager.cs" />
   110     <Compile Include="GUI\UpdateVisitor.cs" />
   111     <Compile Include="GUI\UserOption.cs" />
   112     <Compile Include="GUI\UserRadioGroup.cs" />
   113     <Compile Include="Properties\AssemblyVersion.cs" />
   114     <Compile Include="Utilities\PersistentSettings.cs" />
   115     <Compile Include="Properties\AssemblyInfo.cs" />
   116     <Compile Include="GUI\AboutBox.cs">
   117       <SubType>Form</SubType>
   118     </Compile>
   119     <Compile Include="GUI\AboutBox.Designer.cs">
   120       <DependentUpon>AboutBox.cs</DependentUpon>
   121     </Compile>
   122     <Compile Include="GUI\HardwareNode.cs" />
   123     <Compile Include="GUI\MainForm.cs">
   124       <SubType>Form</SubType>
   125     </Compile>
   126     <Compile Include="GUI\MainForm.Designer.cs">
   127       <DependentUpon>MainForm.cs</DependentUpon>
   128     </Compile>
   129     <Compile Include="Program.cs" />
   130     <Compile Include="GUI\SensorNode.cs" />
   131     <Compile Include="Utilities\EmbeddedResources.cs" />
   132     <Compile Include="Utilities\IconFactory.cs" />
   133     <Compile Include="WMI\Hardware.cs" />
   134     <Compile Include="WMI\IWmiObject.cs" />
   135     <Compile Include="WMI\Sensor.cs" />
   136     <Compile Include="WMI\WmiProvider.cs">
   137       <SubType>Component</SubType>
   138     </Compile>
   139   </ItemGroup>
   140   <ItemGroup>
   141     <EmbeddedResource Include="GUI\AboutBox.resx">
   142       <DependentUpon>AboutBox.cs</DependentUpon>
   143       <SubType>Designer</SubType>
   144     </EmbeddedResource>
   145     <EmbeddedResource Include="Resources\ati.png">
   146     </EmbeddedResource>
   147     <EmbeddedResource Include="Resources\bigng.png" />
   148     <EmbeddedResource Include="Resources\clock.png" />
   149     <EmbeddedResource Include="Resources\computer.png" />
   150     <EmbeddedResource Include="Resources\cpu.png" />
   151     <EmbeddedResource Include="Resources\fan.png" />
   152     <EmbeddedResource Include="Resources\temperature.png" />
   153   </ItemGroup>
   154   <ItemGroup>
   155     <EmbeddedResource Include="Resources\chip.png" />
   156     <EmbeddedResource Include="Resources\hdd.png" />
   157     <EmbeddedResource Include="Resources\load.png" />
   158     <EmbeddedResource Include="Resources\voltage.png" />
   159     <EmbeddedResource Include="Resources\nvidia.png" />
   160   </ItemGroup>
   161   <ItemGroup>
   162     <None Include="App.config" />
   163     <None Include="Resources\app.manifest" />
   164     <None Include="Resources\icon.ico" />
   165   </ItemGroup>
   166   <ItemGroup>
   167     <EmbeddedResource Include="Resources\smallicon.ico" />
   168   </ItemGroup>
   169   <ItemGroup>
   170     <EmbeddedResource Include="GUI\ParameterForm.resx">
   171       <DependentUpon>ParameterForm.cs</DependentUpon>
   172     </EmbeddedResource>
   173     <EmbeddedResource Include="Resources\flow.png" />
   174   </ItemGroup>
   175   <ItemGroup>
   176     <EmbeddedResource Include="GUI\CrashForm.resx">
   177       <DependentUpon>CrashForm.cs</DependentUpon>
   178     </EmbeddedResource>
   179     <EmbeddedResource Include="Resources\mainboard.png" />
   180   </ItemGroup>
   181   <ItemGroup>
   182     <EmbeddedResource Include="GUI\MainForm.resx">
   183       <DependentUpon>MainForm.cs</DependentUpon>
   184       <SubType>Designer</SubType>
   185     </EmbeddedResource>
   186     <EmbeddedResource Include="GUI\ReportForm.resx">
   187       <DependentUpon>ReportForm.cs</DependentUpon>
   188     </EmbeddedResource>
   189     <EmbeddedResource Include="Resources\control.png" />
   190   </ItemGroup>
   191   <ItemGroup>
   192     <ProjectReference Include="OpenHardwareMonitorLib.csproj">
   193       <Project>{B0397530-545A-471D-BB74-027AE456DF1A}</Project>
   194       <Name>OpenHardwareMonitorLib</Name>
   195     </ProjectReference>
   196   </ItemGroup>
   197   <ItemGroup>
   198     <BootstrapperPackage Include="Microsoft.Net.Client.3.5">
   199       <Visible>False</Visible>
   200       <ProductName>.NET Framework 3.5 SP1 Client Profile</ProductName>
   201       <Install>false</Install>
   202     </BootstrapperPackage>
   203     <BootstrapperPackage Include="Microsoft.Net.Framework.3.5.SP1">
   204       <Visible>False</Visible>
   205       <ProductName>.NET Framework 3.5 SP1</ProductName>
   206       <Install>true</Install>
   207     </BootstrapperPackage>
   208     <BootstrapperPackage Include="Microsoft.Windows.Installer.3.1">
   209       <Visible>False</Visible>
   210       <ProductName>Windows Installer 3.1</ProductName>
   211       <Install>true</Install>
   212     </BootstrapperPackage>
   213   </ItemGroup>
   214   <ItemGroup>
   215     <EmbeddedResource Include="Resources\barback.png" />
   216     <EmbeddedResource Include="Resources\barblue.png" />
   217     <EmbeddedResource Include="Resources\gadget.png" />
   218   </ItemGroup>
   219   <ItemGroup>
   220     <EmbeddedResource Include="Resources\level.png" />
   221   </ItemGroup>
   222   <ItemGroup>
   223     <EmbeddedResource Include="Resources\power.png" />
   224   </ItemGroup>
   225   <ItemGroup>
   226     <EmbeddedResource Include="Resources\data.png" />
   227   </ItemGroup>
   228   <Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
   229   <ProjectExtensions>
   230     <VisualStudio AllowExistingFolder="true" />
   231   </ProjectExtensions>
   232   <PropertyGroup>
   233     <PreBuildEvent>
   234     </PreBuildEvent>
   235     <PostBuildEvent>copy "$(ProjectDir)External\*.*" "$(TargetDir)"
   236 copy "$(ProjectDir)Licenses\*.*" "$(TargetDir)"</PostBuildEvent>
   237   </PropertyGroup>
   238 </Project>