diff --git "a/\345\210\230\346\233\246/20241202 -\345\242\236\345\210\240\346\224\271\346\237\245.md" "b/\345\210\230\346\233\246/20241202 -\345\242\236\345\210\240\346\224\271\346\237\245.md"
new file mode 100644
index 0000000000000000000000000000000000000000..969b47690103f8f47d126f01a90ff4d44acf5225
--- /dev/null
+++ "b/\345\210\230\346\233\246/20241202 -\345\242\236\345\210\240\346\224\271\346\237\245.md"
@@ -0,0 +1,79 @@
+## 概念
+1. 模型(Model):
+ - 增加(Create):模型负责创建新的数据对象。例如,在一个博客系统中,模型可能会创建一个新的文章对象,并将其保存到数据库中。
+ - 读取(Read):模型从数据库中检索数据。例如,它可能会获取所有文章的列表或特定文章的详细信息。
+ - 更新(Update):模型更新现有数据对象。例如,它可能会更新文章的内容或标题,并保存这些更改到数据库中。
+ - 删除(Delete):模型从数据库中删除数据对象。例如,它可能会删除一个不再需要的文章。
+2. 视图(View):视图是用户界面,负责显示数据(模型)和接收用户输入。在增删改查操作中,视图会显示表单供用户输入数据,显示数据列表,以及显示操作的结果(成功或失败的消息)。
+3. 控制器(Controller):控制器是应用程序的中介,它接收用户的输入并调用模型和视图去完成用户的需求。
+ - 增加(Create):控制器接收用户提交的表单数据,调用模型创建新数据对象,然后可能重定向到一个视图以显示确认消息或新创建的对象。
+ - 读取(Read):控制器请求模型提供数据,然后选择一个视图来展示这些数据。
+ - 更新(Update):控制器接收用户对数据的更改,调用模型更新数据对象,然后可能重定向到一个视图以显示更新后的对象或确认消息。
+ - 删除(Delete):控制器处理删除请求,调用模型删除数据对象,然后可能重定向到一个视图以显示确认消息或更新后的数据列表。
+## 步骤
+1. 创建一个mvc项目`dotnet new mvc -o Blog`
+
+2. 创建一个控制器--BlogsController.cs
+ ```
+ using Microsoft.AspNetCore.Mvc;
+ namespace Blog.Controller;
+ public class BlogsController:Controller
+ {
+ public IActionResult Index()
+ {
+ return View();
+ }
+ }
+ ```
+
+3. 创建对应的视图Blogs--Index.cshtml
+ - 可以在里面使用`xx`来跳转页面
+ - 引用css link `href="~/css/base.css"`
+ - 声明`@model List`--可以提示
+
+4. 创建模型 Blogs.cs
+ ```
+ namespace Blog.Models;
+ public class Blogs
+ {
+ public int Id{get;set;}
+ public string Name{get;set}=null!; //不为空
+
+ }
+ ```
+
+5. 创建一个模型Db.cs(模拟数据库) 在里面放集合数据
+ ```
+ namespace Blog.Models;
+ public static class Db
+ {
+ public static Listblogs{get;set;}
+ //构造函数
+ static Db
+ {
+ blogs=[];
+ for(var i=1;i<10;i++)
+ {
+ var t=new Blogs
+ {
+ Id=i,
+ Name="哈哈"
+ };
+ blogs.Add(t); //添加到blogs中
+ }
+ }
+ }
+ ```
+
+6. 需要在BlogsController控制器中的Index函数中`return View(Db.blogs);`,在控制器中也要引用`using Blog.Models;`
+
+7. 在视图中显示集合数据
+ ```
+ @foreach(var item in @Model)
+ {
+
+ @item.Id |
+ @item.Name |
+
+ }
+ ```
\ No newline at end of file
diff --git "a/\345\210\230\346\233\246/20241204 -Linq\351\233\206\346\210\220\346\237\245\350\257\242\357\274\210\345\205\263\350\201\224Lambda\357\274\211.md" "b/\345\210\230\346\233\246/20241204 -Linq\351\233\206\346\210\220\346\237\245\350\257\242\357\274\210\345\205\263\350\201\224Lambda\357\274\211.md"
new file mode 100644
index 0000000000000000000000000000000000000000..45e95d3dbe232699a22a1db47b3b8d01c9c033de
--- /dev/null
+++ "b/\345\210\230\346\233\246/20241204 -Linq\351\233\206\346\210\220\346\237\245\350\257\242\357\274\210\345\205\263\350\201\224Lambda\357\274\211.md"
@@ -0,0 +1,21 @@
+## Linq集成查询 ( 关联Lambda )
+
+1. First FirstOrDefaualt 找第一个符合条件的元素
+
+ - First(x=>x.Id==id) 返回第一个Id等于id的元素,如果都没有符合的,报错
+ - FirstOrDefaualt(x=>x.Id==id) 返回第一个Id等于id的元素,如果都没有符合的,返回Null
+
+2. Single SingleOrDefault
+
+ - Single() 返回第一个元素,如果没有,报错
+ - SingleOrDefault() 返回第一个元素,如果没有,返回Null
+
+3. Where
+
+ - Where(x=>x.Score>=80 && x.Sex==1) 查找所有成绩大于等于80,并且性别为1的所有元素
+
+4. Select
+
+ - Select(x=>new {x.Id,x.Score}) 以新的{x.Id,x.Score}对象的形式,返回新的集合
+
+from XX in XX where XXX select;
\ No newline at end of file
diff --git "a/\345\210\230\346\233\246/20241205 -\346\225\260\346\215\256\346\250\241\345\236\213.md" "b/\345\210\230\346\233\246/20241205 -\346\225\260\346\215\256\346\250\241\345\236\213.md"
new file mode 100644
index 0000000000000000000000000000000000000000..80bf6f59d689d5caa383658622100ec8b7096292
--- /dev/null
+++ "b/\345\210\230\346\233\246/20241205 -\346\225\260\346\215\256\346\250\241\345\236\213.md"
@@ -0,0 +1,16 @@
+## 数据模型
+
+1. 数据库的选择和权衡
+
+ - Sqlserver
+ - PostgreSQL
+ - Mysql/MariaDb
+ - Oracel
+ - Db2
+ - Sybase
+
+2. ORM工具的选择和使用
+
+ - EntityFrameworkCore
+ - Dapper
+ - SqlSuper
\ No newline at end of file
diff --git "a/\345\210\230\346\233\246/Blog/Blog.csproj" "b/\345\210\230\346\233\246/\344\275\234\344\270\232/Blog/Blog.csproj"
similarity index 100%
rename from "\345\210\230\346\233\246/Blog/Blog.csproj"
rename to "\345\210\230\346\233\246/\344\275\234\344\270\232/Blog/Blog.csproj"
diff --git "a/\345\210\230\346\233\246/\344\275\234\344\270\232/Blog/Blog.generated.sln" "b/\345\210\230\346\233\246/\344\275\234\344\270\232/Blog/Blog.generated.sln"
new file mode 100644
index 0000000000000000000000000000000000000000..7773474a6dfcce0891f36e1a77ff65ca44e9c452
--- /dev/null
+++ "b/\345\210\230\346\233\246/\344\275\234\344\270\232/Blog/Blog.generated.sln"
@@ -0,0 +1,25 @@
+
+Microsoft Visual Studio Solution File, Format Version 12.00
+# Visual Studio Version 17
+VisualStudioVersion = 17.5.002.0
+MinimumVisualStudioVersion = 10.0.40219.1
+Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Blog", "Blog.csproj", "{EA08828B-26DF-4AAC-86F9-D36F9B3150AF}"
+EndProject
+Global
+ GlobalSection(SolutionConfigurationPlatforms) = preSolution
+ Debug|Any CPU = Debug|Any CPU
+ Release|Any CPU = Release|Any CPU
+ EndGlobalSection
+ GlobalSection(ProjectConfigurationPlatforms) = postSolution
+ {EA08828B-26DF-4AAC-86F9-D36F9B3150AF}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
+ {EA08828B-26DF-4AAC-86F9-D36F9B3150AF}.Debug|Any CPU.Build.0 = Debug|Any CPU
+ {EA08828B-26DF-4AAC-86F9-D36F9B3150AF}.Release|Any CPU.ActiveCfg = Release|Any CPU
+ {EA08828B-26DF-4AAC-86F9-D36F9B3150AF}.Release|Any CPU.Build.0 = Release|Any CPU
+ EndGlobalSection
+ GlobalSection(SolutionProperties) = preSolution
+ HideSolutionNode = FALSE
+ EndGlobalSection
+ GlobalSection(ExtensibilityGlobals) = postSolution
+ SolutionGuid = {7212A612-3287-47D7-B81D-B4A492AD7EFA}
+ EndGlobalSection
+EndGlobal
diff --git "a/\345\210\230\346\233\246/\344\275\234\344\270\232/Blog/Controllers/BlogsController.cs" "b/\345\210\230\346\233\246/\344\275\234\344\270\232/Blog/Controllers/BlogsController.cs"
new file mode 100644
index 0000000000000000000000000000000000000000..55b28789797a350e2daa3d836f69d2b3f9b5bf23
--- /dev/null
+++ "b/\345\210\230\346\233\246/\344\275\234\344\270\232/Blog/Controllers/BlogsController.cs"
@@ -0,0 +1,71 @@
+using Blog.Models;
+using Microsoft.AspNetCore.Mvc;
+
+namespace Blog.Controllers;
+
+
+public class BlogsController : Controller
+{
+ public IActionResult Index()
+ {
+ return View(Db.Blogs);
+ }
+ ///
+ /// 创建-展示新增页面
+ ///
+ ///
+ public IActionResult Create()
+ {
+ return View();
+ }
+ ///
+ /// 创建-保存表单结果的Action
+ ///
+ ///
+ ///
+ [HttpPost]
+ public IActionResult Create(Blogs input)
+ {
+ // 1、已经验证表单数据可以传入
+ // 2、拿到传入的数据后,一般做验证,数据验证,如是不是必填、长度是不是符合要求、名称是不是已经存在、手机号格式对不对、电子邮箱地址对不对
+ // 3、如果符合验证规则,则保存到数据库,否则提示验证不通过
+ // 4、如果保存数据库成功,则跳转列表页;如果验证不通过,那就仍然显示新增页面
+
+ // 先通过select 拿到集合中的所有id,放在一个新的集合中返回,然后对这个返回的新的集合应用Max方法,找到其中最大值
+ // var blogs = Db.Blogs.Where(x => x.Title.Equals(input.Title));
+ // if (blogs.Count() > 0)
+ // {
+ // return View("create");
+ // }
+ var maxId = Db.Blogs.Select(x => x.Id).Max();
+ input.Id = maxId + 1;
+
+ Db.Blogs.Add(input);
+ return RedirectToAction("Index");
+ }
+ public IActionResult Edit(int id)
+ {
+ // 根据id找到对应的blogs,有可能为空
+ var blog = Db.Blogs.FirstOrDefault(x => x.Id == id);
+ return View(blog);
+ }
+
+ [HttpPost]
+ public IActionResult Edit(Blogs input)
+ {
+ // 根据id找到对应的blogs,有可能为空
+ var blog = Db.Blogs.FirstOrDefault(x => x.Id == input.Id);
+ if (blog != null)
+ {
+ blog.Title = input.Title;
+ blog.Content = input.Content;
+ blog.Author = input.Author;
+
+ }
+ return RedirectToAction("Index");
+ }
+ public IActionResult Delete()
+ {
+ return View();
+ }
+}
\ No newline at end of file
diff --git "a/\345\210\230\346\233\246/Blog/Controllers/HomeController.cs" "b/\345\210\230\346\233\246/\344\275\234\344\270\232/Blog/Controllers/HomeController.cs"
similarity index 100%
rename from "\345\210\230\346\233\246/Blog/Controllers/HomeController.cs"
rename to "\345\210\230\346\233\246/\344\275\234\344\270\232/Blog/Controllers/HomeController.cs"
diff --git "a/\345\210\230\346\233\246/Blog/Controllers/Liexing.cs" "b/\345\210\230\346\233\246/\344\275\234\344\270\232/Blog/Controllers/Liexing.cs"
similarity index 100%
rename from "\345\210\230\346\233\246/Blog/Controllers/Liexing.cs"
rename to "\345\210\230\346\233\246/\344\275\234\344\270\232/Blog/Controllers/Liexing.cs"
diff --git "a/\345\210\230\346\233\246/\344\275\234\344\270\232/Blog/Models/Blogs.cs" "b/\345\210\230\346\233\246/\344\275\234\344\270\232/Blog/Models/Blogs.cs"
new file mode 100644
index 0000000000000000000000000000000000000000..d2f38f13555e5db51f00db87bbaa3570997678db
--- /dev/null
+++ "b/\345\210\230\346\233\246/\344\275\234\344\270\232/Blog/Models/Blogs.cs"
@@ -0,0 +1,9 @@
+namespace Blog.Models;
+
+public class Blogs
+{
+ public int Id { get; set; }
+ public string Title { get; set; } = null!;
+ public string Content { get; set; } = null!;
+ public string Author { get; set; } = null!;
+}
\ No newline at end of file
diff --git "a/\345\210\230\346\233\246/\344\275\234\344\270\232/Blog/Models/Db.cs" "b/\345\210\230\346\233\246/\344\275\234\344\270\232/Blog/Models/Db.cs"
new file mode 100644
index 0000000000000000000000000000000000000000..188ecf08246f36740cf9b4a639f812ddfff9fb8d
--- /dev/null
+++ "b/\345\210\230\346\233\246/\344\275\234\344\270\232/Blog/Models/Db.cs"
@@ -0,0 +1,24 @@
+namespace Blog.Models;
+
+public static class Db
+{
+ public static List Blogs { get; set; }
+
+ static Db()
+ {
+ Blogs = [];
+
+ for (var i = 1; i <= 10; i++)
+ {
+ var tmp = new Blogs
+ {
+ Id = i,
+ Title = $"卢诗语天下第一{i}",
+ Content = $"卢诗语传奇{i}",
+ Author = $"诗语宝宝{i}"
+ };
+
+ Blogs.Add(tmp);
+ }
+ }
+}
\ No newline at end of file
diff --git "a/\345\210\230\346\233\246/Blog/Models/ErrorViewModel.cs" "b/\345\210\230\346\233\246/\344\275\234\344\270\232/Blog/Models/ErrorViewModel.cs"
similarity index 100%
rename from "\345\210\230\346\233\246/Blog/Models/ErrorViewModel.cs"
rename to "\345\210\230\346\233\246/\344\275\234\344\270\232/Blog/Models/ErrorViewModel.cs"
diff --git "a/\345\210\230\346\233\246/Blog/Program.cs" "b/\345\210\230\346\233\246/\344\275\234\344\270\232/Blog/Program.cs"
similarity index 100%
rename from "\345\210\230\346\233\246/Blog/Program.cs"
rename to "\345\210\230\346\233\246/\344\275\234\344\270\232/Blog/Program.cs"
diff --git "a/\345\210\230\346\233\246/Blog/Properties/launchSettings.json" "b/\345\210\230\346\233\246/\344\275\234\344\270\232/Blog/Properties/launchSettings.json"
similarity index 100%
rename from "\345\210\230\346\233\246/Blog/Properties/launchSettings.json"
rename to "\345\210\230\346\233\246/\344\275\234\344\270\232/Blog/Properties/launchSettings.json"
diff --git "a/\345\210\230\346\233\246/\344\275\234\344\270\232/Blog/Views/Blogs/Create.cshtml" "b/\345\210\230\346\233\246/\344\275\234\344\270\232/Blog/Views/Blogs/Create.cshtml"
new file mode 100644
index 0000000000000000000000000000000000000000..dc21039916ebecf0ead388cefa22623a0a83efea
--- /dev/null
+++ "b/\345\210\230\346\233\246/\344\275\234\344\270\232/Blog/Views/Blogs/Create.cshtml"
@@ -0,0 +1,8 @@
+@model Blog.Models.Blogs;
+
+
\ No newline at end of file
diff --git "a/\345\210\230\346\233\246/\344\275\234\344\270\232/Blog/Views/Blogs/Delete.cshtml" "b/\345\210\230\346\233\246/\344\275\234\344\270\232/Blog/Views/Blogs/Delete.cshtml"
new file mode 100644
index 0000000000000000000000000000000000000000..7e10aba3b85af2b33fdc0acd69ed76d2f228ca3c
--- /dev/null
+++ "b/\345\210\230\346\233\246/\344\275\234\344\270\232/Blog/Views/Blogs/Delete.cshtml"
@@ -0,0 +1 @@
+删除
\ No newline at end of file
diff --git "a/\345\210\230\346\233\246/\344\275\234\344\270\232/Blog/Views/Blogs/Edit.cshtml" "b/\345\210\230\346\233\246/\344\275\234\344\270\232/Blog/Views/Blogs/Edit.cshtml"
new file mode 100644
index 0000000000000000000000000000000000000000..c116014c05e0f31279991652cda1830bd248ddda
--- /dev/null
+++ "b/\345\210\230\346\233\246/\344\275\234\344\270\232/Blog/Views/Blogs/Edit.cshtml"
@@ -0,0 +1,9 @@
+@model Blog.Models.Blogs;
+
+
\ No newline at end of file
diff --git "a/\345\210\230\346\233\246/\344\275\234\344\270\232/Blog/Views/Blogs/Index.cshtml" "b/\345\210\230\346\233\246/\344\275\234\344\270\232/Blog/Views/Blogs/Index.cshtml"
new file mode 100644
index 0000000000000000000000000000000000000000..b7eb539fe68868eab53510b53398e640085f694f
--- /dev/null
+++ "b/\345\210\230\346\233\246/\344\275\234\344\270\232/Blog/Views/Blogs/Index.cshtml"
@@ -0,0 +1,43 @@
+
+
+@model List;
+
\ No newline at end of file
diff --git "a/\345\210\230\346\233\246/Blog/Views/Home/Index.cshtml" "b/\345\210\230\346\233\246/\344\275\234\344\270\232/Blog/Views/Home/Index.cshtml"
similarity index 100%
rename from "\345\210\230\346\233\246/Blog/Views/Home/Index.cshtml"
rename to "\345\210\230\346\233\246/\344\275\234\344\270\232/Blog/Views/Home/Index.cshtml"
diff --git "a/\345\210\230\346\233\246/Blog/Views/Home/Privacy.cshtml" "b/\345\210\230\346\233\246/\344\275\234\344\270\232/Blog/Views/Home/Privacy.cshtml"
similarity index 100%
rename from "\345\210\230\346\233\246/Blog/Views/Home/Privacy.cshtml"
rename to "\345\210\230\346\233\246/\344\275\234\344\270\232/Blog/Views/Home/Privacy.cshtml"
diff --git "a/\345\210\230\346\233\246/Blog/Views/Lian/Index.cshtml" "b/\345\210\230\346\233\246/\344\275\234\344\270\232/Blog/Views/Lian/Index.cshtml"
similarity index 100%
rename from "\345\210\230\346\233\246/Blog/Views/Lian/Index.cshtml"
rename to "\345\210\230\346\233\246/\344\275\234\344\270\232/Blog/Views/Lian/Index.cshtml"
diff --git "a/\345\210\230\346\233\246/Blog/Views/Shared/Error.cshtml" "b/\345\210\230\346\233\246/\344\275\234\344\270\232/Blog/Views/Shared/Error.cshtml"
similarity index 100%
rename from "\345\210\230\346\233\246/Blog/Views/Shared/Error.cshtml"
rename to "\345\210\230\346\233\246/\344\275\234\344\270\232/Blog/Views/Shared/Error.cshtml"
diff --git "a/\345\210\230\346\233\246/Blog/Views/Shared/_Layout.cshtml" "b/\345\210\230\346\233\246/\344\275\234\344\270\232/Blog/Views/Shared/_Layout.cshtml"
similarity index 100%
rename from "\345\210\230\346\233\246/Blog/Views/Shared/_Layout.cshtml"
rename to "\345\210\230\346\233\246/\344\275\234\344\270\232/Blog/Views/Shared/_Layout.cshtml"
diff --git "a/\345\210\230\346\233\246/Blog/Views/Shared/_Layout.cshtml.css" "b/\345\210\230\346\233\246/\344\275\234\344\270\232/Blog/Views/Shared/_Layout.cshtml.css"
similarity index 100%
rename from "\345\210\230\346\233\246/Blog/Views/Shared/_Layout.cshtml.css"
rename to "\345\210\230\346\233\246/\344\275\234\344\270\232/Blog/Views/Shared/_Layout.cshtml.css"
diff --git "a/\345\210\230\346\233\246/Blog/Views/Shared/_ValidationScriptsPartial.cshtml" "b/\345\210\230\346\233\246/\344\275\234\344\270\232/Blog/Views/Shared/_ValidationScriptsPartial.cshtml"
similarity index 100%
rename from "\345\210\230\346\233\246/Blog/Views/Shared/_ValidationScriptsPartial.cshtml"
rename to "\345\210\230\346\233\246/\344\275\234\344\270\232/Blog/Views/Shared/_ValidationScriptsPartial.cshtml"
diff --git "a/\345\210\230\346\233\246/Blog/Views/_ViewImports.cshtml" "b/\345\210\230\346\233\246/\344\275\234\344\270\232/Blog/Views/_ViewImports.cshtml"
similarity index 100%
rename from "\345\210\230\346\233\246/Blog/Views/_ViewImports.cshtml"
rename to "\345\210\230\346\233\246/\344\275\234\344\270\232/Blog/Views/_ViewImports.cshtml"
diff --git "a/\345\210\230\346\233\246/Blog/Views/_ViewStart.cshtml" "b/\345\210\230\346\233\246/\344\275\234\344\270\232/Blog/Views/_ViewStart.cshtml"
similarity index 100%
rename from "\345\210\230\346\233\246/Blog/Views/_ViewStart.cshtml"
rename to "\345\210\230\346\233\246/\344\275\234\344\270\232/Blog/Views/_ViewStart.cshtml"
diff --git "a/\345\210\230\346\233\246/Blog/appsettings.Development.json" "b/\345\210\230\346\233\246/\344\275\234\344\270\232/Blog/appsettings.Development.json"
similarity index 100%
rename from "\345\210\230\346\233\246/Blog/appsettings.Development.json"
rename to "\345\210\230\346\233\246/\344\275\234\344\270\232/Blog/appsettings.Development.json"
diff --git "a/\345\210\230\346\233\246/Blog/appsettings.json" "b/\345\210\230\346\233\246/\344\275\234\344\270\232/Blog/appsettings.json"
similarity index 100%
rename from "\345\210\230\346\233\246/Blog/appsettings.json"
rename to "\345\210\230\346\233\246/\344\275\234\344\270\232/Blog/appsettings.json"
diff --git "a/\345\210\230\346\233\246/\344\275\234\344\270\232/Blog/bin/Debug/net8.0/Blog.deps.json" "b/\345\210\230\346\233\246/\344\275\234\344\270\232/Blog/bin/Debug/net8.0/Blog.deps.json"
new file mode 100644
index 0000000000000000000000000000000000000000..b32974dddde97b4e62c9b3de930abe66a44ebd86
--- /dev/null
+++ "b/\345\210\230\346\233\246/\344\275\234\344\270\232/Blog/bin/Debug/net8.0/Blog.deps.json"
@@ -0,0 +1,23 @@
+{
+ "runtimeTarget": {
+ "name": ".NETCoreApp,Version=v8.0",
+ "signature": ""
+ },
+ "compilationOptions": {},
+ "targets": {
+ ".NETCoreApp,Version=v8.0": {
+ "Blog/1.0.0": {
+ "runtime": {
+ "Blog.dll": {}
+ }
+ }
+ }
+ },
+ "libraries": {
+ "Blog/1.0.0": {
+ "type": "project",
+ "serviceable": false,
+ "sha512": ""
+ }
+ }
+}
\ No newline at end of file
diff --git "a/\345\210\230\346\233\246/\344\275\234\344\270\232/Blog/bin/Debug/net8.0/Blog.dll" "b/\345\210\230\346\233\246/\344\275\234\344\270\232/Blog/bin/Debug/net8.0/Blog.dll"
new file mode 100644
index 0000000000000000000000000000000000000000..c27ddfba7ee7ee3ae86da1ca50e5fad62c4e9e61
Binary files /dev/null and "b/\345\210\230\346\233\246/\344\275\234\344\270\232/Blog/bin/Debug/net8.0/Blog.dll" differ
diff --git "a/\345\210\230\346\233\246/\344\275\234\344\270\232/Blog/bin/Debug/net8.0/Blog.exe" "b/\345\210\230\346\233\246/\344\275\234\344\270\232/Blog/bin/Debug/net8.0/Blog.exe"
new file mode 100644
index 0000000000000000000000000000000000000000..279d7b352904f7aed321d5430f3a6de0ccbc340c
Binary files /dev/null and "b/\345\210\230\346\233\246/\344\275\234\344\270\232/Blog/bin/Debug/net8.0/Blog.exe" differ
diff --git "a/\345\210\230\346\233\246/\344\275\234\344\270\232/Blog/bin/Debug/net8.0/Blog.pdb" "b/\345\210\230\346\233\246/\344\275\234\344\270\232/Blog/bin/Debug/net8.0/Blog.pdb"
new file mode 100644
index 0000000000000000000000000000000000000000..9296a3cf690d71e47ad77e375f6854fb2d7b0f33
Binary files /dev/null and "b/\345\210\230\346\233\246/\344\275\234\344\270\232/Blog/bin/Debug/net8.0/Blog.pdb" differ
diff --git "a/\345\210\230\346\233\246/\344\275\234\344\270\232/Blog/bin/Debug/net8.0/Blog.runtimeconfig.json" "b/\345\210\230\346\233\246/\344\275\234\344\270\232/Blog/bin/Debug/net8.0/Blog.runtimeconfig.json"
new file mode 100644
index 0000000000000000000000000000000000000000..5e604c7e54d717b29a8b4b0a9c5986fe33a68ef3
--- /dev/null
+++ "b/\345\210\230\346\233\246/\344\275\234\344\270\232/Blog/bin/Debug/net8.0/Blog.runtimeconfig.json"
@@ -0,0 +1,19 @@
+{
+ "runtimeOptions": {
+ "tfm": "net8.0",
+ "frameworks": [
+ {
+ "name": "Microsoft.NETCore.App",
+ "version": "8.0.0"
+ },
+ {
+ "name": "Microsoft.AspNetCore.App",
+ "version": "8.0.0"
+ }
+ ],
+ "configProperties": {
+ "System.GC.Server": true,
+ "System.Runtime.Serialization.EnableUnsafeBinaryFormatterSerialization": false
+ }
+ }
+}
\ No newline at end of file
diff --git "a/\345\210\230\346\233\246/\344\275\234\344\270\232/Blog/bin/Debug/net8.0/Blog.staticwebassets.runtime.json" "b/\345\210\230\346\233\246/\344\275\234\344\270\232/Blog/bin/Debug/net8.0/Blog.staticwebassets.runtime.json"
new file mode 100644
index 0000000000000000000000000000000000000000..a1bf87599b617514bea66168d2da1ce9a706f2a1
--- /dev/null
+++ "b/\345\210\230\346\233\246/\344\275\234\344\270\232/Blog/bin/Debug/net8.0/Blog.staticwebassets.runtime.json"
@@ -0,0 +1 @@
+{"ContentRoots":["E:\\MVC\\Blog\\wwwroot\\","E:\\MVC\\Blog\\obj\\Debug\\net8.0\\scopedcss\\bundle\\"],"Root":{"Children":{"css":{"Children":{"base.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"css/base.css"},"Patterns":null},"site.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"css/site.css"},"Patterns":null}},"Asset":null,"Patterns":null},"favicon.ico":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"favicon.ico"},"Patterns":null},"js":{"Children":{"site.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"js/site.js"},"Patterns":null}},"Asset":null,"Patterns":null},"lib":{"Children":{"bootstrap":{"Children":{"dist":{"Children":{"css":{"Children":{"bootstrap-grid.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/css/bootstrap-grid.css"},"Patterns":null},"bootstrap-grid.css.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/css/bootstrap-grid.css.map"},"Patterns":null},"bootstrap-grid.min.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/css/bootstrap-grid.min.css"},"Patterns":null},"bootstrap-grid.min.css.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/css/bootstrap-grid.min.css.map"},"Patterns":null},"bootstrap-grid.rtl.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/css/bootstrap-grid.rtl.css"},"Patterns":null},"bootstrap-grid.rtl.css.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/css/bootstrap-grid.rtl.css.map"},"Patterns":null},"bootstrap-grid.rtl.min.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css"},"Patterns":null},"bootstrap-grid.rtl.min.css.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css.map"},"Patterns":null},"bootstrap-reboot.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/css/bootstrap-reboot.css"},"Patterns":null},"bootstrap-reboot.css.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/css/bootstrap-reboot.css.map"},"Patterns":null},"bootstrap-reboot.min.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/css/bootstrap-reboot.min.css"},"Patterns":null},"bootstrap-reboot.min.css.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/css/bootstrap-reboot.min.css.map"},"Patterns":null},"bootstrap-reboot.rtl.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.css"},"Patterns":null},"bootstrap-reboot.rtl.css.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.css.map"},"Patterns":null},"bootstrap-reboot.rtl.min.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css"},"Patterns":null},"bootstrap-reboot.rtl.min.css.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css.map"},"Patterns":null},"bootstrap-utilities.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/css/bootstrap-utilities.css"},"Patterns":null},"bootstrap-utilities.css.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/css/bootstrap-utilities.css.map"},"Patterns":null},"bootstrap-utilities.min.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/css/bootstrap-utilities.min.css"},"Patterns":null},"bootstrap-utilities.min.css.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/css/bootstrap-utilities.min.css.map"},"Patterns":null},"bootstrap-utilities.rtl.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.css"},"Patterns":null},"bootstrap-utilities.rtl.css.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.css.map"},"Patterns":null},"bootstrap-utilities.rtl.min.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css"},"Patterns":null},"bootstrap-utilities.rtl.min.css.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css.map"},"Patterns":null},"bootstrap.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/css/bootstrap.css"},"Patterns":null},"bootstrap.css.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/css/bootstrap.css.map"},"Patterns":null},"bootstrap.min.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/css/bootstrap.min.css"},"Patterns":null},"bootstrap.min.css.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/css/bootstrap.min.css.map"},"Patterns":null},"bootstrap.rtl.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/css/bootstrap.rtl.css"},"Patterns":null},"bootstrap.rtl.css.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/css/bootstrap.rtl.css.map"},"Patterns":null},"bootstrap.rtl.min.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/css/bootstrap.rtl.min.css"},"Patterns":null},"bootstrap.rtl.min.css.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/css/bootstrap.rtl.min.css.map"},"Patterns":null}},"Asset":null,"Patterns":null},"js":{"Children":{"bootstrap.bundle.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/js/bootstrap.bundle.js"},"Patterns":null},"bootstrap.bundle.js.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/js/bootstrap.bundle.js.map"},"Patterns":null},"bootstrap.bundle.min.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/js/bootstrap.bundle.min.js"},"Patterns":null},"bootstrap.bundle.min.js.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/js/bootstrap.bundle.min.js.map"},"Patterns":null},"bootstrap.esm.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/js/bootstrap.esm.js"},"Patterns":null},"bootstrap.esm.js.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/js/bootstrap.esm.js.map"},"Patterns":null},"bootstrap.esm.min.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/js/bootstrap.esm.min.js"},"Patterns":null},"bootstrap.esm.min.js.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/js/bootstrap.esm.min.js.map"},"Patterns":null},"bootstrap.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/js/bootstrap.js"},"Patterns":null},"bootstrap.js.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/js/bootstrap.js.map"},"Patterns":null},"bootstrap.min.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/js/bootstrap.min.js"},"Patterns":null},"bootstrap.min.js.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/js/bootstrap.min.js.map"},"Patterns":null}},"Asset":null,"Patterns":null}},"Asset":null,"Patterns":null},"LICENSE":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/LICENSE"},"Patterns":null}},"Asset":null,"Patterns":null},"jquery-validation-unobtrusive":{"Children":{"jquery.validate.unobtrusive.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js"},"Patterns":null},"jquery.validate.unobtrusive.min.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.min.js"},"Patterns":null},"LICENSE.txt":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/jquery-validation-unobtrusive/LICENSE.txt"},"Patterns":null}},"Asset":null,"Patterns":null},"jquery-validation":{"Children":{"dist":{"Children":{"additional-methods.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/jquery-validation/dist/additional-methods.js"},"Patterns":null},"additional-methods.min.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/jquery-validation/dist/additional-methods.min.js"},"Patterns":null},"jquery.validate.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/jquery-validation/dist/jquery.validate.js"},"Patterns":null},"jquery.validate.min.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/jquery-validation/dist/jquery.validate.min.js"},"Patterns":null}},"Asset":null,"Patterns":null},"LICENSE.md":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/jquery-validation/LICENSE.md"},"Patterns":null}},"Asset":null,"Patterns":null},"jquery":{"Children":{"dist":{"Children":{"jquery.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/jquery/dist/jquery.js"},"Patterns":null},"jquery.min.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/jquery/dist/jquery.min.js"},"Patterns":null},"jquery.min.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/jquery/dist/jquery.min.map"},"Patterns":null}},"Asset":null,"Patterns":null},"LICENSE.txt":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/jquery/LICENSE.txt"},"Patterns":null}},"Asset":null,"Patterns":null}},"Asset":null,"Patterns":null},"Blog.styles.css":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"Blog.styles.css"},"Patterns":null}},"Asset":null,"Patterns":[{"ContentRootIndex":0,"Pattern":"**","Depth":0}]}}
\ No newline at end of file
diff --git "a/\345\210\230\346\233\246/\344\275\234\344\270\232/Blog/bin/Debug/net8.0/appsettings.Development.json" "b/\345\210\230\346\233\246/\344\275\234\344\270\232/Blog/bin/Debug/net8.0/appsettings.Development.json"
new file mode 100644
index 0000000000000000000000000000000000000000..0c208ae9181e5e5717e47ec1bd59368aebc6066e
--- /dev/null
+++ "b/\345\210\230\346\233\246/\344\275\234\344\270\232/Blog/bin/Debug/net8.0/appsettings.Development.json"
@@ -0,0 +1,8 @@
+{
+ "Logging": {
+ "LogLevel": {
+ "Default": "Information",
+ "Microsoft.AspNetCore": "Warning"
+ }
+ }
+}
diff --git "a/\345\210\230\346\233\246/\344\275\234\344\270\232/Blog/bin/Debug/net8.0/appsettings.json" "b/\345\210\230\346\233\246/\344\275\234\344\270\232/Blog/bin/Debug/net8.0/appsettings.json"
new file mode 100644
index 0000000000000000000000000000000000000000..10f68b8c8b4f796baf8ddeee7551b6a52b9437cc
--- /dev/null
+++ "b/\345\210\230\346\233\246/\344\275\234\344\270\232/Blog/bin/Debug/net8.0/appsettings.json"
@@ -0,0 +1,9 @@
+{
+ "Logging": {
+ "LogLevel": {
+ "Default": "Information",
+ "Microsoft.AspNetCore": "Warning"
+ }
+ },
+ "AllowedHosts": "*"
+}
diff --git "a/\345\210\230\346\233\246/Blog/obj/Blog.csproj.nuget.dgspec.json" "b/\345\210\230\346\233\246/\344\275\234\344\270\232/Blog/obj/Blog.csproj.nuget.dgspec.json"
similarity index 100%
rename from "\345\210\230\346\233\246/Blog/obj/Blog.csproj.nuget.dgspec.json"
rename to "\345\210\230\346\233\246/\344\275\234\344\270\232/Blog/obj/Blog.csproj.nuget.dgspec.json"
diff --git "a/\345\210\230\346\233\246/Blog/obj/Blog.csproj.nuget.g.props" "b/\345\210\230\346\233\246/\344\275\234\344\270\232/Blog/obj/Blog.csproj.nuget.g.props"
similarity index 100%
rename from "\345\210\230\346\233\246/Blog/obj/Blog.csproj.nuget.g.props"
rename to "\345\210\230\346\233\246/\344\275\234\344\270\232/Blog/obj/Blog.csproj.nuget.g.props"
diff --git "a/\345\210\230\346\233\246/Blog/obj/Blog.csproj.nuget.g.targets" "b/\345\210\230\346\233\246/\344\275\234\344\270\232/Blog/obj/Blog.csproj.nuget.g.targets"
similarity index 100%
rename from "\345\210\230\346\233\246/Blog/obj/Blog.csproj.nuget.g.targets"
rename to "\345\210\230\346\233\246/\344\275\234\344\270\232/Blog/obj/Blog.csproj.nuget.g.targets"
diff --git "a/\345\210\230\346\233\246/Blog/obj/Debug/net8.0/.NETCoreApp,Version=v8.0.AssemblyAttributes.cs" "b/\345\210\230\346\233\246/\344\275\234\344\270\232/Blog/obj/Debug/net8.0/.NETCoreApp,Version=v8.0.AssemblyAttributes.cs"
similarity index 100%
rename from "\345\210\230\346\233\246/Blog/obj/Debug/net8.0/.NETCoreApp,Version=v8.0.AssemblyAttributes.cs"
rename to "\345\210\230\346\233\246/\344\275\234\344\270\232/Blog/obj/Debug/net8.0/.NETCoreApp,Version=v8.0.AssemblyAttributes.cs"
diff --git "a/\345\210\230\346\233\246/Blog/obj/Debug/net8.0/Blog.AssemblyInfo.cs" "b/\345\210\230\346\233\246/\344\275\234\344\270\232/Blog/obj/Debug/net8.0/Blog.AssemblyInfo.cs"
similarity index 100%
rename from "\345\210\230\346\233\246/Blog/obj/Debug/net8.0/Blog.AssemblyInfo.cs"
rename to "\345\210\230\346\233\246/\344\275\234\344\270\232/Blog/obj/Debug/net8.0/Blog.AssemblyInfo.cs"
diff --git "a/\345\210\230\346\233\246/Blog/obj/Debug/net8.0/Blog.AssemblyInfoInputs.cache" "b/\345\210\230\346\233\246/\344\275\234\344\270\232/Blog/obj/Debug/net8.0/Blog.AssemblyInfoInputs.cache"
similarity index 100%
rename from "\345\210\230\346\233\246/Blog/obj/Debug/net8.0/Blog.AssemblyInfoInputs.cache"
rename to "\345\210\230\346\233\246/\344\275\234\344\270\232/Blog/obj/Debug/net8.0/Blog.AssemblyInfoInputs.cache"
diff --git "a/\345\210\230\346\233\246/Blog/obj/Debug/net8.0/Blog.GeneratedMSBuildEditorConfig.editorconfig" "b/\345\210\230\346\233\246/\344\275\234\344\270\232/Blog/obj/Debug/net8.0/Blog.GeneratedMSBuildEditorConfig.editorconfig"
similarity index 100%
rename from "\345\210\230\346\233\246/Blog/obj/Debug/net8.0/Blog.GeneratedMSBuildEditorConfig.editorconfig"
rename to "\345\210\230\346\233\246/\344\275\234\344\270\232/Blog/obj/Debug/net8.0/Blog.GeneratedMSBuildEditorConfig.editorconfig"
diff --git "a/\345\210\230\346\233\246/Blog/obj/Debug/net8.0/Blog.GlobalUsings.g.cs" "b/\345\210\230\346\233\246/\344\275\234\344\270\232/Blog/obj/Debug/net8.0/Blog.GlobalUsings.g.cs"
similarity index 100%
rename from "\345\210\230\346\233\246/Blog/obj/Debug/net8.0/Blog.GlobalUsings.g.cs"
rename to "\345\210\230\346\233\246/\344\275\234\344\270\232/Blog/obj/Debug/net8.0/Blog.GlobalUsings.g.cs"
diff --git "a/\345\210\230\346\233\246/Blog/obj/Debug/net8.0/Blog.MvcApplicationPartsAssemblyInfo.cache" "b/\345\210\230\346\233\246/\344\275\234\344\270\232/Blog/obj/Debug/net8.0/Blog.MvcApplicationPartsAssemblyInfo.cache"
similarity index 100%
rename from "\345\210\230\346\233\246/Blog/obj/Debug/net8.0/Blog.MvcApplicationPartsAssemblyInfo.cache"
rename to "\345\210\230\346\233\246/\344\275\234\344\270\232/Blog/obj/Debug/net8.0/Blog.MvcApplicationPartsAssemblyInfo.cache"
diff --git "a/\345\210\230\346\233\246/Blog/obj/Debug/net8.0/Blog.RazorAssemblyInfo.cache" "b/\345\210\230\346\233\246/\344\275\234\344\270\232/Blog/obj/Debug/net8.0/Blog.RazorAssemblyInfo.cache"
similarity index 100%
rename from "\345\210\230\346\233\246/Blog/obj/Debug/net8.0/Blog.RazorAssemblyInfo.cache"
rename to "\345\210\230\346\233\246/\344\275\234\344\270\232/Blog/obj/Debug/net8.0/Blog.RazorAssemblyInfo.cache"
diff --git "a/\345\210\230\346\233\246/Blog/obj/Debug/net8.0/Blog.RazorAssemblyInfo.cs" "b/\345\210\230\346\233\246/\344\275\234\344\270\232/Blog/obj/Debug/net8.0/Blog.RazorAssemblyInfo.cs"
similarity index 100%
rename from "\345\210\230\346\233\246/Blog/obj/Debug/net8.0/Blog.RazorAssemblyInfo.cs"
rename to "\345\210\230\346\233\246/\344\275\234\344\270\232/Blog/obj/Debug/net8.0/Blog.RazorAssemblyInfo.cs"
diff --git "a/\345\210\230\346\233\246/Blog/obj/Debug/net8.0/Blog.assets.cache" "b/\345\210\230\346\233\246/\344\275\234\344\270\232/Blog/obj/Debug/net8.0/Blog.assets.cache"
similarity index 100%
rename from "\345\210\230\346\233\246/Blog/obj/Debug/net8.0/Blog.assets.cache"
rename to "\345\210\230\346\233\246/\344\275\234\344\270\232/Blog/obj/Debug/net8.0/Blog.assets.cache"
diff --git "a/\345\210\230\346\233\246/Blog/obj/Debug/net8.0/Blog.csproj.CoreCompileInputs.cache" "b/\345\210\230\346\233\246/\344\275\234\344\270\232/Blog/obj/Debug/net8.0/Blog.csproj.CoreCompileInputs.cache"
similarity index 100%
rename from "\345\210\230\346\233\246/Blog/obj/Debug/net8.0/Blog.csproj.CoreCompileInputs.cache"
rename to "\345\210\230\346\233\246/\344\275\234\344\270\232/Blog/obj/Debug/net8.0/Blog.csproj.CoreCompileInputs.cache"
diff --git "a/\345\210\230\346\233\246/Blog/obj/Debug/net8.0/Blog.csproj.FileListAbsolute.txt" "b/\345\210\230\346\233\246/\344\275\234\344\270\232/Blog/obj/Debug/net8.0/Blog.csproj.FileListAbsolute.txt"
similarity index 100%
rename from "\345\210\230\346\233\246/Blog/obj/Debug/net8.0/Blog.csproj.FileListAbsolute.txt"
rename to "\345\210\230\346\233\246/\344\275\234\344\270\232/Blog/obj/Debug/net8.0/Blog.csproj.FileListAbsolute.txt"
diff --git "a/\345\210\230\346\233\246/\344\275\234\344\270\232/Blog/obj/Debug/net8.0/Blog.dll" "b/\345\210\230\346\233\246/\344\275\234\344\270\232/Blog/obj/Debug/net8.0/Blog.dll"
new file mode 100644
index 0000000000000000000000000000000000000000..c27ddfba7ee7ee3ae86da1ca50e5fad62c4e9e61
Binary files /dev/null and "b/\345\210\230\346\233\246/\344\275\234\344\270\232/Blog/obj/Debug/net8.0/Blog.dll" differ
diff --git "a/\345\210\230\346\233\246/\344\275\234\344\270\232/Blog/obj/Debug/net8.0/Blog.genruntimeconfig.cache" "b/\345\210\230\346\233\246/\344\275\234\344\270\232/Blog/obj/Debug/net8.0/Blog.genruntimeconfig.cache"
new file mode 100644
index 0000000000000000000000000000000000000000..729b903cfd80314c126ac1daa70e2dbf7dd2ff5a
--- /dev/null
+++ "b/\345\210\230\346\233\246/\344\275\234\344\270\232/Blog/obj/Debug/net8.0/Blog.genruntimeconfig.cache"
@@ -0,0 +1 @@
+65765bb96935a295da14b409442785bf15c88f8145df1e71066b48bc3b45219e
diff --git "a/\345\210\230\346\233\246/\344\275\234\344\270\232/Blog/obj/Debug/net8.0/Blog.pdb" "b/\345\210\230\346\233\246/\344\275\234\344\270\232/Blog/obj/Debug/net8.0/Blog.pdb"
new file mode 100644
index 0000000000000000000000000000000000000000..9296a3cf690d71e47ad77e375f6854fb2d7b0f33
Binary files /dev/null and "b/\345\210\230\346\233\246/\344\275\234\344\270\232/Blog/obj/Debug/net8.0/Blog.pdb" differ
diff --git "a/\345\210\230\346\233\246/\344\275\234\344\270\232/Blog/obj/Debug/net8.0/apphost.exe" "b/\345\210\230\346\233\246/\344\275\234\344\270\232/Blog/obj/Debug/net8.0/apphost.exe"
new file mode 100644
index 0000000000000000000000000000000000000000..279d7b352904f7aed321d5430f3a6de0ccbc340c
Binary files /dev/null and "b/\345\210\230\346\233\246/\344\275\234\344\270\232/Blog/obj/Debug/net8.0/apphost.exe" differ
diff --git "a/\345\210\230\346\233\246/\344\275\234\344\270\232/Blog/obj/Debug/net8.0/ref/Blog.dll" "b/\345\210\230\346\233\246/\344\275\234\344\270\232/Blog/obj/Debug/net8.0/ref/Blog.dll"
new file mode 100644
index 0000000000000000000000000000000000000000..c7d9fdd58b12cb66482a8036783ee1a5635114e0
Binary files /dev/null and "b/\345\210\230\346\233\246/\344\275\234\344\270\232/Blog/obj/Debug/net8.0/ref/Blog.dll" differ
diff --git "a/\345\210\230\346\233\246/\344\275\234\344\270\232/Blog/obj/Debug/net8.0/refint/Blog.dll" "b/\345\210\230\346\233\246/\344\275\234\344\270\232/Blog/obj/Debug/net8.0/refint/Blog.dll"
new file mode 100644
index 0000000000000000000000000000000000000000..c7d9fdd58b12cb66482a8036783ee1a5635114e0
Binary files /dev/null and "b/\345\210\230\346\233\246/\344\275\234\344\270\232/Blog/obj/Debug/net8.0/refint/Blog.dll" differ
diff --git "a/\345\210\230\346\233\246/\344\275\234\344\270\232/Blog/obj/Debug/net8.0/scopedcss/Views/Shared/_Layout.cshtml.rz.scp.css" "b/\345\210\230\346\233\246/\344\275\234\344\270\232/Blog/obj/Debug/net8.0/scopedcss/Views/Shared/_Layout.cshtml.rz.scp.css"
new file mode 100644
index 0000000000000000000000000000000000000000..0e0b746f7ebd0a755d4b2fd1a456a22303fad530
--- /dev/null
+++ "b/\345\210\230\346\233\246/\344\275\234\344\270\232/Blog/obj/Debug/net8.0/scopedcss/Views/Shared/_Layout.cshtml.rz.scp.css"
@@ -0,0 +1,48 @@
+/* Please see documentation at https://learn.microsoft.com/aspnet/core/client-side/bundling-and-minification
+for details on configuring this project to bundle and minify static web assets. */
+
+a.navbar-brand[b-9b4f8crvh3] {
+ white-space: normal;
+ text-align: center;
+ word-break: break-all;
+}
+
+a[b-9b4f8crvh3] {
+ color: #0077cc;
+}
+
+.btn-primary[b-9b4f8crvh3] {
+ color: #fff;
+ background-color: #1b6ec2;
+ border-color: #1861ac;
+}
+
+.nav-pills .nav-link.active[b-9b4f8crvh3], .nav-pills .show > .nav-link[b-9b4f8crvh3] {
+ color: #fff;
+ background-color: #1b6ec2;
+ border-color: #1861ac;
+}
+
+.border-top[b-9b4f8crvh3] {
+ border-top: 1px solid #e5e5e5;
+}
+.border-bottom[b-9b4f8crvh3] {
+ border-bottom: 1px solid #e5e5e5;
+}
+
+.box-shadow[b-9b4f8crvh3] {
+ box-shadow: 0 .25rem .75rem rgba(0, 0, 0, .05);
+}
+
+button.accept-policy[b-9b4f8crvh3] {
+ font-size: 1rem;
+ line-height: inherit;
+}
+
+.footer[b-9b4f8crvh3] {
+ position: absolute;
+ bottom: 0;
+ width: 100%;
+ white-space: nowrap;
+ line-height: 60px;
+}
diff --git "a/\345\210\230\346\233\246/\344\275\234\344\270\232/Blog/obj/Debug/net8.0/scopedcss/bundle/Blog.styles.css" "b/\345\210\230\346\233\246/\344\275\234\344\270\232/Blog/obj/Debug/net8.0/scopedcss/bundle/Blog.styles.css"
new file mode 100644
index 0000000000000000000000000000000000000000..6a747b97c32c9a78b3862f2a1f00c51eaf2224d9
--- /dev/null
+++ "b/\345\210\230\346\233\246/\344\275\234\344\270\232/Blog/obj/Debug/net8.0/scopedcss/bundle/Blog.styles.css"
@@ -0,0 +1,49 @@
+/* _content/Blog/Views/Shared/_Layout.cshtml.rz.scp.css */
+/* Please see documentation at https://learn.microsoft.com/aspnet/core/client-side/bundling-and-minification
+for details on configuring this project to bundle and minify static web assets. */
+
+a.navbar-brand[b-9b4f8crvh3] {
+ white-space: normal;
+ text-align: center;
+ word-break: break-all;
+}
+
+a[b-9b4f8crvh3] {
+ color: #0077cc;
+}
+
+.btn-primary[b-9b4f8crvh3] {
+ color: #fff;
+ background-color: #1b6ec2;
+ border-color: #1861ac;
+}
+
+.nav-pills .nav-link.active[b-9b4f8crvh3], .nav-pills .show > .nav-link[b-9b4f8crvh3] {
+ color: #fff;
+ background-color: #1b6ec2;
+ border-color: #1861ac;
+}
+
+.border-top[b-9b4f8crvh3] {
+ border-top: 1px solid #e5e5e5;
+}
+.border-bottom[b-9b4f8crvh3] {
+ border-bottom: 1px solid #e5e5e5;
+}
+
+.box-shadow[b-9b4f8crvh3] {
+ box-shadow: 0 .25rem .75rem rgba(0, 0, 0, .05);
+}
+
+button.accept-policy[b-9b4f8crvh3] {
+ font-size: 1rem;
+ line-height: inherit;
+}
+
+.footer[b-9b4f8crvh3] {
+ position: absolute;
+ bottom: 0;
+ width: 100%;
+ white-space: nowrap;
+ line-height: 60px;
+}
diff --git "a/\345\210\230\346\233\246/\344\275\234\344\270\232/Blog/obj/Debug/net8.0/scopedcss/projectbundle/Blog.bundle.scp.css" "b/\345\210\230\346\233\246/\344\275\234\344\270\232/Blog/obj/Debug/net8.0/scopedcss/projectbundle/Blog.bundle.scp.css"
new file mode 100644
index 0000000000000000000000000000000000000000..6a747b97c32c9a78b3862f2a1f00c51eaf2224d9
--- /dev/null
+++ "b/\345\210\230\346\233\246/\344\275\234\344\270\232/Blog/obj/Debug/net8.0/scopedcss/projectbundle/Blog.bundle.scp.css"
@@ -0,0 +1,49 @@
+/* _content/Blog/Views/Shared/_Layout.cshtml.rz.scp.css */
+/* Please see documentation at https://learn.microsoft.com/aspnet/core/client-side/bundling-and-minification
+for details on configuring this project to bundle and minify static web assets. */
+
+a.navbar-brand[b-9b4f8crvh3] {
+ white-space: normal;
+ text-align: center;
+ word-break: break-all;
+}
+
+a[b-9b4f8crvh3] {
+ color: #0077cc;
+}
+
+.btn-primary[b-9b4f8crvh3] {
+ color: #fff;
+ background-color: #1b6ec2;
+ border-color: #1861ac;
+}
+
+.nav-pills .nav-link.active[b-9b4f8crvh3], .nav-pills .show > .nav-link[b-9b4f8crvh3] {
+ color: #fff;
+ background-color: #1b6ec2;
+ border-color: #1861ac;
+}
+
+.border-top[b-9b4f8crvh3] {
+ border-top: 1px solid #e5e5e5;
+}
+.border-bottom[b-9b4f8crvh3] {
+ border-bottom: 1px solid #e5e5e5;
+}
+
+.box-shadow[b-9b4f8crvh3] {
+ box-shadow: 0 .25rem .75rem rgba(0, 0, 0, .05);
+}
+
+button.accept-policy[b-9b4f8crvh3] {
+ font-size: 1rem;
+ line-height: inherit;
+}
+
+.footer[b-9b4f8crvh3] {
+ position: absolute;
+ bottom: 0;
+ width: 100%;
+ white-space: nowrap;
+ line-height: 60px;
+}
diff --git "a/\345\210\230\346\233\246/\344\275\234\344\270\232/Blog/obj/Debug/net8.0/staticwebassets.build.json" "b/\345\210\230\346\233\246/\344\275\234\344\270\232/Blog/obj/Debug/net8.0/staticwebassets.build.json"
new file mode 100644
index 0000000000000000000000000000000000000000..67c02c8f72980dc98e2d9f37b2dd9a9c7e08549a
--- /dev/null
+++ "b/\345\210\230\346\233\246/\344\275\234\344\270\232/Blog/obj/Debug/net8.0/staticwebassets.build.json"
@@ -0,0 +1,1217 @@
+{
+ "Version": 1,
+ "Hash": "fy5LGsMoOoYQD+YE7UeYu5DvViMiUXeW3tPv9CiZy8g=",
+ "Source": "Blog",
+ "BasePath": "_content/Blog",
+ "Mode": "Default",
+ "ManifestType": "Build",
+ "ReferencedProjectsConfiguration": [],
+ "DiscoveryPatterns": [
+ {
+ "Name": "Blog\\wwwroot",
+ "Source": "Blog",
+ "ContentRoot": "E:\\MVC\\Blog\\wwwroot\\",
+ "BasePath": "_content/Blog",
+ "Pattern": "**"
+ }
+ ],
+ "Assets": [
+ {
+ "Identity": "E:\\MVC\\Blog\\obj\\Debug\\net8.0\\scopedcss\\bundle\\Blog.styles.css",
+ "SourceId": "Blog",
+ "SourceType": "Computed",
+ "ContentRoot": "E:\\MVC\\Blog\\obj\\Debug\\net8.0\\scopedcss\\bundle\\",
+ "BasePath": "_content/Blog",
+ "RelativePath": "Blog.styles.css",
+ "AssetKind": "All",
+ "AssetMode": "CurrentProject",
+ "AssetRole": "Primary",
+ "AssetMergeBehavior": "",
+ "AssetMergeSource": "",
+ "RelatedAsset": "",
+ "AssetTraitName": "ScopedCss",
+ "AssetTraitValue": "ApplicationBundle",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "E:\\MVC\\Blog\\obj\\Debug\\net8.0\\scopedcss\\bundle\\Blog.styles.css"
+ },
+ {
+ "Identity": "E:\\MVC\\Blog\\obj\\Debug\\net8.0\\scopedcss\\projectbundle\\Blog.bundle.scp.css",
+ "SourceId": "Blog",
+ "SourceType": "Computed",
+ "ContentRoot": "E:\\MVC\\Blog\\obj\\Debug\\net8.0\\scopedcss\\projectbundle\\",
+ "BasePath": "_content/Blog",
+ "RelativePath": "Blog.bundle.scp.css",
+ "AssetKind": "All",
+ "AssetMode": "Reference",
+ "AssetRole": "Primary",
+ "AssetMergeBehavior": "",
+ "AssetMergeSource": "",
+ "RelatedAsset": "",
+ "AssetTraitName": "ScopedCss",
+ "AssetTraitValue": "ProjectBundle",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "E:\\MVC\\Blog\\obj\\Debug\\net8.0\\scopedcss\\projectbundle\\Blog.bundle.scp.css"
+ },
+ {
+ "Identity": "E:\\MVC\\Blog\\wwwroot\\css\\base.css",
+ "SourceId": "Blog",
+ "SourceType": "Discovered",
+ "ContentRoot": "E:\\MVC\\Blog\\wwwroot\\",
+ "BasePath": "_content/Blog",
+ "RelativePath": "css/base.css",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "AssetMergeBehavior": "PreferTarget",
+ "AssetMergeSource": "",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "wwwroot\\css\\base.css"
+ },
+ {
+ "Identity": "E:\\MVC\\Blog\\wwwroot\\css\\site.css",
+ "SourceId": "Blog",
+ "SourceType": "Discovered",
+ "ContentRoot": "E:\\MVC\\Blog\\wwwroot\\",
+ "BasePath": "_content/Blog",
+ "RelativePath": "css/site.css",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "AssetMergeBehavior": "PreferTarget",
+ "AssetMergeSource": "",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "wwwroot\\css\\site.css"
+ },
+ {
+ "Identity": "E:\\MVC\\Blog\\wwwroot\\favicon.ico",
+ "SourceId": "Blog",
+ "SourceType": "Discovered",
+ "ContentRoot": "E:\\MVC\\Blog\\wwwroot\\",
+ "BasePath": "_content/Blog",
+ "RelativePath": "favicon.ico",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "AssetMergeBehavior": "PreferTarget",
+ "AssetMergeSource": "",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "wwwroot\\favicon.ico"
+ },
+ {
+ "Identity": "E:\\MVC\\Blog\\wwwroot\\js\\site.js",
+ "SourceId": "Blog",
+ "SourceType": "Discovered",
+ "ContentRoot": "E:\\MVC\\Blog\\wwwroot\\",
+ "BasePath": "_content/Blog",
+ "RelativePath": "js/site.js",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "AssetMergeBehavior": "PreferTarget",
+ "AssetMergeSource": "",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "wwwroot\\js\\site.js"
+ },
+ {
+ "Identity": "E:\\MVC\\Blog\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-grid.css",
+ "SourceId": "Blog",
+ "SourceType": "Discovered",
+ "ContentRoot": "E:\\MVC\\Blog\\wwwroot\\",
+ "BasePath": "_content/Blog",
+ "RelativePath": "lib/bootstrap/dist/css/bootstrap-grid.css",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "AssetMergeBehavior": "PreferTarget",
+ "AssetMergeSource": "",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-grid.css"
+ },
+ {
+ "Identity": "E:\\MVC\\Blog\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-grid.css.map",
+ "SourceId": "Blog",
+ "SourceType": "Discovered",
+ "ContentRoot": "E:\\MVC\\Blog\\wwwroot\\",
+ "BasePath": "_content/Blog",
+ "RelativePath": "lib/bootstrap/dist/css/bootstrap-grid.css.map",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "AssetMergeBehavior": "PreferTarget",
+ "AssetMergeSource": "",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-grid.css.map"
+ },
+ {
+ "Identity": "E:\\MVC\\Blog\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-grid.min.css",
+ "SourceId": "Blog",
+ "SourceType": "Discovered",
+ "ContentRoot": "E:\\MVC\\Blog\\wwwroot\\",
+ "BasePath": "_content/Blog",
+ "RelativePath": "lib/bootstrap/dist/css/bootstrap-grid.min.css",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "AssetMergeBehavior": "PreferTarget",
+ "AssetMergeSource": "",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-grid.min.css"
+ },
+ {
+ "Identity": "E:\\MVC\\Blog\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-grid.min.css.map",
+ "SourceId": "Blog",
+ "SourceType": "Discovered",
+ "ContentRoot": "E:\\MVC\\Blog\\wwwroot\\",
+ "BasePath": "_content/Blog",
+ "RelativePath": "lib/bootstrap/dist/css/bootstrap-grid.min.css.map",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "AssetMergeBehavior": "PreferTarget",
+ "AssetMergeSource": "",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-grid.min.css.map"
+ },
+ {
+ "Identity": "E:\\MVC\\Blog\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-grid.rtl.css",
+ "SourceId": "Blog",
+ "SourceType": "Discovered",
+ "ContentRoot": "E:\\MVC\\Blog\\wwwroot\\",
+ "BasePath": "_content/Blog",
+ "RelativePath": "lib/bootstrap/dist/css/bootstrap-grid.rtl.css",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "AssetMergeBehavior": "PreferTarget",
+ "AssetMergeSource": "",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-grid.rtl.css"
+ },
+ {
+ "Identity": "E:\\MVC\\Blog\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-grid.rtl.css.map",
+ "SourceId": "Blog",
+ "SourceType": "Discovered",
+ "ContentRoot": "E:\\MVC\\Blog\\wwwroot\\",
+ "BasePath": "_content/Blog",
+ "RelativePath": "lib/bootstrap/dist/css/bootstrap-grid.rtl.css.map",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "AssetMergeBehavior": "PreferTarget",
+ "AssetMergeSource": "",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-grid.rtl.css.map"
+ },
+ {
+ "Identity": "E:\\MVC\\Blog\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-grid.rtl.min.css",
+ "SourceId": "Blog",
+ "SourceType": "Discovered",
+ "ContentRoot": "E:\\MVC\\Blog\\wwwroot\\",
+ "BasePath": "_content/Blog",
+ "RelativePath": "lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "AssetMergeBehavior": "PreferTarget",
+ "AssetMergeSource": "",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-grid.rtl.min.css"
+ },
+ {
+ "Identity": "E:\\MVC\\Blog\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-grid.rtl.min.css.map",
+ "SourceId": "Blog",
+ "SourceType": "Discovered",
+ "ContentRoot": "E:\\MVC\\Blog\\wwwroot\\",
+ "BasePath": "_content/Blog",
+ "RelativePath": "lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css.map",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "AssetMergeBehavior": "PreferTarget",
+ "AssetMergeSource": "",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-grid.rtl.min.css.map"
+ },
+ {
+ "Identity": "E:\\MVC\\Blog\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-reboot.css",
+ "SourceId": "Blog",
+ "SourceType": "Discovered",
+ "ContentRoot": "E:\\MVC\\Blog\\wwwroot\\",
+ "BasePath": "_content/Blog",
+ "RelativePath": "lib/bootstrap/dist/css/bootstrap-reboot.css",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "AssetMergeBehavior": "PreferTarget",
+ "AssetMergeSource": "",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-reboot.css"
+ },
+ {
+ "Identity": "E:\\MVC\\Blog\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-reboot.css.map",
+ "SourceId": "Blog",
+ "SourceType": "Discovered",
+ "ContentRoot": "E:\\MVC\\Blog\\wwwroot\\",
+ "BasePath": "_content/Blog",
+ "RelativePath": "lib/bootstrap/dist/css/bootstrap-reboot.css.map",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "AssetMergeBehavior": "PreferTarget",
+ "AssetMergeSource": "",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-reboot.css.map"
+ },
+ {
+ "Identity": "E:\\MVC\\Blog\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-reboot.min.css",
+ "SourceId": "Blog",
+ "SourceType": "Discovered",
+ "ContentRoot": "E:\\MVC\\Blog\\wwwroot\\",
+ "BasePath": "_content/Blog",
+ "RelativePath": "lib/bootstrap/dist/css/bootstrap-reboot.min.css",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "AssetMergeBehavior": "PreferTarget",
+ "AssetMergeSource": "",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-reboot.min.css"
+ },
+ {
+ "Identity": "E:\\MVC\\Blog\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-reboot.min.css.map",
+ "SourceId": "Blog",
+ "SourceType": "Discovered",
+ "ContentRoot": "E:\\MVC\\Blog\\wwwroot\\",
+ "BasePath": "_content/Blog",
+ "RelativePath": "lib/bootstrap/dist/css/bootstrap-reboot.min.css.map",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "AssetMergeBehavior": "PreferTarget",
+ "AssetMergeSource": "",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-reboot.min.css.map"
+ },
+ {
+ "Identity": "E:\\MVC\\Blog\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-reboot.rtl.css",
+ "SourceId": "Blog",
+ "SourceType": "Discovered",
+ "ContentRoot": "E:\\MVC\\Blog\\wwwroot\\",
+ "BasePath": "_content/Blog",
+ "RelativePath": "lib/bootstrap/dist/css/bootstrap-reboot.rtl.css",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "AssetMergeBehavior": "PreferTarget",
+ "AssetMergeSource": "",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-reboot.rtl.css"
+ },
+ {
+ "Identity": "E:\\MVC\\Blog\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-reboot.rtl.css.map",
+ "SourceId": "Blog",
+ "SourceType": "Discovered",
+ "ContentRoot": "E:\\MVC\\Blog\\wwwroot\\",
+ "BasePath": "_content/Blog",
+ "RelativePath": "lib/bootstrap/dist/css/bootstrap-reboot.rtl.css.map",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "AssetMergeBehavior": "PreferTarget",
+ "AssetMergeSource": "",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-reboot.rtl.css.map"
+ },
+ {
+ "Identity": "E:\\MVC\\Blog\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-reboot.rtl.min.css",
+ "SourceId": "Blog",
+ "SourceType": "Discovered",
+ "ContentRoot": "E:\\MVC\\Blog\\wwwroot\\",
+ "BasePath": "_content/Blog",
+ "RelativePath": "lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "AssetMergeBehavior": "PreferTarget",
+ "AssetMergeSource": "",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-reboot.rtl.min.css"
+ },
+ {
+ "Identity": "E:\\MVC\\Blog\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-reboot.rtl.min.css.map",
+ "SourceId": "Blog",
+ "SourceType": "Discovered",
+ "ContentRoot": "E:\\MVC\\Blog\\wwwroot\\",
+ "BasePath": "_content/Blog",
+ "RelativePath": "lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css.map",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "AssetMergeBehavior": "PreferTarget",
+ "AssetMergeSource": "",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-reboot.rtl.min.css.map"
+ },
+ {
+ "Identity": "E:\\MVC\\Blog\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-utilities.css",
+ "SourceId": "Blog",
+ "SourceType": "Discovered",
+ "ContentRoot": "E:\\MVC\\Blog\\wwwroot\\",
+ "BasePath": "_content/Blog",
+ "RelativePath": "lib/bootstrap/dist/css/bootstrap-utilities.css",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "AssetMergeBehavior": "PreferTarget",
+ "AssetMergeSource": "",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-utilities.css"
+ },
+ {
+ "Identity": "E:\\MVC\\Blog\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-utilities.css.map",
+ "SourceId": "Blog",
+ "SourceType": "Discovered",
+ "ContentRoot": "E:\\MVC\\Blog\\wwwroot\\",
+ "BasePath": "_content/Blog",
+ "RelativePath": "lib/bootstrap/dist/css/bootstrap-utilities.css.map",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "AssetMergeBehavior": "PreferTarget",
+ "AssetMergeSource": "",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-utilities.css.map"
+ },
+ {
+ "Identity": "E:\\MVC\\Blog\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-utilities.min.css",
+ "SourceId": "Blog",
+ "SourceType": "Discovered",
+ "ContentRoot": "E:\\MVC\\Blog\\wwwroot\\",
+ "BasePath": "_content/Blog",
+ "RelativePath": "lib/bootstrap/dist/css/bootstrap-utilities.min.css",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "AssetMergeBehavior": "PreferTarget",
+ "AssetMergeSource": "",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-utilities.min.css"
+ },
+ {
+ "Identity": "E:\\MVC\\Blog\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-utilities.min.css.map",
+ "SourceId": "Blog",
+ "SourceType": "Discovered",
+ "ContentRoot": "E:\\MVC\\Blog\\wwwroot\\",
+ "BasePath": "_content/Blog",
+ "RelativePath": "lib/bootstrap/dist/css/bootstrap-utilities.min.css.map",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "AssetMergeBehavior": "PreferTarget",
+ "AssetMergeSource": "",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-utilities.min.css.map"
+ },
+ {
+ "Identity": "E:\\MVC\\Blog\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-utilities.rtl.css",
+ "SourceId": "Blog",
+ "SourceType": "Discovered",
+ "ContentRoot": "E:\\MVC\\Blog\\wwwroot\\",
+ "BasePath": "_content/Blog",
+ "RelativePath": "lib/bootstrap/dist/css/bootstrap-utilities.rtl.css",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "AssetMergeBehavior": "PreferTarget",
+ "AssetMergeSource": "",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-utilities.rtl.css"
+ },
+ {
+ "Identity": "E:\\MVC\\Blog\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-utilities.rtl.css.map",
+ "SourceId": "Blog",
+ "SourceType": "Discovered",
+ "ContentRoot": "E:\\MVC\\Blog\\wwwroot\\",
+ "BasePath": "_content/Blog",
+ "RelativePath": "lib/bootstrap/dist/css/bootstrap-utilities.rtl.css.map",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "AssetMergeBehavior": "PreferTarget",
+ "AssetMergeSource": "",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-utilities.rtl.css.map"
+ },
+ {
+ "Identity": "E:\\MVC\\Blog\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-utilities.rtl.min.css",
+ "SourceId": "Blog",
+ "SourceType": "Discovered",
+ "ContentRoot": "E:\\MVC\\Blog\\wwwroot\\",
+ "BasePath": "_content/Blog",
+ "RelativePath": "lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "AssetMergeBehavior": "PreferTarget",
+ "AssetMergeSource": "",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-utilities.rtl.min.css"
+ },
+ {
+ "Identity": "E:\\MVC\\Blog\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-utilities.rtl.min.css.map",
+ "SourceId": "Blog",
+ "SourceType": "Discovered",
+ "ContentRoot": "E:\\MVC\\Blog\\wwwroot\\",
+ "BasePath": "_content/Blog",
+ "RelativePath": "lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css.map",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "AssetMergeBehavior": "PreferTarget",
+ "AssetMergeSource": "",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-utilities.rtl.min.css.map"
+ },
+ {
+ "Identity": "E:\\MVC\\Blog\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap.css",
+ "SourceId": "Blog",
+ "SourceType": "Discovered",
+ "ContentRoot": "E:\\MVC\\Blog\\wwwroot\\",
+ "BasePath": "_content/Blog",
+ "RelativePath": "lib/bootstrap/dist/css/bootstrap.css",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "AssetMergeBehavior": "PreferTarget",
+ "AssetMergeSource": "",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap.css"
+ },
+ {
+ "Identity": "E:\\MVC\\Blog\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap.css.map",
+ "SourceId": "Blog",
+ "SourceType": "Discovered",
+ "ContentRoot": "E:\\MVC\\Blog\\wwwroot\\",
+ "BasePath": "_content/Blog",
+ "RelativePath": "lib/bootstrap/dist/css/bootstrap.css.map",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "AssetMergeBehavior": "PreferTarget",
+ "AssetMergeSource": "",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap.css.map"
+ },
+ {
+ "Identity": "E:\\MVC\\Blog\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap.min.css",
+ "SourceId": "Blog",
+ "SourceType": "Discovered",
+ "ContentRoot": "E:\\MVC\\Blog\\wwwroot\\",
+ "BasePath": "_content/Blog",
+ "RelativePath": "lib/bootstrap/dist/css/bootstrap.min.css",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "AssetMergeBehavior": "PreferTarget",
+ "AssetMergeSource": "",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap.min.css"
+ },
+ {
+ "Identity": "E:\\MVC\\Blog\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap.min.css.map",
+ "SourceId": "Blog",
+ "SourceType": "Discovered",
+ "ContentRoot": "E:\\MVC\\Blog\\wwwroot\\",
+ "BasePath": "_content/Blog",
+ "RelativePath": "lib/bootstrap/dist/css/bootstrap.min.css.map",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "AssetMergeBehavior": "PreferTarget",
+ "AssetMergeSource": "",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap.min.css.map"
+ },
+ {
+ "Identity": "E:\\MVC\\Blog\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap.rtl.css",
+ "SourceId": "Blog",
+ "SourceType": "Discovered",
+ "ContentRoot": "E:\\MVC\\Blog\\wwwroot\\",
+ "BasePath": "_content/Blog",
+ "RelativePath": "lib/bootstrap/dist/css/bootstrap.rtl.css",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "AssetMergeBehavior": "PreferTarget",
+ "AssetMergeSource": "",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap.rtl.css"
+ },
+ {
+ "Identity": "E:\\MVC\\Blog\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap.rtl.css.map",
+ "SourceId": "Blog",
+ "SourceType": "Discovered",
+ "ContentRoot": "E:\\MVC\\Blog\\wwwroot\\",
+ "BasePath": "_content/Blog",
+ "RelativePath": "lib/bootstrap/dist/css/bootstrap.rtl.css.map",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "AssetMergeBehavior": "PreferTarget",
+ "AssetMergeSource": "",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap.rtl.css.map"
+ },
+ {
+ "Identity": "E:\\MVC\\Blog\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap.rtl.min.css",
+ "SourceId": "Blog",
+ "SourceType": "Discovered",
+ "ContentRoot": "E:\\MVC\\Blog\\wwwroot\\",
+ "BasePath": "_content/Blog",
+ "RelativePath": "lib/bootstrap/dist/css/bootstrap.rtl.min.css",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "AssetMergeBehavior": "PreferTarget",
+ "AssetMergeSource": "",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap.rtl.min.css"
+ },
+ {
+ "Identity": "E:\\MVC\\Blog\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap.rtl.min.css.map",
+ "SourceId": "Blog",
+ "SourceType": "Discovered",
+ "ContentRoot": "E:\\MVC\\Blog\\wwwroot\\",
+ "BasePath": "_content/Blog",
+ "RelativePath": "lib/bootstrap/dist/css/bootstrap.rtl.min.css.map",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "AssetMergeBehavior": "PreferTarget",
+ "AssetMergeSource": "",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap.rtl.min.css.map"
+ },
+ {
+ "Identity": "E:\\MVC\\Blog\\wwwroot\\lib\\bootstrap\\dist\\js\\bootstrap.bundle.js",
+ "SourceId": "Blog",
+ "SourceType": "Discovered",
+ "ContentRoot": "E:\\MVC\\Blog\\wwwroot\\",
+ "BasePath": "_content/Blog",
+ "RelativePath": "lib/bootstrap/dist/js/bootstrap.bundle.js",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "AssetMergeBehavior": "PreferTarget",
+ "AssetMergeSource": "",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "wwwroot\\lib\\bootstrap\\dist\\js\\bootstrap.bundle.js"
+ },
+ {
+ "Identity": "E:\\MVC\\Blog\\wwwroot\\lib\\bootstrap\\dist\\js\\bootstrap.bundle.js.map",
+ "SourceId": "Blog",
+ "SourceType": "Discovered",
+ "ContentRoot": "E:\\MVC\\Blog\\wwwroot\\",
+ "BasePath": "_content/Blog",
+ "RelativePath": "lib/bootstrap/dist/js/bootstrap.bundle.js.map",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "AssetMergeBehavior": "PreferTarget",
+ "AssetMergeSource": "",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "wwwroot\\lib\\bootstrap\\dist\\js\\bootstrap.bundle.js.map"
+ },
+ {
+ "Identity": "E:\\MVC\\Blog\\wwwroot\\lib\\bootstrap\\dist\\js\\bootstrap.bundle.min.js",
+ "SourceId": "Blog",
+ "SourceType": "Discovered",
+ "ContentRoot": "E:\\MVC\\Blog\\wwwroot\\",
+ "BasePath": "_content/Blog",
+ "RelativePath": "lib/bootstrap/dist/js/bootstrap.bundle.min.js",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "AssetMergeBehavior": "PreferTarget",
+ "AssetMergeSource": "",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "wwwroot\\lib\\bootstrap\\dist\\js\\bootstrap.bundle.min.js"
+ },
+ {
+ "Identity": "E:\\MVC\\Blog\\wwwroot\\lib\\bootstrap\\dist\\js\\bootstrap.bundle.min.js.map",
+ "SourceId": "Blog",
+ "SourceType": "Discovered",
+ "ContentRoot": "E:\\MVC\\Blog\\wwwroot\\",
+ "BasePath": "_content/Blog",
+ "RelativePath": "lib/bootstrap/dist/js/bootstrap.bundle.min.js.map",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "AssetMergeBehavior": "PreferTarget",
+ "AssetMergeSource": "",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "wwwroot\\lib\\bootstrap\\dist\\js\\bootstrap.bundle.min.js.map"
+ },
+ {
+ "Identity": "E:\\MVC\\Blog\\wwwroot\\lib\\bootstrap\\dist\\js\\bootstrap.esm.js",
+ "SourceId": "Blog",
+ "SourceType": "Discovered",
+ "ContentRoot": "E:\\MVC\\Blog\\wwwroot\\",
+ "BasePath": "_content/Blog",
+ "RelativePath": "lib/bootstrap/dist/js/bootstrap.esm.js",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "AssetMergeBehavior": "PreferTarget",
+ "AssetMergeSource": "",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "wwwroot\\lib\\bootstrap\\dist\\js\\bootstrap.esm.js"
+ },
+ {
+ "Identity": "E:\\MVC\\Blog\\wwwroot\\lib\\bootstrap\\dist\\js\\bootstrap.esm.js.map",
+ "SourceId": "Blog",
+ "SourceType": "Discovered",
+ "ContentRoot": "E:\\MVC\\Blog\\wwwroot\\",
+ "BasePath": "_content/Blog",
+ "RelativePath": "lib/bootstrap/dist/js/bootstrap.esm.js.map",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "AssetMergeBehavior": "PreferTarget",
+ "AssetMergeSource": "",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "wwwroot\\lib\\bootstrap\\dist\\js\\bootstrap.esm.js.map"
+ },
+ {
+ "Identity": "E:\\MVC\\Blog\\wwwroot\\lib\\bootstrap\\dist\\js\\bootstrap.esm.min.js",
+ "SourceId": "Blog",
+ "SourceType": "Discovered",
+ "ContentRoot": "E:\\MVC\\Blog\\wwwroot\\",
+ "BasePath": "_content/Blog",
+ "RelativePath": "lib/bootstrap/dist/js/bootstrap.esm.min.js",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "AssetMergeBehavior": "PreferTarget",
+ "AssetMergeSource": "",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "wwwroot\\lib\\bootstrap\\dist\\js\\bootstrap.esm.min.js"
+ },
+ {
+ "Identity": "E:\\MVC\\Blog\\wwwroot\\lib\\bootstrap\\dist\\js\\bootstrap.esm.min.js.map",
+ "SourceId": "Blog",
+ "SourceType": "Discovered",
+ "ContentRoot": "E:\\MVC\\Blog\\wwwroot\\",
+ "BasePath": "_content/Blog",
+ "RelativePath": "lib/bootstrap/dist/js/bootstrap.esm.min.js.map",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "AssetMergeBehavior": "PreferTarget",
+ "AssetMergeSource": "",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "wwwroot\\lib\\bootstrap\\dist\\js\\bootstrap.esm.min.js.map"
+ },
+ {
+ "Identity": "E:\\MVC\\Blog\\wwwroot\\lib\\bootstrap\\dist\\js\\bootstrap.js",
+ "SourceId": "Blog",
+ "SourceType": "Discovered",
+ "ContentRoot": "E:\\MVC\\Blog\\wwwroot\\",
+ "BasePath": "_content/Blog",
+ "RelativePath": "lib/bootstrap/dist/js/bootstrap.js",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "AssetMergeBehavior": "PreferTarget",
+ "AssetMergeSource": "",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "wwwroot\\lib\\bootstrap\\dist\\js\\bootstrap.js"
+ },
+ {
+ "Identity": "E:\\MVC\\Blog\\wwwroot\\lib\\bootstrap\\dist\\js\\bootstrap.js.map",
+ "SourceId": "Blog",
+ "SourceType": "Discovered",
+ "ContentRoot": "E:\\MVC\\Blog\\wwwroot\\",
+ "BasePath": "_content/Blog",
+ "RelativePath": "lib/bootstrap/dist/js/bootstrap.js.map",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "AssetMergeBehavior": "PreferTarget",
+ "AssetMergeSource": "",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "wwwroot\\lib\\bootstrap\\dist\\js\\bootstrap.js.map"
+ },
+ {
+ "Identity": "E:\\MVC\\Blog\\wwwroot\\lib\\bootstrap\\dist\\js\\bootstrap.min.js",
+ "SourceId": "Blog",
+ "SourceType": "Discovered",
+ "ContentRoot": "E:\\MVC\\Blog\\wwwroot\\",
+ "BasePath": "_content/Blog",
+ "RelativePath": "lib/bootstrap/dist/js/bootstrap.min.js",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "AssetMergeBehavior": "PreferTarget",
+ "AssetMergeSource": "",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "wwwroot\\lib\\bootstrap\\dist\\js\\bootstrap.min.js"
+ },
+ {
+ "Identity": "E:\\MVC\\Blog\\wwwroot\\lib\\bootstrap\\dist\\js\\bootstrap.min.js.map",
+ "SourceId": "Blog",
+ "SourceType": "Discovered",
+ "ContentRoot": "E:\\MVC\\Blog\\wwwroot\\",
+ "BasePath": "_content/Blog",
+ "RelativePath": "lib/bootstrap/dist/js/bootstrap.min.js.map",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "AssetMergeBehavior": "PreferTarget",
+ "AssetMergeSource": "",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "wwwroot\\lib\\bootstrap\\dist\\js\\bootstrap.min.js.map"
+ },
+ {
+ "Identity": "E:\\MVC\\Blog\\wwwroot\\lib\\bootstrap\\LICENSE",
+ "SourceId": "Blog",
+ "SourceType": "Discovered",
+ "ContentRoot": "E:\\MVC\\Blog\\wwwroot\\",
+ "BasePath": "_content/Blog",
+ "RelativePath": "lib/bootstrap/LICENSE",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "AssetMergeBehavior": "PreferTarget",
+ "AssetMergeSource": "",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "wwwroot\\lib\\bootstrap\\LICENSE"
+ },
+ {
+ "Identity": "E:\\MVC\\Blog\\wwwroot\\lib\\jquery-validation-unobtrusive\\jquery.validate.unobtrusive.js",
+ "SourceId": "Blog",
+ "SourceType": "Discovered",
+ "ContentRoot": "E:\\MVC\\Blog\\wwwroot\\",
+ "BasePath": "_content/Blog",
+ "RelativePath": "lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "AssetMergeBehavior": "PreferTarget",
+ "AssetMergeSource": "",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "wwwroot\\lib\\jquery-validation-unobtrusive\\jquery.validate.unobtrusive.js"
+ },
+ {
+ "Identity": "E:\\MVC\\Blog\\wwwroot\\lib\\jquery-validation-unobtrusive\\jquery.validate.unobtrusive.min.js",
+ "SourceId": "Blog",
+ "SourceType": "Discovered",
+ "ContentRoot": "E:\\MVC\\Blog\\wwwroot\\",
+ "BasePath": "_content/Blog",
+ "RelativePath": "lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.min.js",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "AssetMergeBehavior": "PreferTarget",
+ "AssetMergeSource": "",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "wwwroot\\lib\\jquery-validation-unobtrusive\\jquery.validate.unobtrusive.min.js"
+ },
+ {
+ "Identity": "E:\\MVC\\Blog\\wwwroot\\lib\\jquery-validation-unobtrusive\\LICENSE.txt",
+ "SourceId": "Blog",
+ "SourceType": "Discovered",
+ "ContentRoot": "E:\\MVC\\Blog\\wwwroot\\",
+ "BasePath": "_content/Blog",
+ "RelativePath": "lib/jquery-validation-unobtrusive/LICENSE.txt",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "AssetMergeBehavior": "PreferTarget",
+ "AssetMergeSource": "",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "wwwroot\\lib\\jquery-validation-unobtrusive\\LICENSE.txt"
+ },
+ {
+ "Identity": "E:\\MVC\\Blog\\wwwroot\\lib\\jquery-validation\\dist\\additional-methods.js",
+ "SourceId": "Blog",
+ "SourceType": "Discovered",
+ "ContentRoot": "E:\\MVC\\Blog\\wwwroot\\",
+ "BasePath": "_content/Blog",
+ "RelativePath": "lib/jquery-validation/dist/additional-methods.js",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "AssetMergeBehavior": "PreferTarget",
+ "AssetMergeSource": "",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "wwwroot\\lib\\jquery-validation\\dist\\additional-methods.js"
+ },
+ {
+ "Identity": "E:\\MVC\\Blog\\wwwroot\\lib\\jquery-validation\\dist\\additional-methods.min.js",
+ "SourceId": "Blog",
+ "SourceType": "Discovered",
+ "ContentRoot": "E:\\MVC\\Blog\\wwwroot\\",
+ "BasePath": "_content/Blog",
+ "RelativePath": "lib/jquery-validation/dist/additional-methods.min.js",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "AssetMergeBehavior": "PreferTarget",
+ "AssetMergeSource": "",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "wwwroot\\lib\\jquery-validation\\dist\\additional-methods.min.js"
+ },
+ {
+ "Identity": "E:\\MVC\\Blog\\wwwroot\\lib\\jquery-validation\\dist\\jquery.validate.js",
+ "SourceId": "Blog",
+ "SourceType": "Discovered",
+ "ContentRoot": "E:\\MVC\\Blog\\wwwroot\\",
+ "BasePath": "_content/Blog",
+ "RelativePath": "lib/jquery-validation/dist/jquery.validate.js",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "AssetMergeBehavior": "PreferTarget",
+ "AssetMergeSource": "",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "wwwroot\\lib\\jquery-validation\\dist\\jquery.validate.js"
+ },
+ {
+ "Identity": "E:\\MVC\\Blog\\wwwroot\\lib\\jquery-validation\\dist\\jquery.validate.min.js",
+ "SourceId": "Blog",
+ "SourceType": "Discovered",
+ "ContentRoot": "E:\\MVC\\Blog\\wwwroot\\",
+ "BasePath": "_content/Blog",
+ "RelativePath": "lib/jquery-validation/dist/jquery.validate.min.js",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "AssetMergeBehavior": "PreferTarget",
+ "AssetMergeSource": "",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "wwwroot\\lib\\jquery-validation\\dist\\jquery.validate.min.js"
+ },
+ {
+ "Identity": "E:\\MVC\\Blog\\wwwroot\\lib\\jquery-validation\\LICENSE.md",
+ "SourceId": "Blog",
+ "SourceType": "Discovered",
+ "ContentRoot": "E:\\MVC\\Blog\\wwwroot\\",
+ "BasePath": "_content/Blog",
+ "RelativePath": "lib/jquery-validation/LICENSE.md",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "AssetMergeBehavior": "PreferTarget",
+ "AssetMergeSource": "",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "wwwroot\\lib\\jquery-validation\\LICENSE.md"
+ },
+ {
+ "Identity": "E:\\MVC\\Blog\\wwwroot\\lib\\jquery\\dist\\jquery.js",
+ "SourceId": "Blog",
+ "SourceType": "Discovered",
+ "ContentRoot": "E:\\MVC\\Blog\\wwwroot\\",
+ "BasePath": "_content/Blog",
+ "RelativePath": "lib/jquery/dist/jquery.js",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "AssetMergeBehavior": "PreferTarget",
+ "AssetMergeSource": "",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "wwwroot\\lib\\jquery\\dist\\jquery.js"
+ },
+ {
+ "Identity": "E:\\MVC\\Blog\\wwwroot\\lib\\jquery\\dist\\jquery.min.js",
+ "SourceId": "Blog",
+ "SourceType": "Discovered",
+ "ContentRoot": "E:\\MVC\\Blog\\wwwroot\\",
+ "BasePath": "_content/Blog",
+ "RelativePath": "lib/jquery/dist/jquery.min.js",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "AssetMergeBehavior": "PreferTarget",
+ "AssetMergeSource": "",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "wwwroot\\lib\\jquery\\dist\\jquery.min.js"
+ },
+ {
+ "Identity": "E:\\MVC\\Blog\\wwwroot\\lib\\jquery\\dist\\jquery.min.map",
+ "SourceId": "Blog",
+ "SourceType": "Discovered",
+ "ContentRoot": "E:\\MVC\\Blog\\wwwroot\\",
+ "BasePath": "_content/Blog",
+ "RelativePath": "lib/jquery/dist/jquery.min.map",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "AssetMergeBehavior": "PreferTarget",
+ "AssetMergeSource": "",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "wwwroot\\lib\\jquery\\dist\\jquery.min.map"
+ },
+ {
+ "Identity": "E:\\MVC\\Blog\\wwwroot\\lib\\jquery\\LICENSE.txt",
+ "SourceId": "Blog",
+ "SourceType": "Discovered",
+ "ContentRoot": "E:\\MVC\\Blog\\wwwroot\\",
+ "BasePath": "_content/Blog",
+ "RelativePath": "lib/jquery/LICENSE.txt",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "AssetMergeBehavior": "PreferTarget",
+ "AssetMergeSource": "",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "wwwroot\\lib\\jquery\\LICENSE.txt"
+ }
+ ]
+}
\ No newline at end of file
diff --git "a/\345\210\230\346\233\246/\344\275\234\344\270\232/Blog/obj/Debug/net8.0/staticwebassets.development.json" "b/\345\210\230\346\233\246/\344\275\234\344\270\232/Blog/obj/Debug/net8.0/staticwebassets.development.json"
new file mode 100644
index 0000000000000000000000000000000000000000..a1bf87599b617514bea66168d2da1ce9a706f2a1
--- /dev/null
+++ "b/\345\210\230\346\233\246/\344\275\234\344\270\232/Blog/obj/Debug/net8.0/staticwebassets.development.json"
@@ -0,0 +1 @@
+{"ContentRoots":["E:\\MVC\\Blog\\wwwroot\\","E:\\MVC\\Blog\\obj\\Debug\\net8.0\\scopedcss\\bundle\\"],"Root":{"Children":{"css":{"Children":{"base.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"css/base.css"},"Patterns":null},"site.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"css/site.css"},"Patterns":null}},"Asset":null,"Patterns":null},"favicon.ico":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"favicon.ico"},"Patterns":null},"js":{"Children":{"site.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"js/site.js"},"Patterns":null}},"Asset":null,"Patterns":null},"lib":{"Children":{"bootstrap":{"Children":{"dist":{"Children":{"css":{"Children":{"bootstrap-grid.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/css/bootstrap-grid.css"},"Patterns":null},"bootstrap-grid.css.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/css/bootstrap-grid.css.map"},"Patterns":null},"bootstrap-grid.min.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/css/bootstrap-grid.min.css"},"Patterns":null},"bootstrap-grid.min.css.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/css/bootstrap-grid.min.css.map"},"Patterns":null},"bootstrap-grid.rtl.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/css/bootstrap-grid.rtl.css"},"Patterns":null},"bootstrap-grid.rtl.css.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/css/bootstrap-grid.rtl.css.map"},"Patterns":null},"bootstrap-grid.rtl.min.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css"},"Patterns":null},"bootstrap-grid.rtl.min.css.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css.map"},"Patterns":null},"bootstrap-reboot.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/css/bootstrap-reboot.css"},"Patterns":null},"bootstrap-reboot.css.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/css/bootstrap-reboot.css.map"},"Patterns":null},"bootstrap-reboot.min.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/css/bootstrap-reboot.min.css"},"Patterns":null},"bootstrap-reboot.min.css.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/css/bootstrap-reboot.min.css.map"},"Patterns":null},"bootstrap-reboot.rtl.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.css"},"Patterns":null},"bootstrap-reboot.rtl.css.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.css.map"},"Patterns":null},"bootstrap-reboot.rtl.min.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css"},"Patterns":null},"bootstrap-reboot.rtl.min.css.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css.map"},"Patterns":null},"bootstrap-utilities.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/css/bootstrap-utilities.css"},"Patterns":null},"bootstrap-utilities.css.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/css/bootstrap-utilities.css.map"},"Patterns":null},"bootstrap-utilities.min.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/css/bootstrap-utilities.min.css"},"Patterns":null},"bootstrap-utilities.min.css.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/css/bootstrap-utilities.min.css.map"},"Patterns":null},"bootstrap-utilities.rtl.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.css"},"Patterns":null},"bootstrap-utilities.rtl.css.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.css.map"},"Patterns":null},"bootstrap-utilities.rtl.min.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css"},"Patterns":null},"bootstrap-utilities.rtl.min.css.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css.map"},"Patterns":null},"bootstrap.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/css/bootstrap.css"},"Patterns":null},"bootstrap.css.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/css/bootstrap.css.map"},"Patterns":null},"bootstrap.min.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/css/bootstrap.min.css"},"Patterns":null},"bootstrap.min.css.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/css/bootstrap.min.css.map"},"Patterns":null},"bootstrap.rtl.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/css/bootstrap.rtl.css"},"Patterns":null},"bootstrap.rtl.css.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/css/bootstrap.rtl.css.map"},"Patterns":null},"bootstrap.rtl.min.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/css/bootstrap.rtl.min.css"},"Patterns":null},"bootstrap.rtl.min.css.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/css/bootstrap.rtl.min.css.map"},"Patterns":null}},"Asset":null,"Patterns":null},"js":{"Children":{"bootstrap.bundle.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/js/bootstrap.bundle.js"},"Patterns":null},"bootstrap.bundle.js.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/js/bootstrap.bundle.js.map"},"Patterns":null},"bootstrap.bundle.min.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/js/bootstrap.bundle.min.js"},"Patterns":null},"bootstrap.bundle.min.js.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/js/bootstrap.bundle.min.js.map"},"Patterns":null},"bootstrap.esm.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/js/bootstrap.esm.js"},"Patterns":null},"bootstrap.esm.js.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/js/bootstrap.esm.js.map"},"Patterns":null},"bootstrap.esm.min.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/js/bootstrap.esm.min.js"},"Patterns":null},"bootstrap.esm.min.js.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/js/bootstrap.esm.min.js.map"},"Patterns":null},"bootstrap.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/js/bootstrap.js"},"Patterns":null},"bootstrap.js.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/js/bootstrap.js.map"},"Patterns":null},"bootstrap.min.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/js/bootstrap.min.js"},"Patterns":null},"bootstrap.min.js.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/dist/js/bootstrap.min.js.map"},"Patterns":null}},"Asset":null,"Patterns":null}},"Asset":null,"Patterns":null},"LICENSE":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/bootstrap/LICENSE"},"Patterns":null}},"Asset":null,"Patterns":null},"jquery-validation-unobtrusive":{"Children":{"jquery.validate.unobtrusive.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js"},"Patterns":null},"jquery.validate.unobtrusive.min.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.min.js"},"Patterns":null},"LICENSE.txt":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/jquery-validation-unobtrusive/LICENSE.txt"},"Patterns":null}},"Asset":null,"Patterns":null},"jquery-validation":{"Children":{"dist":{"Children":{"additional-methods.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/jquery-validation/dist/additional-methods.js"},"Patterns":null},"additional-methods.min.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/jquery-validation/dist/additional-methods.min.js"},"Patterns":null},"jquery.validate.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/jquery-validation/dist/jquery.validate.js"},"Patterns":null},"jquery.validate.min.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/jquery-validation/dist/jquery.validate.min.js"},"Patterns":null}},"Asset":null,"Patterns":null},"LICENSE.md":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/jquery-validation/LICENSE.md"},"Patterns":null}},"Asset":null,"Patterns":null},"jquery":{"Children":{"dist":{"Children":{"jquery.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/jquery/dist/jquery.js"},"Patterns":null},"jquery.min.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/jquery/dist/jquery.min.js"},"Patterns":null},"jquery.min.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/jquery/dist/jquery.min.map"},"Patterns":null}},"Asset":null,"Patterns":null},"LICENSE.txt":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"lib/jquery/LICENSE.txt"},"Patterns":null}},"Asset":null,"Patterns":null}},"Asset":null,"Patterns":null},"Blog.styles.css":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"Blog.styles.css"},"Patterns":null}},"Asset":null,"Patterns":[{"ContentRootIndex":0,"Pattern":"**","Depth":0}]}}
\ No newline at end of file
diff --git "a/\345\210\230\346\233\246/\344\275\234\344\270\232/Blog/obj/Debug/net8.0/staticwebassets.pack.json" "b/\345\210\230\346\233\246/\344\275\234\344\270\232/Blog/obj/Debug/net8.0/staticwebassets.pack.json"
new file mode 100644
index 0000000000000000000000000000000000000000..33ad6247bdba7c4315f6145262b3fc714367c17d
--- /dev/null
+++ "b/\345\210\230\346\233\246/\344\275\234\344\270\232/Blog/obj/Debug/net8.0/staticwebassets.pack.json"
@@ -0,0 +1,269 @@
+{
+ "Files": [
+ {
+ "Id": "E:\\MVC\\Blog\\obj\\Debug\\net8.0\\scopedcss\\projectbundle\\Blog.bundle.scp.css",
+ "PackagePath": "staticwebassets\\Blog.bundle.scp.css"
+ },
+ {
+ "Id": "E:\\MVC\\Blog\\wwwroot\\css\\base.css",
+ "PackagePath": "staticwebassets\\css\\base.css"
+ },
+ {
+ "Id": "E:\\MVC\\Blog\\wwwroot\\css\\site.css",
+ "PackagePath": "staticwebassets\\css\\site.css"
+ },
+ {
+ "Id": "E:\\MVC\\Blog\\wwwroot\\favicon.ico",
+ "PackagePath": "staticwebassets\\favicon.ico"
+ },
+ {
+ "Id": "E:\\MVC\\Blog\\wwwroot\\js\\site.js",
+ "PackagePath": "staticwebassets\\js\\site.js"
+ },
+ {
+ "Id": "E:\\MVC\\Blog\\wwwroot\\lib\\bootstrap\\LICENSE",
+ "PackagePath": "staticwebassets\\lib\\bootstrap"
+ },
+ {
+ "Id": "E:\\MVC\\Blog\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-grid.css",
+ "PackagePath": "staticwebassets\\lib\\bootstrap\\dist\\css\\bootstrap-grid.css"
+ },
+ {
+ "Id": "E:\\MVC\\Blog\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-grid.css.map",
+ "PackagePath": "staticwebassets\\lib\\bootstrap\\dist\\css\\bootstrap-grid.css.map"
+ },
+ {
+ "Id": "E:\\MVC\\Blog\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-grid.min.css",
+ "PackagePath": "staticwebassets\\lib\\bootstrap\\dist\\css\\bootstrap-grid.min.css"
+ },
+ {
+ "Id": "E:\\MVC\\Blog\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-grid.min.css.map",
+ "PackagePath": "staticwebassets\\lib\\bootstrap\\dist\\css\\bootstrap-grid.min.css.map"
+ },
+ {
+ "Id": "E:\\MVC\\Blog\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-grid.rtl.css",
+ "PackagePath": "staticwebassets\\lib\\bootstrap\\dist\\css\\bootstrap-grid.rtl.css"
+ },
+ {
+ "Id": "E:\\MVC\\Blog\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-grid.rtl.css.map",
+ "PackagePath": "staticwebassets\\lib\\bootstrap\\dist\\css\\bootstrap-grid.rtl.css.map"
+ },
+ {
+ "Id": "E:\\MVC\\Blog\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-grid.rtl.min.css",
+ "PackagePath": "staticwebassets\\lib\\bootstrap\\dist\\css\\bootstrap-grid.rtl.min.css"
+ },
+ {
+ "Id": "E:\\MVC\\Blog\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-grid.rtl.min.css.map",
+ "PackagePath": "staticwebassets\\lib\\bootstrap\\dist\\css\\bootstrap-grid.rtl.min.css.map"
+ },
+ {
+ "Id": "E:\\MVC\\Blog\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-reboot.css",
+ "PackagePath": "staticwebassets\\lib\\bootstrap\\dist\\css\\bootstrap-reboot.css"
+ },
+ {
+ "Id": "E:\\MVC\\Blog\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-reboot.css.map",
+ "PackagePath": "staticwebassets\\lib\\bootstrap\\dist\\css\\bootstrap-reboot.css.map"
+ },
+ {
+ "Id": "E:\\MVC\\Blog\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-reboot.min.css",
+ "PackagePath": "staticwebassets\\lib\\bootstrap\\dist\\css\\bootstrap-reboot.min.css"
+ },
+ {
+ "Id": "E:\\MVC\\Blog\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-reboot.min.css.map",
+ "PackagePath": "staticwebassets\\lib\\bootstrap\\dist\\css\\bootstrap-reboot.min.css.map"
+ },
+ {
+ "Id": "E:\\MVC\\Blog\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-reboot.rtl.css",
+ "PackagePath": "staticwebassets\\lib\\bootstrap\\dist\\css\\bootstrap-reboot.rtl.css"
+ },
+ {
+ "Id": "E:\\MVC\\Blog\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-reboot.rtl.css.map",
+ "PackagePath": "staticwebassets\\lib\\bootstrap\\dist\\css\\bootstrap-reboot.rtl.css.map"
+ },
+ {
+ "Id": "E:\\MVC\\Blog\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-reboot.rtl.min.css",
+ "PackagePath": "staticwebassets\\lib\\bootstrap\\dist\\css\\bootstrap-reboot.rtl.min.css"
+ },
+ {
+ "Id": "E:\\MVC\\Blog\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-reboot.rtl.min.css.map",
+ "PackagePath": "staticwebassets\\lib\\bootstrap\\dist\\css\\bootstrap-reboot.rtl.min.css.map"
+ },
+ {
+ "Id": "E:\\MVC\\Blog\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-utilities.css",
+ "PackagePath": "staticwebassets\\lib\\bootstrap\\dist\\css\\bootstrap-utilities.css"
+ },
+ {
+ "Id": "E:\\MVC\\Blog\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-utilities.css.map",
+ "PackagePath": "staticwebassets\\lib\\bootstrap\\dist\\css\\bootstrap-utilities.css.map"
+ },
+ {
+ "Id": "E:\\MVC\\Blog\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-utilities.min.css",
+ "PackagePath": "staticwebassets\\lib\\bootstrap\\dist\\css\\bootstrap-utilities.min.css"
+ },
+ {
+ "Id": "E:\\MVC\\Blog\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-utilities.min.css.map",
+ "PackagePath": "staticwebassets\\lib\\bootstrap\\dist\\css\\bootstrap-utilities.min.css.map"
+ },
+ {
+ "Id": "E:\\MVC\\Blog\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-utilities.rtl.css",
+ "PackagePath": "staticwebassets\\lib\\bootstrap\\dist\\css\\bootstrap-utilities.rtl.css"
+ },
+ {
+ "Id": "E:\\MVC\\Blog\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-utilities.rtl.css.map",
+ "PackagePath": "staticwebassets\\lib\\bootstrap\\dist\\css\\bootstrap-utilities.rtl.css.map"
+ },
+ {
+ "Id": "E:\\MVC\\Blog\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-utilities.rtl.min.css",
+ "PackagePath": "staticwebassets\\lib\\bootstrap\\dist\\css\\bootstrap-utilities.rtl.min.css"
+ },
+ {
+ "Id": "E:\\MVC\\Blog\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap-utilities.rtl.min.css.map",
+ "PackagePath": "staticwebassets\\lib\\bootstrap\\dist\\css\\bootstrap-utilities.rtl.min.css.map"
+ },
+ {
+ "Id": "E:\\MVC\\Blog\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap.css",
+ "PackagePath": "staticwebassets\\lib\\bootstrap\\dist\\css\\bootstrap.css"
+ },
+ {
+ "Id": "E:\\MVC\\Blog\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap.css.map",
+ "PackagePath": "staticwebassets\\lib\\bootstrap\\dist\\css\\bootstrap.css.map"
+ },
+ {
+ "Id": "E:\\MVC\\Blog\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap.min.css",
+ "PackagePath": "staticwebassets\\lib\\bootstrap\\dist\\css\\bootstrap.min.css"
+ },
+ {
+ "Id": "E:\\MVC\\Blog\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap.min.css.map",
+ "PackagePath": "staticwebassets\\lib\\bootstrap\\dist\\css\\bootstrap.min.css.map"
+ },
+ {
+ "Id": "E:\\MVC\\Blog\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap.rtl.css",
+ "PackagePath": "staticwebassets\\lib\\bootstrap\\dist\\css\\bootstrap.rtl.css"
+ },
+ {
+ "Id": "E:\\MVC\\Blog\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap.rtl.css.map",
+ "PackagePath": "staticwebassets\\lib\\bootstrap\\dist\\css\\bootstrap.rtl.css.map"
+ },
+ {
+ "Id": "E:\\MVC\\Blog\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap.rtl.min.css",
+ "PackagePath": "staticwebassets\\lib\\bootstrap\\dist\\css\\bootstrap.rtl.min.css"
+ },
+ {
+ "Id": "E:\\MVC\\Blog\\wwwroot\\lib\\bootstrap\\dist\\css\\bootstrap.rtl.min.css.map",
+ "PackagePath": "staticwebassets\\lib\\bootstrap\\dist\\css\\bootstrap.rtl.min.css.map"
+ },
+ {
+ "Id": "E:\\MVC\\Blog\\wwwroot\\lib\\bootstrap\\dist\\js\\bootstrap.bundle.js",
+ "PackagePath": "staticwebassets\\lib\\bootstrap\\dist\\js\\bootstrap.bundle.js"
+ },
+ {
+ "Id": "E:\\MVC\\Blog\\wwwroot\\lib\\bootstrap\\dist\\js\\bootstrap.bundle.js.map",
+ "PackagePath": "staticwebassets\\lib\\bootstrap\\dist\\js\\bootstrap.bundle.js.map"
+ },
+ {
+ "Id": "E:\\MVC\\Blog\\wwwroot\\lib\\bootstrap\\dist\\js\\bootstrap.bundle.min.js",
+ "PackagePath": "staticwebassets\\lib\\bootstrap\\dist\\js\\bootstrap.bundle.min.js"
+ },
+ {
+ "Id": "E:\\MVC\\Blog\\wwwroot\\lib\\bootstrap\\dist\\js\\bootstrap.bundle.min.js.map",
+ "PackagePath": "staticwebassets\\lib\\bootstrap\\dist\\js\\bootstrap.bundle.min.js.map"
+ },
+ {
+ "Id": "E:\\MVC\\Blog\\wwwroot\\lib\\bootstrap\\dist\\js\\bootstrap.esm.js",
+ "PackagePath": "staticwebassets\\lib\\bootstrap\\dist\\js\\bootstrap.esm.js"
+ },
+ {
+ "Id": "E:\\MVC\\Blog\\wwwroot\\lib\\bootstrap\\dist\\js\\bootstrap.esm.js.map",
+ "PackagePath": "staticwebassets\\lib\\bootstrap\\dist\\js\\bootstrap.esm.js.map"
+ },
+ {
+ "Id": "E:\\MVC\\Blog\\wwwroot\\lib\\bootstrap\\dist\\js\\bootstrap.esm.min.js",
+ "PackagePath": "staticwebassets\\lib\\bootstrap\\dist\\js\\bootstrap.esm.min.js"
+ },
+ {
+ "Id": "E:\\MVC\\Blog\\wwwroot\\lib\\bootstrap\\dist\\js\\bootstrap.esm.min.js.map",
+ "PackagePath": "staticwebassets\\lib\\bootstrap\\dist\\js\\bootstrap.esm.min.js.map"
+ },
+ {
+ "Id": "E:\\MVC\\Blog\\wwwroot\\lib\\bootstrap\\dist\\js\\bootstrap.js",
+ "PackagePath": "staticwebassets\\lib\\bootstrap\\dist\\js\\bootstrap.js"
+ },
+ {
+ "Id": "E:\\MVC\\Blog\\wwwroot\\lib\\bootstrap\\dist\\js\\bootstrap.js.map",
+ "PackagePath": "staticwebassets\\lib\\bootstrap\\dist\\js\\bootstrap.js.map"
+ },
+ {
+ "Id": "E:\\MVC\\Blog\\wwwroot\\lib\\bootstrap\\dist\\js\\bootstrap.min.js",
+ "PackagePath": "staticwebassets\\lib\\bootstrap\\dist\\js\\bootstrap.min.js"
+ },
+ {
+ "Id": "E:\\MVC\\Blog\\wwwroot\\lib\\bootstrap\\dist\\js\\bootstrap.min.js.map",
+ "PackagePath": "staticwebassets\\lib\\bootstrap\\dist\\js\\bootstrap.min.js.map"
+ },
+ {
+ "Id": "E:\\MVC\\Blog\\wwwroot\\lib\\jquery-validation-unobtrusive\\LICENSE.txt",
+ "PackagePath": "staticwebassets\\lib\\jquery-validation-unobtrusive\\LICENSE.txt"
+ },
+ {
+ "Id": "E:\\MVC\\Blog\\wwwroot\\lib\\jquery-validation-unobtrusive\\jquery.validate.unobtrusive.js",
+ "PackagePath": "staticwebassets\\lib\\jquery-validation-unobtrusive\\jquery.validate.unobtrusive.js"
+ },
+ {
+ "Id": "E:\\MVC\\Blog\\wwwroot\\lib\\jquery-validation-unobtrusive\\jquery.validate.unobtrusive.min.js",
+ "PackagePath": "staticwebassets\\lib\\jquery-validation-unobtrusive\\jquery.validate.unobtrusive.min.js"
+ },
+ {
+ "Id": "E:\\MVC\\Blog\\wwwroot\\lib\\jquery-validation\\LICENSE.md",
+ "PackagePath": "staticwebassets\\lib\\jquery-validation\\LICENSE.md"
+ },
+ {
+ "Id": "E:\\MVC\\Blog\\wwwroot\\lib\\jquery-validation\\dist\\additional-methods.js",
+ "PackagePath": "staticwebassets\\lib\\jquery-validation\\dist\\additional-methods.js"
+ },
+ {
+ "Id": "E:\\MVC\\Blog\\wwwroot\\lib\\jquery-validation\\dist\\additional-methods.min.js",
+ "PackagePath": "staticwebassets\\lib\\jquery-validation\\dist\\additional-methods.min.js"
+ },
+ {
+ "Id": "E:\\MVC\\Blog\\wwwroot\\lib\\jquery-validation\\dist\\jquery.validate.js",
+ "PackagePath": "staticwebassets\\lib\\jquery-validation\\dist\\jquery.validate.js"
+ },
+ {
+ "Id": "E:\\MVC\\Blog\\wwwroot\\lib\\jquery-validation\\dist\\jquery.validate.min.js",
+ "PackagePath": "staticwebassets\\lib\\jquery-validation\\dist\\jquery.validate.min.js"
+ },
+ {
+ "Id": "E:\\MVC\\Blog\\wwwroot\\lib\\jquery\\LICENSE.txt",
+ "PackagePath": "staticwebassets\\lib\\jquery\\LICENSE.txt"
+ },
+ {
+ "Id": "E:\\MVC\\Blog\\wwwroot\\lib\\jquery\\dist\\jquery.js",
+ "PackagePath": "staticwebassets\\lib\\jquery\\dist\\jquery.js"
+ },
+ {
+ "Id": "E:\\MVC\\Blog\\wwwroot\\lib\\jquery\\dist\\jquery.min.js",
+ "PackagePath": "staticwebassets\\lib\\jquery\\dist\\jquery.min.js"
+ },
+ {
+ "Id": "E:\\MVC\\Blog\\wwwroot\\lib\\jquery\\dist\\jquery.min.map",
+ "PackagePath": "staticwebassets\\lib\\jquery\\dist\\jquery.min.map"
+ },
+ {
+ "Id": "obj\\Debug\\net8.0\\staticwebassets\\msbuild.Blog.Microsoft.AspNetCore.StaticWebAssets.props",
+ "PackagePath": "build\\Microsoft.AspNetCore.StaticWebAssets.props"
+ },
+ {
+ "Id": "obj\\Debug\\net8.0\\staticwebassets\\msbuild.build.Blog.props",
+ "PackagePath": "build\\Blog.props"
+ },
+ {
+ "Id": "obj\\Debug\\net8.0\\staticwebassets\\msbuild.buildMultiTargeting.Blog.props",
+ "PackagePath": "buildMultiTargeting\\Blog.props"
+ },
+ {
+ "Id": "obj\\Debug\\net8.0\\staticwebassets\\msbuild.buildTransitive.Blog.props",
+ "PackagePath": "buildTransitive\\Blog.props"
+ }
+ ],
+ "ElementsToRemove": []
+}
\ No newline at end of file
diff --git "a/\345\210\230\346\233\246/\344\275\234\344\270\232/Blog/obj/Debug/net8.0/staticwebassets/msbuild.Blog.Microsoft.AspNetCore.StaticWebAssets.props" "b/\345\210\230\346\233\246/\344\275\234\344\270\232/Blog/obj/Debug/net8.0/staticwebassets/msbuild.Blog.Microsoft.AspNetCore.StaticWebAssets.props"
new file mode 100644
index 0000000000000000000000000000000000000000..7badce744defa0c6862ce5d2a90447ad9b60807d
--- /dev/null
+++ "b/\345\210\230\346\233\246/\344\275\234\344\270\232/Blog/obj/Debug/net8.0/staticwebassets/msbuild.Blog.Microsoft.AspNetCore.StaticWebAssets.props"
@@ -0,0 +1,996 @@
+
+
+
+ Package
+ Blog
+ $(MSBuildThisFileDirectory)..\staticwebassets\
+ _content/Blog
+ Blog.bundle.scp.css
+ All
+ Reference
+ Primary
+
+ ScopedCss
+ ProjectBundle
+ Never
+ PreserveNewest
+ $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\Blog.bundle.scp.css))
+
+
+ Package
+ Blog
+ $(MSBuildThisFileDirectory)..\staticwebassets\
+ _content/Blog
+ css/base.css
+ All
+ All
+ Primary
+
+
+
+ Never
+ PreserveNewest
+ $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\css\base.css))
+
+
+ Package
+ Blog
+ $(MSBuildThisFileDirectory)..\staticwebassets\
+ _content/Blog
+ css/site.css
+ All
+ All
+ Primary
+
+
+
+ Never
+ PreserveNewest
+ $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\css\site.css))
+
+
+ Package
+ Blog
+ $(MSBuildThisFileDirectory)..\staticwebassets\
+ _content/Blog
+ favicon.ico
+ All
+ All
+ Primary
+
+
+
+ Never
+ PreserveNewest
+ $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\favicon.ico))
+
+
+ Package
+ Blog
+ $(MSBuildThisFileDirectory)..\staticwebassets\
+ _content/Blog
+ js/site.js
+ All
+ All
+ Primary
+
+
+
+ Never
+ PreserveNewest
+ $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\js\site.js))
+
+
+ Package
+ Blog
+ $(MSBuildThisFileDirectory)..\staticwebassets\
+ _content/Blog
+ lib/bootstrap/dist/css/bootstrap-grid.css
+ All
+ All
+ Primary
+
+
+
+ Never
+ PreserveNewest
+ $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\bootstrap\dist\css\bootstrap-grid.css))
+
+
+ Package
+ Blog
+ $(MSBuildThisFileDirectory)..\staticwebassets\
+ _content/Blog
+ lib/bootstrap/dist/css/bootstrap-grid.css.map
+ All
+ All
+ Primary
+
+
+
+ Never
+ PreserveNewest
+ $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\bootstrap\dist\css\bootstrap-grid.css.map))
+
+
+ Package
+ Blog
+ $(MSBuildThisFileDirectory)..\staticwebassets\
+ _content/Blog
+ lib/bootstrap/dist/css/bootstrap-grid.min.css
+ All
+ All
+ Primary
+
+
+
+ Never
+ PreserveNewest
+ $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\bootstrap\dist\css\bootstrap-grid.min.css))
+
+
+ Package
+ Blog
+ $(MSBuildThisFileDirectory)..\staticwebassets\
+ _content/Blog
+ lib/bootstrap/dist/css/bootstrap-grid.min.css.map
+ All
+ All
+ Primary
+
+
+
+ Never
+ PreserveNewest
+ $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\bootstrap\dist\css\bootstrap-grid.min.css.map))
+
+
+ Package
+ Blog
+ $(MSBuildThisFileDirectory)..\staticwebassets\
+ _content/Blog
+ lib/bootstrap/dist/css/bootstrap-grid.rtl.css
+ All
+ All
+ Primary
+
+
+
+ Never
+ PreserveNewest
+ $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\bootstrap\dist\css\bootstrap-grid.rtl.css))
+
+
+ Package
+ Blog
+ $(MSBuildThisFileDirectory)..\staticwebassets\
+ _content/Blog
+ lib/bootstrap/dist/css/bootstrap-grid.rtl.css.map
+ All
+ All
+ Primary
+
+
+
+ Never
+ PreserveNewest
+ $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\bootstrap\dist\css\bootstrap-grid.rtl.css.map))
+
+
+ Package
+ Blog
+ $(MSBuildThisFileDirectory)..\staticwebassets\
+ _content/Blog
+ lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css
+ All
+ All
+ Primary
+
+
+
+ Never
+ PreserveNewest
+ $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\bootstrap\dist\css\bootstrap-grid.rtl.min.css))
+
+
+ Package
+ Blog
+ $(MSBuildThisFileDirectory)..\staticwebassets\
+ _content/Blog
+ lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css.map
+ All
+ All
+ Primary
+
+
+
+ Never
+ PreserveNewest
+ $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\bootstrap\dist\css\bootstrap-grid.rtl.min.css.map))
+
+
+ Package
+ Blog
+ $(MSBuildThisFileDirectory)..\staticwebassets\
+ _content/Blog
+ lib/bootstrap/dist/css/bootstrap-reboot.css
+ All
+ All
+ Primary
+
+
+
+ Never
+ PreserveNewest
+ $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\bootstrap\dist\css\bootstrap-reboot.css))
+
+
+ Package
+ Blog
+ $(MSBuildThisFileDirectory)..\staticwebassets\
+ _content/Blog
+ lib/bootstrap/dist/css/bootstrap-reboot.css.map
+ All
+ All
+ Primary
+
+
+
+ Never
+ PreserveNewest
+ $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\bootstrap\dist\css\bootstrap-reboot.css.map))
+
+
+ Package
+ Blog
+ $(MSBuildThisFileDirectory)..\staticwebassets\
+ _content/Blog
+ lib/bootstrap/dist/css/bootstrap-reboot.min.css
+ All
+ All
+ Primary
+
+
+
+ Never
+ PreserveNewest
+ $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\bootstrap\dist\css\bootstrap-reboot.min.css))
+
+
+ Package
+ Blog
+ $(MSBuildThisFileDirectory)..\staticwebassets\
+ _content/Blog
+ lib/bootstrap/dist/css/bootstrap-reboot.min.css.map
+ All
+ All
+ Primary
+
+
+
+ Never
+ PreserveNewest
+ $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\bootstrap\dist\css\bootstrap-reboot.min.css.map))
+
+
+ Package
+ Blog
+ $(MSBuildThisFileDirectory)..\staticwebassets\
+ _content/Blog
+ lib/bootstrap/dist/css/bootstrap-reboot.rtl.css
+ All
+ All
+ Primary
+
+
+
+ Never
+ PreserveNewest
+ $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\bootstrap\dist\css\bootstrap-reboot.rtl.css))
+
+
+ Package
+ Blog
+ $(MSBuildThisFileDirectory)..\staticwebassets\
+ _content/Blog
+ lib/bootstrap/dist/css/bootstrap-reboot.rtl.css.map
+ All
+ All
+ Primary
+
+
+
+ Never
+ PreserveNewest
+ $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\bootstrap\dist\css\bootstrap-reboot.rtl.css.map))
+
+
+ Package
+ Blog
+ $(MSBuildThisFileDirectory)..\staticwebassets\
+ _content/Blog
+ lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css
+ All
+ All
+ Primary
+
+
+
+ Never
+ PreserveNewest
+ $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\bootstrap\dist\css\bootstrap-reboot.rtl.min.css))
+
+
+ Package
+ Blog
+ $(MSBuildThisFileDirectory)..\staticwebassets\
+ _content/Blog
+ lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css.map
+ All
+ All
+ Primary
+
+
+
+ Never
+ PreserveNewest
+ $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\bootstrap\dist\css\bootstrap-reboot.rtl.min.css.map))
+
+
+ Package
+ Blog
+ $(MSBuildThisFileDirectory)..\staticwebassets\
+ _content/Blog
+ lib/bootstrap/dist/css/bootstrap-utilities.css
+ All
+ All
+ Primary
+
+
+
+ Never
+ PreserveNewest
+ $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\bootstrap\dist\css\bootstrap-utilities.css))
+
+
+ Package
+ Blog
+ $(MSBuildThisFileDirectory)..\staticwebassets\
+ _content/Blog
+ lib/bootstrap/dist/css/bootstrap-utilities.css.map
+ All
+ All
+ Primary
+
+
+
+ Never
+ PreserveNewest
+ $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\bootstrap\dist\css\bootstrap-utilities.css.map))
+
+
+ Package
+ Blog
+ $(MSBuildThisFileDirectory)..\staticwebassets\
+ _content/Blog
+ lib/bootstrap/dist/css/bootstrap-utilities.min.css
+ All
+ All
+ Primary
+
+
+
+ Never
+ PreserveNewest
+ $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\bootstrap\dist\css\bootstrap-utilities.min.css))
+
+
+ Package
+ Blog
+ $(MSBuildThisFileDirectory)..\staticwebassets\
+ _content/Blog
+ lib/bootstrap/dist/css/bootstrap-utilities.min.css.map
+ All
+ All
+ Primary
+
+
+
+ Never
+ PreserveNewest
+ $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\bootstrap\dist\css\bootstrap-utilities.min.css.map))
+
+
+ Package
+ Blog
+ $(MSBuildThisFileDirectory)..\staticwebassets\
+ _content/Blog
+ lib/bootstrap/dist/css/bootstrap-utilities.rtl.css
+ All
+ All
+ Primary
+
+
+
+ Never
+ PreserveNewest
+ $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\bootstrap\dist\css\bootstrap-utilities.rtl.css))
+
+
+ Package
+ Blog
+ $(MSBuildThisFileDirectory)..\staticwebassets\
+ _content/Blog
+ lib/bootstrap/dist/css/bootstrap-utilities.rtl.css.map
+ All
+ All
+ Primary
+
+
+
+ Never
+ PreserveNewest
+ $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\bootstrap\dist\css\bootstrap-utilities.rtl.css.map))
+
+
+ Package
+ Blog
+ $(MSBuildThisFileDirectory)..\staticwebassets\
+ _content/Blog
+ lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css
+ All
+ All
+ Primary
+
+
+
+ Never
+ PreserveNewest
+ $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\bootstrap\dist\css\bootstrap-utilities.rtl.min.css))
+
+
+ Package
+ Blog
+ $(MSBuildThisFileDirectory)..\staticwebassets\
+ _content/Blog
+ lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css.map
+ All
+ All
+ Primary
+
+
+
+ Never
+ PreserveNewest
+ $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\bootstrap\dist\css\bootstrap-utilities.rtl.min.css.map))
+
+
+ Package
+ Blog
+ $(MSBuildThisFileDirectory)..\staticwebassets\
+ _content/Blog
+ lib/bootstrap/dist/css/bootstrap.css
+ All
+ All
+ Primary
+
+
+
+ Never
+ PreserveNewest
+ $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\bootstrap\dist\css\bootstrap.css))
+
+
+ Package
+ Blog
+ $(MSBuildThisFileDirectory)..\staticwebassets\
+ _content/Blog
+ lib/bootstrap/dist/css/bootstrap.css.map
+ All
+ All
+ Primary
+
+
+
+ Never
+ PreserveNewest
+ $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\bootstrap\dist\css\bootstrap.css.map))
+
+
+ Package
+ Blog
+ $(MSBuildThisFileDirectory)..\staticwebassets\
+ _content/Blog
+ lib/bootstrap/dist/css/bootstrap.min.css
+ All
+ All
+ Primary
+
+
+
+ Never
+ PreserveNewest
+ $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\bootstrap\dist\css\bootstrap.min.css))
+
+
+ Package
+ Blog
+ $(MSBuildThisFileDirectory)..\staticwebassets\
+ _content/Blog
+ lib/bootstrap/dist/css/bootstrap.min.css.map
+ All
+ All
+ Primary
+
+
+
+ Never
+ PreserveNewest
+ $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\bootstrap\dist\css\bootstrap.min.css.map))
+
+
+ Package
+ Blog
+ $(MSBuildThisFileDirectory)..\staticwebassets\
+ _content/Blog
+ lib/bootstrap/dist/css/bootstrap.rtl.css
+ All
+ All
+ Primary
+
+
+
+ Never
+ PreserveNewest
+ $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\bootstrap\dist\css\bootstrap.rtl.css))
+
+
+ Package
+ Blog
+ $(MSBuildThisFileDirectory)..\staticwebassets\
+ _content/Blog
+ lib/bootstrap/dist/css/bootstrap.rtl.css.map
+ All
+ All
+ Primary
+
+
+
+ Never
+ PreserveNewest
+ $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\bootstrap\dist\css\bootstrap.rtl.css.map))
+
+
+ Package
+ Blog
+ $(MSBuildThisFileDirectory)..\staticwebassets\
+ _content/Blog
+ lib/bootstrap/dist/css/bootstrap.rtl.min.css
+ All
+ All
+ Primary
+
+
+
+ Never
+ PreserveNewest
+ $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\bootstrap\dist\css\bootstrap.rtl.min.css))
+
+
+ Package
+ Blog
+ $(MSBuildThisFileDirectory)..\staticwebassets\
+ _content/Blog
+ lib/bootstrap/dist/css/bootstrap.rtl.min.css.map
+ All
+ All
+ Primary
+
+
+
+ Never
+ PreserveNewest
+ $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\bootstrap\dist\css\bootstrap.rtl.min.css.map))
+
+
+ Package
+ Blog
+ $(MSBuildThisFileDirectory)..\staticwebassets\
+ _content/Blog
+ lib/bootstrap/dist/js/bootstrap.bundle.js
+ All
+ All
+ Primary
+
+
+
+ Never
+ PreserveNewest
+ $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\bootstrap\dist\js\bootstrap.bundle.js))
+
+
+ Package
+ Blog
+ $(MSBuildThisFileDirectory)..\staticwebassets\
+ _content/Blog
+ lib/bootstrap/dist/js/bootstrap.bundle.js.map
+ All
+ All
+ Primary
+
+
+
+ Never
+ PreserveNewest
+ $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\bootstrap\dist\js\bootstrap.bundle.js.map))
+
+
+ Package
+ Blog
+ $(MSBuildThisFileDirectory)..\staticwebassets\
+ _content/Blog
+ lib/bootstrap/dist/js/bootstrap.bundle.min.js
+ All
+ All
+ Primary
+
+
+
+ Never
+ PreserveNewest
+ $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\bootstrap\dist\js\bootstrap.bundle.min.js))
+
+
+ Package
+ Blog
+ $(MSBuildThisFileDirectory)..\staticwebassets\
+ _content/Blog
+ lib/bootstrap/dist/js/bootstrap.bundle.min.js.map
+ All
+ All
+ Primary
+
+
+
+ Never
+ PreserveNewest
+ $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\bootstrap\dist\js\bootstrap.bundle.min.js.map))
+
+
+ Package
+ Blog
+ $(MSBuildThisFileDirectory)..\staticwebassets\
+ _content/Blog
+ lib/bootstrap/dist/js/bootstrap.esm.js
+ All
+ All
+ Primary
+
+
+
+ Never
+ PreserveNewest
+ $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\bootstrap\dist\js\bootstrap.esm.js))
+
+
+ Package
+ Blog
+ $(MSBuildThisFileDirectory)..\staticwebassets\
+ _content/Blog
+ lib/bootstrap/dist/js/bootstrap.esm.js.map
+ All
+ All
+ Primary
+
+
+
+ Never
+ PreserveNewest
+ $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\bootstrap\dist\js\bootstrap.esm.js.map))
+
+
+ Package
+ Blog
+ $(MSBuildThisFileDirectory)..\staticwebassets\
+ _content/Blog
+ lib/bootstrap/dist/js/bootstrap.esm.min.js
+ All
+ All
+ Primary
+
+
+
+ Never
+ PreserveNewest
+ $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\bootstrap\dist\js\bootstrap.esm.min.js))
+
+
+ Package
+ Blog
+ $(MSBuildThisFileDirectory)..\staticwebassets\
+ _content/Blog
+ lib/bootstrap/dist/js/bootstrap.esm.min.js.map
+ All
+ All
+ Primary
+
+
+
+ Never
+ PreserveNewest
+ $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\bootstrap\dist\js\bootstrap.esm.min.js.map))
+
+
+ Package
+ Blog
+ $(MSBuildThisFileDirectory)..\staticwebassets\
+ _content/Blog
+ lib/bootstrap/dist/js/bootstrap.js
+ All
+ All
+ Primary
+
+
+
+ Never
+ PreserveNewest
+ $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\bootstrap\dist\js\bootstrap.js))
+
+
+ Package
+ Blog
+ $(MSBuildThisFileDirectory)..\staticwebassets\
+ _content/Blog
+ lib/bootstrap/dist/js/bootstrap.js.map
+ All
+ All
+ Primary
+
+
+
+ Never
+ PreserveNewest
+ $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\bootstrap\dist\js\bootstrap.js.map))
+
+
+ Package
+ Blog
+ $(MSBuildThisFileDirectory)..\staticwebassets\
+ _content/Blog
+ lib/bootstrap/dist/js/bootstrap.min.js
+ All
+ All
+ Primary
+
+
+
+ Never
+ PreserveNewest
+ $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\bootstrap\dist\js\bootstrap.min.js))
+
+
+ Package
+ Blog
+ $(MSBuildThisFileDirectory)..\staticwebassets\
+ _content/Blog
+ lib/bootstrap/dist/js/bootstrap.min.js.map
+ All
+ All
+ Primary
+
+
+
+ Never
+ PreserveNewest
+ $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\bootstrap\dist\js\bootstrap.min.js.map))
+
+
+ Package
+ Blog
+ $(MSBuildThisFileDirectory)..\staticwebassets\
+ _content/Blog
+ lib/bootstrap/LICENSE
+ All
+ All
+ Primary
+
+
+
+ Never
+ PreserveNewest
+ $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\bootstrap\LICENSE))
+
+
+ Package
+ Blog
+ $(MSBuildThisFileDirectory)..\staticwebassets\
+ _content/Blog
+ lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js
+ All
+ All
+ Primary
+
+
+
+ Never
+ PreserveNewest
+ $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\jquery-validation-unobtrusive\jquery.validate.unobtrusive.js))
+
+
+ Package
+ Blog
+ $(MSBuildThisFileDirectory)..\staticwebassets\
+ _content/Blog
+ lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.min.js
+ All
+ All
+ Primary
+
+
+
+ Never
+ PreserveNewest
+ $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\jquery-validation-unobtrusive\jquery.validate.unobtrusive.min.js))
+
+
+ Package
+ Blog
+ $(MSBuildThisFileDirectory)..\staticwebassets\
+ _content/Blog
+ lib/jquery-validation-unobtrusive/LICENSE.txt
+ All
+ All
+ Primary
+
+
+
+ Never
+ PreserveNewest
+ $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\jquery-validation-unobtrusive\LICENSE.txt))
+
+
+ Package
+ Blog
+ $(MSBuildThisFileDirectory)..\staticwebassets\
+ _content/Blog
+ lib/jquery-validation/dist/additional-methods.js
+ All
+ All
+ Primary
+
+
+
+ Never
+ PreserveNewest
+ $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\jquery-validation\dist\additional-methods.js))
+
+
+ Package
+ Blog
+ $(MSBuildThisFileDirectory)..\staticwebassets\
+ _content/Blog
+ lib/jquery-validation/dist/additional-methods.min.js
+ All
+ All
+ Primary
+
+
+
+ Never
+ PreserveNewest
+ $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\jquery-validation\dist\additional-methods.min.js))
+
+
+ Package
+ Blog
+ $(MSBuildThisFileDirectory)..\staticwebassets\
+ _content/Blog
+ lib/jquery-validation/dist/jquery.validate.js
+ All
+ All
+ Primary
+
+
+
+ Never
+ PreserveNewest
+ $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\jquery-validation\dist\jquery.validate.js))
+
+
+ Package
+ Blog
+ $(MSBuildThisFileDirectory)..\staticwebassets\
+ _content/Blog
+ lib/jquery-validation/dist/jquery.validate.min.js
+ All
+ All
+ Primary
+
+
+
+ Never
+ PreserveNewest
+ $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\jquery-validation\dist\jquery.validate.min.js))
+
+
+ Package
+ Blog
+ $(MSBuildThisFileDirectory)..\staticwebassets\
+ _content/Blog
+ lib/jquery-validation/LICENSE.md
+ All
+ All
+ Primary
+
+
+
+ Never
+ PreserveNewest
+ $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\jquery-validation\LICENSE.md))
+
+
+ Package
+ Blog
+ $(MSBuildThisFileDirectory)..\staticwebassets\
+ _content/Blog
+ lib/jquery/dist/jquery.js
+ All
+ All
+ Primary
+
+
+
+ Never
+ PreserveNewest
+ $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\jquery\dist\jquery.js))
+
+
+ Package
+ Blog
+ $(MSBuildThisFileDirectory)..\staticwebassets\
+ _content/Blog
+ lib/jquery/dist/jquery.min.js
+ All
+ All
+ Primary
+
+
+
+ Never
+ PreserveNewest
+ $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\jquery\dist\jquery.min.js))
+
+
+ Package
+ Blog
+ $(MSBuildThisFileDirectory)..\staticwebassets\
+ _content/Blog
+ lib/jquery/dist/jquery.min.map
+ All
+ All
+ Primary
+
+
+
+ Never
+ PreserveNewest
+ $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\jquery\dist\jquery.min.map))
+
+
+ Package
+ Blog
+ $(MSBuildThisFileDirectory)..\staticwebassets\
+ _content/Blog
+ lib/jquery/LICENSE.txt
+ All
+ All
+ Primary
+
+
+
+ Never
+ PreserveNewest
+ $([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\lib\jquery\LICENSE.txt))
+
+
+
\ No newline at end of file
diff --git "a/\345\210\230\346\233\246/\344\275\234\344\270\232/Blog/obj/Debug/net8.0/staticwebassets/msbuild.build.Blog.props" "b/\345\210\230\346\233\246/\344\275\234\344\270\232/Blog/obj/Debug/net8.0/staticwebassets/msbuild.build.Blog.props"
new file mode 100644
index 0000000000000000000000000000000000000000..5a6032a7c35fddd9c3ffb612b6ef50755d943475
--- /dev/null
+++ "b/\345\210\230\346\233\246/\344\275\234\344\270\232/Blog/obj/Debug/net8.0/staticwebassets/msbuild.build.Blog.props"
@@ -0,0 +1,3 @@
+
+
+
\ No newline at end of file
diff --git "a/\345\210\230\346\233\246/\344\275\234\344\270\232/Blog/obj/Debug/net8.0/staticwebassets/msbuild.buildMultiTargeting.Blog.props" "b/\345\210\230\346\233\246/\344\275\234\344\270\232/Blog/obj/Debug/net8.0/staticwebassets/msbuild.buildMultiTargeting.Blog.props"
new file mode 100644
index 0000000000000000000000000000000000000000..63f1801b28a0b9d76a06d0afdfb984ad3b1ce577
--- /dev/null
+++ "b/\345\210\230\346\233\246/\344\275\234\344\270\232/Blog/obj/Debug/net8.0/staticwebassets/msbuild.buildMultiTargeting.Blog.props"
@@ -0,0 +1,3 @@
+
+
+
\ No newline at end of file
diff --git "a/\345\210\230\346\233\246/\344\275\234\344\270\232/Blog/obj/Debug/net8.0/staticwebassets/msbuild.buildTransitive.Blog.props" "b/\345\210\230\346\233\246/\344\275\234\344\270\232/Blog/obj/Debug/net8.0/staticwebassets/msbuild.buildTransitive.Blog.props"
new file mode 100644
index 0000000000000000000000000000000000000000..719e2d43dbdf302db63947da155be5a10a58087e
--- /dev/null
+++ "b/\345\210\230\346\233\246/\344\275\234\344\270\232/Blog/obj/Debug/net8.0/staticwebassets/msbuild.buildTransitive.Blog.props"
@@ -0,0 +1,3 @@
+
+
+
\ No newline at end of file
diff --git "a/\345\210\230\346\233\246/Blog/obj/project.assets.json" "b/\345\210\230\346\233\246/\344\275\234\344\270\232/Blog/obj/project.assets.json"
similarity index 100%
rename from "\345\210\230\346\233\246/Blog/obj/project.assets.json"
rename to "\345\210\230\346\233\246/\344\275\234\344\270\232/Blog/obj/project.assets.json"
diff --git "a/\345\210\230\346\233\246/Blog/obj/project.nuget.cache" "b/\345\210\230\346\233\246/\344\275\234\344\270\232/Blog/obj/project.nuget.cache"
similarity index 100%
rename from "\345\210\230\346\233\246/Blog/obj/project.nuget.cache"
rename to "\345\210\230\346\233\246/\344\275\234\344\270\232/Blog/obj/project.nuget.cache"
diff --git "a/\345\210\230\346\233\246/\344\275\234\344\270\232/Blog/wwwroot/css/base.css" "b/\345\210\230\346\233\246/\344\275\234\344\270\232/Blog/wwwroot/css/base.css"
new file mode 100644
index 0000000000000000000000000000000000000000..f56874ffc989d1f2c4624cc7cdfc0e04667d8744
--- /dev/null
+++ "b/\345\210\230\346\233\246/\344\275\234\344\270\232/Blog/wwwroot/css/base.css"
@@ -0,0 +1,115 @@
+* {
+ margin: 0px;
+ padding: 0px;
+}
+
+body {
+ display: flex;
+ justify-content: center;
+ align-items: center;
+}
+
+.box {
+ width: 800px;
+ height: 800px;
+
+ border: 1px solid white;
+
+ padding: 5px;
+}
+
+.header,
+.content {
+ width: 100%;
+ border: 1px solid white;
+}
+
+.header {
+ height: 80px;
+
+ display: flex;
+ justify-content: space-between;
+ align-items: center;
+
+ border: 5px;
+}
+
+.content {
+ height: calc(100% - 80px);
+ margin-top: 5px;
+}
+
+.search,
+.add {
+ height: 60px;
+
+ border: 1px solid white;
+}
+
+.search {
+ width: 400px;
+}
+
+.add {
+ width: 150px;
+
+ display: flex;
+ justify-content: flex-end;
+ align-items: center;
+ padding: 5px;
+}
+
+table,
+tr,
+th,
+td {
+ border: 1px solid;
+ border-collapse: collapse;
+}
+
+
+a {
+ display: inline-block;
+ width: 60px;
+ height: 30px;
+ text-decoration: none;
+ background-color: rgb(128, 194, 255);
+ color: white;
+ border-radius: 5px;
+ text-align: center;
+ line-height: 30px;
+}
+
+a:nth-child(2) {
+ background-color: rgb(255, 97, 150);
+}
+
+
+.txt-header {
+ background-color: #e093ff;
+
+ line-height: 40px;
+}
+
+
+table {
+ width: 100%;
+ table-layout: fixed;
+
+ text-align: center;
+}
+
+th:nth-child(1),
+td:nth-child(1) {
+ width: 30px;
+}
+
+th:nth-child(4),
+td:nth-child(4) {
+ width: 80px;
+}
+
+th:nth-child(5),
+td:nth-child(5) {
+ width: 130px;
+}
\ No newline at end of file
diff --git "a/\345\210\230\346\233\246/Blog/wwwroot/css/site.css" "b/\345\210\230\346\233\246/\344\275\234\344\270\232/Blog/wwwroot/css/site.css"
similarity index 100%
rename from "\345\210\230\346\233\246/Blog/wwwroot/css/site.css"
rename to "\345\210\230\346\233\246/\344\275\234\344\270\232/Blog/wwwroot/css/site.css"
diff --git "a/\345\210\230\346\233\246/Blog/wwwroot/favicon.ico" "b/\345\210\230\346\233\246/\344\275\234\344\270\232/Blog/wwwroot/favicon.ico"
similarity index 100%
rename from "\345\210\230\346\233\246/Blog/wwwroot/favicon.ico"
rename to "\345\210\230\346\233\246/\344\275\234\344\270\232/Blog/wwwroot/favicon.ico"
diff --git "a/\345\210\230\346\233\246/Blog/wwwroot/js/site.js" "b/\345\210\230\346\233\246/\344\275\234\344\270\232/Blog/wwwroot/js/site.js"
similarity index 100%
rename from "\345\210\230\346\233\246/Blog/wwwroot/js/site.js"
rename to "\345\210\230\346\233\246/\344\275\234\344\270\232/Blog/wwwroot/js/site.js"
diff --git "a/\345\210\230\346\233\246/Blog/wwwroot/lib/bootstrap/LICENSE" "b/\345\210\230\346\233\246/\344\275\234\344\270\232/Blog/wwwroot/lib/bootstrap/LICENSE"
similarity index 100%
rename from "\345\210\230\346\233\246/Blog/wwwroot/lib/bootstrap/LICENSE"
rename to "\345\210\230\346\233\246/\344\275\234\344\270\232/Blog/wwwroot/lib/bootstrap/LICENSE"
diff --git "a/\345\210\230\346\233\246/Blog/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.css" "b/\345\210\230\346\233\246/\344\275\234\344\270\232/Blog/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.css"
similarity index 100%
rename from "\345\210\230\346\233\246/Blog/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.css"
rename to "\345\210\230\346\233\246/\344\275\234\344\270\232/Blog/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.css"
diff --git "a/\345\210\230\346\233\246/Blog/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.css.map" "b/\345\210\230\346\233\246/\344\275\234\344\270\232/Blog/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.css.map"
similarity index 100%
rename from "\345\210\230\346\233\246/Blog/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.css.map"
rename to "\345\210\230\346\233\246/\344\275\234\344\270\232/Blog/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.css.map"
diff --git "a/\345\210\230\346\233\246/Blog/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.min.css" "b/\345\210\230\346\233\246/\344\275\234\344\270\232/Blog/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.min.css"
similarity index 100%
rename from "\345\210\230\346\233\246/Blog/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.min.css"
rename to "\345\210\230\346\233\246/\344\275\234\344\270\232/Blog/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.min.css"
diff --git "a/\345\210\230\346\233\246/Blog/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.min.css.map" "b/\345\210\230\346\233\246/\344\275\234\344\270\232/Blog/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.min.css.map"
similarity index 100%
rename from "\345\210\230\346\233\246/Blog/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.min.css.map"
rename to "\345\210\230\346\233\246/\344\275\234\344\270\232/Blog/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.min.css.map"
diff --git "a/\345\210\230\346\233\246/Blog/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.rtl.css" "b/\345\210\230\346\233\246/\344\275\234\344\270\232/Blog/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.rtl.css"
similarity index 100%
rename from "\345\210\230\346\233\246/Blog/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.rtl.css"
rename to "\345\210\230\346\233\246/\344\275\234\344\270\232/Blog/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.rtl.css"
diff --git "a/\345\210\230\346\233\246/Blog/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.rtl.css.map" "b/\345\210\230\346\233\246/\344\275\234\344\270\232/Blog/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.rtl.css.map"
similarity index 100%
rename from "\345\210\230\346\233\246/Blog/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.rtl.css.map"
rename to "\345\210\230\346\233\246/\344\275\234\344\270\232/Blog/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.rtl.css.map"
diff --git "a/\345\210\230\346\233\246/Blog/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css" "b/\345\210\230\346\233\246/\344\275\234\344\270\232/Blog/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css"
similarity index 100%
rename from "\345\210\230\346\233\246/Blog/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css"
rename to "\345\210\230\346\233\246/\344\275\234\344\270\232/Blog/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css"
diff --git "a/\345\210\230\346\233\246/Blog/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css.map" "b/\345\210\230\346\233\246/\344\275\234\344\270\232/Blog/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css.map"
similarity index 100%
rename from "\345\210\230\346\233\246/Blog/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css.map"
rename to "\345\210\230\346\233\246/\344\275\234\344\270\232/Blog/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css.map"
diff --git "a/\345\210\230\346\233\246/Blog/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.css" "b/\345\210\230\346\233\246/\344\275\234\344\270\232/Blog/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.css"
similarity index 100%
rename from "\345\210\230\346\233\246/Blog/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.css"
rename to "\345\210\230\346\233\246/\344\275\234\344\270\232/Blog/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.css"
diff --git "a/\345\210\230\346\233\246/Blog/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.css.map" "b/\345\210\230\346\233\246/\344\275\234\344\270\232/Blog/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.css.map"
similarity index 100%
rename from "\345\210\230\346\233\246/Blog/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.css.map"
rename to "\345\210\230\346\233\246/\344\275\234\344\270\232/Blog/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.css.map"
diff --git "a/\345\210\230\346\233\246/Blog/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.min.css" "b/\345\210\230\346\233\246/\344\275\234\344\270\232/Blog/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.min.css"
similarity index 100%
rename from "\345\210\230\346\233\246/Blog/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.min.css"
rename to "\345\210\230\346\233\246/\344\275\234\344\270\232/Blog/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.min.css"
diff --git "a/\345\210\230\346\233\246/Blog/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.min.css.map" "b/\345\210\230\346\233\246/\344\275\234\344\270\232/Blog/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.min.css.map"
similarity index 100%
rename from "\345\210\230\346\233\246/Blog/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.min.css.map"
rename to "\345\210\230\346\233\246/\344\275\234\344\270\232/Blog/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.min.css.map"
diff --git "a/\345\210\230\346\233\246/Blog/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.rtl.css" "b/\345\210\230\346\233\246/\344\275\234\344\270\232/Blog/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.rtl.css"
similarity index 100%
rename from "\345\210\230\346\233\246/Blog/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.rtl.css"
rename to "\345\210\230\346\233\246/\344\275\234\344\270\232/Blog/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.rtl.css"
diff --git "a/\345\210\230\346\233\246/Blog/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.rtl.css.map" "b/\345\210\230\346\233\246/\344\275\234\344\270\232/Blog/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.rtl.css.map"
similarity index 100%
rename from "\345\210\230\346\233\246/Blog/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.rtl.css.map"
rename to "\345\210\230\346\233\246/\344\275\234\344\270\232/Blog/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.rtl.css.map"
diff --git "a/\345\210\230\346\233\246/Blog/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css" "b/\345\210\230\346\233\246/\344\275\234\344\270\232/Blog/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css"
similarity index 100%
rename from "\345\210\230\346\233\246/Blog/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css"
rename to "\345\210\230\346\233\246/\344\275\234\344\270\232/Blog/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css"
diff --git "a/\345\210\230\346\233\246/Blog/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css.map" "b/\345\210\230\346\233\246/\344\275\234\344\270\232/Blog/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css.map"
similarity index 100%
rename from "\345\210\230\346\233\246/Blog/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css.map"
rename to "\345\210\230\346\233\246/\344\275\234\344\270\232/Blog/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css.map"
diff --git "a/\345\210\230\346\233\246/Blog/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.css" "b/\345\210\230\346\233\246/\344\275\234\344\270\232/Blog/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.css"
similarity index 100%
rename from "\345\210\230\346\233\246/Blog/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.css"
rename to "\345\210\230\346\233\246/\344\275\234\344\270\232/Blog/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.css"
diff --git "a/\345\210\230\346\233\246/Blog/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.css.map" "b/\345\210\230\346\233\246/\344\275\234\344\270\232/Blog/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.css.map"
similarity index 100%
rename from "\345\210\230\346\233\246/Blog/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.css.map"
rename to "\345\210\230\346\233\246/\344\275\234\344\270\232/Blog/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.css.map"
diff --git "a/\345\210\230\346\233\246/Blog/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.min.css" "b/\345\210\230\346\233\246/\344\275\234\344\270\232/Blog/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.min.css"
similarity index 100%
rename from "\345\210\230\346\233\246/Blog/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.min.css"
rename to "\345\210\230\346\233\246/\344\275\234\344\270\232/Blog/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.min.css"
diff --git "a/\345\210\230\346\233\246/Blog/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.min.css.map" "b/\345\210\230\346\233\246/\344\275\234\344\270\232/Blog/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.min.css.map"
similarity index 100%
rename from "\345\210\230\346\233\246/Blog/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.min.css.map"
rename to "\345\210\230\346\233\246/\344\275\234\344\270\232/Blog/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.min.css.map"
diff --git "a/\345\210\230\346\233\246/Blog/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.rtl.css" "b/\345\210\230\346\233\246/\344\275\234\344\270\232/Blog/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.rtl.css"
similarity index 100%
rename from "\345\210\230\346\233\246/Blog/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.rtl.css"
rename to "\345\210\230\346\233\246/\344\275\234\344\270\232/Blog/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.rtl.css"
diff --git "a/\345\210\230\346\233\246/Blog/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.rtl.css.map" "b/\345\210\230\346\233\246/\344\275\234\344\270\232/Blog/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.rtl.css.map"
similarity index 100%
rename from "\345\210\230\346\233\246/Blog/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.rtl.css.map"
rename to "\345\210\230\346\233\246/\344\275\234\344\270\232/Blog/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.rtl.css.map"
diff --git "a/\345\210\230\346\233\246/Blog/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css" "b/\345\210\230\346\233\246/\344\275\234\344\270\232/Blog/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css"
similarity index 100%
rename from "\345\210\230\346\233\246/Blog/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css"
rename to "\345\210\230\346\233\246/\344\275\234\344\270\232/Blog/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css"
diff --git "a/\345\210\230\346\233\246/Blog/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css.map" "b/\345\210\230\346\233\246/\344\275\234\344\270\232/Blog/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css.map"
similarity index 100%
rename from "\345\210\230\346\233\246/Blog/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css.map"
rename to "\345\210\230\346\233\246/\344\275\234\344\270\232/Blog/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css.map"
diff --git "a/\345\210\230\346\233\246/Blog/wwwroot/lib/bootstrap/dist/css/bootstrap.css" "b/\345\210\230\346\233\246/\344\275\234\344\270\232/Blog/wwwroot/lib/bootstrap/dist/css/bootstrap.css"
similarity index 100%
rename from "\345\210\230\346\233\246/Blog/wwwroot/lib/bootstrap/dist/css/bootstrap.css"
rename to "\345\210\230\346\233\246/\344\275\234\344\270\232/Blog/wwwroot/lib/bootstrap/dist/css/bootstrap.css"
diff --git "a/\345\210\230\346\233\246/Blog/wwwroot/lib/bootstrap/dist/css/bootstrap.css.map" "b/\345\210\230\346\233\246/\344\275\234\344\270\232/Blog/wwwroot/lib/bootstrap/dist/css/bootstrap.css.map"
similarity index 100%
rename from "\345\210\230\346\233\246/Blog/wwwroot/lib/bootstrap/dist/css/bootstrap.css.map"
rename to "\345\210\230\346\233\246/\344\275\234\344\270\232/Blog/wwwroot/lib/bootstrap/dist/css/bootstrap.css.map"
diff --git "a/\345\210\230\346\233\246/Blog/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css" "b/\345\210\230\346\233\246/\344\275\234\344\270\232/Blog/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css"
similarity index 100%
rename from "\345\210\230\346\233\246/Blog/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css"
rename to "\345\210\230\346\233\246/\344\275\234\344\270\232/Blog/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css"
diff --git "a/\345\210\230\346\233\246/Blog/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css.map" "b/\345\210\230\346\233\246/\344\275\234\344\270\232/Blog/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css.map"
similarity index 100%
rename from "\345\210\230\346\233\246/Blog/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css.map"
rename to "\345\210\230\346\233\246/\344\275\234\344\270\232/Blog/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css.map"
diff --git "a/\345\210\230\346\233\246/Blog/wwwroot/lib/bootstrap/dist/css/bootstrap.rtl.css" "b/\345\210\230\346\233\246/\344\275\234\344\270\232/Blog/wwwroot/lib/bootstrap/dist/css/bootstrap.rtl.css"
similarity index 100%
rename from "\345\210\230\346\233\246/Blog/wwwroot/lib/bootstrap/dist/css/bootstrap.rtl.css"
rename to "\345\210\230\346\233\246/\344\275\234\344\270\232/Blog/wwwroot/lib/bootstrap/dist/css/bootstrap.rtl.css"
diff --git "a/\345\210\230\346\233\246/Blog/wwwroot/lib/bootstrap/dist/css/bootstrap.rtl.css.map" "b/\345\210\230\346\233\246/\344\275\234\344\270\232/Blog/wwwroot/lib/bootstrap/dist/css/bootstrap.rtl.css.map"
similarity index 100%
rename from "\345\210\230\346\233\246/Blog/wwwroot/lib/bootstrap/dist/css/bootstrap.rtl.css.map"
rename to "\345\210\230\346\233\246/\344\275\234\344\270\232/Blog/wwwroot/lib/bootstrap/dist/css/bootstrap.rtl.css.map"
diff --git "a/\345\210\230\346\233\246/Blog/wwwroot/lib/bootstrap/dist/css/bootstrap.rtl.min.css" "b/\345\210\230\346\233\246/\344\275\234\344\270\232/Blog/wwwroot/lib/bootstrap/dist/css/bootstrap.rtl.min.css"
similarity index 100%
rename from "\345\210\230\346\233\246/Blog/wwwroot/lib/bootstrap/dist/css/bootstrap.rtl.min.css"
rename to "\345\210\230\346\233\246/\344\275\234\344\270\232/Blog/wwwroot/lib/bootstrap/dist/css/bootstrap.rtl.min.css"
diff --git "a/\345\210\230\346\233\246/Blog/wwwroot/lib/bootstrap/dist/css/bootstrap.rtl.min.css.map" "b/\345\210\230\346\233\246/\344\275\234\344\270\232/Blog/wwwroot/lib/bootstrap/dist/css/bootstrap.rtl.min.css.map"
similarity index 100%
rename from "\345\210\230\346\233\246/Blog/wwwroot/lib/bootstrap/dist/css/bootstrap.rtl.min.css.map"
rename to "\345\210\230\346\233\246/\344\275\234\344\270\232/Blog/wwwroot/lib/bootstrap/dist/css/bootstrap.rtl.min.css.map"
diff --git "a/\345\210\230\346\233\246/Blog/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.js" "b/\345\210\230\346\233\246/\344\275\234\344\270\232/Blog/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.js"
similarity index 100%
rename from "\345\210\230\346\233\246/Blog/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.js"
rename to "\345\210\230\346\233\246/\344\275\234\344\270\232/Blog/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.js"
diff --git "a/\345\210\230\346\233\246/Blog/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.js.map" "b/\345\210\230\346\233\246/\344\275\234\344\270\232/Blog/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.js.map"
similarity index 100%
rename from "\345\210\230\346\233\246/Blog/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.js.map"
rename to "\345\210\230\346\233\246/\344\275\234\344\270\232/Blog/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.js.map"
diff --git "a/\345\210\230\346\233\246/Blog/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.min.js" "b/\345\210\230\346\233\246/\344\275\234\344\270\232/Blog/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.min.js"
similarity index 100%
rename from "\345\210\230\346\233\246/Blog/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.min.js"
rename to "\345\210\230\346\233\246/\344\275\234\344\270\232/Blog/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.min.js"
diff --git "a/\345\210\230\346\233\246/Blog/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.min.js.map" "b/\345\210\230\346\233\246/\344\275\234\344\270\232/Blog/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.min.js.map"
similarity index 100%
rename from "\345\210\230\346\233\246/Blog/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.min.js.map"
rename to "\345\210\230\346\233\246/\344\275\234\344\270\232/Blog/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.min.js.map"
diff --git "a/\345\210\230\346\233\246/Blog/wwwroot/lib/bootstrap/dist/js/bootstrap.esm.js" "b/\345\210\230\346\233\246/\344\275\234\344\270\232/Blog/wwwroot/lib/bootstrap/dist/js/bootstrap.esm.js"
similarity index 100%
rename from "\345\210\230\346\233\246/Blog/wwwroot/lib/bootstrap/dist/js/bootstrap.esm.js"
rename to "\345\210\230\346\233\246/\344\275\234\344\270\232/Blog/wwwroot/lib/bootstrap/dist/js/bootstrap.esm.js"
diff --git "a/\345\210\230\346\233\246/Blog/wwwroot/lib/bootstrap/dist/js/bootstrap.esm.js.map" "b/\345\210\230\346\233\246/\344\275\234\344\270\232/Blog/wwwroot/lib/bootstrap/dist/js/bootstrap.esm.js.map"
similarity index 100%
rename from "\345\210\230\346\233\246/Blog/wwwroot/lib/bootstrap/dist/js/bootstrap.esm.js.map"
rename to "\345\210\230\346\233\246/\344\275\234\344\270\232/Blog/wwwroot/lib/bootstrap/dist/js/bootstrap.esm.js.map"
diff --git "a/\345\210\230\346\233\246/Blog/wwwroot/lib/bootstrap/dist/js/bootstrap.esm.min.js" "b/\345\210\230\346\233\246/\344\275\234\344\270\232/Blog/wwwroot/lib/bootstrap/dist/js/bootstrap.esm.min.js"
similarity index 100%
rename from "\345\210\230\346\233\246/Blog/wwwroot/lib/bootstrap/dist/js/bootstrap.esm.min.js"
rename to "\345\210\230\346\233\246/\344\275\234\344\270\232/Blog/wwwroot/lib/bootstrap/dist/js/bootstrap.esm.min.js"
diff --git "a/\345\210\230\346\233\246/Blog/wwwroot/lib/bootstrap/dist/js/bootstrap.esm.min.js.map" "b/\345\210\230\346\233\246/\344\275\234\344\270\232/Blog/wwwroot/lib/bootstrap/dist/js/bootstrap.esm.min.js.map"
similarity index 100%
rename from "\345\210\230\346\233\246/Blog/wwwroot/lib/bootstrap/dist/js/bootstrap.esm.min.js.map"
rename to "\345\210\230\346\233\246/\344\275\234\344\270\232/Blog/wwwroot/lib/bootstrap/dist/js/bootstrap.esm.min.js.map"
diff --git "a/\345\210\230\346\233\246/Blog/wwwroot/lib/bootstrap/dist/js/bootstrap.js" "b/\345\210\230\346\233\246/\344\275\234\344\270\232/Blog/wwwroot/lib/bootstrap/dist/js/bootstrap.js"
similarity index 100%
rename from "\345\210\230\346\233\246/Blog/wwwroot/lib/bootstrap/dist/js/bootstrap.js"
rename to "\345\210\230\346\233\246/\344\275\234\344\270\232/Blog/wwwroot/lib/bootstrap/dist/js/bootstrap.js"
diff --git "a/\345\210\230\346\233\246/Blog/wwwroot/lib/bootstrap/dist/js/bootstrap.js.map" "b/\345\210\230\346\233\246/\344\275\234\344\270\232/Blog/wwwroot/lib/bootstrap/dist/js/bootstrap.js.map"
similarity index 100%
rename from "\345\210\230\346\233\246/Blog/wwwroot/lib/bootstrap/dist/js/bootstrap.js.map"
rename to "\345\210\230\346\233\246/\344\275\234\344\270\232/Blog/wwwroot/lib/bootstrap/dist/js/bootstrap.js.map"
diff --git "a/\345\210\230\346\233\246/Blog/wwwroot/lib/bootstrap/dist/js/bootstrap.min.js" "b/\345\210\230\346\233\246/\344\275\234\344\270\232/Blog/wwwroot/lib/bootstrap/dist/js/bootstrap.min.js"
similarity index 100%
rename from "\345\210\230\346\233\246/Blog/wwwroot/lib/bootstrap/dist/js/bootstrap.min.js"
rename to "\345\210\230\346\233\246/\344\275\234\344\270\232/Blog/wwwroot/lib/bootstrap/dist/js/bootstrap.min.js"
diff --git "a/\345\210\230\346\233\246/Blog/wwwroot/lib/bootstrap/dist/js/bootstrap.min.js.map" "b/\345\210\230\346\233\246/\344\275\234\344\270\232/Blog/wwwroot/lib/bootstrap/dist/js/bootstrap.min.js.map"
similarity index 100%
rename from "\345\210\230\346\233\246/Blog/wwwroot/lib/bootstrap/dist/js/bootstrap.min.js.map"
rename to "\345\210\230\346\233\246/\344\275\234\344\270\232/Blog/wwwroot/lib/bootstrap/dist/js/bootstrap.min.js.map"
diff --git "a/\345\210\230\346\233\246/Blog/wwwroot/lib/jquery-validation-unobtrusive/LICENSE.txt" "b/\345\210\230\346\233\246/\344\275\234\344\270\232/Blog/wwwroot/lib/jquery-validation-unobtrusive/LICENSE.txt"
similarity index 100%
rename from "\345\210\230\346\233\246/Blog/wwwroot/lib/jquery-validation-unobtrusive/LICENSE.txt"
rename to "\345\210\230\346\233\246/\344\275\234\344\270\232/Blog/wwwroot/lib/jquery-validation-unobtrusive/LICENSE.txt"
diff --git "a/\345\210\230\346\233\246/Blog/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js" "b/\345\210\230\346\233\246/\344\275\234\344\270\232/Blog/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js"
similarity index 100%
rename from "\345\210\230\346\233\246/Blog/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js"
rename to "\345\210\230\346\233\246/\344\275\234\344\270\232/Blog/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js"
diff --git "a/\345\210\230\346\233\246/Blog/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.min.js" "b/\345\210\230\346\233\246/\344\275\234\344\270\232/Blog/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.min.js"
similarity index 100%
rename from "\345\210\230\346\233\246/Blog/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.min.js"
rename to "\345\210\230\346\233\246/\344\275\234\344\270\232/Blog/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.min.js"
diff --git "a/\345\210\230\346\233\246/Blog/wwwroot/lib/jquery-validation/LICENSE.md" "b/\345\210\230\346\233\246/\344\275\234\344\270\232/Blog/wwwroot/lib/jquery-validation/LICENSE.md"
similarity index 100%
rename from "\345\210\230\346\233\246/Blog/wwwroot/lib/jquery-validation/LICENSE.md"
rename to "\345\210\230\346\233\246/\344\275\234\344\270\232/Blog/wwwroot/lib/jquery-validation/LICENSE.md"
diff --git "a/\345\210\230\346\233\246/Blog/wwwroot/lib/jquery-validation/dist/additional-methods.js" "b/\345\210\230\346\233\246/\344\275\234\344\270\232/Blog/wwwroot/lib/jquery-validation/dist/additional-methods.js"
similarity index 100%
rename from "\345\210\230\346\233\246/Blog/wwwroot/lib/jquery-validation/dist/additional-methods.js"
rename to "\345\210\230\346\233\246/\344\275\234\344\270\232/Blog/wwwroot/lib/jquery-validation/dist/additional-methods.js"
diff --git "a/\345\210\230\346\233\246/Blog/wwwroot/lib/jquery-validation/dist/additional-methods.min.js" "b/\345\210\230\346\233\246/\344\275\234\344\270\232/Blog/wwwroot/lib/jquery-validation/dist/additional-methods.min.js"
similarity index 100%
rename from "\345\210\230\346\233\246/Blog/wwwroot/lib/jquery-validation/dist/additional-methods.min.js"
rename to "\345\210\230\346\233\246/\344\275\234\344\270\232/Blog/wwwroot/lib/jquery-validation/dist/additional-methods.min.js"
diff --git "a/\345\210\230\346\233\246/Blog/wwwroot/lib/jquery-validation/dist/jquery.validate.js" "b/\345\210\230\346\233\246/\344\275\234\344\270\232/Blog/wwwroot/lib/jquery-validation/dist/jquery.validate.js"
similarity index 100%
rename from "\345\210\230\346\233\246/Blog/wwwroot/lib/jquery-validation/dist/jquery.validate.js"
rename to "\345\210\230\346\233\246/\344\275\234\344\270\232/Blog/wwwroot/lib/jquery-validation/dist/jquery.validate.js"
diff --git "a/\345\210\230\346\233\246/Blog/wwwroot/lib/jquery-validation/dist/jquery.validate.min.js" "b/\345\210\230\346\233\246/\344\275\234\344\270\232/Blog/wwwroot/lib/jquery-validation/dist/jquery.validate.min.js"
similarity index 100%
rename from "\345\210\230\346\233\246/Blog/wwwroot/lib/jquery-validation/dist/jquery.validate.min.js"
rename to "\345\210\230\346\233\246/\344\275\234\344\270\232/Blog/wwwroot/lib/jquery-validation/dist/jquery.validate.min.js"
diff --git "a/\345\210\230\346\233\246/Blog/wwwroot/lib/jquery/LICENSE.txt" "b/\345\210\230\346\233\246/\344\275\234\344\270\232/Blog/wwwroot/lib/jquery/LICENSE.txt"
similarity index 100%
rename from "\345\210\230\346\233\246/Blog/wwwroot/lib/jquery/LICENSE.txt"
rename to "\345\210\230\346\233\246/\344\275\234\344\270\232/Blog/wwwroot/lib/jquery/LICENSE.txt"
diff --git "a/\345\210\230\346\233\246/Blog/wwwroot/lib/jquery/dist/jquery.js" "b/\345\210\230\346\233\246/\344\275\234\344\270\232/Blog/wwwroot/lib/jquery/dist/jquery.js"
similarity index 100%
rename from "\345\210\230\346\233\246/Blog/wwwroot/lib/jquery/dist/jquery.js"
rename to "\345\210\230\346\233\246/\344\275\234\344\270\232/Blog/wwwroot/lib/jquery/dist/jquery.js"
diff --git "a/\345\210\230\346\233\246/Blog/wwwroot/lib/jquery/dist/jquery.min.js" "b/\345\210\230\346\233\246/\344\275\234\344\270\232/Blog/wwwroot/lib/jquery/dist/jquery.min.js"
similarity index 100%
rename from "\345\210\230\346\233\246/Blog/wwwroot/lib/jquery/dist/jquery.min.js"
rename to "\345\210\230\346\233\246/\344\275\234\344\270\232/Blog/wwwroot/lib/jquery/dist/jquery.min.js"
diff --git "a/\345\210\230\346\233\246/Blog/wwwroot/lib/jquery/dist/jquery.min.map" "b/\345\210\230\346\233\246/\344\275\234\344\270\232/Blog/wwwroot/lib/jquery/dist/jquery.min.map"
similarity index 100%
rename from "\345\210\230\346\233\246/Blog/wwwroot/lib/jquery/dist/jquery.min.map"
rename to "\345\210\230\346\233\246/\344\275\234\344\270\232/Blog/wwwroot/lib/jquery/dist/jquery.min.map"