From 6d008efd5472e24f60b97dfb3499fb4af8a4262b Mon Sep 17 00:00:00 2001 From: chenchun Date: Sun, 24 Apr 2022 17:09:43 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=94=B9=E9=85=8D=E7=BD=AE=E6=96=87?= =?UTF-8?q?=E4=BB=B6=E8=B7=AF=E5=BE=84?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- README.md | 8 ++++++-- .../{ => Config}/configuration.json | 0 .../BuilderExtend/JsonFileExtension.cs | 2 +- 3 files changed, 7 insertions(+), 3 deletions(-) rename Yi.Framework.Net6/Yi.Framework.ApiMicroservice/{ => Config}/configuration.json (100%) diff --git a/README.md b/README.md index bfaead9d..434e5659 100644 --- a/README.md +++ b/README.md @@ -20,7 +20,7 @@ Yi框架-一套与SqlSugar一样爽的.Net6低代码开源框架。 适合.Net6学习、Sqlsugar学习 、项目二次开发。 集大成者,终究轮子 -Yi框架最新版本标签:`v1.0.3` +Yi框架最新版本标签:`v1.0.4` (项目与Sqlsugar同步更新,但这作者老杰哥代码天天爆肝到凌晨两点,我们也尽量会跟上他的脚步。更新频繁,所以可watching持续关注。) @@ -134,9 +134,13 @@ WebFirst开发:所有代码生成器已经配置完成,无需任何操作数 ![图片](https://s1.ax1x.com/2022/04/09/LCTleH.png) +![图片](https://s1.ax1x.com/2022/04/24/L4qlSs.png) + +![图片](https://s1.ax1x.com/2022/04/24/L4q1ln.png) + 我们大致依照DDD领域驱动设计分层 -什么?感觉太复杂了?用户只需关注Api、Service其他都是轮子啊! +分层如此清晰!什么?还感觉太复杂了?用户只需关注Api、Service其他都是轮子啊! ~~- BackGround:后台进程(目前可以无视,等待更新)~~ - Client:客户端(测试、客户端) diff --git a/Yi.Framework.Net6/Yi.Framework.ApiMicroservice/configuration.json b/Yi.Framework.Net6/Yi.Framework.ApiMicroservice/Config/configuration.json similarity index 100% rename from Yi.Framework.Net6/Yi.Framework.ApiMicroservice/configuration.json rename to Yi.Framework.Net6/Yi.Framework.ApiMicroservice/Config/configuration.json diff --git a/Yi.Framework.Net6/Yi.Framework.WebCore/BuilderExtend/JsonFileExtension.cs b/Yi.Framework.Net6/Yi.Framework.WebCore/BuilderExtend/JsonFileExtension.cs index 0f00c052..9a3c0c73 100644 --- a/Yi.Framework.Net6/Yi.Framework.WebCore/BuilderExtend/JsonFileExtension.cs +++ b/Yi.Framework.Net6/Yi.Framework.WebCore/BuilderExtend/JsonFileExtension.cs @@ -13,7 +13,7 @@ namespace Yi.Framework.WebCore.BuilderExtend { if (JsonFile==null) { - string[] myJsonFile = new string[] { "appsettings.json", "configuration.json" }; + string[] myJsonFile = new string[] { "appsettings.json", "Config/configuration.json" }; foreach (var item in myJsonFile) { builder.AddJsonFile(item, optional: true, reloadOnChange: false);