Click here to Skip to main content
15,895,011 members
Articles / Desktop Programming / Windows Forms

Overlay Tools

Rate me:
Please Sign up or sign in to vote.
4.92/5 (22 votes)
5 Oct 20075 min read 171K   8.8K   63  
..using DirectDraw - A tool for displaying a customisable overlay
<?xml version="1.0" encoding="utf-8"?>
<Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
  <PropertyGroup>
    <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
    <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
    <ProductVersion>8.0.50727</ProductVersion>
    <SchemaVersion>2.0</SchemaVersion>
    <ProjectGuid>{08B76389-DE59-4E24-94F6-06CA0D18EBF6}</ProjectGuid>
    <OutputType>WinExe</OutputType>
    <AppDesignerFolder>Properties</AppDesignerFolder>
    <RootNamespace>OverlayTools</RootNamespace>
    <AssemblyName>OverlayTools</AssemblyName>
    <StartupObject>
    </StartupObject>
    <ApplicationIcon>otheroptions.ico</ApplicationIcon>
  </PropertyGroup>
  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
    <DebugSymbols>true</DebugSymbols>
    <DebugType>full</DebugType>
    <Optimize>false</Optimize>
    <OutputPath>bin\Debug\</OutputPath>
    <DefineConstants>DEBUG;TRACE</DefineConstants>
    <ErrorReport>prompt</ErrorReport>
    <WarningLevel>4</WarningLevel>
  </PropertyGroup>
  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
    <DebugType>pdbonly</DebugType>
    <Optimize>true</Optimize>
    <OutputPath>bin\Release\</OutputPath>
    <DefineConstants>TRACE</DefineConstants>
    <ErrorReport>prompt</ErrorReport>
    <WarningLevel>4</WarningLevel>
  </PropertyGroup>
  <Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
  <!-- To modify your build process, add your task inside one of the targets below and uncomment it. 
       Other similar extension points exist, see Microsoft.Common.targets.
  <Target Name="BeforeBuild">
  </Target>
  <Target Name="AfterBuild">
  </Target>
  -->
  <ItemGroup>
    <ProjectReference Include="..\OverlayLib\OverlayLib.csproj">
      <Project>{E09A4038-A542-42C0-AFF6-7FFA592F7AB3}</Project>
      <Name>OverlayLib</Name>
    </ProjectReference>
  </ItemGroup>
  <ItemGroup>
    <Reference Include="System" />
    <Reference Include="System.Data" />
    <Reference Include="System.Drawing" />
    <Reference Include="System.Windows.Forms" />
    <Reference Include="System.Xml" />
  </ItemGroup>
  <ItemGroup>
    <Compile Include="Helpers\Draw.cs" />
    <Compile Include="Helpers\Utils.cs" />
    <Compile Include="PluginPanel.cs">
      <SubType>UserControl</SubType>
    </Compile>
    <Compile Include="PluginPanel.Designer.cs">
      <DependentUpon>PluginPanel.cs</DependentUpon>
    </Compile>
    <Compile Include="Plugins\APlugin.cs" />
    <Compile Include="Helpers\INIStreamer.cs" />
    <Compile Include="Plugins\ATIToolPlugin.cs" />
    <Compile Include="Plugins\ColorTestPlugin.cs" />
    <Compile Include="Plugins\CPUPlugin.cs" />
    <Compile Include="Plugins\GeneralPlugin.cs" />
    <Compile Include="Plugins\IPlugin.cs" />
    <Compile Include="MainForm.cs">
      <SubType>Form</SubType>
    </Compile>
    <Compile Include="MainForm.Designer.cs">
      <DependentUpon>MainForm.cs</DependentUpon>
    </Compile>
    <Compile Include="Plugins\MemoryPlugin.cs" />
    <Compile Include="Plugins\MessagePlugin.cs" />
    <Compile Include="Plugins\PagePlugin.cs" />
    <Compile Include="Plugins\TimePlugin.cs" />
    <Compile Include="Plugins\VisualPlugin.cs" />
    <Compile Include="Program.cs" />
    <Compile Include="Helpers\SaveAttribute.cs" />
    <Compile Include="Properties\AssemblyInfo.cs" />
  </ItemGroup>
  <ItemGroup>
    <EmbeddedResource Include="MainForm.resx">
      <SubType>Designer</SubType>
      <DependentUpon>MainForm.cs</DependentUpon>
    </EmbeddedResource>
    <EmbeddedResource Include="PluginPanel.resx">
      <SubType>Designer</SubType>
      <DependentUpon>PluginPanel.cs</DependentUpon>
    </EmbeddedResource>
  </ItemGroup>
  <ItemGroup>
    <Content Include="otheroptions.ico" />
  </ItemGroup>
</Project>

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

A list of licenses authors might use can be found here



Comments and Discussions