在好例子网,分享、交流、成长!
您当前所在位置:首页Others 开发实例一般编程问题 → 网上书店DEMO源码(C# ASP .NET 毕业设计)

网上书店DEMO源码(C# ASP .NET 毕业设计)

一般编程问题

下载此实例
  • 开发语言:Others
  • 实例大小:36.96M
  • 下载次数:8
  • 浏览次数:117
  • 发布时间:2020-08-21
  • 实例类别:一般编程问题
  • 发 布 人:robot666
  • 文件格式:.zip
  • 所需积分:2
 

实例介绍

【实例简介】
网上书店DEMO源码(C# ASP .NET 毕业设计) 可直接运行。做毕业设计、课程设计或者想研究下技术的可以下载学习。需要更多资源的可以关注我。
【实例截图】
【核心代码】
网上书店
└── OnlineStore-master
├── libs
│   └── AppfabricCaching
│   ├── Microsoft.ApplicationServer.Caching.Client.dll
│   ├── Microsoft.ApplicationServer.Caching.Core.dll
│   ├── Microsoft.WindowsFabric.Common.dll
│   └── Microsoft.WindowsFabric.Data.Common.dll
├── OnlineStore.Application
│   ├── AddressResolver.cs
│   ├── App_Data
│   │   ├── OnlineStore_log.ldf
│   │   └── OnlineStore.mdf
│   ├── ApplicationService.cs
│   ├── Global.asax
│   ├── Global.asax.cs
│   ├── InversedAddressResolver.cs
│   ├── Logs
│   │   └── onlinestore.txt
│   ├── OnlineStore.Application.csproj
│   ├── OrderService.svc
│   ├── OrderService.svc.cs
│   ├── packages.config
│   ├── ProductService.svc
│   ├── ProductService.svc.cs
│   ├── Properties
│   │   └── AssemblyInfo.cs
│   ├── ServiceImplementations
│   │   ├── OrderServiceImp.cs
│   │   ├── ProductServiceImp.cs
│   │   └── UserServiceImp.cs
│   ├── UserService.svc
│   ├── UserService.svc.cs
│   ├── Web.config
│   ├── Web.Debug.config
│   └── Web.Release.config
├── OnlineStore.Domain
│   ├── app.config
│   ├── 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
│   │   ├── ProductCategorization.cs
│   │   ├── Product.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
│   │   ├── IRepositoryContext.cs
│   │   ├── IRepository.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
├── OnlineStore.Events
│   ├── app.config
│   ├── Bus
│   │   ├── EventBus.cs
│   │   ├── IBus.cs
│   │   ├── IEventBus.cs
│   │   ├── MsmqBusOptions.cs
│   │   └── MsmqEventBus.cs
│   ├── EventAggregator.cs
│   ├── HandlesAsynchronouslyAttribute.cs
│   ├── IEventAggregator.cs
│   ├── IEvent.cs
│   ├── IEventHandler.cs
│   ├── OnlineStore.Events.csproj
│   └── Properties
│   └── AssemblyInfo.cs
├── OnlineStore.Events.Handlers
│   ├── app.config
│   ├── OnlineStore.Events.Handlers.csproj
│   ├── Properties
│   │   └── AssemblyInfo.cs
│   └── SendEmailHandler.cs
├── OnlineStore.Infrastructure
│   ├── app.config
│   ├── Caching
│   │   ├── AppfabricCacheProvider.cs
│   │   ├── CacheAttribute.cs
│   │   ├── CachingMethod.cs
│   │   ├── EntLibCacheProvider.cs
│   │   └── ICacheProvider.cs
│   ├── DisposableObject.cs
│   ├── InterceptionBehaviors
│   │   ├── CachingBehavior.cs
│   │   └── ExceptionLoggingBehavior.cs
│   ├── IUnitOfWork.cs
│   ├── OnlineStore.Infrastructure.csproj
│   ├── packages.config
│   ├── PagedResult.cs
│   ├── Properties
│   │   └── AssemblyInfo.cs
│   ├── ServiceLocator.cs
│   └── Utils.cs
├── OnlineStore.ModelDTO
│   ├── app.config
│   ├── OnlineStore.ModelDTO.csproj
│   ├── Properties
│   │   └── AssemblyInfo.cs
│   └── Service References
│   ├── OrderService
│   │   ├── configuration91.svcinfo
│   │   ├── configuration.svcinfo
│   │   ├── OnlineStore.ModelDTO.OrderService.ShoppingCart.datasource
│   │   ├── OrderService1.xsd
│   │   ├── OrderService2.xsd
│   │   ├── OrderService.disco
│   │   ├── OrderService.wsdl
│   │   ├── OrderService.xsd
│   │   ├── Reference.cs
│   │   └── Reference.svcmap
│   └── ProductService
│   ├── configuration91.svcinfo
│   ├── configuration.svcinfo
│   ├── OnlineStore.ModelDTO.ProductService.Category.datasource
│   ├── OnlineStore.ModelDTO.ProductService.Product.datasource
│   ├── ProductService1.wsdl
│   ├── ProductService1.xsd
│   ├── ProductService2.xsd
│   ├── ProductService.disco
│   ├── ProductService.wsdl
│   ├── ProductService.xsd
│   ├── Reference.cs
│   └── Reference.svcmap
├── OnlineStore.Repositories
│   ├── App.config
│   ├── EntityFramework
│   │   ├── CategoryRepository.cs
│   │   ├── EntityFrameworkRepositoryContext.cs
│   │   ├── EntityFrameworkRepository.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
│   ├── packages.config
│   └── Properties
│   └── AssemblyInfo.cs
├── OnlineStore.ServiceContract
│   ├── app.config
│   ├── 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
├── OnlineStore.sln
├── 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
│   │   │   ├── images
│   │   │   │   ├── ui-bg_flat_0_aaaaaa_40x100.png
│   │   │   │   ├── ui-bg_flat_75_ffffff_40x100.png
│   │   │   │   ├── ui-bg_glass_55_fbf9ee_1x400.png
│   │   │   │   ├── ui-bg_glass_65_ffffff_1x400.png
│   │   │   │   ├── ui-bg_glass_75_dadada_1x400.png
│   │   │   │   ├── ui-bg_glass_75_e6e6e6_1x400.png
│   │   │   │   ├── ui-bg_glass_95_fef1ec_1x400.png
│   │   │   │   ├── ui-bg_highlight-soft_75_cccccc_1x100.png
│   │   │   │   ├── ui-icons_222222_256x240.png
│   │   │   │   ├── ui-icons_2e83ff_256x240.png
│   │   │   │   ├── ui-icons_454545_256x240.png
│   │   │   │   ├── ui-icons_888888_256x240.png
│   │   │   │   └── ui-icons_cd0a0a_256x240.png
│   │   │   ├── 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.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
│   │   │   └── minified
│   │   │   ├── images
│   │   │   │   ├── ui-bg_flat_0_aaaaaa_40x100.png
│   │   │   │   ├── ui-bg_flat_75_ffffff_40x100.png
│   │   │   │   ├── ui-bg_glass_55_fbf9ee_1x400.png
│   │   │   │   ├── ui-bg_glass_65_ffffff_1x400.png
│   │   │   │   ├── ui-bg_glass_75_dadada_1x400.png
│   │   │   │   ├── ui-bg_glass_75_e6e6e6_1x400.png
│   │   │   │   ├── ui-bg_glass_95_fef1ec_1x400.png
│   │   │   │   ├── ui-bg_highlight-soft_75_cccccc_1x100.png
│   │   │   │   ├── ui-icons_222222_256x240.png
│   │   │   │   ├── ui-icons_2e83ff_256x240.png
│   │   │   │   ├── ui-icons_454545_256x240.png
│   │   │   │   ├── ui-icons_888888_256x240.png
│   │   │   │   └── ui-icons_cd0a0a_256x240.png
│   │   │   ├── jquery.ui.accordion.min.css
│   │   │   ├── jquery.ui.autocomplete.min.css
│   │   │   ├── jquery.ui.button.min.css
│   │   │   ├── jquery.ui.core.min.css
│   │   │   ├── jquery.ui.datepicker.min.css
│   │   │   ├── jquery.ui.dialog.min.css
│   │   │   ├── jquery-ui.min.css
│   │   │   ├── jquery.ui.progressbar.min.css
│   │   │   ├── jquery.ui.resizable.min.css
│   │   │   ├── jquery.ui.selectable.min.css
│   │   │   ├── jquery.ui.slider.min.css
│   │   │   ├── jquery.ui.tabs.min.css
│   │   │   └── jquery.ui.theme.min.css
│   │   ├── uploadify.css
│   │   └── uploadify.swf
│   ├── Controllers
│   │   ├── AccountController.cs
│   │   ├── AdminController.cs
│   │   ├── ControllerBase.cs
│   │   ├── HomeController.cs
│   │   └── LayoutController.cs
│   ├── favicon.ico
│   ├── Global.asax
│   ├── Global.asax.cs
│   ├── Images
│   │   ├── Add2.png
│   │   ├── Add.png
│   │   ├── Admin_32.png
│   │   ├── afterlogo.jpg
│   │   ├── arrows-ffffff.png
│   │   ├── Back.png
│   │   ├── banner.jpg
│   │   ├── Cancel.png
│   │   ├── Category_32.png
│   │   ├── category.jpg
│   │   ├── close.jpg
│   │   ├── CopyTo.png
│   │   ├── Delete.png
│   │   ├── Disable.png
│   │   ├── Edit.png
│   │   ├── Enable.png
│   │   ├── footer.jpg
│   │   ├── hard.jpg
│   │   ├── header.jpg
│   │   ├── Login.png
│   │   ├── logo.jpg
│   │   ├── Logout.png
│   │   ├── menu_beforelogo.jpg
│   │   ├── menu.jpg
│   │   ├── newtovar.jpg
│   │   ├── onlinestore_logo.png
│   │   ├── op.jpg
│   │   ├── pic1.jpg
│   │   ├── pic2.jpg
│   │   ├── pic3.jpg
│   │   ├── pic4.jpg
│   │   ├── picap.jpg
│   │   ├── popular.jpg
│   │   ├── Product_32.png
│   │   ├── Products
│   │   │   ├── 01505235-35b1-4995-804b-a496fb0f81d6.jpg
│   │   │   ├── 040DA7EB-D670-4843-A364-6D961217957D.jpg
│   │   │   ├── 20762C83-A827-43AB-8589-DC88C22E6A01.jpg
│   │   │   ├── 4BE8C7BD-F23F-4CEA-A3A8-09999AEF85FB.jpg
│   │   │   ├── 554AB834-7677-4A51-9FC1-FC7C21021B5B.jpg
│   │   │   ├── 57D1705F-B98E-4E02-AA30-B5E6E46CAAD4.jpg
│   │   │   ├── 59e037f2-43a6-4fe7-87c3-b726b0ebdc9a.jpg
│   │   │   ├── 75615F17-A147-472D-BA60-D19D21FF7860.jpg
│   │   │   ├── B416DAF4-59D7-462D-A0C2-45EBCE8D9A4D.jpg
│   │   │   ├── BB1F735C-DFCE-4ECB-B9FC-720D15FB6080.jpg
│   │   │   ├── BE93832B-A321-43B4-83B2-009C9947F981.jpg
│   │   │   ├── D06909EC-4789-4478-9AC7-714B749B69FA.jpg
│   │   │   ├── EB8FB8A3-411C-417F-BDC8-73D5401A977F.jpg
│   │   │   └── ProductImage.png
│   │   ├── Role_32.png
│   │   ├── SalesOrder_32.png
│   │   ├── Save.png
│   │   ├── shadow.png
│   │   ├── ShoppingCart256.png
│   │   ├── ShoppingCart32.png
│   │   ├── ShoppingCart64.png
│   │   ├── ShoppingCart.png
│   │   ├── spacer.jpg
│   │   ├── Success_32.png
│   │   ├── taling_center.jpg
│   │   ├── taling.jpg
│   │   ├── trash.jpg
│   │   ├── Update.png
│   │   └── User_32.png
│   ├── Membership
│   │   ├── OnlineStoreMembershipProvider.cs
│   │   └── OnlineStoreMembershipUser.cs
│   ├── MvcSiteMap.cs
│   ├── OnlineStore.Web.csproj
│   ├── OnlineStore.Web.csproj.DotSettings
│   ├── packages.config
│   ├── Properties
│   │   └── AssemblyInfo.cs
│   ├── Scripts
│   │   ├── hoverIntent.js
│   │   ├── jquery-1.7.1.intellisense.js
│   │   ├── jquery-1.7.1.js
│   │   ├── jquery-1.7.1.min.js
│   │   ├── jquery.bgiframe.min.js
│   │   ├── jquery.jqGrid.min.js
│   │   ├── jquery-ui-1.8.20.js
│   │   ├── jquery-ui-1.8.20.min.js
│   │   ├── jquery.unobtrusive-ajax.js
│   │   ├── jquery.unobtrusive-ajax.min.js
│   │   ├── jquery.uploadify.js
│   │   ├── jquery.uploadify.min.js
│   │   ├── jquery.validate.js
│   │   ├── jquery.validate.min.js
│   │   ├── jquery.validate.unobtrusive.js
│   │   ├── jquery.validate.unobtrusive.min.js
│   │   ├── jquery.validate-vsdoc.js
│   │   ├── knockout-2.1.0.debug.js
│   │   ├── knockout-2.1.0.js
│   │   ├── modernizr-2.5.3.js
│   │   ├── _references.js
│   │   ├── superfish.js
│   │   └── supersubs.js
│   ├── Service References
│   │   ├── OnlineStoreDto.Partial.cs
│   │   ├── OrderService
│   │   │   ├── configuration91.svcinfo
│   │   │   ├── configuration.svcinfo
│   │   │   ├── OnlineStore.Web.OrderService.OrderDto.datasource
│   │   │   ├── OnlineStore.Web.OrderService.ShoppingCartDto.datasource
│   │   │   ├── OrderService1.xsd
│   │   │   ├── OrderService2.xsd
│   │   │   ├── OrderService.disco
│   │   │   ├── OrderService.wsdl
│   │   │   ├── OrderService.xsd
│   │   │   ├── Reference.cs
│   │   │   └── Reference.svcmap
│   │   ├── ProductService
│   │   │   ├── configuration91.svcinfo
│   │   │   ├── configuration.svcinfo
│   │   │   ├── OnlineStore.Web.ProductService.CategoryDto.datasource
│   │   │   ├── OnlineStore.Web.ProductService.ProductCategorizationDto.datasource
│   │   │   ├── OnlineStore.Web.ProductService.ProductDto.datasource
│   │   │   ├── OnlineStore.Web.ProductService.ProductDtoWithPagination.datasource
│   │   │   ├── ProductService1.wsdl
│   │   │   ├── ProductService1.xsd
│   │   │   ├── ProductService2.xsd
│   │   │   ├── ProductService3.xsd
│   │   │   ├── ProductService.disco
│   │   │   ├── ProductService.wsdl
│   │   │   ├── ProductService.xsd
│   │   │   ├── Reference.cs
│   │   │   └── Reference.svcmap
│   │   └── UserService
│   │   ├── configuration91.svcinfo
│   │   ├── configuration.svcinfo
│   │   ├── OnlineStore.Web.UserService.OrderDto.datasource
│   │   ├── OnlineStore.Web.UserService.RoleDto.datasource
│   │   ├── OnlineStore.Web.UserService.UserDto.datasource
│   │   ├── Reference.cs
│   │   ├── Reference.svcmap
│   │   ├── UserService1.wsdl
│   │   ├── UserService1.xsd
│   │   ├── UserService2.xsd
│   │   ├── UserService3.xsd
│   │   ├── UserService.disco
│   │   ├── UserService.wsdl
│   │   └── UserService.xsd
│   ├── 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
│   │   │   ├── _Layout.cshtml
│   │   │   ├── _LoginPartial.cshtml
│   │   │   ├── NewProductsPartial.cshtml
│   │   │   └── ProductsPartial.cshtml
│   │   ├── _ViewStart.cshtml
│   │   └── Web.config
│   ├── Web.config
│   ├── Web.Debug.config
│   └── Web.Release.config
├── packages
│   ├── Antlr.3.4.1.9004
│   │   ├── Antlr.3.4.1.9004.nupkg
│   │   └── lib
│   │   └── Antlr3.Runtime.dll
│   ├── Antlr.3.5.0.2
│   │   ├── Antlr.3.5.0.2.nupkg
│   │   └── lib
│   │   └── Antlr3.Runtime.dll
│   ├── AutoMapper.3.3.1
│   │   ├── AutoMapper.3.3.1.nupkg
│   │   ├── lib
│   │   │   ├── MonoAndroid
│   │   │   │   ├── AutoMapper.Android.dll
│   │   │   │   ├── AutoMapper.dll
│   │   │   │   └── AutoMapper.xml
│   │   │   ├── MonoTouch
│   │   │   │   ├── AutoMapper.dll
│   │   │   │   ├── AutoMapper.iOS.dll
│   │   │   │   └── AutoMapper.xml
│   │   │   ├── net40
│   │   │   │   ├── AutoMapper.dll
│   │   │   │   ├── AutoMapper.Net4.dll
│   │   │   │   └── AutoMapper.xml
│   │   │   ├── portable-windows8+net40+wp8+sl5+MonoAndroid+MonoTouch
│   │   │   │   ├── AutoMapper.dll
│   │   │   │   └── AutoMapper.xml
│   │   │   ├── portable-windows8+net40+wp8+wpa81+sl5+MonoAndroid+MonoTouch
│   │   │   │   ├── AutoMapper.dll
│   │   │   │   └── AutoMapper.xml
│   │   │   ├── sl5
│   │   │   │   ├── AutoMapper.dll
│   │   │   │   ├── AutoMapper.SL5.dll
│   │   │   │   └── AutoMapper.xml
│   │   │   ├── windows8
│   │   │   │   ├── AutoMapper.dll
│   │   │   │   ├── AutoMapper.WinRT.dll
│   │   │   │   └── AutoMapper.xml
│   │   │   ├── wp8
│   │   │   │   ├── AutoMapper.dll
│   │   │   │   ├── AutoMapper.WP8.dll
│   │   │   │   └── AutoMapper.xml
│   │   │   └── wpa81
│   │   │   ├── AutoMapper.dll
│   │   │   ├── AutoMapper.WPA81.dll
│   │   │   └── 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.dll
│   │   └── Microsoft.Practices.ServiceLocation.XML
│   ├── DotNetOpenAuth.AspNet.4.0.3.12153
│   │   ├── DotNetOpenAuth.AspNet.4.0.3.12153.nupkg
│   │   └── lib
│   │   └── net40-full
│   │   ├── DotNetOpenAuth.AspNet.dll
│   │   └── DotNetOpenAuth.AspNet.xml
│   ├── DotNetOpenAuth.AspNet.4.3.0.13117
│   │   ├── DotNetOpenAuth.AspNet.4.3.0.13117.nupkg
│   │   └── lib
│   │   ├── net40-full
│   │   │   ├── DotNetOpenAuth.AspNet.dll
│   │   │   └── DotNetOpenAuth.AspNet.xml
│   │   └── net45-full
│   │   ├── DotNetOpenAuth.AspNet.dll
│   │   └── DotNetOpenAuth.AspNet.xml
│   ├── DotNetOpenAuth.Core.4.0.3.12153
│   │   ├── content
│   │   │   └── web.config.transform
│   │   ├── DotNetOpenAuth.Core.4.0.3.12153.nupkg
│   │   └── lib
│   │   ├── net35-full
│   │   │   ├── DotNetOpenAuth.Core.dll
│   │   │   └── DotNetOpenAuth.Core.xml
│   │   └── net40-full
│   │   ├── DotNetOpenAuth.Core.dll
│   │   └── DotNetOpenAuth.Core.xml
│   ├── DotNetOpenAuth.Core.4.3.0.13117
│   │   ├── content
│   │   │   └── web.config.transform
│   │   ├── DotNetOpenAuth.Core.4.3.0.13117.nupkg
│   │   └── lib
│   │   ├── net35-full
│   │   │   ├── DotNetOpenAuth.Core.dll
│   │   │   └── DotNetOpenAuth.Core.xml
│   │   ├── net40-full
│   │   │   ├── DotNetOpenAuth.Core.dll
│   │   │   └── DotNetOpenAuth.Core.xml
│   │   └── net45-full
│   │   ├── DotNetOpenAuth.Core.dll
│   │   └── DotNetOpenAuth.Core.xml
│   ├── DotNetOpenAuth.OAuth.Consumer.4.0.3.12153
│   │   ├── DotNetOpenAuth.OAuth.Consumer.4.0.3.12153.nupkg
│   │   └── lib
│   │   ├── net35-full
│   │   │   ├── DotNetOpenAuth.OAuth.Consumer.dll
│   │   │   └── DotNetOpenAuth.OAuth.Consumer.xml
│   │   └── net40-full
│   │   ├── DotNetOpenAuth.OAuth.Consumer.dll
│   │   └── 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.dll
│   │   │   └── DotNetOpenAuth.OAuth.Consumer.xml
│   │   ├── net40-full
│   │   │   ├── DotNetOpenAuth.OAuth.Consumer.dll
│   │   │   └── DotNetOpenAuth.OAuth.Consumer.xml
│   │   └── net45-full
│   │   ├── DotNetOpenAuth.OAuth.Consumer.dll
│   │   └── DotNetOpenAuth.OAuth.Consumer.xml
│   ├── DotNetOpenAuth.OAuth.Core.4.0.3.12153
│   │   ├── content
│   │   │   └── web.config.transform
│   │   ├── DotNetOpenAuth.OAuth.Core.4.0.3.12153.nupkg
│   │   └── lib
│   │   ├── net35-full
│   │   │   ├── DotNetOpenAuth.OAuth.dll
│   │   │   └── DotNetOpenAuth.OAuth.xml
│   │   └── net40-full
│   │   ├── DotNetOpenAuth.OAuth.dll
│   │   └── DotNetOpenAuth.OAuth.xml
│   ├── DotNetOpenAuth.OAuth.Core.4.3.0.13117
│   │   ├── content
│   │   │   └── web.config.transform
│   │   ├── DotNetOpenAuth.OAuth.Core.4.3.0.13117.nupkg
│   │   └── lib
│   │   ├── net35-full
│   │   │   ├── DotNetOpenAuth.OAuth.dll
│   │   │   └── DotNetOpenAuth.OAuth.xml
│   │   ├── net40-full
│   │   │   ├── DotNetOpenAuth.OAuth.dll
│   │   │   └── DotNetOpenAuth.OAuth.xml
│   │   └── net45-full
│   │   ├── DotNetOpenAuth.OAuth.dll
│   │   └── DotNetOpenAuth.OAuth.xml
│   ├── DotNetOpenAuth.OpenId.Core.4.0.3.12153
│   │   ├── content
│   │   │   └── web.config.transform
│   │   ├── DotNetOpenAuth.OpenId.Core.4.0.3.12153.nupkg
│   │   └── lib
│   │   ├── net35-full
│   │   │   ├── DotNetOpenAuth.OpenId.dll
│   │   │   ├── DotNetOpenAuth.OpenId.xml
│   │   │   ├── Mono.Math.dll
│   │   │   ├── Mono.Math.xml
│   │   │   ├── Org.Mentalis.Security.Cryptography.dll
│   │   │   └── Org.Mentalis.Security.Cryptography.xml
│   │   └── net40-full
│   │   ├── DotNetOpenAuth.OpenId.dll
│   │   ├── DotNetOpenAuth.OpenId.xml
│   │   ├── Mono.Math.dll
│   │   ├── Mono.Math.xml
│   │   ├── Org.Mentalis.Security.Cryptography.dll
│   │   └── Org.Mentalis.Security.Cryptography.xml
│   ├── DotNetOpenAuth.OpenId.Core.4.3.0.13117
│   │   ├── content
│   │   │   ├── net35-full
│   │   │   │   └── web.config.transform
│   │   │   ├── net40-full
│   │   │   │   └── web.config.transform
│   │   │   └── net45-full
│   │   │   └── web.config.transform
│   │   ├── DotNetOpenAuth.OpenId.Core.4.3.0.13117.nupkg
│   │   └── lib
│   │   ├── net35-full
│   │   │   ├── DotNetOpenAuth.OpenId.dll
│   │   │   ├── DotNetOpenAuth.OpenId.xml
│   │   │   ├── Mono.Math.dll
│   │   │   ├── Mono.Math.xml
│   │   │   ├── Org.Mentalis.Security.Cryptography.dll
│   │   │   └── Org.Mentalis.Security.Cryptography.xml
│   │   ├── net40-full
│   │   │   ├── DotNetOpenAuth.OpenId.dll
│   │   │   ├── DotNetOpenAuth.OpenId.xml
│   │   │   ├── Mono.Math.dll
│   │   │   ├── Mono.Math.xml
│   │   │   ├── Org.Mentalis.Security.Cryptography.dll
│   │   │   └── Org.Mentalis.Security.Cryptography.xml
│   │   └── net45-full
│   │   ├── DotNetOpenAuth.OpenId.dll
│   │   ├── DotNetOpenAuth.OpenId.xml
│   │   ├── Mono.Math.dll
│   │   ├── Mono.Math.xml
│   │   ├── Org.Mentalis.Security.Cryptography.dll
│   │   └── Org.Mentalis.Security.Cryptography.xml
│   ├── DotNetOpenAuth.OpenId.RelyingParty.4.0.3.12153
│   │   ├── content
│   │   │   └── web.config.transform
│   │   ├── DotNetOpenAuth.OpenId.RelyingParty.4.0.3.12153.nupkg
│   │   └── lib
│   │   ├── net35-full
│   │   │   ├── DotNetOpenAuth.OpenId.RelyingParty.dll
│   │   │   └── DotNetOpenAuth.OpenId.RelyingParty.xml
│   │   └── net40-full
│   │   ├── DotNetOpenAuth.OpenId.RelyingParty.dll
│   │   └── DotNetOpenAuth.OpenId.RelyingParty.xml
│   ├── DotNetOpenAuth.OpenId.RelyingParty.4.3.0.13117
│   │   ├── content
│   │   │   └── web.config.transform
│   │   ├── DotNetOpenAuth.OpenId.RelyingParty.4.3.0.13117.nupkg
│   │   └── lib
│   │   ├── net35-full
│   │   │   ├── DotNetOpenAuth.OpenId.RelyingParty.dll
│   │   │   └── DotNetOpenAuth.OpenId.RelyingParty.xml
│   │   ├── net40-full
│   │   │   ├── DotNetOpenAuth.OpenId.RelyingParty.dll
│   │   │   └── DotNetOpenAuth.OpenId.RelyingParty.xml
│   │   └── net45-full
│   │   ├── DotNetOpenAuth.OpenId.RelyingParty.dll
│   │   └── DotNetOpenAuth.OpenId.RelyingParty.xml
│   ├── EnterpriseLibrary.Caching.5.0.505.0
│   │   ├── EnterpriseLibrary.Caching.5.0.505.0.nupkg
│   │   ├── lib
│   │   │   ├── NET35
│   │   │   │   ├── Microsoft.Practices.EnterpriseLibrary.Caching.dll
│   │   │   │   └── Microsoft.Practices.EnterpriseLibrary.Caching.xml
│   │   │   └── SL40
│   │   │   ├── Microsoft.Practices.EnterpriseLibrary.Caching.Silverlight.dll
│   │   │   └── Microsoft.Practices.EnterpriseLibrary.Caching.Silverlight.xml
│   │   └── tools
│   │   ├── install.ps1
│   │   └── Utils.psm1
│   ├── EnterpriseLibrary.Common.5.0.505.0
│   │   ├── EnterpriseLibrary.Common.5.0.505.0.nupkg
│   │   ├── lib
│   │   │   ├── NET35
│   │   │   │   ├── Microsoft.Practices.EnterpriseLibrary.Common.dll
│   │   │   │   └── Microsoft.Practices.EnterpriseLibrary.Common.xml
│   │   │   └── SL40
│   │   │   ├── Microsoft.Practices.EnterpriseLibrary.Common.Silverlight.dll
│   │   │   └── Microsoft.Practices.EnterpriseLibrary.Common.Silverlight.xml
│   │   └── tools
│   │   ├── install.ps1
│   │   └── Utils.psm1
│   ├── EntityFramework.5.0.0
│   │   ├── Content
│   │   │   ├── App.config.transform
│   │   │   └── Web.config.transform
│   │   ├── EntityFramework.5.0.0.nupkg
│   │   ├── lib
│   │   │   ├── net40
│   │   │   │   ├── EntityFramework.dll
│   │   │   │   └── EntityFramework.xml
│   │   │   └── net45
│   │   │   ├── EntityFramework.dll
│   │   │   └── EntityFramework.xml
│   │   └── tools
│   │   ├── about_EntityFramework.help.txt
│   │   ├── EntityFramework.PowerShell.dll
│   │   ├── EntityFramework.PowerShell.Utility.dll
│   │   ├── EntityFramework.PS3.psd1
│   │   ├── EntityFramework.psd1
│   │   ├── EntityFramework.psm1
│   │   ├── init.ps1
│   │   ├── install.ps1
│   │   ├── migrate.exe
│   │   ├── Redirect.config
│   │   └── Redirect.VS11.config
│   ├── EntityFramework.6.1.3
│   │   ├── content
│   │   │   ├── App.config.transform
│   │   │   └── Web.config.transform
│   │   ├── EntityFramework.6.1.3.nupkg
│   │   ├── lib
│   │   │   ├── net40
│   │   │   │   ├── EntityFramework.dll
│   │   │   │   ├── EntityFramework.SqlServer.dll
│   │   │   │   ├── EntityFramework.SqlServer.xml
│   │   │   │   └── EntityFramework.xml
│   │   │   └── net45
│   │   │   ├── EntityFramework.dll
│   │   │   ├── EntityFramework.SqlServer.dll
│   │   │   ├── EntityFramework.SqlServer.xml
│   │   │   └── EntityFramework.xml
│   │   └── tools
│   │   ├── about_EntityFramework.help.txt
│   │   ├── EntityFramework.PowerShell.dll
│   │   ├── EntityFramework.PowerShell.Utility.dll
│   │   ├── EntityFramework.psd1
│   │   ├── EntityFramework.psm1
│   │   ├── init.ps1
│   │   ├── install.ps1
│   │   └── migrate.exe
│   ├── jQuery.1.7.1.1
│   │   ├── Content
│   │   │   └── Scripts
│   │   │   ├── jquery-1.7.1.js
│   │   │   ├── jquery-1.7.1.min.js
│   │   │   └── jquery-1.7.1-vsdoc.js
│   │   ├── jQuery.1.7.1.1.nupkg
│   │   └── Tools
│   │   ├── common.ps1
│   │   ├── install.ps1
│   │   ├── jquery-1.7.1.intellisense.js
│   │   └── uninstall.ps1
│   ├── jQuery.UI.Combined.1.8.20.1
│   │   ├── Content
│   │   │   ├── Content
│   │   │   │   └── themes
│   │   │   │   └── base
│   │   │   │   ├── images
│   │   │   │   │   ├── ui-bg_flat_0_aaaaaa_40x100.png
│   │   │   │   │   ├── ui-bg_flat_75_ffffff_40x100.png
│   │   │   │   │   ├── ui-bg_glass_55_fbf9ee_1x400.png
│   │   │   │   │   ├── ui-bg_glass_65_ffffff_1x400.png
│   │   │   │   │   ├── ui-bg_glass_75_dadada_1x400.png
│   │   │   │   │   ├── ui-bg_glass_75_e6e6e6_1x400.png
│   │   │   │   │   ├── ui-bg_glass_95_fef1ec_1x400.png
│   │   │   │   │   ├── ui-bg_highlight-soft_75_cccccc_1x100.png
│   │   │   │   │   ├── ui-icons_222222_256x240.png
│   │   │   │   │   ├── ui-icons_2e83ff_256x240.png
│   │   │   │   │   ├── ui-icons_454545_256x240.png
│   │   │   │   │   ├── ui-icons_888888_256x240.png
│   │   │   │   │   └── ui-icons_cd0a0a_256x240.png
│   │   │   │   ├── 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.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
│   │   │   │   └── minified
│   │   │   │   ├── images
│   │   │   │   │   ├── ui-bg_flat_0_aaaaaa_40x100.png
│   │   │   │   │   ├── ui-bg_flat_75_ffffff_40x100.png
│   │   │   │   │   ├── ui-bg_glass_55_fbf9ee_1x400.png
│   │   │   │   │   ├── ui-bg_glass_65_ffffff_1x400.png
│   │   │   │   │   ├── ui-bg_glass_75_dadada_1x400.png
│   │   │   │   │   ├── ui-bg_glass_75_e6e6e6_1x400.png
│   │   │   │   │   ├── ui-bg_glass_95_fef1ec_1x400.png
│   │   │   │   │   ├── ui-bg_highlight-soft_75_cccccc_1x100.png
│   │   │   │   │   ├── ui-icons_222222_256x240.png
│   │   │   │   │   ├── ui-icons_2e83ff_256x240.png
│   │   │   │   │   ├── ui-icons_454545_256x240.png
│   │   │   │   │   ├── ui-icons_888888_256x240.png
│   │   │   │   │   └── ui-icons_cd0a0a_256x240.png
│   │   │   │   ├── jquery.ui.accordion.min.css
│   │   │   │   ├── jquery.ui.autocomplete.min.css
│   │   │   │   ├── jquery.ui.button.min.css
│   │   │   │   ├── jquery.ui.core.min.css
│   │   │   │   ├── jquery.ui.datepicker.min.css
│   │   │   │   ├── jquery.ui.dialog.min.css
│   │   │   │   ├── jquery-ui.min.css
│   │   │   │   ├── jquery.ui.progressbar.min.css
│   │   │   │   ├── jquery.ui.resizable.min.css
│   │   │   │   ├── jquery.ui.selectable.min.css
│   │   │   │   ├── jquery.ui.slider.min.css
│   │   │   │   ├── jquery.ui.tabs.min.css
│   │   │   │   └── jquery.ui.theme.min.css
│   │   │   └── Scripts
│   │   │   ├── jquery-ui-1.8.20.js
│   │   │   └── jquery-ui-1.8.20.min.js
│   │   └── jQuery.UI.Combined.1.8.20.1.nupkg
│   ├── jQuery.Validation.1.9.0.1
│   │   ├── Content
│   │   │   └── Scripts
│   │   │   ├── jquery.validate.js
│   │   │   ├── jquery.validate.min.js
│   │   │   └── jquery.validate-vsdoc.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.dll
│   │   │   │   └── log4net.xml
│   │   │   ├── net11-full
│   │   │   │   ├── log4net.dll
│   │   │   │   └── log4net.xml
│   │   │   ├── net20-full
│   │   │   │   ├── log4net.dll
│   │   │   │   └── log4net.xml
│   │   │   ├── net35-client
│   │   │   │   ├── log4net.dll
│   │   │   │   └── log4net.xml
│   │   │   ├── net35-full
│   │   │   │   ├── log4net.dll
│   │   │   │   └── log4net.xml
│   │   │   ├── net40-client
│   │   │   │   ├── log4net.dll
│   │   │   │   └── log4net.xml
│   │   │   └── net40-full
│   │   │   ├── log4net.dll
│   │   │   └── log4net.xml
│   │   └── log4net.2.0.3.nupkg
│   ├── Microsoft.AspNet.Mvc.4.0.20710.0
│   │   ├── lib
│   │   │   └── net40
│   │   │   ├── System.Web.Mvc.dll
│   │   │   └── System.Web.Mvc.xml
│   │   └── Microsoft.AspNet.Mvc.4.0.20710.0.nupkg
│   ├── Microsoft.AspNet.Razor.2.0.20710.0
│   │   ├── lib
│   │   │   └── net40
│   │   │   ├── System.Web.Razor.dll
│   │   │   └── System.Web.Razor.xml
│   │   └── Microsoft.AspNet.Razor.2.0.20710.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
│   │   ├── lib
│   │   │   └── net40
│   │   │   ├── System.Net.Http.Formatting.dll
│   │   │   └── System.Net.Http.Formatting.xml
│   │   └── Microsoft.AspNet.WebApi.Client.4.0.20710.0.nupkg
│   ├── Microsoft.AspNet.WebApi.Core.4.0.20710.0
│   │   ├── content
│   │   │   └── web.config.transform
│   │   ├── lib
│   │   │   └── net40
│   │   │   ├── System.Web.Http.dll
│   │   │   └── System.Web.Http.xml
│   │   └── Microsoft.AspNet.WebApi.Core.4.0.20710.0.nupkg
│   ├── Microsoft.AspNet.WebApi.WebHost.4.0.20710.0
│   │   ├── lib
│   │   │   └── net40
│   │   │   ├── System.Web.Http.WebHost.dll
│   │   │   └── System.Web.Http.WebHost.xml
│   │   └── Microsoft.AspNet.WebApi.WebHost.4.0.20710.0.nupkg
│   ├── Microsoft.AspNet.Web.Optimization.1.0.0
│   │   ├── lib
│   │   │   └── net40
│   │   │   └── System.Web.Optimization.dll
│   │   └── Microsoft.AspNet.Web.Optimization.1.0.0.nupkg
│   ├── Microsoft.AspNet.WebPages.2.0.20710.0
│   │   ├── lib
│   │   │   └── net40
│   │   │   ├── System.Web.Helpers.dll
│   │   │   ├── System.Web.Helpers.xml
│   │   │   ├── System.Web.WebPages.Deployment.dll
│   │   │   ├── System.Web.WebPages.Deployment.xml
│   │   │   ├── System.Web.WebPages.dll
│   │   │   ├── System.Web.WebPages.Razor.dll
│   │   │   ├── System.Web.WebPages.Razor.xml
│   │   │   └── System.Web.WebPages.xml
│   │   └── Microsoft.AspNet.WebPages.2.0.20710.0.nupkg
│   ├── Microsoft.AspNet.WebPages.Data.2.0.20710.0
│   │   ├── lib
│   │   │   └── net40
│   │   │   ├── WebMatrix.Data.dll
│   │   │   └── WebMatrix.Data.xml
│   │   └── Microsoft.AspNet.WebPages.Data.2.0.20710.0.nupkg
│   ├── Microsoft.AspNet.WebPages.OAuth.2.0.20710.0
│   │   ├── lib
│   │   │   └── net40
│   │   │   ├── Microsoft.Web.WebPages.OAuth.dll
│   │   │   └── Microsoft.Web.WebPages.OAuth.xml
│   │   └── Microsoft.AspNet.WebPages.OAuth.2.0.20710.0.nupkg
│   ├── Microsoft.AspNet.WebPages.WebData.2.0.20710.0
│   │   ├── lib
│   │   │   └── net40
│   │   │   ├── WebMatrix.WebData.dll
│   │   │   └── WebMatrix.WebData.xml
│   │   └── Microsoft.AspNet.WebPages.WebData.2.0.20710.0.nupkg
│   ├── Microsoft.jQuery.Unobtrusive.Ajax.2.0.20710.0
│   │   ├── Content
│   │   │   └── Scripts
│   │   │   ├── jquery.unobtrusive-ajax.js
│   │   │   └── jquery.unobtrusive-ajax.min.js
│   │   └── Microsoft.jQuery.Unobtrusive.Ajax.2.0.20710.0.nupkg
│   ├── Microsoft.jQuery.Unobtrusive.Validation.2.0.20710.0
│   │   ├── Content
│   │   │   └── Scripts
│   │   │   ├── jquery.validate.unobtrusive.js
│   │   │   └── jquery.validate.unobtrusive.min.js
│   │   └── Microsoft.jQuery.Unobtrusive.Validation.2.0.20710.0.nupkg
│   ├── Microsoft.Net.Http.2.0.20710.0
│   │   ├── lib
│   │   │   ├── net40
│   │   │   │   ├── System.Net.Http.dll
│   │   │   │   ├── System.Net.Http.WebRequest.dll
│   │   │   │   ├── System.Net.Http.WebRequest.xml
│   │   │   │   └── System.Net.Http.xml
│   │   │   └── net45
│   │   │   └── _._
│   │   └── Microsoft.Net.Http.2.0.20710.0.nupkg
│   ├── Microsoft.Web.Infrastructure.1.0.0.0
│   │   ├── lib
│   │   │   └── net40
│   │   │   └── Microsoft.Web.Infrastructure.dll
│   │   └── Microsoft.Web.Infrastructure.1.0.0.0.nupkg
│   ├── Modernizr.2.5.3
│   │   ├── Content
│   │   │   └── Scripts
│   │   │   └── modernizr-2.5.3.js
│   │   └── Modernizr.2.5.3.nupkg
│   ├── Newtonsoft.Json.4.5.6
│   │   ├── lib
│   │   │   ├── net20
│   │   │   │   ├── Newtonsoft.Json.dll
│   │   │   │   └── Newtonsoft.Json.xml
│   │   │   ├── net35
│   │   │   │   ├── Newtonsoft.Json.dll
│   │   │   │   └── Newtonsoft.Json.xml
│   │   │   ├── net40
│   │   │   │   ├── Newtonsoft.Json.dll
│   │   │   │   └── Newtonsoft.Json.xml
│   │   │   ├── sl3-wp
│   │   │   │   ├── Newtonsoft.Json.dll
│   │   │   │   └── Newtonsoft.Json.xml
│   │   │   ├── sl4
│   │   │   │   ├── Newtonsoft.Json.dll
│   │   │   │   └── Newtonsoft.Json.xml
│   │   │   ├── sl4-windowsphone71
│   │   │   │   ├── Newtonsoft.Json.dll
│   │   │   │   └── Newtonsoft.Json.xml
│   │   │   └── winrt45
│   │   │   ├── Newtonsoft.Json.dll
│   │   │   └── Newtonsoft.Json.xml
│   │   └── Newtonsoft.Json.4.5.6.nupkg
│   ├── repositories.config
│   ├── Unity.3.5.1404.0
│   │   ├── lib
│   │   │   ├── net45
│   │   │   │   ├── Microsoft.Practices.Unity.Configuration.dll
│   │   │   │   ├── Microsoft.Practices.Unity.Configuration.XML
│   │   │   │   ├── Microsoft.Practices.Unity.dll
│   │   │   │   ├── Microsoft.Practices.Unity.RegistrationByConvention.dll
│   │   │   │   ├── Microsoft.Practices.Unity.RegistrationByConvention.XML
│   │   │   │   └── Microsoft.Practices.Unity.xml
│   │   │   ├── portable-net45+wp80+win8+MonoAndroid10+MonoTouch10
│   │   │   │   ├── Microsoft.Practices.Unity.dll
│   │   │   │   └── Microsoft.Practices.Unity.xml
│   │   │   ├── win8
│   │   │   │   ├── Microsoft.Practices.Unity.dll
│   │   │   │   ├── Microsoft.Practices.Unity.RegistrationByConvention.dll
│   │   │   │   ├── Microsoft.Practices.Unity.RegistrationByConvention.pri
│   │   │   │   ├── Microsoft.Practices.Unity.RegistrationByConvention.XML
│   │   │   │   └── Microsoft.Practices.Unity.xml
│   │   │   └── wp80
│   │   │   ├── Microsoft.Practices.Unity.dll
│   │   │   ├── Microsoft.Practices.Unity.RegistrationByConvention.dll
│   │   │   ├── Microsoft.Practices.Unity.RegistrationByConvention.XML
│   │   │   └── Microsoft.Practices.Unity.xml
│   │   ├── Unity.3.5.1404.0.nupkg
│   │   └── UnityConfiguration30.xsd
│   ├── Unity.Interception.3.5.1404.0
│   │   ├── lib
│   │   │   └── Net45
│   │   │   ├── Microsoft.Practices.Unity.Interception.Configuration.dll
│   │   │   ├── Microsoft.Practices.Unity.Interception.Configuration.xml
│   │   │   ├── Microsoft.Practices.Unity.Interception.dll
│   │   │   └── Microsoft.Practices.Unity.Interception.xml
│   │   └── Unity.Interception.3.5.1404.0.nupkg
│   └── WebGrease.1.1.0
│   ├── lib
│   │   ├── Antlr3.Runtime.dll
│   │   └── WebGrease.dll
│   ├── tools
│   │   └── WG.exe
│   └── WebGrease.1.1.0.nupkg
├── Pics
│   ├── 10.png
│   ├── 11.png
│   ├── 12.png
│   ├── 13.png
│   ├── 14.png
│   ├── 15.png
│   ├── 16.png
│   ├── 17.PNG
│   ├── 1.png
│   ├── 2.png
│   ├── 3.png
│   ├── 4.png
│   ├── 5.png
│   ├── 6.png
│   ├── 7.png
│   ├── 8.png
│   └── 9.png
├── 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

273 directories, 835 files

标签:

实例下载地址

网上书店DEMO源码(C# ASP .NET 毕业设计)

不能下载?内容有错? 点击这里报错 + 投诉 + 提问

好例子网口号:伸出你的我的手 — 分享

网友评论

发表评论

(您的评论需要经过审核才能显示)

查看所有0条评论>>

小贴士

感谢您为本站写下的评论,您的评论对其它用户来说具有重要的参考价值,所以请认真填写。

  • 类似“顶”、“沙发”之类没有营养的文字,对勤劳贡献的楼主来说是令人沮丧的反馈信息。
  • 相信您也不想看到一排文字/表情墙,所以请不要反馈意义不大的重复字符,也请尽量不要纯表情的回复。
  • 提问之前请再仔细看一遍楼主的说明,或许是您遗漏了。
  • 请勿到处挖坑绊人、招贴广告。既占空间让人厌烦,又没人会搭理,于人于己都无利。

关于好例子网

本站旨在为广大IT学习爱好者提供一个非营利性互相学习交流分享平台。本站所有资源都可以被免费获取学习研究。本站资源来自网友分享,对搜索内容的合法性不具有预见性、识别性、控制性,仅供学习研究,请务必在下载后24小时内给予删除,不得用于其他任何用途,否则后果自负。基于互联网的特殊性,平台无法对用户传输的作品、信息、内容的权属或合法性、安全性、合规性、真实性、科学性、完整权、有效性等进行实质审查;无论平台是否已进行审查,用户均应自行承担因其传输的作品、信息、内容而可能或已经产生的侵权或权属纠纷等法律责任。本站所有资源不代表本站的观点或立场,基于网友分享,根据中国法律《信息网络传播权保护条例》第二十二与二十三条之规定,若资源存在侵权或相关问题请联系本站客服人员,点此联系我们。关于更多版权及免责申明参见 版权及免责申明

;
报警