├── .gitignore ├── LICENSE └── README.md /.gitignore: -------------------------------------------------------------------------------- 1 | # Prerequisites 2 | *.d 3 | 4 | # Object files 5 | *.o 6 | *.ko 7 | *.obj 8 | *.elf 9 | 10 | # Linker output 11 | *.ilk 12 | *.map 13 | *.exp 14 | 15 | # Precompiled Headers 16 | *.gch 17 | *.pch 18 | 19 | # Libraries 20 | *.lib 21 | *.a 22 | *.la 23 | *.lo 24 | 25 | # Shared objects (inc. Windows DLLs) 26 | *.dll 27 | *.so 28 | *.so.* 29 | *.dylib 30 | 31 | # Executables 32 | *.exe 33 | *.out 34 | *.app 35 | *.i*86 36 | *.x86_64 37 | *.hex 38 | 39 | # Debug files 40 | *.dSYM/ 41 | *.su 42 | *.idb 43 | *.pdb 44 | 45 | # Kernel Module Compile Results 46 | *.mod* 47 | *.cmd 48 | .tmp_versions/ 49 | modules.order 50 | Module.symvers 51 | Mkfile.old 52 | dkms.conf 53 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2020 Base netCore (Vue) Project Team 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Home 2 | 如果你有关于`dotNet/core` 的,不错的,可以正常运行,且一年内维护的,均可以加入。 3 | 唯一宗旨:我们来自社区,服务社区,反哺社区。 4 | 🎀著作权:项目**任何代码**和**文件**都属于原作者,和本项目**没有**任何关系,**不会侵犯**任何权益,支持原作者。 5 | 6 | 7 | ### 加入方法 8 | 提交`Issue`,到时候我会联系你的,前提是项目正常,且在维护。 9 | 10 | ### 自我要求 11 | 1、必须是一年内有更新和维护的。 12 | 2、有`README`、也就是项目介绍的。 13 | 3、需要定期从自己仓储同步到这里的。 14 | 满足即可。 15 | 16 | ### 推广方案 17 | 我会在公众号和博客园等,每期推荐一个项目,只要你的项目里有`README`,有`300+`字的介绍即可。 18 | 19 | ### 排队情况(安排中,有删减可能) 20 | |序号|项目名称|原作者|文章地址|备注| 21 | |-|-|-|-|-| 22 | |01|[/BaseCoreVueProject/Blog.Core](https://github.com/BaseCoreVueProject/Blog.Core)|anjoy8|[文章](https://mp.weixin.qq.com/s/lMlpsZPc-gy-MM8GEI2e5Q)|完成| 23 | |02|[/BaseCoreVueProject/Destiny.Core.Flow](https://github.com/BaseCoreVueProject/Destiny.Core.Flow)|DestinyCore|[文章](https://mp.weixin.qq.com/s/RSn9CUKn1P59wNn29Nravw)|完成| 24 | |03|[/BaseCoreVueProject/Adnc](https://github.com/BaseCoreVueProject/Adnc)|AlphaYu|[文章](https://mp.weixin.qq.com/s/aeiwnF4xNROlE20oxD6bTA)|完成| 25 | |04|[/BaseCoreVueProject/Remember.Core](https://github.com/BaseCoreVueProject/Remember.Core)|yiyungent|[文章](https://mp.weixin.qq.com/s/6s6XD0CXPkfIsU3tcYRKIg)|完成| 26 | |05|[/BaseCoreVueProject/QuartzCore.Blazor](https://github.com/BaseCoreVueProject/QuartzCore.Blazor)|SmartforXiaoYuan|[文章](https://mp.weixin.qq.com/s/RQChtmDiWbB0Crz5f1IFXQ)|完成| 27 | |06|[/BaseCoreVueProject/SnailAspNetCoreFramework](https://github.com/BaseCoreVueProject/SnailAspNetCoreFramework)|shengyu-kmust|待发布|| 28 | |07|[/BaseCoreVueProject/Easy.Core.Flow](https://github.com/BaseCoreVueProject/Easy.Core.Flow)|MrChuJiu|-|文档不太完整| 29 | |08|[/BaseCoreVueProject/PermissionVue](https://github.com/BaseCoreVueProject/PermissionVue)|zt199510|待发布|| 30 | |09|[/BaseCoreVueProject/jwtdemo](https://github.com/BaseCoreVueProject/jwtdemo)|HuYiDaoKing|-|需要完善文档| 31 | |10|[/BaseCoreVueProject/Zero.Core](https://github.com/BaseCoreVueProject/Zero.Core)|QQ2287991080|待发布|| 32 | |11|[/BaseCoreVueProject/SimCaptcha](https://github.com/BaseCoreVueProject/SimCaptcha)|yiyungent|待发布|| 33 | |12|[/BaseCoreVueProject/InitQ ](https://github.com/BaseCoreVueProject/InitQ)|wmowm|待发布|| 34 | |13|[/BaseCoreVueProject/LJS.Core](https://github.com/BaseCoreVueProject/LJS.Core)|Lenceas|待发布|希望再美化下文档| 35 | --------------------------------------------------------------------------------