Click here to Skip to main content
15,886,199 members
Articles / Database Development / SQL Server / SQL Server 2008

A simple example of SQL server admin tools.

Rate me:
Please Sign up or sign in to vote.
4.90/5 (43 votes)
13 Sep 2009CPOL8 min read 109.5K   5K   115  
A simple example of SQL server admin tools.
<Project ToolsVersion="3.5" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
  <PropertyGroup>
    <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
    <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
    <ProductVersion>9.0.30729</ProductVersion>
    <SchemaVersion>2.0</SchemaVersion>
    <ProjectGuid>{11602B86-A551-41C8-82B2-899E38E13F1E}</ProjectGuid>
    <ProjectTypeGuids>{349c5851-65df-11da-9384-00065b846f21};{fae04ec0-301f-11d3-bf4b-00c04f79efbc}</ProjectTypeGuids>
    <OutputType>Library</OutputType>
    <AppDesignerFolder>Properties</AppDesignerFolder>
    <RootNamespace>GUInterface</RootNamespace>
    <AssemblyName>GUInterface</AssemblyName>
    <TargetFrameworkVersion>v3.5</TargetFrameworkVersion>
  </PropertyGroup>
  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
    <DebugSymbols>true</DebugSymbols>
    <DebugType>full</DebugType>
    <Optimize>false</Optimize>
    <OutputPath>bin\</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\</OutputPath>
    <DefineConstants>TRACE</DefineConstants>
    <ErrorReport>prompt</ErrorReport>
    <WarningLevel>4</WarningLevel>
  </PropertyGroup>
  <ItemGroup>
    <Reference Include="System" />
    <Reference Include="System.Data" />
    <Reference Include="System.Core">
      <RequiredTargetFramework>3.5</RequiredTargetFramework>
    </Reference>
    <Reference Include="System.Data.DataSetExtensions">
      <RequiredTargetFramework>3.5</RequiredTargetFramework>
    </Reference>
    <Reference Include="System.Web.Extensions">
      <RequiredTargetFramework>3.5</RequiredTargetFramework>
    </Reference>
    <Reference Include="System.Xml.Linq">
      <RequiredTargetFramework>3.5</RequiredTargetFramework>
    </Reference>
    <Reference Include="System.Drawing" />
    <Reference Include="System.Web" />
    <Reference Include="System.Xml" />
    <Reference Include="System.Configuration" />
    <Reference Include="System.Web.Services" />
    <Reference Include="System.EnterpriseServices" />
    <Reference Include="System.Web.Mobile" />
  </ItemGroup>
  <ItemGroup>
    <Content Include="App_Themes\SQL\Images\database.png" />
    <Content Include="App_Themes\SQL\Images\dbfiles.png" />
    <Content Include="App_Themes\SQL\Images\dbObj.png" />
    <Content Include="App_Themes\SQL\Images\DBServer.png" />
    <Content Include="App_Themes\SQL\Images\dbsvr.png" />
    <Content Include="App_Themes\SQL\Images\Folder.png" />
    <Content Include="App_Themes\SQL\Images\Function.png" />
    <Content Include="App_Themes\SQL\Images\Help.png" />
    <Content Include="App_Themes\SQL\Images\sp.png" />
    <Content Include="App_Themes\SQL\Images\SQL_Script.png" />
    <Content Include="App_Themes\SQL\Images\Tables.png" />
    <Content Include="App_Themes\SQL\Images\vw.png" />
    <Content Include="Default.aspx" />
    <Content Include="Graphics\Images\Calendar.png" />
    <Content Include="Graphics\Images\Delete.png" />
    <Content Include="Graphics\Images\First.png" />
    <Content Include="Graphics\Images\Help.png" />
    <Content Include="Graphics\Images\HomeHS.png" />
    <Content Include="Graphics\Images\Last.png" />
    <Content Include="Graphics\Images\LeafNodes.png" />
    <Content Include="Graphics\Images\NextPage.png" />
    <Content Include="Graphics\Images\ParentNodes.png" />
    <Content Include="Graphics\Images\PreviousPage.png" />
    <Content Include="Graphics\LayoutImages\loading.gif" />
    <Content Include="Graphics\LayoutImages\Server.png" />
    <Content Include="Graphics\LayoutImages\status.jpg" />
    <Content Include="Graphics\LayoutImages\tb.png" />
    <Content Include="Graphics\LayoutImages\ToolbarBG.gif" />
    <Content Include="Graphics\LayoutImages\top_banner.jpg" />
    <Content Include="Graphics\LayoutImages\ULogin.png" />
    <Content Include="Graphics\LayoutImages\UT.png" />
    <Content Include="Login.aspx" />
    <Content Include="Style\SqlManager.css" />
    <Content Include="Web.config" />
  </ItemGroup>
  <ItemGroup>
    <Compile Include="ClsGlobal.cs" />
    <Compile Include="ClsScript.cs" />
    <Compile Include="Default.aspx.cs">
      <DependentUpon>Default.aspx</DependentUpon>
      <SubType>ASPXCodeBehind</SubType>
    </Compile>
    <Compile Include="Default.aspx.designer.cs">
      <DependentUpon>Default.aspx</DependentUpon>
    </Compile>
    <Compile Include="Help.aspx.cs">
      <DependentUpon>Help.aspx</DependentUpon>
      <SubType>ASPXCodeBehind</SubType>
    </Compile>
    <Compile Include="Help.aspx.designer.cs">
      <DependentUpon>Help.aspx</DependentUpon>
    </Compile>
    <Compile Include="Login.aspx.cs">
      <DependentUpon>Login.aspx</DependentUpon>
      <SubType>ASPXCodeBehind</SubType>
    </Compile>
    <Compile Include="Login.aspx.designer.cs">
      <DependentUpon>Login.aspx</DependentUpon>
    </Compile>
    <Compile Include="MessageBox.cs" />
    <Compile Include="Pages\Editor.aspx.cs">
      <DependentUpon>Editor.aspx</DependentUpon>
      <SubType>ASPXCodeBehind</SubType>
    </Compile>
    <Compile Include="Pages\Editor.aspx.designer.cs">
      <DependentUpon>Editor.aspx</DependentUpon>
    </Compile>
    <Compile Include="Pages\SqlEditor.aspx.cs">
      <DependentUpon>SqlEditor.aspx</DependentUpon>
      <SubType>ASPXCodeBehind</SubType>
    </Compile>
    <Compile Include="Pages\SqlEditor.aspx.designer.cs">
      <DependentUpon>SqlEditor.aspx</DependentUpon>
    </Compile>
    <Compile Include="Properties\AssemblyInfo.cs" />
    <Compile Include="SqlManager.Master.cs">
      <DependentUpon>SqlManager.Master</DependentUpon>
      <SubType>ASPXCodeBehind</SubType>
    </Compile>
    <Compile Include="SqlManager.Master.designer.cs">
      <DependentUpon>SqlManager.Master</DependentUpon>
    </Compile>
  </ItemGroup>
  <ItemGroup>
    <ProjectReference Include="..\DAL\DAL.csproj">
      <Project>{A5581E8F-2604-4CB0-A037-B70878BA083B}</Project>
      <Name>DAL</Name>
    </ProjectReference>
    <ProjectReference Include="..\Tools\Tools.csproj">
      <Project>{7FBA9721-CAC6-4E2F-948C-49CD1968F19A}</Project>
      <Name>Tools</Name>
    </ProjectReference>
  </ItemGroup>
  <ItemGroup>
    <None Include="GUIClassDiagram.cd" />
    <Content Include="Graphics\LayoutImages\QueryEditor.png" />
    <Content Include="Help.aspx" />
    <Content Include="Pages\Editor.aspx" />
    <Content Include="Pages\SqlEditor.aspx" />
    <Content Include="SqlManager.Master" />
  </ItemGroup>
  <ItemGroup>
    <Folder Include="App_Data\" />
  </ItemGroup>
  <Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
  <Import Project="$(MSBuildExtensionsPath)\Microsoft\VisualStudio\v9.0\WebApplications\Microsoft.WebApplication.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>
  -->
  <ProjectExtensions>
    <VisualStudio>
      <FlavorProperties GUID="{349c5851-65df-11da-9384-00065b846f21}">
        <WebProjectProperties>
          <UseIIS>False</UseIIS>
          <AutoAssignPort>True</AutoAssignPort>
          <DevelopmentServerPort>1130</DevelopmentServerPort>
          <DevelopmentServerVPath>/</DevelopmentServerVPath>
          <IISUrl>
          </IISUrl>
          <NTLMAuthentication>False</NTLMAuthentication>
          <UseCustomServer>False</UseCustomServer>
          <CustomServerUrl>
          </CustomServerUrl>
          <SaveServerSettingsInUserFile>False</SaveServerSettingsInUserFile>
        </WebProjectProperties>
      </FlavorProperties>
    </VisualStudio>
  </ProjectExtensions>
</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, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



Comments and Discussions