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

Visual Application Launcher

Rate me:
Please Sign up or sign in to vote.
4.91/5 (37 votes)
23 Jan 2012CPOL23 min read 107.9K   3.7K   116  
A WinForms UI using WCF services, Entity Framework, repository data access, repository caching, Unit of Work, Dependency Injection, and every other buzz work you can think of!
<?xml version="1.0" encoding="utf-8"?>
<Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003" ToolsVersion="4.0">
  <PropertyGroup>
    <ProjectType>Local</ProjectType>
    <ProductVersion>8.0.50727</ProductVersion>
    <SchemaVersion>2.0</SchemaVersion>
    <ProjectGuid>{A0DCA937-8971-40F7-9EF2-2B43BA63A7EA}</ProjectGuid>
    <SccProjectName>
    </SccProjectName>
    <SccLocalPath>
    </SccLocalPath>
    <SccProvider>
    </SccProvider>
    <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
    <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
    <ApplicationIcon>VAL.ico</ApplicationIcon>
    <AssemblyKeyContainerName>
    </AssemblyKeyContainerName>
    <AssemblyName>VAL</AssemblyName>
    <AssemblyOriginatorKeyFile>
    </AssemblyOriginatorKeyFile>
    <DefaultClientScript>JScript</DefaultClientScript>
    <DefaultHTMLPageLayout>Grid</DefaultHTMLPageLayout>
    <DefaultTargetSchema>IE50</DefaultTargetSchema>
    <DelaySign>false</DelaySign>
    <OutputType>WinExe</OutputType>
    <RootNamespace>VAL</RootNamespace>
    <RunPostBuildEvent>OnBuildSuccess</RunPostBuildEvent>
    <StartupObject>VAL.Program</StartupObject>
    <FileUpgradeFlags>
    </FileUpgradeFlags>
    <UpgradeBackupLocation>
    </UpgradeBackupLocation>
    <TargetFrameworkVersion>v4.0</TargetFrameworkVersion>
    <OldToolsVersion>2.0</OldToolsVersion>
    <SccAuxPath />
    <PublishUrl>http://localhost/VAL/</PublishUrl>
    <Install>true</Install>
    <InstallFrom>Web</InstallFrom>
    <UpdateEnabled>true</UpdateEnabled>
    <UpdateMode>Foreground</UpdateMode>
    <UpdateInterval>7</UpdateInterval>
    <UpdateIntervalUnits>Days</UpdateIntervalUnits>
    <UpdatePeriodically>false</UpdatePeriodically>
    <UpdateRequired>false</UpdateRequired>
    <MapFileExtensions>true</MapFileExtensions>
    <ApplicationRevision>0</ApplicationRevision>
    <ApplicationVersion>1.0.0.%2a</ApplicationVersion>
    <IsWebBootstrapper>true</IsWebBootstrapper>
    <UseApplicationTrust>false</UseApplicationTrust>
    <BootstrapperEnabled>true</BootstrapperEnabled>
    <TargetFrameworkProfile />
  </PropertyGroup>
  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
    <OutputPath>bin\Debug\</OutputPath>
    <AllowUnsafeBlocks>false</AllowUnsafeBlocks>
    <BaseAddress>285212672</BaseAddress>
    <CheckForOverflowUnderflow>false</CheckForOverflowUnderflow>
    <ConfigurationOverrideFile>
    </ConfigurationOverrideFile>
    <DefineConstants>DEBUG;TRACE</DefineConstants>
    <DocumentationFile>VAL.xml</DocumentationFile>
    <DebugSymbols>true</DebugSymbols>
    <FileAlignment>4096</FileAlignment>
    <NoStdLib>false</NoStdLib>
    <NoWarn>
    </NoWarn>
    <Optimize>false</Optimize>
    <RegisterForComInterop>false</RegisterForComInterop>
    <RemoveIntegerChecks>false</RemoveIntegerChecks>
    <TreatWarningsAsErrors>false</TreatWarningsAsErrors>
    <WarningLevel>4</WarningLevel>
    <DebugType>full</DebugType>
    <ErrorReport>prompt</ErrorReport>
  </PropertyGroup>
  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
    <OutputPath>bin\Release\</OutputPath>
    <AllowUnsafeBlocks>false</AllowUnsafeBlocks>
    <BaseAddress>285212672</BaseAddress>
    <CheckForOverflowUnderflow>false</CheckForOverflowUnderflow>
    <ConfigurationOverrideFile>
    </ConfigurationOverrideFile>
    <DefineConstants>TRACE</DefineConstants>
    <DocumentationFile>
    </DocumentationFile>
    <DebugSymbols>false</DebugSymbols>
    <FileAlignment>4096</FileAlignment>
    <NoStdLib>false</NoStdLib>
    <NoWarn>
    </NoWarn>
    <Optimize>true</Optimize>
    <RegisterForComInterop>false</RegisterForComInterop>
    <RemoveIntegerChecks>false</RemoveIntegerChecks>
    <TreatWarningsAsErrors>false</TreatWarningsAsErrors>
    <WarningLevel>4</WarningLevel>
    <DebugType>none</DebugType>
    <ErrorReport>prompt</ErrorReport>
  </PropertyGroup>
  <ItemGroup>
    <ProjectReference Include="..\VAL.Common\VAL.Common.csproj">
      <Name>VAL.Common</Name>
      <Project>{701471E7-47CE-48E4-A1E4-4C68B0610C9C}</Project>
      <Package>{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}</Package>
    </ProjectReference>
    <ProjectReference Include="..\VAL.Contracts\VAL.Contracts.csproj">
      <Project>{0C4B2FA2-4514-4EB0-942B-95E13ABC0E9E}</Project>
      <Name>VAL.Contracts</Name>
    </ProjectReference>
    <ProjectReference Include="..\VAL.Controls\VAL.Controls.csproj">
      <Name>VAL.Controls</Name>
      <Project>{78746910-AD6C-4797-975E-591B4407388D}</Project>
      <Package>{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}</Package>
    </ProjectReference>
    <ProjectReference Include="..\VAL.Model\VAL.Model.csproj">
      <Project>{5778566D-301A-4EEE-88FC-83B5E593799E}</Project>
      <Name>VAL.Model</Name>
    </ProjectReference>
    <Reference Include="log4net, Version=1.2.10.0, Culture=neutral, processorArchitecture=MSIL">
      <SpecificVersion>False</SpecificVersion>
      <HintPath>..\ProjectReferences\log4net.dll</HintPath>
    </Reference>
    <Reference Include="StructureMap">
      <HintPath>..\ProjectReferences\StructureMap.dll</HintPath>
    </Reference>
    <Reference Include="System">
      <Name>System</Name>
    </Reference>
    <Reference Include="System.configuration" />
    <Reference Include="System.Data">
      <Name>System.Data</Name>
    </Reference>
    <Reference Include="System.Design">
      <Name>System.Design</Name>
    </Reference>
    <Reference Include="System.DirectoryServices" />
    <Reference Include="System.Drawing">
      <Name>System.Drawing</Name>
    </Reference>
    <Reference Include="System.ServiceModel" />
    <Reference Include="System.Windows.Forms">
      <Name>System.Windows.Forms</Name>
    </Reference>
    <Reference Include="System.Xml">
      <Name>System.XML</Name>
    </Reference>
  </ItemGroup>
  <ItemGroup>
    <Compile Include="ActiveDirectoryUser.cs" />
    <Compile Include="WCF Client Service Helpers\AdministratorService.cs" />
    <Compile Include="Admin Screens\AdminWindow.cs">
      <SubType>Form</SubType>
    </Compile>
    <Compile Include="Admin Screens\AdminWindow.Designer.cs">
      <DependentUpon>AdminWindow.cs</DependentUpon>
    </Compile>
    <Compile Include="AssemblyInfo.cs">
      <SubType>Code</SubType>
    </Compile>
    <Compile Include="Binding.cs" />
    <Compile Include="BindingProperties.cs" />
    <Compile Include="ColourPickerWindow.cs">
      <SubType>Form</SubType>
    </Compile>
    <Compile Include="ColourPickerWindow.Designer.cs">
      <DependentUpon>ColourPickerWindow.cs</DependentUpon>
    </Compile>
    <Compile Include="CurrentSession.cs" />
    <Compile Include="GroupSelectedEventArgs.cs" />
    <Compile Include="Program.cs">
      <SubType>Code</SubType>
    </Compile>
    <Compile Include="FileInformation.cs">
      <SubType>Form</SubType>
    </Compile>
    <Compile Include="FileInformation.Designer.cs">
      <DependentUpon>FileInformation.cs</DependentUpon>
    </Compile>
    <Compile Include="FileLoadProgressState.cs" />
    <Compile Include="Admin Screens\FileMaintenance.cs">
      <SubType>Form</SubType>
    </Compile>
    <Compile Include="Admin Screens\FileMaintenance.Designer.cs">
      <DependentUpon>FileMaintenance.cs</DependentUpon>
    </Compile>
    <Compile Include="Admin Screens\FindObjects.cs">
      <SubType>Form</SubType>
    </Compile>
    <Compile Include="Admin Screens\FindObjects.Designer.cs">
      <DependentUpon>FindObjects.cs</DependentUpon>
    </Compile>
    <Compile Include="Admin Screens\GroupDefinition.cs">
      <SubType>Form</SubType>
    </Compile>
    <Compile Include="Admin Screens\GroupDefinition.Designer.cs">
      <DependentUpon>GroupDefinition.cs</DependentUpon>
    </Compile>
    <Compile Include="Admin Screens\GroupSelection.cs">
      <SubType>Form</SubType>
    </Compile>
    <Compile Include="Admin Screens\GroupSelection.Designer.cs">
      <DependentUpon>GroupSelection.cs</DependentUpon>
    </Compile>
    <Compile Include="Admin Screens\GroupTypeMaintenance.cs">
      <SubType>Form</SubType>
    </Compile>
    <Compile Include="Admin Screens\GroupTypeMaintenance.Designer.cs">
      <DependentUpon>GroupTypeMaintenance.cs</DependentUpon>
    </Compile>
    <Compile Include="IconConverter.cs" />
    <Compile Include="KnownExplorerFile.cs" />
    <Compile Include="Launcher.cs">
      <SubType>Code</SubType>
    </Compile>
    <Compile Include="MainWindow.cs">
      <SubType>Form</SubType>
    </Compile>
    <Compile Include="MainWindow.Designer.cs">
      <DependentUpon>MainWindow.cs</DependentUpon>
    </Compile>
    <Compile Include="Messaging.cs" />
    <Compile Include="Admin Screens\MultiSelect.cs">
      <SubType>Form</SubType>
    </Compile>
    <Compile Include="Admin Screens\MultiSelect.Designer.cs">
      <DependentUpon>MultiSelect.cs</DependentUpon>
    </Compile>
    <Compile Include="NativeMethods.cs" />
    <Compile Include="Admin Screens\NewUserWizard.cs">
      <SubType>Form</SubType>
    </Compile>
    <Compile Include="Admin Screens\NewUserWizard.Designer.cs">
      <DependentUpon>NewUserWizard.cs</DependentUpon>
    </Compile>
    <Compile Include="PersistWindowState.cs" />
    <Compile Include="Properties\Resources.Designer.cs">
      <AutoGen>True</AutoGen>
      <DesignTime>True</DesignTime>
      <DependentUpon>Resources.resx</DependentUpon>
    </Compile>
    <Compile Include="SplashScreen.cs">
      <SubType>Form</SubType>
    </Compile>
    <Compile Include="WCF Client Service Helpers\StandardUserService.cs" />
    <Compile Include="Admin Screens\UserMaintenance.cs">
      <SubType>Form</SubType>
    </Compile>
    <Compile Include="Admin Screens\UserMaintenance.Designer.cs">
      <DependentUpon>UserMaintenance.cs</DependentUpon>
    </Compile>
    <Compile Include="UserOptions.cs">
      <SubType>Code</SubType>
    </Compile>
    <Compile Include="Admin Screens\UserPicker.cs">
      <SubType>Form</SubType>
    </Compile>
    <Compile Include="Admin Screens\UserPicker.designer.cs">
      <DependentUpon>UserPicker.cs</DependentUpon>
    </Compile>
    <Compile Include="UserSettings.cs">
      <SubType>Form</SubType>
    </Compile>
    <Compile Include="UserSettings.Designer.cs">
      <DependentUpon>UserSettings.cs</DependentUpon>
    </Compile>
    <Compile Include="WaitModal.cs">
      <SubType>Form</SubType>
    </Compile>
    <Compile Include="WaitModal.Designer.cs">
      <DependentUpon>WaitModal.cs</DependentUpon>
    </Compile>
    <Compile Include="WCF Client Service Helpers\WCFServiceWrapper.cs" />
    <Compile Include="WorkgroupHelper.cs">
      <SubType>Code</SubType>
    </Compile>
    <EmbeddedResource Include="Admin Screens\AdminWindow.resx">
      <DependentUpon>AdminWindow.cs</DependentUpon>
    </EmbeddedResource>
    <EmbeddedResource Include="ColourPickerWindow.resx">
      <DependentUpon>ColourPickerWindow.cs</DependentUpon>
    </EmbeddedResource>
    <EmbeddedResource Include="FileInformation.resx">
      <DependentUpon>FileInformation.cs</DependentUpon>
    </EmbeddedResource>
    <EmbeddedResource Include="Admin Screens\FileMaintenance.resx">
      <DependentUpon>FileMaintenance.cs</DependentUpon>
    </EmbeddedResource>
    <EmbeddedResource Include="Admin Screens\FindObjects.resx">
      <DependentUpon>FindObjects.cs</DependentUpon>
    </EmbeddedResource>
    <EmbeddedResource Include="Admin Screens\GroupDefinition.resx">
      <DependentUpon>GroupDefinition.cs</DependentUpon>
    </EmbeddedResource>
    <EmbeddedResource Include="Admin Screens\GroupSelection.resx">
      <DependentUpon>GroupSelection.cs</DependentUpon>
    </EmbeddedResource>
    <EmbeddedResource Include="Admin Screens\GroupTypeMaintenance.resx">
      <DependentUpon>GroupTypeMaintenance.cs</DependentUpon>
    </EmbeddedResource>
    <EmbeddedResource Include="MainWindow.resx">
      <DependentUpon>MainWindow.cs</DependentUpon>
    </EmbeddedResource>
    <EmbeddedResource Include="Admin Screens\MultiSelect.resx">
      <DependentUpon>MultiSelect.cs</DependentUpon>
    </EmbeddedResource>
    <EmbeddedResource Include="Admin Screens\NewUserWizard.resx">
      <SubType>Designer</SubType>
      <DependentUpon>NewUserWizard.cs</DependentUpon>
    </EmbeddedResource>
    <EmbeddedResource Include="Properties\Resources.resx">
      <SubType>Designer</SubType>
      <Generator>ResXFileCodeGenerator</Generator>
      <LastGenOutput>Resources.Designer.cs</LastGenOutput>
    </EmbeddedResource>
    <EmbeddedResource Include="SplashScreen.resx">
      <DependentUpon>SplashScreen.cs</DependentUpon>
    </EmbeddedResource>
    <EmbeddedResource Include="Admin Screens\UserMaintenance.resx">
      <DependentUpon>UserMaintenance.cs</DependentUpon>
    </EmbeddedResource>
    <EmbeddedResource Include="Admin Screens\UserPicker.resx">
      <DependentUpon>UserPicker.cs</DependentUpon>
      <SubType>Designer</SubType>
    </EmbeddedResource>
    <EmbeddedResource Include="UserSettings.resx">
      <DependentUpon>UserSettings.cs</DependentUpon>
    </EmbeddedResource>
    <EmbeddedResource Include="WaitModal.resx">
      <DependentUpon>WaitModal.cs</DependentUpon>
    </EmbeddedResource>
    <None Include="App.config">
      <SubType>Designer</SubType>
    </None>
    <None Include="Resources\UserIcon.ico" />
    <None Include="Resources\40_ico_1.ico" />
    <None Include="Resources\pleasewait.gif" />
    <None Include="Resources\user_group.png" />
    <None Include="Resources\Help_32x32.png" />
    <None Include="Resources\Properties_32x32.png" />
    <None Include="Resources\png_file.png" />
    <None Include="Resources\wizard-32x32.png" />
    <None Include="Resources\New_32x32.png" />
    <None Include="Resources\application_view_icons.png" />
    <None Include="Resources\application_view_list.png" />
    <None Include="Resources\application_view_detail.png" />
    <None Include="Resources\table_refresh.png" />
    <None Include="Resources\help.png" />
    <None Include="Resources\information.png" />
    <None Include="Resources\VAL-Splash.png" />
    <None Include="Resources\admin.png" />
    <Content Include="VAL.ico" />
  </ItemGroup>
  <ItemGroup>
    <BootstrapperPackage Include="Microsoft.Net.Client.3.5">
      <Visible>False</Visible>
      <ProductName>.NET Framework 3.5 SP1 Client Profile</ProductName>
      <Install>false</Install>
    </BootstrapperPackage>
    <BootstrapperPackage Include="Microsoft.Net.Framework.3.5.SP1">
      <Visible>False</Visible>
      <ProductName>.NET Framework 3.5 SP1</ProductName>
      <Install>true</Install>
    </BootstrapperPackage>
    <BootstrapperPackage Include="Microsoft.Windows.Installer.3.1">
      <Visible>False</Visible>
      <ProductName>Windows Installer 3.1</ProductName>
      <Install>true</Install>
    </BootstrapperPackage>
  </ItemGroup>
  <Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
  <PropertyGroup>
    <PreBuildEvent>
    </PreBuildEvent>
    <PostBuildEvent>
    </PostBuildEvent>
  </PropertyGroup>
</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)


Written By
Technical Lead
United Kingdom United Kingdom
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions