gitextract_wa3viklp/ ├── .gitattributes ├── .gitignore ├── .nuget/ │ ├── NuGet.Config │ └── NuGet.targets ├── OnlineStore.Application/ │ ├── AddressResolver.cs │ ├── App_Data/ │ │ ├── OnlineStore.mdf │ │ └── OnlineStore_log.ldf │ ├── ApplicationService.cs │ ├── Global.asax │ ├── Global.asax.cs │ ├── InversedAddressResolver.cs │ ├── Logs/ │ │ └── onlinestore.txt │ ├── OnlineStore.Application.csproj │ ├── OrderService.svc │ ├── OrderService.svc.cs │ ├── ProductService.svc │ ├── ProductService.svc.cs │ ├── Properties/ │ │ └── AssemblyInfo.cs │ ├── ServiceImplementations/ │ │ ├── OrderServiceImp.cs │ │ ├── ProductServiceImp.cs │ │ └── UserServiceImp.cs │ ├── UserService.svc │ ├── UserService.svc.cs │ ├── Web.Debug.config │ ├── Web.Release.config │ ├── Web.config │ └── packages.config ├── OnlineStore.Domain/ │ ├── DomainException.cs │ ├── Events/ │ │ ├── DomainEvent.cs │ │ ├── EventHandlers/ │ │ │ ├── OrderConfirmedEventHandler.cs │ │ │ └── OrderDispatchedEventHandler.cs │ │ ├── IDomainEvent.cs │ │ ├── IDomainEventHandler.cs │ │ ├── OrderConfirmedEvent.cs │ │ └── OrderDispatchedEvent.cs │ ├── IAggregateRoot.cs │ ├── IEntity.cs │ ├── Model/ │ │ ├── Address.cs │ │ ├── AggregateRoot.cs │ │ ├── Category.cs │ │ ├── Order.cs │ │ ├── OrderItem.cs │ │ ├── OrderStatus.cs │ │ ├── Product.cs │ │ ├── ProductCategorization.cs │ │ ├── Role.cs │ │ ├── ShoppingCart.cs │ │ ├── ShoppingCartItem.cs │ │ ├── User.cs │ │ └── UserRole.cs │ ├── OnlineStore.Domain.csproj │ ├── Properties/ │ │ └── AssemblyInfo.cs │ ├── Repositories/ │ │ ├── ICategoryRepository.cs │ │ ├── IOrderRepository.cs │ │ ├── IProductCategorizationRepository.cs │ │ ├── IProductRepository.cs │ │ ├── IRepository.cs │ │ ├── IRepositoryContext.cs │ │ ├── IRoleRepository.cs │ │ ├── IShoppingCartItemRepository.cs │ │ ├── IShoppingCartRepository.cs │ │ ├── IUserRepository.cs │ │ ├── IUserRoleRepository.cs │ │ └── SortOrder.cs │ ├── Services/ │ │ ├── DomainService.cs │ │ └── IDomainService.cs │ ├── Specifications/ │ │ ├── AnySpecification.cs │ │ ├── ExpressionSpecification.cs │ │ ├── ISpecification.cs │ │ ├── ParameterReplacer.cs │ │ ├── SpecExprExtensions.cs │ │ └── Specification.cs │ └── app.config ├── OnlineStore.Events/ │ ├── Bus/ │ │ ├── EventBus.cs │ │ ├── IBus.cs │ │ ├── IEventBus.cs │ │ ├── MsmqBusOptions.cs │ │ └── MsmqEventBus.cs │ ├── EventAggregator.cs │ ├── HandlesAsynchronouslyAttribute.cs │ ├── IEvent.cs │ ├── IEventAggregator.cs │ ├── IEventHandler.cs │ ├── OnlineStore.Events.csproj │ ├── Properties/ │ │ └── AssemblyInfo.cs │ └── app.config ├── OnlineStore.Events.Handlers/ │ ├── OnlineStore.Events.Handlers.csproj │ ├── Properties/ │ │ └── AssemblyInfo.cs │ ├── SendEmailHandler.cs │ └── app.config ├── OnlineStore.Infrastructure/ │ ├── Caching/ │ │ ├── AppfabricCacheProvider.cs │ │ ├── CacheAttribute.cs │ │ ├── CachingMethod.cs │ │ ├── EntLibCacheProvider.cs │ │ └── ICacheProvider.cs │ ├── DisposableObject.cs │ ├── IUnitOfWork.cs │ ├── InterceptionBehaviors/ │ │ ├── CachingBehavior.cs │ │ └── ExceptionLoggingBehavior.cs │ ├── OnlineStore.Infrastructure.csproj │ ├── PagedResult.cs │ ├── Properties/ │ │ └── AssemblyInfo.cs │ ├── ServiceLocator.cs │ ├── Utils.cs │ ├── app.config │ └── packages.config ├── OnlineStore.ModelDTO/ │ ├── OnlineStore.ModelDTO.csproj │ ├── Properties/ │ │ └── AssemblyInfo.cs │ ├── Service References/ │ │ ├── OrderService/ │ │ │ ├── OnlineStore.ModelDTO.OrderService.ShoppingCart.datasource │ │ │ ├── OrderService.disco │ │ │ ├── OrderService.wsdl │ │ │ ├── OrderService.xsd │ │ │ ├── OrderService1.xsd │ │ │ ├── OrderService2.xsd │ │ │ ├── Reference.cs │ │ │ ├── Reference.svcmap │ │ │ ├── configuration.svcinfo │ │ │ └── configuration91.svcinfo │ │ └── ProductService/ │ │ ├── OnlineStore.ModelDTO.ProductService.Category.datasource │ │ ├── OnlineStore.ModelDTO.ProductService.Product.datasource │ │ ├── ProductService.disco │ │ ├── ProductService.wsdl │ │ ├── ProductService.xsd │ │ ├── ProductService1.wsdl │ │ ├── ProductService1.xsd │ │ ├── ProductService2.xsd │ │ ├── Reference.cs │ │ ├── Reference.svcmap │ │ ├── configuration.svcinfo │ │ └── configuration91.svcinfo │ └── app.config ├── OnlineStore.Repositories/ │ ├── App.config │ ├── EntityFramework/ │ │ ├── CategoryRepository.cs │ │ ├── EntityFrameworkRepository.cs │ │ ├── EntityFrameworkRepositoryContext.cs │ │ ├── IEntityFrameworkRepositoryContext.cs │ │ ├── ModelConfigurations/ │ │ │ ├── CategoryTypeConfiguration.cs │ │ │ ├── OrderItemTypeConfiguration.cs │ │ │ ├── OrderTypeConfiguration.cs │ │ │ ├── ProductCategorizationTypeConfiguration.cs │ │ │ ├── ProductTypeConfiguration.cs │ │ │ ├── RoleTypeConfiguration.cs │ │ │ ├── ShoppingCartItemTypeConfiguration.cs │ │ │ ├── ShoppingCartTypeConfiguration.cs │ │ │ ├── UserRoleTypeConfiguration.cs │ │ │ └── UserTypeConfiguration.cs │ │ ├── OnlineStoreDbContext.cs │ │ ├── OnlineStoreDbContextInitailizer.cs │ │ ├── OrderRepository.cs │ │ ├── ProductCategorizationRepository.cs │ │ ├── ProductRepository.cs │ │ ├── RoleRepository.cs │ │ ├── ShoppingCartItemRepository.cs │ │ ├── ShoppingCartRepository.cs │ │ ├── SortByExtension.cs │ │ ├── UserRepository.cs │ │ └── UserRoleRepository.cs │ ├── OnlineStore.Repositories.csproj │ ├── Properties/ │ │ └── AssemblyInfo.cs │ └── packages.config ├── OnlineStore.ServiceContract/ │ ├── IOrderService.cs │ ├── IProductService.cs │ ├── IUserService.cs │ ├── ModelDTOs/ │ │ ├── AddressDto.cs │ │ ├── CategoryDto.cs │ │ ├── FaultData.cs │ │ ├── OrderDto.cs │ │ ├── OrderItemDto.cs │ │ ├── OrderStatusDto.cs │ │ ├── Pagination.cs │ │ ├── ProductCategorizationDto.cs │ │ ├── ProductDto.cs │ │ ├── ProductDtoWithPagination.cs │ │ ├── RoleDto.cs │ │ ├── ShoppingCartDto.cs │ │ ├── ShoppingCartItemDto.cs │ │ └── UserDto.cs │ ├── OnlineStore.ServiceContracts.csproj │ ├── Properties/ │ │ └── AssemblyInfo.cs │ └── app.config ├── OnlineStore.Web/ │ ├── App_Code/ │ │ ├── HtmlExtension.cs │ │ ├── PermissionKeys.cs │ │ └── UrlHelperExtension.cs │ ├── App_Start/ │ │ ├── AuthConfig.cs │ │ ├── BundleConfig.cs │ │ ├── FilterConfig.cs │ │ ├── RouteConfig.cs │ │ └── WebApiConfig.cs │ ├── Content/ │ │ ├── Site.css │ │ ├── themes/ │ │ │ └── base/ │ │ │ ├── jquery-ui.css │ │ │ ├── jquery.ui.accordion.css │ │ │ ├── jquery.ui.all.css │ │ │ ├── jquery.ui.autocomplete.css │ │ │ ├── jquery.ui.base.css │ │ │ ├── jquery.ui.button.css │ │ │ ├── jquery.ui.core.css │ │ │ ├── jquery.ui.datepicker.css │ │ │ ├── jquery.ui.dialog.css │ │ │ ├── jquery.ui.progressbar.css │ │ │ ├── jquery.ui.resizable.css │ │ │ ├── jquery.ui.selectable.css │ │ │ ├── jquery.ui.slider.css │ │ │ ├── jquery.ui.tabs.css │ │ │ └── jquery.ui.theme.css │ │ ├── uploadify.css │ │ └── uploadify.swf │ ├── Controllers/ │ │ ├── AccountController.cs │ │ ├── AdminController.cs │ │ ├── ControllerBase.cs │ │ ├── HomeController.cs │ │ └── LayoutController.cs │ ├── Global.asax │ ├── Global.asax.cs │ ├── Membership/ │ │ ├── OnlineStoreMembershipProvider.cs │ │ └── OnlineStoreMembershipUser.cs │ ├── MvcSiteMap.cs │ ├── OnlineStore.Web.csproj │ ├── OnlineStore.Web.csproj.DotSettings │ ├── Properties/ │ │ └── AssemblyInfo.cs │ ├── Scripts/ │ │ ├── _references.js │ │ ├── hoverIntent.js │ │ ├── jquery-1.7.1.intellisense.js │ │ ├── jquery-1.7.1.js │ │ ├── jquery-ui-1.8.20.js │ │ ├── jquery.unobtrusive-ajax.js │ │ ├── jquery.uploadify.js │ │ ├── jquery.validate-vsdoc.js │ │ ├── jquery.validate.js │ │ ├── jquery.validate.unobtrusive.js │ │ ├── knockout-2.1.0.debug.js │ │ ├── knockout-2.1.0.js │ │ ├── modernizr-2.5.3.js │ │ ├── superfish.js │ │ └── supersubs.js │ ├── Service References/ │ │ ├── OnlineStoreDto.Partial.cs │ │ ├── OrderService/ │ │ │ ├── OnlineStore.Web.OrderService.OrderDto.datasource │ │ │ ├── OnlineStore.Web.OrderService.ShoppingCartDto.datasource │ │ │ ├── OrderService.disco │ │ │ ├── OrderService.wsdl │ │ │ ├── OrderService.xsd │ │ │ ├── OrderService1.xsd │ │ │ ├── OrderService2.xsd │ │ │ ├── Reference.cs │ │ │ ├── Reference.svcmap │ │ │ ├── configuration.svcinfo │ │ │ └── configuration91.svcinfo │ │ ├── ProductService/ │ │ │ ├── OnlineStore.Web.ProductService.CategoryDto.datasource │ │ │ ├── OnlineStore.Web.ProductService.ProductCategorizationDto.datasource │ │ │ ├── OnlineStore.Web.ProductService.ProductDto.datasource │ │ │ ├── OnlineStore.Web.ProductService.ProductDtoWithPagination.datasource │ │ │ ├── ProductService.disco │ │ │ ├── ProductService.wsdl │ │ │ ├── ProductService.xsd │ │ │ ├── ProductService1.wsdl │ │ │ ├── ProductService1.xsd │ │ │ ├── ProductService2.xsd │ │ │ ├── ProductService3.xsd │ │ │ ├── Reference.cs │ │ │ ├── Reference.svcmap │ │ │ ├── configuration.svcinfo │ │ │ └── configuration91.svcinfo │ │ └── UserService/ │ │ ├── OnlineStore.Web.UserService.OrderDto.datasource │ │ ├── OnlineStore.Web.UserService.RoleDto.datasource │ │ ├── OnlineStore.Web.UserService.UserDto.datasource │ │ ├── Reference.cs │ │ ├── Reference.svcmap │ │ ├── UserService.disco │ │ ├── UserService.wsdl │ │ ├── UserService.xsd │ │ ├── UserService1.wsdl │ │ ├── UserService1.xsd │ │ ├── UserService2.xsd │ │ ├── UserService3.xsd │ │ ├── configuration.svcinfo │ │ └── configuration91.svcinfo │ ├── SiteMap.xml │ ├── ViewModels/ │ │ ├── LoginViewModel.cs │ │ └── UserAccountModel.cs │ ├── Views/ │ │ ├── Account/ │ │ │ ├── Login.cshtml │ │ │ ├── Manage.cshtml │ │ │ └── Register.cshtml │ │ ├── Admin/ │ │ │ ├── AddCategory.cshtml │ │ │ ├── AddProduct.cshtml │ │ │ ├── AddRole.cshtml │ │ │ ├── AddUserAccount.cshtml │ │ │ ├── Administration.cshtml │ │ │ ├── Categories.cshtml │ │ │ ├── EditCategory.cshtml │ │ │ ├── EditProduct.cshtml │ │ │ ├── EditRole.cshtml │ │ │ ├── EditUserAccount.cshtml │ │ │ ├── Order.cshtml │ │ │ ├── Orders.cshtml │ │ │ ├── Products.cshtml │ │ │ ├── Roles.cshtml │ │ │ └── UserAccounts.cshtml │ │ ├── Home/ │ │ │ ├── About.cshtml │ │ │ ├── Category.cshtml │ │ │ ├── Checkout.cshtml │ │ │ ├── Contact.cshtml │ │ │ ├── Index.cshtml │ │ │ ├── Order.cshtml │ │ │ ├── Orders.cshtml │ │ │ ├── ProductDetail.cshtml │ │ │ ├── ShoppingCart.cshtml │ │ │ └── SuccessPage.cshtml │ │ ├── Shared/ │ │ │ ├── CategoriesPartial.cshtml │ │ │ ├── Error.cshtml │ │ │ ├── NewProductsPartial.cshtml │ │ │ ├── ProductsPartial.cshtml │ │ │ ├── _Layout.cshtml │ │ │ └── _LoginPartial.cshtml │ │ ├── Web.config │ │ └── _ViewStart.cshtml │ ├── Web.Debug.config │ ├── Web.Release.config │ ├── Web.config │ └── packages.config ├── OnlineStore.sln ├── README.md ├── Scripts/ │ ├── dbo.Categories.data.sql │ ├── dbo.ProductCategorizations.data.sql │ ├── dbo.Products.data.sql │ ├── dbo.Roles.sql │ ├── dbo.UserRoles.data.sql │ └── dbo.Users.data.sql └── packages/ ├── Antlr.3.4.1.9004/ │ └── Antlr.3.4.1.9004.nupkg ├── Antlr.3.5.0.2/ │ └── Antlr.3.5.0.2.nupkg ├── AutoMapper.3.3.1/ │ ├── AutoMapper.3.3.1.nupkg │ ├── lib/ │ │ ├── MonoAndroid/ │ │ │ └── AutoMapper.xml │ │ ├── MonoTouch/ │ │ │ └── AutoMapper.xml │ │ ├── net40/ │ │ │ └── AutoMapper.xml │ │ ├── portable-windows8+net40+wp8+sl5+MonoAndroid+MonoTouch/ │ │ │ └── AutoMapper.xml │ │ ├── portable-windows8+net40+wp8+wpa81+sl5+MonoAndroid+MonoTouch/ │ │ │ └── AutoMapper.xml │ │ ├── sl5/ │ │ │ └── AutoMapper.xml │ │ ├── windows8/ │ │ │ └── AutoMapper.xml │ │ ├── wp8/ │ │ │ └── AutoMapper.xml │ │ └── wpa81/ │ │ └── AutoMapper.xml │ └── tools/ │ ├── AutoMapper.targets │ ├── MonoAndroid/ │ │ ├── Install.ps1 │ │ └── uninstall.ps1 │ ├── MonoTouch/ │ │ ├── Install.ps1 │ │ └── uninstall.ps1 │ ├── net40/ │ │ ├── Install.ps1 │ │ └── uninstall.ps1 │ ├── sl5/ │ │ ├── Install.ps1 │ │ └── uninstall.ps1 │ ├── windows8/ │ │ ├── Install.ps1 │ │ └── uninstall.ps1 │ ├── wp8/ │ │ ├── Install.ps1 │ │ └── uninstall.ps1 │ └── wpa81/ │ ├── Install.ps1 │ └── uninstall.ps1 ├── CommonServiceLocator.1.3/ │ ├── CommonServiceLocator.1.3.nupkg │ └── lib/ │ └── portable-net4+sl5+netcore45+wpa81+wp8/ │ └── Microsoft.Practices.ServiceLocation.XML ├── DotNetOpenAuth.AspNet.4.0.3.12153/ │ ├── DotNetOpenAuth.AspNet.4.0.3.12153.nupkg │ └── lib/ │ └── net40-full/ │ └── DotNetOpenAuth.AspNet.xml ├── DotNetOpenAuth.AspNet.4.3.0.13117/ │ ├── DotNetOpenAuth.AspNet.4.3.0.13117.nupkg │ └── lib/ │ ├── net40-full/ │ │ └── DotNetOpenAuth.AspNet.xml │ └── net45-full/ │ └── DotNetOpenAuth.AspNet.xml ├── DotNetOpenAuth.Core.4.0.3.12153/ │ ├── DotNetOpenAuth.Core.4.0.3.12153.nupkg │ ├── content/ │ │ └── web.config.transform │ └── lib/ │ ├── net35-full/ │ │ └── DotNetOpenAuth.Core.xml │ └── net40-full/ │ └── DotNetOpenAuth.Core.xml ├── DotNetOpenAuth.Core.4.3.0.13117/ │ ├── DotNetOpenAuth.Core.4.3.0.13117.nupkg │ ├── content/ │ │ └── web.config.transform │ └── lib/ │ ├── net35-full/ │ │ └── DotNetOpenAuth.Core.xml │ ├── net40-full/ │ │ └── DotNetOpenAuth.Core.xml │ └── net45-full/ │ └── DotNetOpenAuth.Core.xml ├── DotNetOpenAuth.OAuth.Consumer.4.0.3.12153/ │ ├── DotNetOpenAuth.OAuth.Consumer.4.0.3.12153.nupkg │ └── lib/ │ ├── net35-full/ │ │ └── DotNetOpenAuth.OAuth.Consumer.xml │ └── net40-full/ │ └── DotNetOpenAuth.OAuth.Consumer.xml ├── DotNetOpenAuth.OAuth.Consumer.4.3.0.13117/ │ ├── DotNetOpenAuth.OAuth.Consumer.4.3.0.13117.nupkg │ └── lib/ │ ├── net35-full/ │ │ └── DotNetOpenAuth.OAuth.Consumer.xml │ ├── net40-full/ │ │ └── DotNetOpenAuth.OAuth.Consumer.xml │ └── net45-full/ │ └── DotNetOpenAuth.OAuth.Consumer.xml ├── DotNetOpenAuth.OAuth.Core.4.0.3.12153/ │ ├── DotNetOpenAuth.OAuth.Core.4.0.3.12153.nupkg │ ├── content/ │ │ └── web.config.transform │ └── lib/ │ ├── net35-full/ │ │ └── DotNetOpenAuth.OAuth.xml │ └── net40-full/ │ └── DotNetOpenAuth.OAuth.xml ├── DotNetOpenAuth.OAuth.Core.4.3.0.13117/ │ ├── DotNetOpenAuth.OAuth.Core.4.3.0.13117.nupkg │ ├── content/ │ │ └── web.config.transform │ └── lib/ │ ├── net35-full/ │ │ └── DotNetOpenAuth.OAuth.xml │ ├── net40-full/ │ │ └── DotNetOpenAuth.OAuth.xml │ └── net45-full/ │ └── DotNetOpenAuth.OAuth.xml ├── DotNetOpenAuth.OpenId.Core.4.0.3.12153/ │ ├── DotNetOpenAuth.OpenId.Core.4.0.3.12153.nupkg │ ├── content/ │ │ └── web.config.transform │ └── lib/ │ ├── net35-full/ │ │ ├── DotNetOpenAuth.OpenId.xml │ │ ├── Mono.Math.xml │ │ └── Org.Mentalis.Security.Cryptography.xml │ └── net40-full/ │ ├── DotNetOpenAuth.OpenId.xml │ ├── Mono.Math.xml │ └── Org.Mentalis.Security.Cryptography.xml ├── DotNetOpenAuth.OpenId.Core.4.3.0.13117/ │ ├── DotNetOpenAuth.OpenId.Core.4.3.0.13117.nupkg │ ├── content/ │ │ ├── net35-full/ │ │ │ └── web.config.transform │ │ ├── net40-full/ │ │ │ └── web.config.transform │ │ └── net45-full/ │ │ └── web.config.transform │ └── lib/ │ ├── net35-full/ │ │ ├── DotNetOpenAuth.OpenId.xml │ │ ├── Mono.Math.xml │ │ └── Org.Mentalis.Security.Cryptography.xml │ ├── net40-full/ │ │ ├── DotNetOpenAuth.OpenId.xml │ │ ├── Mono.Math.xml │ │ └── Org.Mentalis.Security.Cryptography.xml │ └── net45-full/ │ ├── DotNetOpenAuth.OpenId.xml │ ├── Mono.Math.xml │ └── Org.Mentalis.Security.Cryptography.xml ├── DotNetOpenAuth.OpenId.RelyingParty.4.0.3.12153/ │ ├── DotNetOpenAuth.OpenId.RelyingParty.4.0.3.12153.nupkg │ ├── content/ │ │ └── web.config.transform │ └── lib/ │ ├── net35-full/ │ │ └── DotNetOpenAuth.OpenId.RelyingParty.xml │ └── net40-full/ │ └── DotNetOpenAuth.OpenId.RelyingParty.xml ├── DotNetOpenAuth.OpenId.RelyingParty.4.3.0.13117/ │ ├── DotNetOpenAuth.OpenId.RelyingParty.4.3.0.13117.nupkg │ ├── content/ │ │ └── web.config.transform │ └── lib/ │ ├── net35-full/ │ │ └── DotNetOpenAuth.OpenId.RelyingParty.xml │ ├── net40-full/ │ │ └── DotNetOpenAuth.OpenId.RelyingParty.xml │ └── net45-full/ │ └── DotNetOpenAuth.OpenId.RelyingParty.xml ├── EnterpriseLibrary.Caching.5.0.505.0/ │ ├── EnterpriseLibrary.Caching.5.0.505.0.nupkg │ ├── lib/ │ │ ├── NET35/ │ │ │ └── Microsoft.Practices.EnterpriseLibrary.Caching.xml │ │ └── SL40/ │ │ └── Microsoft.Practices.EnterpriseLibrary.Caching.Silverlight.xml │ └── tools/ │ ├── Utils.psm1 │ └── install.ps1 ├── EnterpriseLibrary.Common.5.0.505.0/ │ ├── EnterpriseLibrary.Common.5.0.505.0.nupkg │ ├── lib/ │ │ ├── NET35/ │ │ │ └── Microsoft.Practices.EnterpriseLibrary.Common.xml │ │ └── SL40/ │ │ └── Microsoft.Practices.EnterpriseLibrary.Common.Silverlight.xml │ └── tools/ │ ├── Utils.psm1 │ └── install.ps1 ├── EntityFramework.5.0.0/ │ ├── Content/ │ │ ├── App.config.transform │ │ └── Web.config.transform │ ├── EntityFramework.5.0.0.nupkg │ ├── lib/ │ │ ├── net40/ │ │ │ └── EntityFramework.xml │ │ └── net45/ │ │ └── EntityFramework.xml │ └── tools/ │ ├── EntityFramework.PS3.psd1 │ ├── EntityFramework.psd1 │ ├── EntityFramework.psm1 │ ├── Redirect.VS11.config │ ├── Redirect.config │ ├── about_EntityFramework.help.txt │ ├── init.ps1 │ └── install.ps1 ├── EntityFramework.6.1.3/ │ ├── EntityFramework.6.1.3.nupkg │ ├── content/ │ │ ├── App.config.transform │ │ └── Web.config.transform │ ├── lib/ │ │ ├── net40/ │ │ │ ├── EntityFramework.SqlServer.xml │ │ │ └── EntityFramework.xml │ │ └── net45/ │ │ ├── EntityFramework.SqlServer.xml │ │ └── EntityFramework.xml │ └── tools/ │ ├── EntityFramework.psd1 │ ├── EntityFramework.psm1 │ ├── about_EntityFramework.help.txt │ ├── init.ps1 │ └── install.ps1 ├── Microsoft.AspNet.Mvc.4.0.20710.0/ │ ├── Microsoft.AspNet.Mvc.4.0.20710.0.nupkg │ └── lib/ │ └── net40/ │ └── System.Web.Mvc.xml ├── Microsoft.AspNet.Razor.2.0.20710.0/ │ ├── Microsoft.AspNet.Razor.2.0.20710.0.nupkg │ └── lib/ │ └── net40/ │ └── System.Web.Razor.xml ├── Microsoft.AspNet.Web.Optimization.1.0.0/ │ └── Microsoft.AspNet.Web.Optimization.1.0.0.nupkg ├── Microsoft.AspNet.WebApi.4.0.20710.0/ │ └── Microsoft.AspNet.WebApi.4.0.20710.0.nupkg ├── Microsoft.AspNet.WebApi.Client.4.0.20710.0/ │ ├── Microsoft.AspNet.WebApi.Client.4.0.20710.0.nupkg │ └── lib/ │ └── net40/ │ └── System.Net.Http.Formatting.xml ├── Microsoft.AspNet.WebApi.Core.4.0.20710.0/ │ ├── Microsoft.AspNet.WebApi.Core.4.0.20710.0.nupkg │ ├── content/ │ │ └── web.config.transform │ └── lib/ │ └── net40/ │ └── System.Web.Http.xml ├── Microsoft.AspNet.WebApi.WebHost.4.0.20710.0/ │ ├── Microsoft.AspNet.WebApi.WebHost.4.0.20710.0.nupkg │ └── lib/ │ └── net40/ │ └── System.Web.Http.WebHost.xml ├── Microsoft.AspNet.WebPages.2.0.20710.0/ │ ├── Microsoft.AspNet.WebPages.2.0.20710.0.nupkg │ └── lib/ │ └── net40/ │ ├── System.Web.Helpers.xml │ ├── System.Web.WebPages.Deployment.xml │ ├── System.Web.WebPages.Razor.xml │ └── System.Web.WebPages.xml ├── Microsoft.AspNet.WebPages.Data.2.0.20710.0/ │ ├── Microsoft.AspNet.WebPages.Data.2.0.20710.0.nupkg │ └── lib/ │ └── net40/ │ └── WebMatrix.Data.xml ├── Microsoft.AspNet.WebPages.OAuth.2.0.20710.0/ │ ├── Microsoft.AspNet.WebPages.OAuth.2.0.20710.0.nupkg │ └── lib/ │ └── net40/ │ └── Microsoft.Web.WebPages.OAuth.xml ├── Microsoft.AspNet.WebPages.WebData.2.0.20710.0/ │ ├── Microsoft.AspNet.WebPages.WebData.2.0.20710.0.nupkg │ └── lib/ │ └── net40/ │ └── WebMatrix.WebData.xml ├── Microsoft.Net.Http.2.0.20710.0/ │ ├── Microsoft.Net.Http.2.0.20710.0.nupkg │ └── lib/ │ ├── net40/ │ │ ├── System.Net.Http.WebRequest.xml │ │ └── System.Net.Http.xml │ └── net45/ │ └── _._ ├── Microsoft.Web.Infrastructure.1.0.0.0/ │ └── Microsoft.Web.Infrastructure.1.0.0.0.nupkg ├── Microsoft.jQuery.Unobtrusive.Ajax.2.0.20710.0/ │ ├── Content/ │ │ └── Scripts/ │ │ └── jquery.unobtrusive-ajax.js │ └── Microsoft.jQuery.Unobtrusive.Ajax.2.0.20710.0.nupkg ├── Microsoft.jQuery.Unobtrusive.Validation.2.0.20710.0/ │ ├── Content/ │ │ └── Scripts/ │ │ └── jquery.validate.unobtrusive.js │ └── Microsoft.jQuery.Unobtrusive.Validation.2.0.20710.0.nupkg ├── Modernizr.2.5.3/ │ ├── Content/ │ │ └── Scripts/ │ │ └── modernizr-2.5.3.js │ └── Modernizr.2.5.3.nupkg ├── Newtonsoft.Json.4.5.6/ │ ├── Newtonsoft.Json.4.5.6.nupkg │ └── lib/ │ ├── net20/ │ │ └── Newtonsoft.Json.xml │ ├── net35/ │ │ └── Newtonsoft.Json.xml │ ├── net40/ │ │ └── Newtonsoft.Json.xml │ ├── sl3-wp/ │ │ └── Newtonsoft.Json.xml │ ├── sl4/ │ │ └── Newtonsoft.Json.xml │ ├── sl4-windowsphone71/ │ │ └── Newtonsoft.Json.xml │ └── winrt45/ │ └── Newtonsoft.Json.xml ├── Unity.3.5.1404.0/ │ ├── Unity.3.5.1404.0.nupkg │ ├── UnityConfiguration30.xsd │ └── lib/ │ ├── net45/ │ │ ├── Microsoft.Practices.Unity.Configuration.XML │ │ ├── Microsoft.Practices.Unity.RegistrationByConvention.XML │ │ └── Microsoft.Practices.Unity.xml │ ├── portable-net45+wp80+win8+MonoAndroid10+MonoTouch10/ │ │ └── Microsoft.Practices.Unity.xml │ ├── win8/ │ │ ├── Microsoft.Practices.Unity.RegistrationByConvention.XML │ │ ├── Microsoft.Practices.Unity.RegistrationByConvention.pri │ │ └── Microsoft.Practices.Unity.xml │ └── wp80/ │ ├── Microsoft.Practices.Unity.RegistrationByConvention.XML │ └── Microsoft.Practices.Unity.xml ├── Unity.Interception.3.5.1404.0/ │ ├── Unity.Interception.3.5.1404.0.nupkg │ └── lib/ │ └── Net45/ │ ├── Microsoft.Practices.Unity.Interception.Configuration.xml │ └── Microsoft.Practices.Unity.Interception.xml ├── WebGrease.1.1.0/ │ └── WebGrease.1.1.0.nupkg ├── jQuery.1.7.1.1/ │ ├── Content/ │ │ └── Scripts/ │ │ ├── jquery-1.7.1-vsdoc.js │ │ └── jquery-1.7.1.js │ ├── Tools/ │ │ ├── common.ps1 │ │ ├── install.ps1 │ │ ├── jquery-1.7.1.intellisense.js │ │ └── uninstall.ps1 │ └── jQuery.1.7.1.1.nupkg ├── jQuery.UI.Combined.1.8.20.1/ │ ├── Content/ │ │ ├── Content/ │ │ │ └── themes/ │ │ │ └── base/ │ │ │ ├── jquery-ui.css │ │ │ ├── jquery.ui.accordion.css │ │ │ ├── jquery.ui.all.css │ │ │ ├── jquery.ui.autocomplete.css │ │ │ ├── jquery.ui.base.css │ │ │ ├── jquery.ui.button.css │ │ │ ├── jquery.ui.core.css │ │ │ ├── jquery.ui.datepicker.css │ │ │ ├── jquery.ui.dialog.css │ │ │ ├── jquery.ui.progressbar.css │ │ │ ├── jquery.ui.resizable.css │ │ │ ├── jquery.ui.selectable.css │ │ │ ├── jquery.ui.slider.css │ │ │ ├── jquery.ui.tabs.css │ │ │ └── jquery.ui.theme.css │ │ └── Scripts/ │ │ └── jquery-ui-1.8.20.js │ └── jQuery.UI.Combined.1.8.20.1.nupkg ├── jQuery.Validation.1.9.0.1/ │ ├── Content/ │ │ └── Scripts/ │ │ ├── jquery.validate-vsdoc.js │ │ └── jquery.validate.js │ └── jQuery.Validation.1.9.0.1.nupkg ├── knockoutjs.2.1.0/ │ ├── Content/ │ │ └── Scripts/ │ │ ├── knockout-2.1.0.debug.js │ │ └── knockout-2.1.0.js │ └── knockoutjs.2.1.0.nupkg ├── log4net.2.0.3/ │ ├── lib/ │ │ ├── net10-full/ │ │ │ └── log4net.xml │ │ ├── net11-full/ │ │ │ └── log4net.xml │ │ ├── net20-full/ │ │ │ └── log4net.xml │ │ ├── net35-client/ │ │ │ └── log4net.xml │ │ ├── net35-full/ │ │ │ └── log4net.xml │ │ ├── net40-client/ │ │ │ └── log4net.xml │ │ └── net40-full/ │ │ └── log4net.xml │ └── log4net.2.0.3.nupkg └── repositories.config