基本信息
源码名称:NETCoreBBS.net core论坛
源码大小:0.60M
文件格式:.zip
开发语言:C#
更新时间:2023-04-03
   友情提示:(无需注册或充值,赞助后即可获取资源下载链接)

     嘿,亲!知识可是无价之宝呢,但咱这精心整理的资料也耗费了不少心血呀。小小地破费一下,绝对物超所值哦!如有下载和支付问题,请联系我们QQ(微信同号):78630559

本次赞助数额为: 2 元 
   源码介绍

NETCoreBBS.net core论坛


.
├── NETCoreBBS-dev
│   ├── LICENSE
│   ├── NetCoreBBS.sln
│   ├── NuGet.Config
│   ├── README.md
│   ├── src
│   │   ├── ApplicationCore
│   │   │   ├── ApplicationCore.csproj
│   │   │   ├── Entities
│   │   │   │   ├── BaseEntity.cs
│   │   │   │   ├── Topic.cs
│   │   │   │   ├── TopicNode.cs
│   │   │   │   ├── TopicReply.cs
│   │   │   │   ├── User.cs
│   │   │   │   ├── UserCollection.cs
│   │   │   │   └── UserMessage.cs
│   │   │   ├── Interfaces
│   │   │   │   ├── IRepository.cs
│   │   │   │   ├── ITopicReplyRepository.cs
│   │   │   │   └── ITopicRepository.cs
│   │   │   └── Page.cs
│   │   ├── Infrastructure
│   │   │   ├── DataContext.cs
│   │   │   ├── Infrastructure.csproj
│   │   │   ├── Migrations
│   │   │   │   ├── 20170606024516_InitMigration.Designer.cs
│   │   │   │   ├── 20170606024516_InitMigration.cs
│   │   │   │   └── DataContextModelSnapshot.cs
│   │   │   └── Repositorys
│   │   │       ├── Repository.cs
│   │   │       ├── TopicReplyRepository.cs
│   │   │       └── TopicRepository.cs
│   │   └── NetCoreBBS
│   │       ├── Areas
│   │       │   └── Admin
│   │       │       ├── Controllers
│   │       │       │   ├── ManageController.cs
│   │       │       │   ├── NodeController.cs
│   │       │       │   ├── TopicController.cs
│   │       │       │   ├── TopicRepliesController.cs
│   │       │       │   └── UserController.cs
│   │       │       ├── Views
│   │       │       │   ├── Manage
│   │       │       │   │   └── Index.cshtml
│   │       │       │   ├── Node
│   │       │       │   │   ├── Create.cshtml
│   │       │       │   │   ├── Edit.cshtml
│   │       │       │   │   └── Index.cshtml
│   │       │       │   ├── Topic
│   │       │       │   │   └── Index.cshtml
│   │       │       │   ├── TopicReplies
│   │       │       │   │   └── Index.cshtml
│   │       │       │   └── User
│   │       │       │       └── Index.cshtml
│   │       │       ├── _ViewImports.cshtml
│   │       │       └── _ViewStart.cshtml
│   │       ├── Controllers
│   │       │   ├── AccountController.cs
│   │       │   ├── HomeController.cs
│   │       │   ├── TopicController.cs
│   │       │   └── UserController.cs
│   │       ├── MessageServices.cs
│   │       ├── Middleware
│   │       │   └── RequestIPMiddleware.cs
│   │       ├── NetCoreBBS.csproj
│   │       ├── Program.cs
│   │       ├── Properties
│   │       │   └── launchSettings.json
│   │       ├── Startup.cs
│   │       ├── UserServices.cs
│   │       ├── ViewComponents
│   │       │   ├── Statistics.cs
│   │       │   └── TopicRankList.cs
│   │       ├── ViewModels
│   │       │   ├── LoginViewModel.cs
│   │       │   ├── TopicViewModel.cs
│   │       │   └── UserViewModel.cs
│   │       ├── Views
│   │       │   ├── Account
│   │       │   │   ├── ForgotPassword.cshtml
│   │       │   │   ├── Login.cshtml
│   │       │   │   ├── Register.cshtml
│   │       │   │   └── _ExternalLoginsListPartial.cshtml
│   │       │   ├── Home
│   │       │   │   ├── About.cshtml
│   │       │   │   └── Index.cshtml
│   │       │   ├── Shared
│   │       │   │   ├── Components
│   │       │   │   │   ├── Statistics
│   │       │   │   │   │   └── Default.cshtml
│   │       │   │   │   └── TopicRankList
│   │       │   │   │       └── Default.cshtml
│   │       │   │   ├── Error.cshtml
│   │       │   │   ├── _AdminLayout.cshtml
│   │       │   │   ├── _Layout.cshtml
│   │       │   │   ├── _LoginPartial.cshtml
│   │       │   │   ├── _PagerPartial.cshtml
│   │       │   │   └── _SidebarPartial.cshtml
│   │       │   ├── Topic
│   │       │   │   ├── Index.cshtml
│   │       │   │   └── Node.cshtml
│   │       │   ├── User
│   │       │   │   ├── Edit.cshtml
│   │       │   │   └── Index.cshtml
│   │       │   ├── _ViewImports.cshtml
│   │       │   └── _ViewStart.cshtml
│   │       ├── appsettings.json
│   │       ├── bower.json
│   │       ├── bundleconfig.json
│   │       ├── nlog.config
│   │       └── wwwroot
│   │           ├── _references.js
│   │           ├── css
│   │           │   ├── dashboard.css
│   │           │   └── site.css
│   │           ├── images
│   │           │   └── 96.png
│   │           ├── js
│   │           │   ├── markdown.js
│   │           │   └── to-markdown.js
│   │           └── lib
│   │               ├── bootstrap
│   │               │   ├── LICENSE
│   │               │   └── dist
│   │               │       ├── css
│   │               │       │   ├── bootstrap-theme.css
│   │               │       │   ├── bootstrap-theme.css.map
│   │               │       │   ├── bootstrap-theme.min.css
│   │               │       │   ├── bootstrap-theme.min.css.map
│   │               │       │   ├── bootstrap.css
│   │               │       │   ├── bootstrap.css.map
│   │               │       │   ├── bootstrap.min.css
│   │               │       │   └── bootstrap.min.css.map
│   │               │       ├── fonts
│   │               │       │   ├── glyphicons-halflings-regular.eot
│   │               │       │   ├── glyphicons-halflings-regular.svg
│   │               │       │   ├── glyphicons-halflings-regular.ttf
│   │               │       │   ├── glyphicons-halflings-regular.woff
│   │               │       │   └── glyphicons-halflings-regular.woff2
│   │               │       └── js
│   │               │           ├── bootstrap.js
│   │               │           ├── bootstrap.min.js
│   │               │           └── npm.js
│   │               ├── bootstrap-markdown
│   │               │   ├── LICENSE
│   │               │   ├── README.md
│   │               │   ├── bower.json
│   │               │   ├── css
│   │               │   │   └── bootstrap-markdown.min.css
│   │               │   ├── js
│   │               │   │   └── bootstrap-markdown.js
│   │               │   ├── less
│   │               │   │   └── bootstrap-markdown.less
│   │               │   ├── locale
│   │               │   │   ├── bootstrap-markdown.ar.js
│   │               │   │   ├── bootstrap-markdown.cs.js
│   │               │   │   ├── bootstrap-markdown.da.js
│   │               │   │   ├── bootstrap-markdown.de.js
│   │               │   │   ├── bootstrap-markdown.es.js
│   │               │   │   ├── bootstrap-markdown.fa.js
│   │               │   │   ├── bootstrap-markdown.fr.js
│   │               │   │   ├── bootstrap-markdown.it.js
│   │               │   │   ├── bootstrap-markdown.ja.js
│   │               │   │   ├── bootstrap-markdown.kr.js
│   │               │   │   ├── bootstrap-markdown.nb.js
│   │               │   │   ├── bootstrap-markdown.nl.js
│   │               │   │   ├── bootstrap-markdown.pl.js
│   │               │   │   ├── bootstrap-markdown.ru.js
│   │               │   │   ├── bootstrap-markdown.sl.js
│   │               │   │   ├── bootstrap-markdown.sv.js
│   │               │   │   ├── bootstrap-markdown.tr.js
│   │               │   │   ├── bootstrap-markdown.ua.js
│   │               │   │   └── bootstrap-markdown.zh.js
│   │               │   ├── package.json
│   │               │   └── scss
│   │               │       └── bootstrap-markdown.scss
│   │               ├── jquery
│   │               │   ├── LICENSE.txt
│   │               │   └── dist
│   │               │       ├── jquery.js
│   │               │       ├── jquery.min.js
│   │               │       └── jquery.min.map
│   │               ├── jquery-validation
│   │               │   ├── LICENSE.md
│   │               │   └── dist
│   │               │       ├── additional-methods.js
│   │               │       ├── additional-methods.min.js
│   │               │       ├── jquery.validate.js
│   │               │       └── jquery.validate.min.js
│   │               └── jquery-validation-unobtrusive
│   │                   ├── jquery.validate.unobtrusive.js
│   │                   └── jquery.validate.unobtrusive.min.js
│   └── tests
│       └── UnitTests
│           └── UnitTests.csproj
└── 好例子网.net core论坛_NETCoreBBS-dev.zip

55 directories, 141 files