Click here to Skip to main content
15,885,915 members
Articles / DevOps / Unit Testing

Dependency Injection and Unit Of Work using Castle Windsor and NHibernate

Rate me:
Please Sign up or sign in to vote.
4.94/5 (75 votes)
8 May 2014CPOL11 min read 266.7K   5.2K   139  
An implementation of dependency injection, repository and unit of work patterns using Castle Windsor and NHibernate.
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="4.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
  <Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
  <PropertyGroup>
    <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
    <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
    <ProductVersion>
    </ProductVersion>
    <SchemaVersion>2.0</SchemaVersion>
    <ProjectGuid>{85258F30-E38E-4C59-88B2-CB9EE5493C7D}</ProjectGuid>
    <ProjectTypeGuids>{E3E379DF-F4C6-4180-9B81-6769533ABE47};{349c5851-65df-11da-9384-00065b846f21};{fae04ec0-301f-11d3-bf4b-00c04f79efbc}</ProjectTypeGuids>
    <OutputType>Library</OutputType>
    <AppDesignerFolder>Properties</AppDesignerFolder>
    <RootNamespace>Hik.PhoneBook.Web</RootNamespace>
    <AssemblyName>PhoneBook.Web</AssemblyName>
    <TargetFrameworkVersion>v4.0</TargetFrameworkVersion>
    <MvcBuildViews>false</MvcBuildViews>
    <UseIISExpress>true</UseIISExpress>
    <IISExpressSSLPort />
    <IISExpressAnonymousAuthentication />
    <IISExpressWindowsAuthentication />
    <IISExpressUseClassicPipelineMode />
    <SolutionDir Condition="$(SolutionDir) == '' Or $(SolutionDir) == '*Undefined*'">..\</SolutionDir>
    <RestorePackages>true</RestorePackages>
  </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="Antlr3.Runtime">
      <HintPath>..\packages\WebGrease.1.3.0\lib\Antlr3.Runtime.dll</HintPath>
    </Reference>
    <Reference Include="Castle.Core">
      <HintPath>..\packages\Castle.Core.3.1.0\lib\net40-client\Castle.Core.dll</HintPath>
    </Reference>
    <Reference Include="Castle.Windsor">
      <HintPath>..\packages\Castle.Windsor.3.1.0\lib\net40\Castle.Windsor.dll</HintPath>
    </Reference>
    <Reference Include="FluentNHibernate">
      <HintPath>..\packages\FluentNHibernate.1.3.0.733\lib\FluentNHibernate.dll</HintPath>
    </Reference>
    <Reference Include="Iesi.Collections">
      <HintPath>..\packages\Iesi.Collections.3.2.0.4000\lib\Net35\Iesi.Collections.dll</HintPath>
    </Reference>
    <Reference Include="Microsoft.CSharp" />
    <Reference Include="Newtonsoft.Json, Version=4.5.0.0, Culture=neutral, PublicKeyToken=30ad4fe6b2a6aeed, processorArchitecture=MSIL">
      <SpecificVersion>False</SpecificVersion>
      <HintPath>..\packages\Newtonsoft.Json.4.5.11\lib\net40\Newtonsoft.Json.dll</HintPath>
    </Reference>
    <Reference Include="NHibernate">
      <HintPath>..\packages\NHibernate.3.3.2.4000\lib\Net35\NHibernate.dll</HintPath>
    </Reference>
    <Reference Include="System" />
    <Reference Include="System.Data" />
    <Reference Include="System.Data.Entity" />
    <Reference Include="System.Drawing" />
    <Reference Include="System.Web.DynamicData" />
    <Reference Include="System.Web.Entity" />
    <Reference Include="System.Web.ApplicationServices" />
    <Reference Include="System.ComponentModel.DataAnnotations" />
    <Reference Include="System.Core" />
    <Reference Include="System.Data.DataSetExtensions" />
    <Reference Include="System.Web.Razor, Version=2.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
      <Private>True</Private>
      <HintPath>..\packages\Microsoft.AspNet.Razor.2.0.20715.0\lib\net40\System.Web.Razor.dll</HintPath>
    </Reference>
    <Reference Include="System.Xml.Linq" />
    <Reference Include="System.Web" />
    <Reference Include="System.Web.Extensions" />
    <Reference Include="System.Web.Abstractions" />
    <Reference Include="System.Web.Routing" />
    <Reference Include="System.Xml" />
    <Reference Include="System.Configuration" />
    <Reference Include="System.Web.Services" />
    <Reference Include="System.EnterpriseServices" />
    <Reference Include="Microsoft.Web.Infrastructure, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
      <Private>True</Private>
      <HintPath>..\packages\Microsoft.Web.Infrastructure.1.0.0.0\lib\net40\Microsoft.Web.Infrastructure.dll</HintPath>
    </Reference>
    <Reference Include="System.Net.Http">
      <Private>True</Private>
      <HintPath>..\packages\Microsoft.Net.Http.2.0.20710.0\lib\net40\System.Net.Http.dll</HintPath>
    </Reference>
    <Reference Include="System.Net.Http.Formatting, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
      <HintPath>..\packages\Microsoft.AspNet.WebApi.Client.4.0.20710.0\lib\net40\System.Net.Http.Formatting.dll</HintPath>
    </Reference>
    <Reference Include="System.Net.Http.WebRequest">
      <Private>True</Private>
      <HintPath>..\packages\Microsoft.Net.Http.2.0.20710.0\lib\net40\System.Net.Http.WebRequest.dll</HintPath>
    </Reference>
    <Reference Include="System.Web.Http, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
      <HintPath>..\packages\Microsoft.AspNet.WebApi.Core.4.0.20710.0\lib\net40\System.Web.Http.dll</HintPath>
    </Reference>
    <Reference Include="System.Web.Http.WebHost, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
      <HintPath>..\packages\Microsoft.AspNet.WebApi.WebHost.4.0.20710.0\lib\net40\System.Web.Http.WebHost.dll</HintPath>
    </Reference>
    <Reference Include="System.Web.Mvc, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
      <Private>True</Private>
      <HintPath>..\packages\Microsoft.AspNet.Mvc.4.0.20710.0\lib\net40\System.Web.Mvc.dll</HintPath>
    </Reference>
    <Reference Include="System.Web.Optimization">
      <HintPath>..\packages\Microsoft.AspNet.Web.Optimization.1.0.0\lib\net40\System.Web.Optimization.dll</HintPath>
    </Reference>
    <Reference Include="System.Web.WebPages, Version=2.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
      <Private>True</Private>
      <HintPath>..\packages\Microsoft.AspNet.WebPages.2.0.20710.0\lib\net40\System.Web.WebPages.dll</HintPath>
    </Reference>
    <Reference Include="System.Web.WebPages.Deployment, Version=2.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
      <Private>True</Private>
      <HintPath>..\packages\Microsoft.AspNet.WebPages.2.0.20710.0\lib\net40\System.Web.WebPages.Deployment.dll</HintPath>
    </Reference>
    <Reference Include="System.Web.WebPages.Razor, Version=2.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
      <Private>True</Private>
      <HintPath>..\packages\Microsoft.AspNet.WebPages.2.0.20710.0\lib\net40\System.Web.WebPages.Razor.dll</HintPath>
    </Reference>
    <Reference Include="WebGrease">
      <HintPath>..\packages\WebGrease.1.3.0\lib\WebGrease.dll</HintPath>
    </Reference>
  </ItemGroup>
  <ItemGroup>
    <Compile Include="App_Start\FilterConfig.cs" />
    <Compile Include="App_Start\RouteConfig.cs" />
    <Compile Include="App_Start\WebApiConfig.cs" />
    <Compile Include="Controllers\HomeController.cs" />
    <Compile Include="Dependency\ControllerInstaller.cs" />
    <Compile Include="Dependency\WindsorControllerFactory.cs" />
    <Compile Include="Global.asax.cs">
      <DependentUpon>Global.asax</DependentUpon>
    </Compile>
    <Compile Include="Properties\AssemblyInfo.cs" />
  </ItemGroup>
  <ItemGroup>
    <Content Include="Content\Images\phone.png" />
    <Content Include="Content\site.css" />
    <Content Include="Content\themes\base\images\animated-overlay.gif" />
    <Content Include="Content\themes\base\images\ui-bg_flat_0_aaaaaa_40x100.png" />
    <Content Include="Content\themes\base\images\ui-bg_flat_75_ffffff_40x100.png" />
    <Content Include="Content\themes\base\images\ui-bg_glass_55_fbf9ee_1x400.png" />
    <Content Include="Content\themes\base\images\ui-bg_glass_65_ffffff_1x400.png" />
    <Content Include="Content\themes\base\images\ui-bg_glass_75_dadada_1x400.png" />
    <Content Include="Content\themes\base\images\ui-bg_glass_75_e6e6e6_1x400.png" />
    <Content Include="Content\themes\base\images\ui-bg_glass_95_fef1ec_1x400.png" />
    <Content Include="Content\themes\base\images\ui-bg_highlight-soft_75_cccccc_1x100.png" />
    <Content Include="Content\themes\base\images\ui-icons_222222_256x240.png" />
    <Content Include="Content\themes\base\images\ui-icons_2e83ff_256x240.png" />
    <Content Include="Content\themes\base\images\ui-icons_454545_256x240.png" />
    <Content Include="Content\themes\base\images\ui-icons_888888_256x240.png" />
    <Content Include="Content\themes\base\images\ui-icons_cd0a0a_256x240.png" />
    <Content Include="Content\themes\base\jquery-ui.css" />
    <Content Include="Content\themes\base\jquery.ui.accordion.css" />
    <Content Include="Content\themes\base\jquery.ui.all.css" />
    <Content Include="Content\themes\base\jquery.ui.autocomplete.css" />
    <Content Include="Content\themes\base\jquery.ui.base.css" />
    <Content Include="Content\themes\base\jquery.ui.button.css" />
    <Content Include="Content\themes\base\jquery.ui.core.css" />
    <Content Include="Content\themes\base\jquery.ui.datepicker.css" />
    <Content Include="Content\themes\base\jquery.ui.dialog.css" />
    <Content Include="Content\themes\base\jquery.ui.menu.css" />
    <Content Include="Content\themes\base\jquery.ui.progressbar.css" />
    <Content Include="Content\themes\base\jquery.ui.resizable.css" />
    <Content Include="Content\themes\base\jquery.ui.selectable.css" />
    <Content Include="Content\themes\base\jquery.ui.slider.css" />
    <Content Include="Content\themes\base\jquery.ui.spinner.css" />
    <Content Include="Content\themes\base\jquery.ui.tabs.css" />
    <Content Include="Content\themes\base\jquery.ui.theme.css" />
    <Content Include="Content\themes\base\jquery.ui.tooltip.css" />
    <Content Include="Content\themes\base\minified\images\animated-overlay.gif" />
    <Content Include="Content\themes\base\minified\images\ui-bg_flat_0_aaaaaa_40x100.png" />
    <Content Include="Content\themes\base\minified\images\ui-bg_flat_75_ffffff_40x100.png" />
    <Content Include="Content\themes\base\minified\images\ui-bg_glass_55_fbf9ee_1x400.png" />
    <Content Include="Content\themes\base\minified\images\ui-bg_glass_65_ffffff_1x400.png" />
    <Content Include="Content\themes\base\minified\images\ui-bg_glass_75_dadada_1x400.png" />
    <Content Include="Content\themes\base\minified\images\ui-bg_glass_75_e6e6e6_1x400.png" />
    <Content Include="Content\themes\base\minified\images\ui-bg_glass_95_fef1ec_1x400.png" />
    <Content Include="Content\themes\base\minified\images\ui-bg_highlight-soft_75_cccccc_1x100.png" />
    <Content Include="Content\themes\base\minified\images\ui-icons_222222_256x240.png" />
    <Content Include="Content\themes\base\minified\images\ui-icons_2e83ff_256x240.png" />
    <Content Include="Content\themes\base\minified\images\ui-icons_454545_256x240.png" />
    <Content Include="Content\themes\base\minified\images\ui-icons_888888_256x240.png" />
    <Content Include="Content\themes\base\minified\images\ui-icons_cd0a0a_256x240.png" />
    <Content Include="Content\themes\base\minified\jquery-ui.min.css" />
    <Content Include="Content\themes\base\minified\jquery.ui.accordion.min.css" />
    <Content Include="Content\themes\base\minified\jquery.ui.autocomplete.min.css" />
    <Content Include="Content\themes\base\minified\jquery.ui.button.min.css" />
    <Content Include="Content\themes\base\minified\jquery.ui.core.min.css" />
    <Content Include="Content\themes\base\minified\jquery.ui.datepicker.min.css" />
    <Content Include="Content\themes\base\minified\jquery.ui.dialog.min.css" />
    <Content Include="Content\themes\base\minified\jquery.ui.menu.min.css" />
    <Content Include="Content\themes\base\minified\jquery.ui.progressbar.min.css" />
    <Content Include="Content\themes\base\minified\jquery.ui.resizable.min.css" />
    <Content Include="Content\themes\base\minified\jquery.ui.selectable.min.css" />
    <Content Include="Content\themes\base\minified\jquery.ui.slider.min.css" />
    <Content Include="Content\themes\base\minified\jquery.ui.spinner.min.css" />
    <Content Include="Content\themes\base\minified\jquery.ui.tabs.min.css" />
    <Content Include="Content\themes\base\minified\jquery.ui.theme.min.css" />
    <Content Include="Content\themes\base\minified\jquery.ui.tooltip.min.css" />
    <Content Include="Content\themes\metroblue\images\ui-icons_2d89ef_0.png" />
    <Content Include="Content\themes\metroblue\images\ui-icons_525252_0.png" />
    <Content Include="Content\themes\metroblue\images\ui-icons_66B3FF_0.png" />
    <Content Include="Content\themes\metroblue\images\ui-icons_d4d4d4_0.png" />
    <Content Include="Content\themes\metroblue\images\ui-icons_ffffff_0.png" />
    <Content Include="Content\themes\metroblue\jquery-ui.css" />
    <Content Include="Global.asax" />
    <None Include="Scripts\jquery-1.9.0.intellisense.js" />
    <Content Include="Scripts\jquery-1.9.0.js" />
    <Content Include="Scripts\jquery-1.9.0.min.js" />
    <Content Include="Scripts\jquery-1.9.0.min.map" />
    <Content Include="Scripts\jquery-ui-1.10.0.js" />
    <Content Include="Scripts\jquery-ui-1.10.0.min.js" />
    <Content Include="Scripts\jtable\extensions\jquery.jtable.aspnetpagemethods.js" />
    <Content Include="Scripts\jtable\extensions\jquery.jtable.aspnetpagemethods.min.js" />
    <Content Include="Scripts\jtable\external\json2.js" />
    <Content Include="Scripts\jtable\external\json2.min.js" />
    <Content Include="Scripts\jtable\jquery.jtable.js" />
    <Content Include="Scripts\jtable\jquery.jtable.min.js" />
    <Content Include="Scripts\jtable\localization\jquery.jtable.es.js" />
    <Content Include="Scripts\jtable\localization\jquery.jtable.hu.js" />
    <Content Include="Scripts\jtable\localization\jquery.jtable.it.js" />
    <Content Include="Scripts\jtable\localization\jquery.jtable.lt.js" />
    <Content Include="Scripts\jtable\localization\jquery.jtable.nl-NL.js" />
    <Content Include="Scripts\jtable\localization\jquery.jtable.pl.js" />
    <Content Include="Scripts\jtable\localization\jquery.jtable.pt-BR.js" />
    <Content Include="Scripts\jtable\localization\jquery.jtable.pt-PT.js" />
    <Content Include="Scripts\jtable\localization\jquery.jtable.tr.js" />
    <Content Include="Scripts\jtable\localization\jquery.jtable.vi.js" />
    <Content Include="Scripts\jtable\localization\jquery.jtable.zh-CN.js" />
    <Content Include="Scripts\jtable\themes\basic\close.png" />
    <Content Include="Scripts\jtable\themes\basic\column-asc.png" />
    <Content Include="Scripts\jtable\themes\basic\column-desc.png" />
    <Content Include="Scripts\jtable\themes\basic\column-sortable.png" />
    <Content Include="Scripts\jtable\themes\basic\delete.png" />
    <Content Include="Scripts\jtable\themes\basic\edit.png" />
    <Content Include="Scripts\jtable\themes\basic\jtable_basic.css" />
    <Content Include="Scripts\jtable\themes\basic\jtable_basic.min.css" />
    <Content Include="Scripts\jtable\themes\lightcolor\add.png" />
    <Content Include="Scripts\jtable\themes\lightcolor\bg-thead.png" />
    <Content Include="Scripts\jtable\themes\lightcolor\blue\jtable.css" />
    <Content Include="Scripts\jtable\themes\lightcolor\blue\jtable.min.css" />
    <Content Include="Scripts\jtable\themes\lightcolor\blue\loading.gif" />
    <Content Include="Scripts\jtable\themes\lightcolor\close.png" />
    <Content Include="Scripts\jtable\themes\lightcolor\column-asc.png" />
    <Content Include="Scripts\jtable\themes\lightcolor\column-desc.png" />
    <Content Include="Scripts\jtable\themes\lightcolor\column-sortable.png" />
    <Content Include="Scripts\jtable\themes\lightcolor\delete.png" />
    <Content Include="Scripts\jtable\themes\lightcolor\edit.png" />
    <Content Include="Scripts\jtable\themes\lightcolor\gray\jtable.css" />
    <Content Include="Scripts\jtable\themes\lightcolor\gray\jtable.min.css" />
    <Content Include="Scripts\jtable\themes\lightcolor\gray\loading.gif" />
    <Content Include="Scripts\jtable\themes\lightcolor\green\jtable.css" />
    <Content Include="Scripts\jtable\themes\lightcolor\green\jtable.min.css" />
    <Content Include="Scripts\jtable\themes\lightcolor\green\loading.gif" />
    <Content Include="Scripts\jtable\themes\lightcolor\orange\jtable.css" />
    <Content Include="Scripts\jtable\themes\lightcolor\orange\jtable.min.css" />
    <Content Include="Scripts\jtable\themes\lightcolor\orange\loading.gif" />
    <Content Include="Scripts\jtable\themes\lightcolor\red\jtable.css" />
    <Content Include="Scripts\jtable\themes\lightcolor\red\jtable.min.css" />
    <Content Include="Scripts\jtable\themes\lightcolor\red\loading.gif" />
    <Content Include="Scripts\jtable\themes\metro\add.png" />
    <Content Include="Scripts\jtable\themes\metro\blue\jtable.css" />
    <Content Include="Scripts\jtable\themes\metro\blue\jtable.min.css" />
    <Content Include="Scripts\jtable\themes\metro\blue\loading.gif" />
    <Content Include="Scripts\jtable\themes\metro\brown\jtable.css" />
    <Content Include="Scripts\jtable\themes\metro\brown\jtable.min.css" />
    <Content Include="Scripts\jtable\themes\metro\brown\loading.gif" />
    <Content Include="Scripts\jtable\themes\metro\close.png" />
    <Content Include="Scripts\jtable\themes\metro\column-asc.png" />
    <Content Include="Scripts\jtable\themes\metro\column-desc.png" />
    <Content Include="Scripts\jtable\themes\metro\column-sortable.png" />
    <Content Include="Scripts\jtable\themes\metro\crimson\jtable.css" />
    <Content Include="Scripts\jtable\themes\metro\crimson\jtable.min.css" />
    <Content Include="Scripts\jtable\themes\metro\crimson\loading.gif" />
    <Content Include="Scripts\jtable\themes\metro\darkgray\jtable.css" />
    <Content Include="Scripts\jtable\themes\metro\darkgray\jtable.min.css" />
    <Content Include="Scripts\jtable\themes\metro\darkgray\loading.gif" />
    <Content Include="Scripts\jtable\themes\metro\darkorange\jtable.css" />
    <Content Include="Scripts\jtable\themes\metro\darkorange\jtable.min.css" />
    <Content Include="Scripts\jtable\themes\metro\darkorange\loading.gif" />
    <Content Include="Scripts\jtable\themes\metro\delete.png" />
    <Content Include="Scripts\jtable\themes\metro\edit.png" />
    <Content Include="Scripts\jtable\themes\metro\green\jtable.css" />
    <Content Include="Scripts\jtable\themes\metro\green\jtable.min.css" />
    <Content Include="Scripts\jtable\themes\metro\green\loading.gif" />
    <Content Include="Scripts\jtable\themes\metro\jtable_metro_base.css" />
    <Content Include="Scripts\jtable\themes\metro\jtable_metro_base.min.css" />
    <Content Include="Scripts\jtable\themes\metro\lightgray\jtable.css" />
    <Content Include="Scripts\jtable\themes\metro\lightgray\jtable.min.css" />
    <Content Include="Scripts\jtable\themes\metro\lightgray\loading.gif" />
    <Content Include="Scripts\jtable\themes\metro\pink\jtable.css" />
    <Content Include="Scripts\jtable\themes\metro\pink\jtable.min.css" />
    <Content Include="Scripts\jtable\themes\metro\pink\loading.gif" />
    <Content Include="Scripts\jtable\themes\metro\purple\jtable.css" />
    <Content Include="Scripts\jtable\themes\metro\purple\jtable.min.css" />
    <Content Include="Scripts\jtable\themes\metro\purple\loading.gif" />
    <Content Include="Scripts\jtable\themes\metro\red\jtable.css" />
    <Content Include="Scripts\jtable\themes\metro\red\jtable.min.css" />
    <Content Include="Scripts\jtable\themes\metro\red\loading.gif" />
    <Content Include="Scripts\modernizr-2.6.2.js" />
    <Content Include="Scripts\_references.js" />
    <Content Include="Web.config" />
    <Content Include="Web.Debug.config">
      <DependentUpon>Web.config</DependentUpon>
    </Content>
    <Content Include="Web.Release.config">
      <DependentUpon>Web.config</DependentUpon>
    </Content>
    <Content Include="Views\Web.config" />
    <Content Include="Views\_ViewStart.cshtml" />
    <Content Include="Views\Shared\Error.cshtml" />
    <Content Include="Views\Shared\_Layout.cshtml" />
    <Content Include="Views\Home\Index.cshtml" />
    <Content Include="Scripts\jtable\themes\metro\red\jtable.less" />
    <Content Include="Scripts\jtable\themes\metro\purple\jtable.less" />
    <Content Include="Scripts\jtable\themes\metro\pink\jtable.less" />
    <Content Include="Scripts\jtable\themes\metro\lightgray\jtable.less" />
    <Content Include="Scripts\jtable\themes\metro\jtable_metro_base.less" />
    <Content Include="Scripts\jtable\themes\metro\green\jtable.less" />
    <Content Include="Scripts\jtable\themes\metro\darkorange\jtable.less" />
    <Content Include="Scripts\jtable\themes\metro\darkgray\jtable.less" />
    <Content Include="Scripts\jtable\themes\metro\crimson\jtable.less" />
    <Content Include="Scripts\jtable\themes\metro\brown\jtable.less" />
    <Content Include="Scripts\jtable\themes\metro\blue\jtable.less" />
    <Content Include="Scripts\jtable\themes\lightcolor\red\jtable.less" />
    <Content Include="Scripts\jtable\themes\lightcolor\orange\jtable.less" />
    <Content Include="Scripts\jtable\themes\lightcolor\jtable_lightcolor_base.less" />
    <Content Include="Scripts\jtable\themes\lightcolor\green\jtable.less" />
    <Content Include="Scripts\jtable\themes\lightcolor\gray\jtable.less" />
    <Content Include="Scripts\jtable\themes\lightcolor\blue\jtable.less" />
    <Content Include="Scripts\jtable\themes\jtable_theme_base.less" />
    <Content Include="Scripts\jtable\themes\basic\jtable_basic.less" />
  </ItemGroup>
  <ItemGroup>
    <Folder Include="App_Data\" />
    <Folder Include="Models\" />
  </ItemGroup>
  <ItemGroup>
    <Content Include="packages.config" />
  </ItemGroup>
  <ItemGroup>
    <ProjectReference Include="..\PhoneBook.Core\PhoneBook.Core.csproj">
      <Project>{0A4E6CB3-E481-4FD6-BEA3-89D3B04AB112}</Project>
      <Name>PhoneBook.Core</Name>
    </ProjectReference>
    <ProjectReference Include="..\PhoneBook.Data.NHibernate\PhoneBook.Data.NHibernate.csproj">
      <Project>{a2b8fcf1-899f-4323-9837-3c9ee42f79cb}</Project>
      <Name>PhoneBook.Data.NHibernate</Name>
    </ProjectReference>
    <ProjectReference Include="..\PhoneBook.Dependency\PhoneBook.Dependency.csproj">
      <Project>{FD493627-0209-4C82-A857-5651B3A2CC5F}</Project>
      <Name>PhoneBook.Dependency</Name>
    </ProjectReference>
  </ItemGroup>
  <PropertyGroup>
    <VisualStudioVersion Condition="'$(VisualStudioVersion)' == ''">10.0</VisualStudioVersion>
    <VSToolsPath Condition="'$(VSToolsPath)' == ''">$(MSBuildExtensionsPath32)\Microsoft\VisualStudio\v$(VisualStudioVersion)</VSToolsPath>
  </PropertyGroup>
  <Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
  <Import Project="$(VSToolsPath)\WebApplications\Microsoft.WebApplication.targets" Condition="'$(VSToolsPath)' != ''" />
  <Import Project="$(MSBuildExtensionsPath32)\Microsoft\VisualStudio\v10.0\WebApplications\Microsoft.WebApplication.targets" Condition="false" />
  <Target Name="MvcBuildViews" AfterTargets="AfterBuild" Condition="'$(MvcBuildViews)'=='true'">
    <AspNetCompiler VirtualPath="temp" PhysicalPath="$(WebProjectOutputDir)" />
  </Target>
  <ProjectExtensions>
    <VisualStudio>
      <FlavorProperties GUID="{349c5851-65df-11da-9384-00065b846f21}">
        <WebProjectProperties>
          <UseIIS>True</UseIIS>
          <AutoAssignPort>True</AutoAssignPort>
          <DevelopmentServerPort>0</DevelopmentServerPort>
          <DevelopmentServerVPath>/</DevelopmentServerVPath>
          <IISUrl>http://localhost:49930/</IISUrl>
          <NTLMAuthentication>False</NTLMAuthentication>
          <UseCustomServer>False</UseCustomServer>
          <CustomServerUrl>
          </CustomServerUrl>
          <SaveServerSettingsInUserFile>False</SaveServerSettingsInUserFile>
        </WebProjectProperties>
      </FlavorProperties>
    </VisualStudio>
  </ProjectExtensions>
  <Import Project="$(SolutionDir)\.nuget\nuget.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> -->
</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
Founder Volosoft
Turkey Turkey
I have started programming at 14 years old using Pascal as hobby. Then I interested in web development (HTML, JavaScript, ASP...) before university.

I graduated from Sakarya University Computer Engineering. At university, I learned C++, Visual Basic.NET, C#, ASP.NET and Java. I partly implemented ARP, IP and TCP protocols in Java as my final term project.

Now, I am working on Windows and web based software development mostly using Microsoft technologies in my own company.

My open source projects:

* ABP Framework: https://abp.io
* jTable: http://jtable.org
* Others: https://github.com/hikalkan

My personal web site:

https://halilibrahimkalkan.com

Comments and Discussions