读书笔记

-Solution Items
-src
--Datory
--SSCMS 类库
---Plugins
----IPlugin.cs
--SSCMS.Cli 类库
--SSCMS.Core 类库
--Plugins
---Plugin.cs
--SSCMS.Web 控制台应用程序
---Program.cs
-tests

obj\Debug\net6.0\SSCMS.Web.xml


记录:
使用了Serilog框架记录日志
https://jwt.io/
————————————————————————————————————

Microsoft.AspNetCore.Hosting 命名空间
using Microsoft.Extensions.Configuration;命令行配置扩展。添加命令行方法
using Microsoft.Extensions.Hosting; 主机。创建默认生成器方法
using SSCMS.Configuration; CMS配置扩展。
using SSCMS.Core.Utils; CMS核心工具类。
using System.Collections.Generic;系统通用 命名空间包含接口和类
using Newtonsoft.Json.Converters; 转换器
using Datory.Annotations;注释
using System;
using System.IO;文件读写
using System.Security.Cryptography;密码相关
using System.Text;文本相关
using Microsoft.AspNetCore.Mvc;
using System.Linq; 类和接口支持使用查询的 语言集成查询 (LINQ)
System.Collections.Generic; 公开枚举数,该枚举数支持在指定类型的集合上进行简单迭代。
using Newtonsoft.Json;
using SqlKata; https://www.nuget.org/packages/SqlKata/
using SSCMS.Models;模型
using System.Threading.Tasks;线程,任务
using SSCMS.Services;
using System.Collections.Specialized;
using System.Collections.Specialized 命名空间包含专用的和强类型的集合,例如,链接的列表词典、位向量以及只包含字符串的集合。
using System.Reflection;系统反射
using CacheManager.Core;

using SSCMS.Dto;
using SSCMS.Enums;
using SSCMS.Models;
using SSCMS.Services;
-----------------------------
using System;
using System.Collections.Generic;
using System.Collections.Specialized;
using System.Threading.Tasks;
using Datory;
using SqlKata;
using SSCMS.Enums;
using SSCMS.Models;
using SSCMS.Services;

------------待看---------
using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
using System.Net;
using System.Reflection;
using System.Text;
using System.Threading.Tasks;
using Microsoft.Extensions.Configuration;
using Microsoft.Extensions.DependencyInjection;
using SSCMS.Cli.Core;
using SSCMS.Cli.Extensions;
using SSCMS.Core.Extensions;
using SSCMS.Core.Plugins.Extensions;
using SSCMS.Utils;
using Serilog;
using SSCMS.Cli.Abstractions;
using SSCMS.Configuration;
===============
using Datory;

appsettings.json

 

posted @ 2022-04-27 19:00  飞雪飘鸿  阅读(41)  评论(0编辑  收藏  举报
https://damo.alibaba.com/ https://tianchi.aliyun.com/course?spm=5176.21206777.J_3941670930.5.87dc17c9BZNvLL