diff --git "a/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/Linq\347\273\203\344\271\240/Blog/Blog.csproj" "b/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/Linq\347\273\203\344\271\240/Blog/Blog.csproj" new file mode 100644 index 0000000000000000000000000000000000000000..2150e3797ba5eba3218d8435d31f8a8e2cc83c4c --- /dev/null +++ "b/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/Linq\347\273\203\344\271\240/Blog/Blog.csproj" @@ -0,0 +1,10 @@ + + + + Exe + net8.0 + enable + enable + + + diff --git "a/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/Linq\347\273\203\344\271\240/Blog/Program.cs" "b/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/Linq\347\273\203\344\271\240/Blog/Program.cs" new file mode 100644 index 0000000000000000000000000000000000000000..7263781344ee0967af8a6e7f88212786023b117c --- /dev/null +++ "b/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/Linq\347\273\203\344\271\240/Blog/Program.cs" @@ -0,0 +1,41 @@ +using System; +using System.Linq; + +namespace Blog +{ + + class Program + { + public static void NUM(List list) + { + foreach (var i in list) + { + Console.WriteLine($"姓名:{i.Name},年龄:{i.Age}"); + + } + } + public class Student + { + public string Name { get; set; } = null!; + public int Id { get; set; } + public int Age { get; set; } + } + + static void Main(string[] args) + { + List students = new List + { + new Student {Id=1, Name = "王有才", Age = 21 }, + new Student {Id=2, Name = "罗婷", Age = 21 }, + new Student {Id=3, Name = "王中王", Age = 22 }, + new Student {Id=4, Name = "李子柒", Age = 22 }, + new Student {Id=5, Name = "张语嫣", Age = 23 }, + new Student {Id=6, Name = "詹宇航", Age = 35 }, + new Student {Id=7, Name = "郑雨良", Age = 26 }, + new Student {Id=8, Name = "欧文", Age = 26 }, + }; + var stu = students.ToList(); + NUM(stu); + } + } +} \ No newline at end of file diff --git "a/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/Linq\347\273\203\344\271\240/Blog/bin/Debug/net8.0/Blog.deps.json" "b/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/Linq\347\273\203\344\271\240/Blog/bin/Debug/net8.0/Blog.deps.json" new file mode 100644 index 0000000000000000000000000000000000000000..b32974dddde97b4e62c9b3de930abe66a44ebd86 --- /dev/null +++ "b/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/Linq\347\273\203\344\271\240/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/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/Linq\347\273\203\344\271\240/Blog/bin/Debug/net8.0/Blog.dll" "b/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/Linq\347\273\203\344\271\240/Blog/bin/Debug/net8.0/Blog.dll" new file mode 100644 index 0000000000000000000000000000000000000000..8879147a3f51dbe1b7afa3ce9e3ac069537b6fe8 Binary files /dev/null and "b/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/Linq\347\273\203\344\271\240/Blog/bin/Debug/net8.0/Blog.dll" differ diff --git "a/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/Linq\347\273\203\344\271\240/Blog/bin/Debug/net8.0/Blog.exe" "b/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/Linq\347\273\203\344\271\240/Blog/bin/Debug/net8.0/Blog.exe" new file mode 100644 index 0000000000000000000000000000000000000000..3c0ff3347df50c48dcc5f0a8c070ed00c7320b58 Binary files /dev/null and "b/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/Linq\347\273\203\344\271\240/Blog/bin/Debug/net8.0/Blog.exe" differ diff --git "a/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/Linq\347\273\203\344\271\240/Blog/bin/Debug/net8.0/Blog.pdb" "b/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/Linq\347\273\203\344\271\240/Blog/bin/Debug/net8.0/Blog.pdb" new file mode 100644 index 0000000000000000000000000000000000000000..801e72c54490f62157514e5d4672d7f27933986a Binary files /dev/null and "b/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/Linq\347\273\203\344\271\240/Blog/bin/Debug/net8.0/Blog.pdb" differ diff --git "a/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/Linq\347\273\203\344\271\240/Blog/bin/Debug/net8.0/Blog.runtimeconfig.json" "b/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/Linq\347\273\203\344\271\240/Blog/bin/Debug/net8.0/Blog.runtimeconfig.json" new file mode 100644 index 0000000000000000000000000000000000000000..becfaeac95a0a28c70ce619e835f5322a54d3426 --- /dev/null +++ "b/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/Linq\347\273\203\344\271\240/Blog/bin/Debug/net8.0/Blog.runtimeconfig.json" @@ -0,0 +1,12 @@ +{ + "runtimeOptions": { + "tfm": "net8.0", + "framework": { + "name": "Microsoft.NETCore.App", + "version": "8.0.0" + }, + "configProperties": { + "System.Runtime.Serialization.EnableUnsafeBinaryFormatterSerialization": false + } + } +} \ No newline at end of file diff --git "a/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/Linq\347\273\203\344\271\240/Blog/obj/Blog.csproj.nuget.dgspec.json" "b/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/Linq\347\273\203\344\271\240/Blog/obj/Blog.csproj.nuget.dgspec.json" new file mode 100644 index 0000000000000000000000000000000000000000..f94d0e07a8539705e42e6d44104863bf10100ab1 --- /dev/null +++ "b/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/Linq\347\273\203\344\271\240/Blog/obj/Blog.csproj.nuget.dgspec.json" @@ -0,0 +1,69 @@ +{ + "format": 1, + "restore": { + "E:\\作业上传处\\Gitee\\grade23-class4-note-mvc\\韦诗诗\\作业\\Linq练习\\Blog\\Blog.csproj": {} + }, + "projects": { + "E:\\作业上传处\\Gitee\\grade23-class4-note-mvc\\韦诗诗\\作业\\Linq练习\\Blog\\Blog.csproj": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "E:\\作业上传处\\Gitee\\grade23-class4-note-mvc\\韦诗诗\\作业\\Linq练习\\Blog\\Blog.csproj", + "projectName": "Blog", + "projectPath": "E:\\作业上传处\\Gitee\\grade23-class4-note-mvc\\韦诗诗\\作业\\Linq练习\\Blog\\Blog.csproj", + "packagesPath": "C:\\Users\\Administrator\\.nuget\\packages\\", + "outputPath": "E:\\作业上传处\\Gitee\\grade23-class4-note-mvc\\韦诗诗\\作业\\Linq练习\\Blog\\obj\\", + "projectStyle": "PackageReference", + "configFilePaths": [ + "C:\\Users\\Administrator\\AppData\\Roaming\\NuGet\\NuGet.Config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" + ], + "originalTargetFrameworks": [ + "net8.0" + ], + "sources": { + "C:\\Program Files\\dotnet\\library-packs": {}, + "https://api.nuget.org/v3/index.json": {}, + "https://repo.huaweicloud.com/repository/nuget/v3/index.json": {} + }, + "frameworks": { + "net8.0": { + "targetAlias": "net8.0", + "projectReferences": {} + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + }, + "restoreAuditProperties": { + "enableAudit": "true", + "auditLevel": "low", + "auditMode": "direct" + } + }, + "frameworks": { + "net8.0": { + "targetAlias": "net8.0", + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48", + "net481" + ], + "assetTargetFallback": true, + "warn": true, + "frameworkReferences": { + "Microsoft.NETCore.App": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\8.0.401/PortableRuntimeIdentifierGraph.json" + } + } + } + } +} \ No newline at end of file diff --git "a/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/Linq\347\273\203\344\271\240/Blog/obj/Blog.csproj.nuget.g.props" "b/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/Linq\347\273\203\344\271\240/Blog/obj/Blog.csproj.nuget.g.props" new file mode 100644 index 0000000000000000000000000000000000000000..392cdd24d49a35dba9281cc4e6301a4a447f0820 --- /dev/null +++ "b/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/Linq\347\273\203\344\271\240/Blog/obj/Blog.csproj.nuget.g.props" @@ -0,0 +1,15 @@ + + + + True + NuGet + $(MSBuildThisFileDirectory)project.assets.json + $(UserProfile)\.nuget\packages\ + C:\Users\Administrator\.nuget\packages\ + PackageReference + 6.11.0 + + + + + \ No newline at end of file diff --git "a/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/Linq\347\273\203\344\271\240/Blog/obj/Blog.csproj.nuget.g.targets" "b/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/Linq\347\273\203\344\271\240/Blog/obj/Blog.csproj.nuget.g.targets" new file mode 100644 index 0000000000000000000000000000000000000000..3dc06ef3cc4057524bf5d2cd49936dff789cebe8 --- /dev/null +++ "b/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/Linq\347\273\203\344\271\240/Blog/obj/Blog.csproj.nuget.g.targets" @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git "a/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/Linq\347\273\203\344\271\240/Blog/obj/Debug/net8.0/.NETCoreApp,Version=v8.0.AssemblyAttributes.cs" "b/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/Linq\347\273\203\344\271\240/Blog/obj/Debug/net8.0/.NETCoreApp,Version=v8.0.AssemblyAttributes.cs" new file mode 100644 index 0000000000000000000000000000000000000000..2217181c88bdc64e587ffe6e9301b67e1d462aab --- /dev/null +++ "b/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/Linq\347\273\203\344\271\240/Blog/obj/Debug/net8.0/.NETCoreApp,Version=v8.0.AssemblyAttributes.cs" @@ -0,0 +1,4 @@ +// +using System; +using System.Reflection; +[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v8.0", FrameworkDisplayName = ".NET 8.0")] diff --git "a/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/Linq\347\273\203\344\271\240/Blog/obj/Debug/net8.0/Blog.AssemblyInfo.cs" "b/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/Linq\347\273\203\344\271\240/Blog/obj/Debug/net8.0/Blog.AssemblyInfo.cs" new file mode 100644 index 0000000000000000000000000000000000000000..bf29c947d62511b6bc41fcdc6aee45a1179ab556 --- /dev/null +++ "b/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/Linq\347\273\203\344\271\240/Blog/obj/Debug/net8.0/Blog.AssemblyInfo.cs" @@ -0,0 +1,22 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("Blog")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+18464ec4b01534d41a231e824ccc1db9b10308ad")] +[assembly: System.Reflection.AssemblyProductAttribute("Blog")] +[assembly: System.Reflection.AssemblyTitleAttribute("Blog")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] + +// 由 MSBuild WriteCodeFragment 类生成。 + diff --git "a/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/Linq\347\273\203\344\271\240/Blog/obj/Debug/net8.0/Blog.AssemblyInfoInputs.cache" "b/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/Linq\347\273\203\344\271\240/Blog/obj/Debug/net8.0/Blog.AssemblyInfoInputs.cache" new file mode 100644 index 0000000000000000000000000000000000000000..e8ec7eca2148b7f41e3e49ab2f3e9d11462298fe --- /dev/null +++ "b/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/Linq\347\273\203\344\271\240/Blog/obj/Debug/net8.0/Blog.AssemblyInfoInputs.cache" @@ -0,0 +1 @@ +6f357250fbb1dd855b8b878a07efdddac8f770980056b00d2fc36c65478341aa diff --git "a/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/Linq\347\273\203\344\271\240/Blog/obj/Debug/net8.0/Blog.GeneratedMSBuildEditorConfig.editorconfig" "b/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/Linq\347\273\203\344\271\240/Blog/obj/Debug/net8.0/Blog.GeneratedMSBuildEditorConfig.editorconfig" new file mode 100644 index 0000000000000000000000000000000000000000..032eafd5c158859634d654377c5928e4fd2c5e74 --- /dev/null +++ "b/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/Linq\347\273\203\344\271\240/Blog/obj/Debug/net8.0/Blog.GeneratedMSBuildEditorConfig.editorconfig" @@ -0,0 +1,13 @@ +is_global = true +build_property.TargetFramework = net8.0 +build_property.TargetPlatformMinVersion = +build_property.UsingMicrosoftNETSdkWeb = +build_property.ProjectTypeGuids = +build_property.InvariantGlobalization = +build_property.PlatformNeutralAssembly = +build_property.EnforceExtendedAnalyzerRules = +build_property._SupportedPlatformList = Linux,macOS,Windows +build_property.RootNamespace = Blog +build_property.ProjectDir = E:\作业上传处\Gitee\grade23-class4-note-mvc\韦诗诗\作业\Linq练习\Blog\ +build_property.EnableComHosting = +build_property.EnableGeneratedComInterfaceComImportInterop = diff --git "a/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/Linq\347\273\203\344\271\240/Blog/obj/Debug/net8.0/Blog.GlobalUsings.g.cs" "b/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/Linq\347\273\203\344\271\240/Blog/obj/Debug/net8.0/Blog.GlobalUsings.g.cs" new file mode 100644 index 0000000000000000000000000000000000000000..8578f3d03de56aa5afbb2e6a3f0a9055b075f7fd --- /dev/null +++ "b/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/Linq\347\273\203\344\271\240/Blog/obj/Debug/net8.0/Blog.GlobalUsings.g.cs" @@ -0,0 +1,8 @@ +// +global using global::System; +global using global::System.Collections.Generic; +global using global::System.IO; +global using global::System.Linq; +global using global::System.Net.Http; +global using global::System.Threading; +global using global::System.Threading.Tasks; diff --git "a/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/Linq\347\273\203\344\271\240/Blog/obj/Debug/net8.0/Blog.assets.cache" "b/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/Linq\347\273\203\344\271\240/Blog/obj/Debug/net8.0/Blog.assets.cache" new file mode 100644 index 0000000000000000000000000000000000000000..7023ab436903f0a7e56ec7dc6f5a30ee9a9fca8b Binary files /dev/null and "b/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/Linq\347\273\203\344\271\240/Blog/obj/Debug/net8.0/Blog.assets.cache" differ diff --git "a/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/Linq\347\273\203\344\271\240/Blog/obj/Debug/net8.0/Blog.csproj.CoreCompileInputs.cache" "b/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/Linq\347\273\203\344\271\240/Blog/obj/Debug/net8.0/Blog.csproj.CoreCompileInputs.cache" new file mode 100644 index 0000000000000000000000000000000000000000..40538e5b25e90a6bd768e4887caa7d39d25d472b --- /dev/null +++ "b/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/Linq\347\273\203\344\271\240/Blog/obj/Debug/net8.0/Blog.csproj.CoreCompileInputs.cache" @@ -0,0 +1 @@ +b5e78b6ba94d7689586c516344f8b36fda592a435ef75fe0699a6cdc7975cead diff --git "a/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/Linq\347\273\203\344\271\240/Blog/obj/Debug/net8.0/Blog.csproj.FileListAbsolute.txt" "b/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/Linq\347\273\203\344\271\240/Blog/obj/Debug/net8.0/Blog.csproj.FileListAbsolute.txt" new file mode 100644 index 0000000000000000000000000000000000000000..48ba84013cf78112d518939d99df65831e84ee03 --- /dev/null +++ "b/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/Linq\347\273\203\344\271\240/Blog/obj/Debug/net8.0/Blog.csproj.FileListAbsolute.txt" @@ -0,0 +1,28 @@ +G:\作业上传处\Gitee\grade23-class4-note-mvc\韦诗诗\作业\Linq练习\Blog\obj\Debug\net8.0\Blog.GeneratedMSBuildEditorConfig.editorconfig +G:\作业上传处\Gitee\grade23-class4-note-mvc\韦诗诗\作业\Linq练习\Blog\obj\Debug\net8.0\Blog.AssemblyInfoInputs.cache +G:\作业上传处\Gitee\grade23-class4-note-mvc\韦诗诗\作业\Linq练习\Blog\obj\Debug\net8.0\Blog.AssemblyInfo.cs +G:\作业上传处\Gitee\grade23-class4-note-mvc\韦诗诗\作业\Linq练习\Blog\obj\Debug\net8.0\Blog.csproj.CoreCompileInputs.cache +G:\作业上传处\Gitee\grade23-class4-note-mvc\韦诗诗\作业\Linq练习\Blog\bin\Debug\net8.0\Blog.exe +G:\作业上传处\Gitee\grade23-class4-note-mvc\韦诗诗\作业\Linq练习\Blog\bin\Debug\net8.0\Blog.deps.json +G:\作业上传处\Gitee\grade23-class4-note-mvc\韦诗诗\作业\Linq练习\Blog\bin\Debug\net8.0\Blog.runtimeconfig.json +G:\作业上传处\Gitee\grade23-class4-note-mvc\韦诗诗\作业\Linq练习\Blog\bin\Debug\net8.0\Blog.dll +G:\作业上传处\Gitee\grade23-class4-note-mvc\韦诗诗\作业\Linq练习\Blog\bin\Debug\net8.0\Blog.pdb +G:\作业上传处\Gitee\grade23-class4-note-mvc\韦诗诗\作业\Linq练习\Blog\obj\Debug\net8.0\Blog.dll +G:\作业上传处\Gitee\grade23-class4-note-mvc\韦诗诗\作业\Linq练习\Blog\obj\Debug\net8.0\refint\Blog.dll +G:\作业上传处\Gitee\grade23-class4-note-mvc\韦诗诗\作业\Linq练习\Blog\obj\Debug\net8.0\Blog.pdb +G:\作业上传处\Gitee\grade23-class4-note-mvc\韦诗诗\作业\Linq练习\Blog\obj\Debug\net8.0\Blog.genruntimeconfig.cache +G:\作业上传处\Gitee\grade23-class4-note-mvc\韦诗诗\作业\Linq练习\Blog\obj\Debug\net8.0\ref\Blog.dll +E:\作业上传处\Gitee\grade23-class4-note-mvc\韦诗诗\作业\Linq练习\Blog\bin\Debug\net8.0\Blog.exe +E:\作业上传处\Gitee\grade23-class4-note-mvc\韦诗诗\作业\Linq练习\Blog\bin\Debug\net8.0\Blog.deps.json +E:\作业上传处\Gitee\grade23-class4-note-mvc\韦诗诗\作业\Linq练习\Blog\bin\Debug\net8.0\Blog.runtimeconfig.json +E:\作业上传处\Gitee\grade23-class4-note-mvc\韦诗诗\作业\Linq练习\Blog\bin\Debug\net8.0\Blog.dll +E:\作业上传处\Gitee\grade23-class4-note-mvc\韦诗诗\作业\Linq练习\Blog\bin\Debug\net8.0\Blog.pdb +E:\作业上传处\Gitee\grade23-class4-note-mvc\韦诗诗\作业\Linq练习\Blog\obj\Debug\net8.0\Blog.GeneratedMSBuildEditorConfig.editorconfig +E:\作业上传处\Gitee\grade23-class4-note-mvc\韦诗诗\作业\Linq练习\Blog\obj\Debug\net8.0\Blog.AssemblyInfoInputs.cache +E:\作业上传处\Gitee\grade23-class4-note-mvc\韦诗诗\作业\Linq练习\Blog\obj\Debug\net8.0\Blog.AssemblyInfo.cs +E:\作业上传处\Gitee\grade23-class4-note-mvc\韦诗诗\作业\Linq练习\Blog\obj\Debug\net8.0\Blog.csproj.CoreCompileInputs.cache +E:\作业上传处\Gitee\grade23-class4-note-mvc\韦诗诗\作业\Linq练习\Blog\obj\Debug\net8.0\Blog.dll +E:\作业上传处\Gitee\grade23-class4-note-mvc\韦诗诗\作业\Linq练习\Blog\obj\Debug\net8.0\refint\Blog.dll +E:\作业上传处\Gitee\grade23-class4-note-mvc\韦诗诗\作业\Linq练习\Blog\obj\Debug\net8.0\Blog.pdb +E:\作业上传处\Gitee\grade23-class4-note-mvc\韦诗诗\作业\Linq练习\Blog\obj\Debug\net8.0\Blog.genruntimeconfig.cache +E:\作业上传处\Gitee\grade23-class4-note-mvc\韦诗诗\作业\Linq练习\Blog\obj\Debug\net8.0\ref\Blog.dll diff --git "a/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/Linq\347\273\203\344\271\240/Blog/obj/Debug/net8.0/Blog.dll" "b/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/Linq\347\273\203\344\271\240/Blog/obj/Debug/net8.0/Blog.dll" new file mode 100644 index 0000000000000000000000000000000000000000..8879147a3f51dbe1b7afa3ce9e3ac069537b6fe8 Binary files /dev/null and "b/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/Linq\347\273\203\344\271\240/Blog/obj/Debug/net8.0/Blog.dll" differ diff --git "a/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/Linq\347\273\203\344\271\240/Blog/obj/Debug/net8.0/Blog.genruntimeconfig.cache" "b/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/Linq\347\273\203\344\271\240/Blog/obj/Debug/net8.0/Blog.genruntimeconfig.cache" new file mode 100644 index 0000000000000000000000000000000000000000..3abe043c8b85fc4d8954807cd7423cd77870b4f9 --- /dev/null +++ "b/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/Linq\347\273\203\344\271\240/Blog/obj/Debug/net8.0/Blog.genruntimeconfig.cache" @@ -0,0 +1 @@ +c9ca2b695f85d66e8087a05eb9d70a65e34fb6c05591b61cc7b9af498c1cebdb diff --git "a/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/Linq\347\273\203\344\271\240/Blog/obj/Debug/net8.0/Blog.pdb" "b/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/Linq\347\273\203\344\271\240/Blog/obj/Debug/net8.0/Blog.pdb" new file mode 100644 index 0000000000000000000000000000000000000000..801e72c54490f62157514e5d4672d7f27933986a Binary files /dev/null and "b/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/Linq\347\273\203\344\271\240/Blog/obj/Debug/net8.0/Blog.pdb" differ diff --git "a/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/Linq\347\273\203\344\271\240/Blog/obj/Debug/net8.0/apphost.exe" "b/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/Linq\347\273\203\344\271\240/Blog/obj/Debug/net8.0/apphost.exe" new file mode 100644 index 0000000000000000000000000000000000000000..3c0ff3347df50c48dcc5f0a8c070ed00c7320b58 Binary files /dev/null and "b/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/Linq\347\273\203\344\271\240/Blog/obj/Debug/net8.0/apphost.exe" differ diff --git "a/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/Linq\347\273\203\344\271\240/Blog/obj/Debug/net8.0/ref/Blog.dll" "b/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/Linq\347\273\203\344\271\240/Blog/obj/Debug/net8.0/ref/Blog.dll" new file mode 100644 index 0000000000000000000000000000000000000000..4c3fb7c33d07df2f695cf54536c2497f16807f6a Binary files /dev/null and "b/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/Linq\347\273\203\344\271\240/Blog/obj/Debug/net8.0/ref/Blog.dll" differ diff --git "a/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/Linq\347\273\203\344\271\240/Blog/obj/Debug/net8.0/refint/Blog.dll" "b/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/Linq\347\273\203\344\271\240/Blog/obj/Debug/net8.0/refint/Blog.dll" new file mode 100644 index 0000000000000000000000000000000000000000..4c3fb7c33d07df2f695cf54536c2497f16807f6a Binary files /dev/null and "b/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/Linq\347\273\203\344\271\240/Blog/obj/Debug/net8.0/refint/Blog.dll" differ diff --git "a/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/Linq\347\273\203\344\271\240/Blog/obj/project.assets.json" "b/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/Linq\347\273\203\344\271\240/Blog/obj/project.assets.json" new file mode 100644 index 0000000000000000000000000000000000000000..7d8fecb5b49c27aa6f578da83caf72457483a32b --- /dev/null +++ "b/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/Linq\347\273\203\344\271\240/Blog/obj/project.assets.json" @@ -0,0 +1,74 @@ +{ + "version": 3, + "targets": { + "net8.0": {} + }, + "libraries": {}, + "projectFileDependencyGroups": { + "net8.0": [] + }, + "packageFolders": { + "C:\\Users\\Administrator\\.nuget\\packages\\": {} + }, + "project": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "E:\\作业上传处\\Gitee\\grade23-class4-note-mvc\\韦诗诗\\作业\\Linq练习\\Blog\\Blog.csproj", + "projectName": "Blog", + "projectPath": "E:\\作业上传处\\Gitee\\grade23-class4-note-mvc\\韦诗诗\\作业\\Linq练习\\Blog\\Blog.csproj", + "packagesPath": "C:\\Users\\Administrator\\.nuget\\packages\\", + "outputPath": "E:\\作业上传处\\Gitee\\grade23-class4-note-mvc\\韦诗诗\\作业\\Linq练习\\Blog\\obj\\", + "projectStyle": "PackageReference", + "configFilePaths": [ + "C:\\Users\\Administrator\\AppData\\Roaming\\NuGet\\NuGet.Config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" + ], + "originalTargetFrameworks": [ + "net8.0" + ], + "sources": { + "C:\\Program Files\\dotnet\\library-packs": {}, + "https://api.nuget.org/v3/index.json": {}, + "https://repo.huaweicloud.com/repository/nuget/v3/index.json": {} + }, + "frameworks": { + "net8.0": { + "targetAlias": "net8.0", + "projectReferences": {} + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + }, + "restoreAuditProperties": { + "enableAudit": "true", + "auditLevel": "low", + "auditMode": "direct" + } + }, + "frameworks": { + "net8.0": { + "targetAlias": "net8.0", + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48", + "net481" + ], + "assetTargetFallback": true, + "warn": true, + "frameworkReferences": { + "Microsoft.NETCore.App": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\8.0.401/PortableRuntimeIdentifierGraph.json" + } + } + } +} \ No newline at end of file diff --git "a/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/Linq\347\273\203\344\271\240/Blog/obj/project.nuget.cache" "b/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/Linq\347\273\203\344\271\240/Blog/obj/project.nuget.cache" new file mode 100644 index 0000000000000000000000000000000000000000..80f854a3d40ad3db913eb3e5996616b3f718bd7a --- /dev/null +++ "b/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/Linq\347\273\203\344\271\240/Blog/obj/project.nuget.cache" @@ -0,0 +1,8 @@ +{ + "version": 2, + "dgSpecHash": "8ZiJWewxBys=", + "success": true, + "projectFilePath": "E:\\作业上传处\\Gitee\\grade23-class4-note-mvc\\韦诗诗\\作业\\Linq练习\\Blog\\Blog.csproj", + "expectedPackageFiles": [], + "logs": [] +} \ No newline at end of file diff --git "a/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/MVC-Linq\351\233\206\346\210\220\346\237\245\350\257\242/Blogs/Program.cs" "b/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/MVC-Linq\351\233\206\346\210\220\346\237\245\350\257\242/Blogs/Program.cs" index dfe3f1136cbcc2e90dff921e6552cd868318cf6f..c60bbff0071126fcc00af87512648f14779fd548 100644 --- "a/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/MVC-Linq\351\233\206\346\210\220\346\237\245\350\257\242/Blogs/Program.cs" +++ "b/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/MVC-Linq\351\233\206\346\210\220\346\237\245\350\257\242/Blogs/Program.cs" @@ -3,21 +3,22 @@ using System.Linq; namespace Blogs { - public class Student -{ - public int Id { get; set; } - public string Name { get; set; } - public int Age { get; set; } -} + class Program - { - public class Course -{ - public int StudentId { get; set; } - public string CourseName { get; set; } -} - + { + + public class Student + { + public int Id { get; set; } + public string Name { get; set; } + public int Age { get; set; } + } + public class Course + { + public int StudentId { get; set; } + public string CourseName { get; set; } + } static void Main(string[] args) { 初始化数组 diff --git "a/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/MVC\344\274\240\345\217\202/Blog/Blog.csproj" "b/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/MVC\344\274\240\345\217\202/Blog/Blog.csproj" index 1b28a01c81c7c4d708d59ca52502ae76b6f2760c..b12abd0717d1bd281c7ec33fe1f230ba82436db2 100644 --- "a/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/MVC\344\274\240\345\217\202/Blog/Blog.csproj" +++ "b/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/MVC\344\274\240\345\217\202/Blog/Blog.csproj" @@ -6,4 +6,12 @@ enable + + + runtime; build; native; contentfiles; analyzers; buildtransitive + all + + + + diff --git "a/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/MVC\344\274\240\345\217\202/Blog/Controllers/BlogsController.cs" "b/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/MVC\344\274\240\345\217\202/Blog/Controllers/BlogsController.cs" index fc03fdd00cf21d16dfe6cad92188b917603ac5c3..91a873d3c5ce47ddfdd9e37372b0a7f64441aae5 100644 --- "a/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/MVC\344\274\240\345\217\202/Blog/Controllers/BlogsController.cs" +++ "b/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/MVC\344\274\240\345\217\202/Blog/Controllers/BlogsController.cs" @@ -4,33 +4,7 @@ namespace Blog.Controllers; public class BlogsController : Controller { - public dynamic Index() - { - var obj = new Students - { - Name = "96岁老太峡谷凌晨乱杀", - Age = "96", - }; - - var list = new List{ - new Students{ - Name ="米老鼠", - Age="999", - }, - - new Students{ - Name ="唐老鸭", - Age="888", - }, - - new Students{ - Name ="高飞", - Age="777", - } - - }; - return View(obj); - } + //生成一个随机整数,范围[0,100],注意是否包含 public IActionResult Text() { diff --git "a/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/MVC\344\274\240\345\217\202/Blog/Migrations/20241209085114_Blogqianyi.Designer.cs" "b/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/MVC\344\274\240\345\217\202/Blog/Migrations/20241209085114_Blogqianyi.Designer.cs" new file mode 100644 index 0000000000000000000000000000000000000000..6ee98a542dde2c456fc7b1418093f2fcf13bb819 --- /dev/null +++ "b/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/MVC\344\274\240\345\217\202/Blog/Migrations/20241209085114_Blogqianyi.Designer.cs" @@ -0,0 +1,54 @@ +// +using Blog.Models; +using Microsoft.EntityFrameworkCore; +using Microsoft.EntityFrameworkCore.Infrastructure; +using Microsoft.EntityFrameworkCore.Metadata; +using Microsoft.EntityFrameworkCore.Migrations; +using Microsoft.EntityFrameworkCore.Storage.ValueConversion; + +#nullable disable + +namespace Blog.Migrations +{ + [DbContext(typeof(BlogDbContext))] + [Migration("20241209085114_Blogqianyi")] + partial class Blogqianyi + { + /// + protected override void BuildTargetModel(ModelBuilder modelBuilder) + { +#pragma warning disable 612, 618 + modelBuilder + .HasAnnotation("ProductVersion", "9.0.0") + .HasAnnotation("Relational:MaxIdentifierLength", 128); + + SqlServerModelBuilderExtensions.UseIdentityColumns(modelBuilder); + + modelBuilder.Entity("Blog.Models.Blogs", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("int"); + + SqlServerPropertyBuilderExtensions.UseIdentityColumn(b.Property("Id")); + + b.Property("Author") + .IsRequired() + .HasColumnType("nvarchar(max)"); + + b.Property("Content") + .IsRequired() + .HasColumnType("nvarchar(max)"); + + b.Property("Title") + .IsRequired() + .HasColumnType("nvarchar(max)"); + + b.HasKey("Id"); + + b.ToTable("Blogs"); + }); +#pragma warning restore 612, 618 + } + } +} diff --git "a/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/MVC\344\274\240\345\217\202/Blog/Migrations/20241209085114_Blogqianyi.cs" "b/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/MVC\344\274\240\345\217\202/Blog/Migrations/20241209085114_Blogqianyi.cs" new file mode 100644 index 0000000000000000000000000000000000000000..1b8ca6e5730bb132d7f990f69d4f9edf672d100a --- /dev/null +++ "b/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/MVC\344\274\240\345\217\202/Blog/Migrations/20241209085114_Blogqianyi.cs" @@ -0,0 +1,36 @@ +using Microsoft.EntityFrameworkCore.Migrations; + +#nullable disable + +namespace Blog.Migrations +{ + /// + public partial class Blogqianyi : Migration + { + /// + protected override void Up(MigrationBuilder migrationBuilder) + { + migrationBuilder.CreateTable( + name: "Blogs", + columns: table => new + { + Id = table.Column(type: "int", nullable: false) + .Annotation("SqlServer:Identity", "1, 1"), + Title = table.Column(type: "nvarchar(max)", nullable: false), + Content = table.Column(type: "nvarchar(max)", nullable: false), + Author = table.Column(type: "nvarchar(max)", nullable: false) + }, + constraints: table => + { + table.PrimaryKey("PK_Blogs", x => x.Id); + }); + } + + /// + protected override void Down(MigrationBuilder migrationBuilder) + { + migrationBuilder.DropTable( + name: "Blogs"); + } + } +} diff --git "a/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/MVC\344\274\240\345\217\202/Blog/Migrations/BlogDbContextModelSnapshot.cs" "b/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/MVC\344\274\240\345\217\202/Blog/Migrations/BlogDbContextModelSnapshot.cs" new file mode 100644 index 0000000000000000000000000000000000000000..69cd6dca0a50b0aa3f4aac04f4b412a2209afe44 --- /dev/null +++ "b/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/MVC\344\274\240\345\217\202/Blog/Migrations/BlogDbContextModelSnapshot.cs" @@ -0,0 +1,51 @@ +// +using Blog.Models; +using Microsoft.EntityFrameworkCore; +using Microsoft.EntityFrameworkCore.Infrastructure; +using Microsoft.EntityFrameworkCore.Metadata; +using Microsoft.EntityFrameworkCore.Storage.ValueConversion; + +#nullable disable + +namespace Blog.Migrations +{ + [DbContext(typeof(BlogDbContext))] + partial class BlogDbContextModelSnapshot : ModelSnapshot + { + protected override void BuildModel(ModelBuilder modelBuilder) + { +#pragma warning disable 612, 618 + modelBuilder + .HasAnnotation("ProductVersion", "9.0.0") + .HasAnnotation("Relational:MaxIdentifierLength", 128); + + SqlServerModelBuilderExtensions.UseIdentityColumns(modelBuilder); + + modelBuilder.Entity("Blog.Models.Blogs", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("int"); + + SqlServerPropertyBuilderExtensions.UseIdentityColumn(b.Property("Id")); + + b.Property("Author") + .IsRequired() + .HasColumnType("nvarchar(max)"); + + b.Property("Content") + .IsRequired() + .HasColumnType("nvarchar(max)"); + + b.Property("Title") + .IsRequired() + .HasColumnType("nvarchar(max)"); + + b.HasKey("Id"); + + b.ToTable("Blogs"); + }); +#pragma warning restore 612, 618 + } + } +} diff --git "a/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/MVC\344\274\240\345\217\202/Blog/Models/BlogDbContext.cs" "b/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/MVC\344\274\240\345\217\202/Blog/Models/BlogDbContext.cs" new file mode 100644 index 0000000000000000000000000000000000000000..3543a4e0ab960d0fa8937bbd2d977ec2be80d1fa --- /dev/null +++ "b/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/MVC\344\274\240\345\217\202/Blog/Models/BlogDbContext.cs" @@ -0,0 +1,24 @@ +using Microsoft.EntityFrameworkCore;// 这是生成迁移文件的依赖包 +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!; +} + +//定义数据库上下文 +public class BlogDbContext : DbContext +{ + public DbSet Blogs { get; set; } = null!; + + + // The following configures EF to create a Sqlite database file in the + // special "local" folder for your platform. + protected override void OnConfiguring(DbContextOptionsBuilder options) + //这里要先打开数据库,然后连接数据库 + => options.UseSqlServer($"Server=.;uid=sa;pwd=123456;TrustServerCertificate=True;"); +} diff --git "a/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/MVC\344\274\240\345\217\202/Blog/bin/Debug/net8.0/Azure.Core.dll" "b/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/MVC\344\274\240\345\217\202/Blog/bin/Debug/net8.0/Azure.Core.dll" new file mode 100644 index 0000000000000000000000000000000000000000..d3fa20b6a048456fa007410009a6bf71666ee55f Binary files /dev/null and "b/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/MVC\344\274\240\345\217\202/Blog/bin/Debug/net8.0/Azure.Core.dll" differ diff --git "a/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/MVC\344\274\240\345\217\202/Blog/bin/Debug/net8.0/Azure.Identity.dll" "b/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/MVC\344\274\240\345\217\202/Blog/bin/Debug/net8.0/Azure.Identity.dll" new file mode 100644 index 0000000000000000000000000000000000000000..aab683283cfcad622c706e1d7e0ee0d03d654632 Binary files /dev/null and "b/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/MVC\344\274\240\345\217\202/Blog/bin/Debug/net8.0/Azure.Identity.dll" differ diff --git "a/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/MVC\344\274\240\345\217\202/Blog/bin/Debug/net8.0/Blog.deps.json" "b/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/MVC\344\274\240\345\217\202/Blog/bin/Debug/net8.0/Blog.deps.json" index b32974dddde97b4e62c9b3de930abe66a44ebd86..332ce417cf942be79bb62845cf964e23ca5ce4e5 100644 --- "a/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/MVC\344\274\240\345\217\202/Blog/bin/Debug/net8.0/Blog.deps.json" +++ "b/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/MVC\344\274\240\345\217\202/Blog/bin/Debug/net8.0/Blog.deps.json" @@ -7,9 +7,1030 @@ "targets": { ".NETCoreApp,Version=v8.0": { "Blog/1.0.0": { + "dependencies": { + "Microsoft.EntityFrameworkCore.Design": "9.0.0", + "Microsoft.EntityFrameworkCore.SqlServer": "9.0.0" + }, "runtime": { "Blog.dll": {} } + }, + "Azure.Core/1.38.0": { + "dependencies": { + "Microsoft.Bcl.AsyncInterfaces": "7.0.0", + "System.ClientModel": "1.0.0", + "System.Diagnostics.DiagnosticSource": "9.0.0", + "System.Memory.Data": "1.0.2", + "System.Numerics.Vectors": "4.5.0", + "System.Text.Encodings.Web": "9.0.0", + "System.Text.Json": "9.0.0", + "System.Threading.Tasks.Extensions": "4.5.4" + }, + "runtime": { + "lib/net6.0/Azure.Core.dll": { + "assemblyVersion": "1.38.0.0", + "fileVersion": "1.3800.24.12602" + } + } + }, + "Azure.Identity/1.11.4": { + "dependencies": { + "Azure.Core": "1.38.0", + "Microsoft.Identity.Client": "4.61.3", + "Microsoft.Identity.Client.Extensions.Msal": "4.61.3", + "System.Memory": "4.5.4", + "System.Security.Cryptography.ProtectedData": "6.0.0", + "System.Text.Json": "9.0.0", + "System.Threading.Tasks.Extensions": "4.5.4" + }, + "runtime": { + "lib/netstandard2.0/Azure.Identity.dll": { + "assemblyVersion": "1.11.4.0", + "fileVersion": "1.1100.424.31005" + } + } + }, + "Humanizer.Core/2.14.1": { + "runtime": { + "lib/net6.0/Humanizer.dll": { + "assemblyVersion": "2.14.0.0", + "fileVersion": "2.14.1.48190" + } + } + }, + "Microsoft.Bcl.AsyncInterfaces/7.0.0": { + "runtime": { + "lib/netstandard2.1/Microsoft.Bcl.AsyncInterfaces.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.22.51805" + } + } + }, + "Microsoft.Build.Framework/17.8.3": {}, + "Microsoft.Build.Locator/1.7.8": { + "runtime": { + "lib/net6.0/Microsoft.Build.Locator.dll": { + "assemblyVersion": "1.0.0.0", + "fileVersion": "1.7.8.28074" + } + } + }, + "Microsoft.CodeAnalysis.Analyzers/3.3.4": {}, + "Microsoft.CodeAnalysis.Common/4.8.0": { + "dependencies": { + "Microsoft.CodeAnalysis.Analyzers": "3.3.4", + "System.Collections.Immutable": "7.0.0", + "System.Reflection.Metadata": "7.0.0", + "System.Runtime.CompilerServices.Unsafe": "6.0.0" + }, + "runtime": { + "lib/net7.0/Microsoft.CodeAnalysis.dll": { + "assemblyVersion": "4.8.0.0", + "fileVersion": "4.800.23.55801" + } + }, + "resources": { + "lib/net7.0/cs/Microsoft.CodeAnalysis.resources.dll": { + "locale": "cs" + }, + "lib/net7.0/de/Microsoft.CodeAnalysis.resources.dll": { + "locale": "de" + }, + "lib/net7.0/es/Microsoft.CodeAnalysis.resources.dll": { + "locale": "es" + }, + "lib/net7.0/fr/Microsoft.CodeAnalysis.resources.dll": { + "locale": "fr" + }, + "lib/net7.0/it/Microsoft.CodeAnalysis.resources.dll": { + "locale": "it" + }, + "lib/net7.0/ja/Microsoft.CodeAnalysis.resources.dll": { + "locale": "ja" + }, + "lib/net7.0/ko/Microsoft.CodeAnalysis.resources.dll": { + "locale": "ko" + }, + "lib/net7.0/pl/Microsoft.CodeAnalysis.resources.dll": { + "locale": "pl" + }, + "lib/net7.0/pt-BR/Microsoft.CodeAnalysis.resources.dll": { + "locale": "pt-BR" + }, + "lib/net7.0/ru/Microsoft.CodeAnalysis.resources.dll": { + "locale": "ru" + }, + "lib/net7.0/tr/Microsoft.CodeAnalysis.resources.dll": { + "locale": "tr" + }, + "lib/net7.0/zh-Hans/Microsoft.CodeAnalysis.resources.dll": { + "locale": "zh-Hans" + }, + "lib/net7.0/zh-Hant/Microsoft.CodeAnalysis.resources.dll": { + "locale": "zh-Hant" + } + } + }, + "Microsoft.CodeAnalysis.CSharp/4.8.0": { + "dependencies": { + "Microsoft.CodeAnalysis.Common": "4.8.0" + }, + "runtime": { + "lib/net7.0/Microsoft.CodeAnalysis.CSharp.dll": { + "assemblyVersion": "4.8.0.0", + "fileVersion": "4.800.23.55801" + } + }, + "resources": { + "lib/net7.0/cs/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "cs" + }, + "lib/net7.0/de/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "de" + }, + "lib/net7.0/es/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "es" + }, + "lib/net7.0/fr/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "fr" + }, + "lib/net7.0/it/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "it" + }, + "lib/net7.0/ja/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "ja" + }, + "lib/net7.0/ko/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "ko" + }, + "lib/net7.0/pl/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "pl" + }, + "lib/net7.0/pt-BR/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "pt-BR" + }, + "lib/net7.0/ru/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "ru" + }, + "lib/net7.0/tr/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "tr" + }, + "lib/net7.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "zh-Hans" + }, + "lib/net7.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "zh-Hant" + } + } + }, + "Microsoft.CodeAnalysis.CSharp.Workspaces/4.8.0": { + "dependencies": { + "Humanizer.Core": "2.14.1", + "Microsoft.CodeAnalysis.CSharp": "4.8.0", + "Microsoft.CodeAnalysis.Common": "4.8.0", + "Microsoft.CodeAnalysis.Workspaces.Common": "4.8.0" + }, + "runtime": { + "lib/net7.0/Microsoft.CodeAnalysis.CSharp.Workspaces.dll": { + "assemblyVersion": "4.8.0.0", + "fileVersion": "4.800.23.55801" + } + }, + "resources": { + "lib/net7.0/cs/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": { + "locale": "cs" + }, + "lib/net7.0/de/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": { + "locale": "de" + }, + "lib/net7.0/es/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": { + "locale": "es" + }, + "lib/net7.0/fr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": { + "locale": "fr" + }, + "lib/net7.0/it/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": { + "locale": "it" + }, + "lib/net7.0/ja/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": { + "locale": "ja" + }, + "lib/net7.0/ko/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": { + "locale": "ko" + }, + "lib/net7.0/pl/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": { + "locale": "pl" + }, + "lib/net7.0/pt-BR/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": { + "locale": "pt-BR" + }, + "lib/net7.0/ru/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": { + "locale": "ru" + }, + "lib/net7.0/tr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": { + "locale": "tr" + }, + "lib/net7.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": { + "locale": "zh-Hans" + }, + "lib/net7.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": { + "locale": "zh-Hant" + } + } + }, + "Microsoft.CodeAnalysis.Workspaces.Common/4.8.0": { + "dependencies": { + "Humanizer.Core": "2.14.1", + "Microsoft.Bcl.AsyncInterfaces": "7.0.0", + "Microsoft.CodeAnalysis.Common": "4.8.0", + "System.Composition": "7.0.0", + "System.IO.Pipelines": "9.0.0", + "System.Threading.Channels": "7.0.0" + }, + "runtime": { + "lib/net7.0/Microsoft.CodeAnalysis.Workspaces.dll": { + "assemblyVersion": "4.8.0.0", + "fileVersion": "4.800.23.55801" + } + }, + "resources": { + "lib/net7.0/cs/Microsoft.CodeAnalysis.Workspaces.resources.dll": { + "locale": "cs" + }, + "lib/net7.0/de/Microsoft.CodeAnalysis.Workspaces.resources.dll": { + "locale": "de" + }, + "lib/net7.0/es/Microsoft.CodeAnalysis.Workspaces.resources.dll": { + "locale": "es" + }, + "lib/net7.0/fr/Microsoft.CodeAnalysis.Workspaces.resources.dll": { + "locale": "fr" + }, + "lib/net7.0/it/Microsoft.CodeAnalysis.Workspaces.resources.dll": { + "locale": "it" + }, + "lib/net7.0/ja/Microsoft.CodeAnalysis.Workspaces.resources.dll": { + "locale": "ja" + }, + "lib/net7.0/ko/Microsoft.CodeAnalysis.Workspaces.resources.dll": { + "locale": "ko" + }, + "lib/net7.0/pl/Microsoft.CodeAnalysis.Workspaces.resources.dll": { + "locale": "pl" + }, + "lib/net7.0/pt-BR/Microsoft.CodeAnalysis.Workspaces.resources.dll": { + "locale": "pt-BR" + }, + "lib/net7.0/ru/Microsoft.CodeAnalysis.Workspaces.resources.dll": { + "locale": "ru" + }, + "lib/net7.0/tr/Microsoft.CodeAnalysis.Workspaces.resources.dll": { + "locale": "tr" + }, + "lib/net7.0/zh-Hans/Microsoft.CodeAnalysis.Workspaces.resources.dll": { + "locale": "zh-Hans" + }, + "lib/net7.0/zh-Hant/Microsoft.CodeAnalysis.Workspaces.resources.dll": { + "locale": "zh-Hant" + } + } + }, + "Microsoft.CodeAnalysis.Workspaces.MSBuild/4.8.0": { + "dependencies": { + "Microsoft.Build.Framework": "17.8.3", + "Microsoft.CodeAnalysis.Common": "4.8.0", + "Microsoft.CodeAnalysis.Workspaces.Common": "4.8.0", + "System.Text.Json": "9.0.0" + }, + "runtime": { + "lib/net7.0/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.dll": { + "assemblyVersion": "4.8.0.0", + "fileVersion": "4.800.23.55801" + }, + "lib/net7.0/Microsoft.CodeAnalysis.Workspaces.MSBuild.dll": { + "assemblyVersion": "4.8.0.0", + "fileVersion": "4.800.23.55801" + } + }, + "resources": { + "lib/net7.0/cs/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll": { + "locale": "cs" + }, + "lib/net7.0/de/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll": { + "locale": "de" + }, + "lib/net7.0/es/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll": { + "locale": "es" + }, + "lib/net7.0/fr/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll": { + "locale": "fr" + }, + "lib/net7.0/it/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll": { + "locale": "it" + }, + "lib/net7.0/ja/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll": { + "locale": "ja" + }, + "lib/net7.0/ko/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll": { + "locale": "ko" + }, + "lib/net7.0/pl/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll": { + "locale": "pl" + }, + "lib/net7.0/pt-BR/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll": { + "locale": "pt-BR" + }, + "lib/net7.0/ru/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll": { + "locale": "ru" + }, + "lib/net7.0/tr/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll": { + "locale": "tr" + }, + "lib/net7.0/zh-Hans/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll": { + "locale": "zh-Hans" + }, + "lib/net7.0/zh-Hant/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll": { + "locale": "zh-Hant" + } + } + }, + "Microsoft.CSharp/4.5.0": {}, + "Microsoft.Data.SqlClient/5.1.6": { + "dependencies": { + "Azure.Identity": "1.11.4", + "Microsoft.Data.SqlClient.SNI.runtime": "5.1.1", + "Microsoft.Identity.Client": "4.61.3", + "Microsoft.IdentityModel.JsonWebTokens": "6.35.0", + "Microsoft.IdentityModel.Protocols.OpenIdConnect": "6.35.0", + "Microsoft.SqlServer.Server": "1.0.0", + "System.Configuration.ConfigurationManager": "6.0.1", + "System.Diagnostics.DiagnosticSource": "9.0.0", + "System.Runtime.Caching": "6.0.0", + "System.Security.Cryptography.Cng": "5.0.0", + "System.Security.Principal.Windows": "5.0.0", + "System.Text.Encoding.CodePages": "6.0.0", + "System.Text.Encodings.Web": "9.0.0" + }, + "runtime": { + "lib/net6.0/Microsoft.Data.SqlClient.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.16.24240.5" + } + }, + "runtimeTargets": { + "runtimes/unix/lib/net6.0/Microsoft.Data.SqlClient.dll": { + "rid": "unix", + "assetType": "runtime", + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.16.24240.5" + }, + "runtimes/win/lib/net6.0/Microsoft.Data.SqlClient.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.16.24240.5" + } + } + }, + "Microsoft.Data.SqlClient.SNI.runtime/5.1.1": { + "runtimeTargets": { + "runtimes/win-arm/native/Microsoft.Data.SqlClient.SNI.dll": { + "rid": "win-arm", + "assetType": "native", + "fileVersion": "5.1.1.0" + }, + "runtimes/win-arm64/native/Microsoft.Data.SqlClient.SNI.dll": { + "rid": "win-arm64", + "assetType": "native", + "fileVersion": "5.1.1.0" + }, + "runtimes/win-x64/native/Microsoft.Data.SqlClient.SNI.dll": { + "rid": "win-x64", + "assetType": "native", + "fileVersion": "5.1.1.0" + }, + "runtimes/win-x86/native/Microsoft.Data.SqlClient.SNI.dll": { + "rid": "win-x86", + "assetType": "native", + "fileVersion": "5.1.1.0" + } + } + }, + "Microsoft.EntityFrameworkCore/9.0.0": { + "dependencies": { + "Microsoft.EntityFrameworkCore.Abstractions": "9.0.0", + "Microsoft.EntityFrameworkCore.Analyzers": "9.0.0", + "Microsoft.Extensions.Caching.Memory": "9.0.0", + "Microsoft.Extensions.Logging": "9.0.0" + }, + "runtime": { + "lib/net8.0/Microsoft.EntityFrameworkCore.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.24.52902" + } + } + }, + "Microsoft.EntityFrameworkCore.Abstractions/9.0.0": { + "runtime": { + "lib/net8.0/Microsoft.EntityFrameworkCore.Abstractions.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.24.52902" + } + } + }, + "Microsoft.EntityFrameworkCore.Analyzers/9.0.0": {}, + "Microsoft.EntityFrameworkCore.Design/9.0.0": { + "dependencies": { + "Humanizer.Core": "2.14.1", + "Microsoft.Build.Framework": "17.8.3", + "Microsoft.Build.Locator": "1.7.8", + "Microsoft.CodeAnalysis.CSharp": "4.8.0", + "Microsoft.CodeAnalysis.CSharp.Workspaces": "4.8.0", + "Microsoft.CodeAnalysis.Workspaces.MSBuild": "4.8.0", + "Microsoft.EntityFrameworkCore.Relational": "9.0.0", + "Microsoft.Extensions.Caching.Memory": "9.0.0", + "Microsoft.Extensions.Configuration.Abstractions": "9.0.0", + "Microsoft.Extensions.DependencyModel": "9.0.0", + "Microsoft.Extensions.Logging": "9.0.0", + "Mono.TextTemplating": "3.0.0", + "System.Text.Json": "9.0.0" + }, + "runtime": { + "lib/net8.0/Microsoft.EntityFrameworkCore.Design.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.24.52902" + } + } + }, + "Microsoft.EntityFrameworkCore.Relational/9.0.0": { + "dependencies": { + "Microsoft.EntityFrameworkCore": "9.0.0", + "Microsoft.Extensions.Caching.Memory": "9.0.0", + "Microsoft.Extensions.Configuration.Abstractions": "9.0.0", + "Microsoft.Extensions.Logging": "9.0.0" + }, + "runtime": { + "lib/net8.0/Microsoft.EntityFrameworkCore.Relational.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.24.52902" + } + } + }, + "Microsoft.EntityFrameworkCore.SqlServer/9.0.0": { + "dependencies": { + "Microsoft.Data.SqlClient": "5.1.6", + "Microsoft.EntityFrameworkCore.Relational": "9.0.0", + "Microsoft.Extensions.Caching.Memory": "9.0.0", + "Microsoft.Extensions.Configuration.Abstractions": "9.0.0", + "Microsoft.Extensions.Logging": "9.0.0", + "System.Formats.Asn1": "9.0.0", + "System.Text.Json": "9.0.0" + }, + "runtime": { + "lib/net8.0/Microsoft.EntityFrameworkCore.SqlServer.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.24.52902" + } + } + }, + "Microsoft.Extensions.Caching.Abstractions/9.0.0": { + "dependencies": { + "Microsoft.Extensions.Primitives": "9.0.0" + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Caching.Abstractions.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.24.52809" + } + } + }, + "Microsoft.Extensions.Caching.Memory/9.0.0": { + "dependencies": { + "Microsoft.Extensions.Caching.Abstractions": "9.0.0", + "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.0", + "Microsoft.Extensions.Logging.Abstractions": "9.0.0", + "Microsoft.Extensions.Options": "9.0.0", + "Microsoft.Extensions.Primitives": "9.0.0" + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Caching.Memory.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.24.52809" + } + } + }, + "Microsoft.Extensions.Configuration.Abstractions/9.0.0": { + "dependencies": { + "Microsoft.Extensions.Primitives": "9.0.0" + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Configuration.Abstractions.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.24.52809" + } + } + }, + "Microsoft.Extensions.DependencyInjection/9.0.0": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.0" + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.DependencyInjection.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.24.52809" + } + } + }, + "Microsoft.Extensions.DependencyInjection.Abstractions/9.0.0": { + "runtime": { + "lib/net8.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.24.52809" + } + } + }, + "Microsoft.Extensions.DependencyModel/9.0.0": { + "dependencies": { + "System.Text.Encodings.Web": "9.0.0", + "System.Text.Json": "9.0.0" + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.DependencyModel.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.24.52809" + } + } + }, + "Microsoft.Extensions.Logging/9.0.0": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection": "9.0.0", + "Microsoft.Extensions.Logging.Abstractions": "9.0.0", + "Microsoft.Extensions.Options": "9.0.0" + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Logging.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.24.52809" + } + } + }, + "Microsoft.Extensions.Logging.Abstractions/9.0.0": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.0", + "System.Diagnostics.DiagnosticSource": "9.0.0" + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Logging.Abstractions.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.24.52809" + } + } + }, + "Microsoft.Extensions.Options/9.0.0": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.0", + "Microsoft.Extensions.Primitives": "9.0.0" + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Options.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.24.52809" + } + } + }, + "Microsoft.Extensions.Primitives/9.0.0": { + "runtime": { + "lib/net8.0/Microsoft.Extensions.Primitives.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.24.52809" + } + } + }, + "Microsoft.Identity.Client/4.61.3": { + "dependencies": { + "Microsoft.IdentityModel.Abstractions": "6.35.0", + "System.Diagnostics.DiagnosticSource": "9.0.0" + }, + "runtime": { + "lib/net6.0/Microsoft.Identity.Client.dll": { + "assemblyVersion": "4.61.3.0", + "fileVersion": "4.61.3.0" + } + } + }, + "Microsoft.Identity.Client.Extensions.Msal/4.61.3": { + "dependencies": { + "Microsoft.Identity.Client": "4.61.3", + "System.Security.Cryptography.ProtectedData": "6.0.0" + }, + "runtime": { + "lib/net6.0/Microsoft.Identity.Client.Extensions.Msal.dll": { + "assemblyVersion": "4.61.3.0", + "fileVersion": "4.61.3.0" + } + } + }, + "Microsoft.IdentityModel.Abstractions/6.35.0": { + "runtime": { + "lib/net6.0/Microsoft.IdentityModel.Abstractions.dll": { + "assemblyVersion": "6.35.0.0", + "fileVersion": "6.35.0.41201" + } + } + }, + "Microsoft.IdentityModel.JsonWebTokens/6.35.0": { + "dependencies": { + "Microsoft.IdentityModel.Tokens": "6.35.0", + "System.Text.Encoding": "4.3.0", + "System.Text.Encodings.Web": "9.0.0", + "System.Text.Json": "9.0.0" + }, + "runtime": { + "lib/net6.0/Microsoft.IdentityModel.JsonWebTokens.dll": { + "assemblyVersion": "6.35.0.0", + "fileVersion": "6.35.0.41201" + } + } + }, + "Microsoft.IdentityModel.Logging/6.35.0": { + "dependencies": { + "Microsoft.IdentityModel.Abstractions": "6.35.0" + }, + "runtime": { + "lib/net6.0/Microsoft.IdentityModel.Logging.dll": { + "assemblyVersion": "6.35.0.0", + "fileVersion": "6.35.0.41201" + } + } + }, + "Microsoft.IdentityModel.Protocols/6.35.0": { + "dependencies": { + "Microsoft.IdentityModel.Logging": "6.35.0", + "Microsoft.IdentityModel.Tokens": "6.35.0" + }, + "runtime": { + "lib/net6.0/Microsoft.IdentityModel.Protocols.dll": { + "assemblyVersion": "6.35.0.0", + "fileVersion": "6.35.0.41201" + } + } + }, + "Microsoft.IdentityModel.Protocols.OpenIdConnect/6.35.0": { + "dependencies": { + "Microsoft.IdentityModel.Protocols": "6.35.0", + "System.IdentityModel.Tokens.Jwt": "6.35.0" + }, + "runtime": { + "lib/net6.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll": { + "assemblyVersion": "6.35.0.0", + "fileVersion": "6.35.0.41201" + } + } + }, + "Microsoft.IdentityModel.Tokens/6.35.0": { + "dependencies": { + "Microsoft.CSharp": "4.5.0", + "Microsoft.IdentityModel.Logging": "6.35.0", + "System.Security.Cryptography.Cng": "5.0.0" + }, + "runtime": { + "lib/net6.0/Microsoft.IdentityModel.Tokens.dll": { + "assemblyVersion": "6.35.0.0", + "fileVersion": "6.35.0.41201" + } + } + }, + "Microsoft.NETCore.Platforms/1.1.0": {}, + "Microsoft.NETCore.Targets/1.1.0": {}, + "Microsoft.SqlServer.Server/1.0.0": { + "runtime": { + "lib/netstandard2.0/Microsoft.SqlServer.Server.dll": { + "assemblyVersion": "1.0.0.0", + "fileVersion": "1.0.0.0" + } + } + }, + "Microsoft.Win32.SystemEvents/6.0.0": { + "runtime": { + "lib/net6.0/Microsoft.Win32.SystemEvents.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + } + }, + "runtimeTargets": { + "runtimes/win/lib/net6.0/Microsoft.Win32.SystemEvents.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + } + } + }, + "Mono.TextTemplating/3.0.0": { + "dependencies": { + "System.CodeDom": "6.0.0" + }, + "runtime": { + "lib/net6.0/Mono.TextTemplating.dll": { + "assemblyVersion": "3.0.0.0", + "fileVersion": "3.0.0.1" + } + } + }, + "System.ClientModel/1.0.0": { + "dependencies": { + "System.Memory.Data": "1.0.2", + "System.Text.Json": "9.0.0" + }, + "runtime": { + "lib/net6.0/System.ClientModel.dll": { + "assemblyVersion": "1.0.0.0", + "fileVersion": "1.0.24.5302" + } + } + }, + "System.CodeDom/6.0.0": { + "runtime": { + "lib/net6.0/System.CodeDom.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + } + } + }, + "System.Collections.Immutable/7.0.0": {}, + "System.Composition/7.0.0": { + "dependencies": { + "System.Composition.AttributedModel": "7.0.0", + "System.Composition.Convention": "7.0.0", + "System.Composition.Hosting": "7.0.0", + "System.Composition.Runtime": "7.0.0", + "System.Composition.TypedParts": "7.0.0" + } + }, + "System.Composition.AttributedModel/7.0.0": { + "runtime": { + "lib/net7.0/System.Composition.AttributedModel.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.22.51805" + } + } + }, + "System.Composition.Convention/7.0.0": { + "dependencies": { + "System.Composition.AttributedModel": "7.0.0" + }, + "runtime": { + "lib/net7.0/System.Composition.Convention.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.22.51805" + } + } + }, + "System.Composition.Hosting/7.0.0": { + "dependencies": { + "System.Composition.Runtime": "7.0.0" + }, + "runtime": { + "lib/net7.0/System.Composition.Hosting.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.22.51805" + } + } + }, + "System.Composition.Runtime/7.0.0": { + "runtime": { + "lib/net7.0/System.Composition.Runtime.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.22.51805" + } + } + }, + "System.Composition.TypedParts/7.0.0": { + "dependencies": { + "System.Composition.AttributedModel": "7.0.0", + "System.Composition.Hosting": "7.0.0", + "System.Composition.Runtime": "7.0.0" + }, + "runtime": { + "lib/net7.0/System.Composition.TypedParts.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.22.51805" + } + } + }, + "System.Configuration.ConfigurationManager/6.0.1": { + "dependencies": { + "System.Security.Cryptography.ProtectedData": "6.0.0", + "System.Security.Permissions": "6.0.0" + }, + "runtime": { + "lib/net6.0/System.Configuration.ConfigurationManager.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.922.41905" + } + } + }, + "System.Diagnostics.DiagnosticSource/9.0.0": { + "runtime": { + "lib/net8.0/System.Diagnostics.DiagnosticSource.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.24.52809" + } + } + }, + "System.Drawing.Common/6.0.0": { + "dependencies": { + "Microsoft.Win32.SystemEvents": "6.0.0" + }, + "runtime": { + "lib/net6.0/System.Drawing.Common.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + } + }, + "runtimeTargets": { + "runtimes/unix/lib/net6.0/System.Drawing.Common.dll": { + "rid": "unix", + "assetType": "runtime", + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + }, + "runtimes/win/lib/net6.0/System.Drawing.Common.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + } + } + }, + "System.Formats.Asn1/9.0.0": { + "runtime": { + "lib/net8.0/System.Formats.Asn1.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.24.52809" + } + } + }, + "System.IdentityModel.Tokens.Jwt/6.35.0": { + "dependencies": { + "Microsoft.IdentityModel.JsonWebTokens": "6.35.0", + "Microsoft.IdentityModel.Tokens": "6.35.0" + }, + "runtime": { + "lib/net6.0/System.IdentityModel.Tokens.Jwt.dll": { + "assemblyVersion": "6.35.0.0", + "fileVersion": "6.35.0.41201" + } + } + }, + "System.IO.Pipelines/9.0.0": { + "runtime": { + "lib/net8.0/System.IO.Pipelines.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.24.52809" + } + } + }, + "System.Memory/4.5.4": {}, + "System.Memory.Data/1.0.2": { + "dependencies": { + "System.Text.Encodings.Web": "9.0.0", + "System.Text.Json": "9.0.0" + }, + "runtime": { + "lib/netstandard2.0/System.Memory.Data.dll": { + "assemblyVersion": "1.0.2.0", + "fileVersion": "1.0.221.20802" + } + } + }, + "System.Numerics.Vectors/4.5.0": {}, + "System.Reflection.Metadata/7.0.0": { + "dependencies": { + "System.Collections.Immutable": "7.0.0" + } + }, + "System.Runtime/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0" + } + }, + "System.Runtime.Caching/6.0.0": { + "dependencies": { + "System.Configuration.ConfigurationManager": "6.0.1" + }, + "runtime": { + "lib/net6.0/System.Runtime.Caching.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "6.0.21.52210" + } + }, + "runtimeTargets": { + "runtimes/win/lib/net6.0/System.Runtime.Caching.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "4.0.0.0", + "fileVersion": "6.0.21.52210" + } + } + }, + "System.Runtime.CompilerServices.Unsafe/6.0.0": {}, + "System.Security.AccessControl/6.0.0": {}, + "System.Security.Cryptography.Cng/5.0.0": { + "dependencies": { + "System.Formats.Asn1": "9.0.0" + } + }, + "System.Security.Cryptography.ProtectedData/6.0.0": { + "runtime": { + "lib/net6.0/System.Security.Cryptography.ProtectedData.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + } + }, + "runtimeTargets": { + "runtimes/win/lib/net6.0/System.Security.Cryptography.ProtectedData.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + } + } + }, + "System.Security.Permissions/6.0.0": { + "dependencies": { + "System.Security.AccessControl": "6.0.0", + "System.Windows.Extensions": "6.0.0" + }, + "runtime": { + "lib/net6.0/System.Security.Permissions.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + } + } + }, + "System.Security.Principal.Windows/5.0.0": {}, + "System.Text.Encoding/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + } + }, + "System.Text.Encoding.CodePages/6.0.0": { + "dependencies": { + "System.Runtime.CompilerServices.Unsafe": "6.0.0" + } + }, + "System.Text.Encodings.Web/9.0.0": { + "runtime": { + "lib/net8.0/System.Text.Encodings.Web.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.24.52809" + } + }, + "runtimeTargets": { + "runtimes/browser/lib/net8.0/System.Text.Encodings.Web.dll": { + "rid": "browser", + "assetType": "runtime", + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.24.52809" + } + } + }, + "System.Text.Json/9.0.0": { + "dependencies": { + "System.IO.Pipelines": "9.0.0", + "System.Text.Encodings.Web": "9.0.0" + }, + "runtime": { + "lib/net8.0/System.Text.Json.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.24.52809" + } + } + }, + "System.Threading.Channels/7.0.0": {}, + "System.Threading.Tasks.Extensions/4.5.4": {}, + "System.Windows.Extensions/6.0.0": { + "dependencies": { + "System.Drawing.Common": "6.0.0" + }, + "runtime": { + "lib/net6.0/System.Windows.Extensions.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + } + }, + "runtimeTargets": { + "runtimes/win/lib/net6.0/System.Windows.Extensions.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + } + } } } }, @@ -18,6 +1039,552 @@ "type": "project", "serviceable": false, "sha512": "" + }, + "Azure.Core/1.38.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-IuEgCoVA0ef7E4pQtpC3+TkPbzaoQfa77HlfJDmfuaJUCVJmn7fT0izamZiryW5sYUFKizsftIxMkXKbgIcPMQ==", + "path": "azure.core/1.38.0", + "hashPath": "azure.core.1.38.0.nupkg.sha512" + }, + "Azure.Identity/1.11.4": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Sf4BoE6Q3jTgFkgBkx7qztYOFELBCo+wQgpYDwal/qJ1unBH73ywPztIJKXBXORRzAeNijsuxhk94h0TIMvfYg==", + "path": "azure.identity/1.11.4", + "hashPath": "azure.identity.1.11.4.nupkg.sha512" + }, + "Humanizer.Core/2.14.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-lQKvtaTDOXnoVJ20ibTuSIOf2i0uO0MPbDhd1jm238I+U/2ZnRENj0cktKZhtchBMtCUSRQ5v4xBCUbKNmyVMw==", + "path": "humanizer.core/2.14.1", + "hashPath": "humanizer.core.2.14.1.nupkg.sha512" + }, + "Microsoft.Bcl.AsyncInterfaces/7.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-3aeMZ1N0lJoSyzqiP03hqemtb1BijhsJADdobn/4nsMJ8V1H+CrpuduUe4hlRdx+ikBQju1VGjMD1GJ3Sk05Eg==", + "path": "microsoft.bcl.asyncinterfaces/7.0.0", + "hashPath": "microsoft.bcl.asyncinterfaces.7.0.0.nupkg.sha512" + }, + "Microsoft.Build.Framework/17.8.3": { + "type": "package", + "serviceable": true, + "sha512": "sha512-NrQZJW8TlKVPx72yltGb8SVz3P5mNRk9fNiD/ao8jRSk48WqIIdCn99q4IjlVmPcruuQ+yLdjNQLL8Rb4c916g==", + "path": "microsoft.build.framework/17.8.3", + "hashPath": "microsoft.build.framework.17.8.3.nupkg.sha512" + }, + "Microsoft.Build.Locator/1.7.8": { + "type": "package", + "serviceable": true, + "sha512": "sha512-sPy10x527Ph16S2u0yGME4S6ohBKJ69WfjeGG/bvELYeZVmJdKjxgnlL8cJJJLGV/cZIRqSfB12UDB8ICakOog==", + "path": "microsoft.build.locator/1.7.8", + "hashPath": "microsoft.build.locator.1.7.8.nupkg.sha512" + }, + "Microsoft.CodeAnalysis.Analyzers/3.3.4": { + "type": "package", + "serviceable": true, + "sha512": "sha512-AxkxcPR+rheX0SmvpLVIGLhOUXAKG56a64kV9VQZ4y9gR9ZmPXnqZvHJnmwLSwzrEP6junUF11vuc+aqo5r68g==", + "path": "microsoft.codeanalysis.analyzers/3.3.4", + "hashPath": "microsoft.codeanalysis.analyzers.3.3.4.nupkg.sha512" + }, + "Microsoft.CodeAnalysis.Common/4.8.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-/jR+e/9aT+BApoQJABlVCKnnggGQbvGh7BKq2/wI1LamxC+LbzhcLj4Vj7gXCofl1n4E521YfF9w0WcASGg/KA==", + "path": "microsoft.codeanalysis.common/4.8.0", + "hashPath": "microsoft.codeanalysis.common.4.8.0.nupkg.sha512" + }, + "Microsoft.CodeAnalysis.CSharp/4.8.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-+3+qfdb/aaGD8PZRCrsdobbzGs1m9u119SkkJt8e/mk3xLJz/udLtS2T6nY27OTXxBBw10HzAbC8Z9w08VyP/g==", + "path": "microsoft.codeanalysis.csharp/4.8.0", + "hashPath": "microsoft.codeanalysis.csharp.4.8.0.nupkg.sha512" + }, + "Microsoft.CodeAnalysis.CSharp.Workspaces/4.8.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-3amm4tq4Lo8/BGvg9p3BJh3S9nKq2wqCXfS7138i69TUpo/bD+XvD0hNurpEBtcNZhi1FyutiomKJqVF39ugYA==", + "path": "microsoft.codeanalysis.csharp.workspaces/4.8.0", + "hashPath": "microsoft.codeanalysis.csharp.workspaces.4.8.0.nupkg.sha512" + }, + "Microsoft.CodeAnalysis.Workspaces.Common/4.8.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-LXyV+MJKsKRu3FGJA3OmSk40OUIa/dQCFLOnm5X8MNcujx7hzGu8o+zjXlb/cy5xUdZK2UKYb9YaQ2E8m9QehQ==", + "path": "microsoft.codeanalysis.workspaces.common/4.8.0", + "hashPath": "microsoft.codeanalysis.workspaces.common.4.8.0.nupkg.sha512" + }, + "Microsoft.CodeAnalysis.Workspaces.MSBuild/4.8.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-IEYreI82QZKklp54yPHxZNG9EKSK6nHEkeuf+0Asie9llgS1gp0V1hw7ODG+QyoB7MuAnNQHmeV1Per/ECpv6A==", + "path": "microsoft.codeanalysis.workspaces.msbuild/4.8.0", + "hashPath": "microsoft.codeanalysis.workspaces.msbuild.4.8.0.nupkg.sha512" + }, + "Microsoft.CSharp/4.5.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-kaj6Wb4qoMuH3HySFJhxwQfe8R/sJsNJnANrvv8WdFPMoNbKY5htfNscv+LHCu5ipz+49m2e+WQXpLXr9XYemQ==", + "path": "microsoft.csharp/4.5.0", + "hashPath": "microsoft.csharp.4.5.0.nupkg.sha512" + }, + "Microsoft.Data.SqlClient/5.1.6": { + "type": "package", + "serviceable": true, + "sha512": "sha512-+pz7gIPh5ydsBcQvivt4R98PwJXer86fyQBBToIBLxZ5kuhW4N13Ijz87s9WpuPtF1vh4JesYCgpDPAOgkMhdg==", + "path": "microsoft.data.sqlclient/5.1.6", + "hashPath": "microsoft.data.sqlclient.5.1.6.nupkg.sha512" + }, + "Microsoft.Data.SqlClient.SNI.runtime/5.1.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-wNGM5ZTQCa2blc9ikXQouybGiyMd6IHPVJvAlBEPtr6JepZEOYeDxGyprYvFVeOxlCXs7avridZQ0nYkHzQWCQ==", + "path": "microsoft.data.sqlclient.sni.runtime/5.1.1", + "hashPath": "microsoft.data.sqlclient.sni.runtime.5.1.1.nupkg.sha512" + }, + "Microsoft.EntityFrameworkCore/9.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-wpG+nfnfDAw87R3ovAsUmjr3MZ4tYXf6bFqEPVAIKE6IfPml3DS//iX0DBnf8kWn5ZHSO5oi1m4d/Jf+1LifJQ==", + "path": "microsoft.entityframeworkcore/9.0.0", + "hashPath": "microsoft.entityframeworkcore.9.0.0.nupkg.sha512" + }, + "Microsoft.EntityFrameworkCore.Abstractions/9.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-fnmifFL8KaA4ZNLCVgfjCWhZUFxkrDInx5hR4qG7Q8IEaSiy/6VOSRFyx55oH7MV4y7wM3J3EE90nSpcVBI44Q==", + "path": "microsoft.entityframeworkcore.abstractions/9.0.0", + "hashPath": "microsoft.entityframeworkcore.abstractions.9.0.0.nupkg.sha512" + }, + "Microsoft.EntityFrameworkCore.Analyzers/9.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Qje+DzXJOKiXF72SL0XxNlDtTkvWWvmwknuZtFahY5hIQpRKO59qnGuERIQ3qlzuq5x4bAJ8WMbgU5DLhBgeOQ==", + "path": "microsoft.entityframeworkcore.analyzers/9.0.0", + "hashPath": "microsoft.entityframeworkcore.analyzers.9.0.0.nupkg.sha512" + }, + "Microsoft.EntityFrameworkCore.Design/9.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Pqo8I+yHJ3VQrAoY0hiSncf+5P7gN/RkNilK5e+/K/yKh+yAWxdUAI6t0TG26a9VPlCa9FhyklzyFvRyj3YG9A==", + "path": "microsoft.entityframeworkcore.design/9.0.0", + "hashPath": "microsoft.entityframeworkcore.design.9.0.0.nupkg.sha512" + }, + "Microsoft.EntityFrameworkCore.Relational/9.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-j+msw6fWgAE9M3Q/5B9Uhv7pdAdAQUvFPJAiBJmoy+OXvehVbfbCE8ftMAa51Uo2ZeiqVnHShhnv4Y4UJJmUzA==", + "path": "microsoft.entityframeworkcore.relational/9.0.0", + "hashPath": "microsoft.entityframeworkcore.relational.9.0.0.nupkg.sha512" + }, + "Microsoft.EntityFrameworkCore.SqlServer/9.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-3Y7/3kgz6C5kRFeELLZ5VeIeBlxB31x/ywscbN4r1JqTXIy8WWGo0CqzuOxBy4UzaTzpifElAZvv4fyD3ZQK5w==", + "path": "microsoft.entityframeworkcore.sqlserver/9.0.0", + "hashPath": "microsoft.entityframeworkcore.sqlserver.9.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Caching.Abstractions/9.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-FPWZAa9c0H4dvOj351iR1jkUIs4u9ykL4Bm592yhjDyO5lCoWd+TMAHx2EMbarzUvCvgjWjJIoC6//Q9kH6YhA==", + "path": "microsoft.extensions.caching.abstractions/9.0.0", + "hashPath": "microsoft.extensions.caching.abstractions.9.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Caching.Memory/9.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-zbnPX/JQ0pETRSUG9fNPBvpIq42Aufvs15gGYyNIMhCun9yhmWihz0WgsI7bSDPjxWTKBf8oX/zv6v2uZ3W9OQ==", + "path": "microsoft.extensions.caching.memory/9.0.0", + "hashPath": "microsoft.extensions.caching.memory.9.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Configuration.Abstractions/9.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-lqvd7W3FGKUO1+ZoUEMaZ5XDJeWvjpy2/M/ptCGz3tXLD4HWVaSzjufsAsjemasBEg+2SxXVtYVvGt5r2nKDlg==", + "path": "microsoft.extensions.configuration.abstractions/9.0.0", + "hashPath": "microsoft.extensions.configuration.abstractions.9.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.DependencyInjection/9.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-MCPrg7v3QgNMr0vX4vzRXvkNGgLg8vKWX0nKCWUxu2uPyMsaRgiRc1tHBnbTcfJMhMKj2slE/j2M9oGkd25DNw==", + "path": "microsoft.extensions.dependencyinjection/9.0.0", + "hashPath": "microsoft.extensions.dependencyinjection.9.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.DependencyInjection.Abstractions/9.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-+6f2qv2a3dLwd5w6JanPIPs47CxRbnk+ZocMJUhv9NxP88VlOcJYZs9jY+MYSjxvady08bUZn6qgiNh7DadGgg==", + "path": "microsoft.extensions.dependencyinjection.abstractions/9.0.0", + "hashPath": "microsoft.extensions.dependencyinjection.abstractions.9.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.DependencyModel/9.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-saxr2XzwgDU77LaQfYFXmddEDRUKHF4DaGMZkNB3qjdVSZlax3//dGJagJkKrGMIPNZs2jVFXITyCCR6UHJNdA==", + "path": "microsoft.extensions.dependencymodel/9.0.0", + "hashPath": "microsoft.extensions.dependencymodel.9.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Logging/9.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-crjWyORoug0kK7RSNJBTeSE6VX8IQgLf3nUpTB9m62bPXp/tzbnOsnbe8TXEG0AASNaKZddnpHKw7fET8E++Pg==", + "path": "microsoft.extensions.logging/9.0.0", + "hashPath": "microsoft.extensions.logging.9.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Logging.Abstractions/9.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-g0UfujELzlLbHoVG8kPKVBaW470Ewi+jnptGS9KUi6jcb+k2StujtK3m26DFSGGwQ/+bVgZfsWqNzlP6YOejvw==", + "path": "microsoft.extensions.logging.abstractions/9.0.0", + "hashPath": "microsoft.extensions.logging.abstractions.9.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Options/9.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-y2146b3jrPI3Q0lokKXdKLpmXqakYbDIPDV6r3M8SqvSf45WwOTzkyfDpxnZXJsJQEpAsAqjUq5Pu8RCJMjubg==", + "path": "microsoft.extensions.options/9.0.0", + "hashPath": "microsoft.extensions.options.9.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Primitives/9.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-N3qEBzmLMYiASUlKxxFIISP4AiwuPTHF5uCh+2CWSwwzAJiIYx0kBJsS30cp1nvhSySFAVi30jecD307jV+8Kg==", + "path": "microsoft.extensions.primitives/9.0.0", + "hashPath": "microsoft.extensions.primitives.9.0.0.nupkg.sha512" + }, + "Microsoft.Identity.Client/4.61.3": { + "type": "package", + "serviceable": true, + "sha512": "sha512-naJo/Qm35Caaoxp5utcw+R8eU8ZtLz2ALh8S+gkekOYQ1oazfCQMWVT4NJ/FnHzdIJlm8dMz0oMpMGCabx5odA==", + "path": "microsoft.identity.client/4.61.3", + "hashPath": "microsoft.identity.client.4.61.3.nupkg.sha512" + }, + "Microsoft.Identity.Client.Extensions.Msal/4.61.3": { + "type": "package", + "serviceable": true, + "sha512": "sha512-PWnJcznrSGr25MN8ajlc2XIDW4zCFu0U6FkpaNLEWLgd1NgFCp5uDY3mqLDgM8zCN8hqj8yo5wHYfLB2HjcdGw==", + "path": "microsoft.identity.client.extensions.msal/4.61.3", + "hashPath": "microsoft.identity.client.extensions.msal.4.61.3.nupkg.sha512" + }, + "Microsoft.IdentityModel.Abstractions/6.35.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-xuR8E4Rd96M41CnUSCiOJ2DBh+z+zQSmyrYHdYhD6K4fXBcQGVnRCFQ0efROUYpP+p0zC1BLKr0JRpVuujTZSg==", + "path": "microsoft.identitymodel.abstractions/6.35.0", + "hashPath": "microsoft.identitymodel.abstractions.6.35.0.nupkg.sha512" + }, + "Microsoft.IdentityModel.JsonWebTokens/6.35.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-9wxai3hKgZUb4/NjdRKfQd0QJvtXKDlvmGMYACbEC8DFaicMFCFhQFZq9ZET1kJLwZahf2lfY5Gtcpsx8zYzbg==", + "path": "microsoft.identitymodel.jsonwebtokens/6.35.0", + "hashPath": "microsoft.identitymodel.jsonwebtokens.6.35.0.nupkg.sha512" + }, + "Microsoft.IdentityModel.Logging/6.35.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-jePrSfGAmqT81JDCNSY+fxVWoGuJKt9e6eJ+vT7+quVS55nWl//jGjUQn4eFtVKt4rt5dXaleZdHRB9J9AJZ7Q==", + "path": "microsoft.identitymodel.logging/6.35.0", + "hashPath": "microsoft.identitymodel.logging.6.35.0.nupkg.sha512" + }, + "Microsoft.IdentityModel.Protocols/6.35.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-BPQhlDzdFvv1PzaUxNSk+VEPwezlDEVADIKmyxubw7IiELK18uJ06RQ9QKKkds30XI+gDu9n8j24XQ8w7fjWcg==", + "path": "microsoft.identitymodel.protocols/6.35.0", + "hashPath": "microsoft.identitymodel.protocols.6.35.0.nupkg.sha512" + }, + "Microsoft.IdentityModel.Protocols.OpenIdConnect/6.35.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-LMtVqnECCCdSmyFoCOxIE5tXQqkOLrvGrL7OxHg41DIm1bpWtaCdGyVcTAfOQpJXvzND9zUKIN/lhngPkYR8vg==", + "path": "microsoft.identitymodel.protocols.openidconnect/6.35.0", + "hashPath": "microsoft.identitymodel.protocols.openidconnect.6.35.0.nupkg.sha512" + }, + "Microsoft.IdentityModel.Tokens/6.35.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-RN7lvp7s3Boucg1NaNAbqDbxtlLj5Qeb+4uSS1TeK5FSBVM40P4DKaTKChT43sHyKfh7V0zkrMph6DdHvyA4bg==", + "path": "microsoft.identitymodel.tokens/6.35.0", + "hashPath": "microsoft.identitymodel.tokens.6.35.0.nupkg.sha512" + }, + "Microsoft.NETCore.Platforms/1.1.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-kz0PEW2lhqygehI/d6XsPCQzD7ff7gUJaVGPVETX611eadGsA3A877GdSlU0LRVMCTH/+P3o2iDTak+S08V2+A==", + "path": "microsoft.netcore.platforms/1.1.0", + "hashPath": "microsoft.netcore.platforms.1.1.0.nupkg.sha512" + }, + "Microsoft.NETCore.Targets/1.1.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-aOZA3BWfz9RXjpzt0sRJJMjAscAUm3Hoa4UWAfceV9UTYxgwZ1lZt5nO2myFf+/jetYQo4uTP7zS8sJY67BBxg==", + "path": "microsoft.netcore.targets/1.1.0", + "hashPath": "microsoft.netcore.targets.1.1.0.nupkg.sha512" + }, + "Microsoft.SqlServer.Server/1.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-N4KeF3cpcm1PUHym1RmakkzfkEv3GRMyofVv40uXsQhCQeglr2OHNcUk2WOG51AKpGO8ynGpo9M/kFXSzghwug==", + "path": "microsoft.sqlserver.server/1.0.0", + "hashPath": "microsoft.sqlserver.server.1.0.0.nupkg.sha512" + }, + "Microsoft.Win32.SystemEvents/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-hqTM5628jSsQiv+HGpiq3WKBl2c8v1KZfby2J6Pr7pEPlK9waPdgEO6b8A/+/xn/yZ9ulv8HuqK71ONy2tg67A==", + "path": "microsoft.win32.systemevents/6.0.0", + "hashPath": "microsoft.win32.systemevents.6.0.0.nupkg.sha512" + }, + "Mono.TextTemplating/3.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-YqueG52R/Xej4VVbKuRIodjiAhV0HR/XVbLbNrJhCZnzjnSjgMJ/dCdV0akQQxavX6hp/LC6rqLGLcXeQYU7XA==", + "path": "mono.texttemplating/3.0.0", + "hashPath": "mono.texttemplating.3.0.0.nupkg.sha512" + }, + "System.ClientModel/1.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-I3CVkvxeqFYjIVEP59DnjbeoGNfo/+SZrCLpRz2v/g0gpCHaEMPtWSY0s9k/7jR1rAsLNg2z2u1JRB76tPjnIw==", + "path": "system.clientmodel/1.0.0", + "hashPath": "system.clientmodel.1.0.0.nupkg.sha512" + }, + "System.CodeDom/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-CPc6tWO1LAer3IzfZufDBRL+UZQcj5uS207NHALQzP84Vp/z6wF0Aa0YZImOQY8iStY0A2zI/e3ihKNPfUm8XA==", + "path": "system.codedom/6.0.0", + "hashPath": "system.codedom.6.0.0.nupkg.sha512" + }, + "System.Collections.Immutable/7.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-dQPcs0U1IKnBdRDBkrCTi1FoajSTBzLcVTpjO4MBCMC7f4pDOIPzgBoX8JjG7X6uZRJ8EBxsi8+DR1JuwjnzOQ==", + "path": "system.collections.immutable/7.0.0", + "hashPath": "system.collections.immutable.7.0.0.nupkg.sha512" + }, + "System.Composition/7.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-tRwgcAkDd85O8Aq6zHDANzQaq380cek9lbMg5Qma46u5BZXq/G+XvIYmu+UI+BIIZ9zssXLYrkTykEqxxvhcmg==", + "path": "system.composition/7.0.0", + "hashPath": "system.composition.7.0.0.nupkg.sha512" + }, + "System.Composition.AttributedModel/7.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-2QzClqjElKxgI1jK1Jztnq44/8DmSuTSGGahXqQ4TdEV0h9s2KikQZIgcEqVzR7OuWDFPGLHIprBJGQEPr8fAQ==", + "path": "system.composition.attributedmodel/7.0.0", + "hashPath": "system.composition.attributedmodel.7.0.0.nupkg.sha512" + }, + "System.Composition.Convention/7.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-IMhTlpCs4HmlD8B+J8/kWfwX7vrBBOs6xyjSTzBlYSs7W4OET4tlkR/Sg9NG8jkdJH9Mymq0qGdYS1VPqRTBnQ==", + "path": "system.composition.convention/7.0.0", + "hashPath": "system.composition.convention.7.0.0.nupkg.sha512" + }, + "System.Composition.Hosting/7.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-eB6gwN9S+54jCTBJ5bpwMOVerKeUfGGTYCzz3QgDr1P55Gg/Wb27ShfPIhLMjmZ3MoAKu8uUSv6fcCdYJTN7Bg==", + "path": "system.composition.hosting/7.0.0", + "hashPath": "system.composition.hosting.7.0.0.nupkg.sha512" + }, + "System.Composition.Runtime/7.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-aZJ1Zr5Txe925rbo4742XifEyW0MIni1eiUebmcrP3HwLXZ3IbXUj4MFMUH/RmnJOAQiS401leg/2Sz1MkApDw==", + "path": "system.composition.runtime/7.0.0", + "hashPath": "system.composition.runtime.7.0.0.nupkg.sha512" + }, + "System.Composition.TypedParts/7.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ZK0KNPfbtxVceTwh+oHNGUOYV2WNOHReX2AXipuvkURC7s/jPwoWfsu3SnDBDgofqbiWr96geofdQ2erm/KTHg==", + "path": "system.composition.typedparts/7.0.0", + "hashPath": "system.composition.typedparts.7.0.0.nupkg.sha512" + }, + "System.Configuration.ConfigurationManager/6.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-jXw9MlUu/kRfEU0WyTptAVueupqIeE3/rl0EZDMlf8pcvJnitQ8HeVEp69rZdaStXwTV72boi/Bhw8lOeO+U2w==", + "path": "system.configuration.configurationmanager/6.0.1", + "hashPath": "system.configuration.configurationmanager.6.0.1.nupkg.sha512" + }, + "System.Diagnostics.DiagnosticSource/9.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ddppcFpnbohLWdYKr/ZeLZHmmI+DXFgZ3Snq+/E7SwcdW4UnvxmaugkwGywvGVWkHPGCSZjCP+MLzu23AL5SDw==", + "path": "system.diagnostics.diagnosticsource/9.0.0", + "hashPath": "system.diagnostics.diagnosticsource.9.0.0.nupkg.sha512" + }, + "System.Drawing.Common/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-NfuoKUiP2nUWwKZN6twGqXioIe1zVD0RIj2t976A+czLHr2nY454RwwXs6JU9Htc6mwqL6Dn/nEL3dpVf2jOhg==", + "path": "system.drawing.common/6.0.0", + "hashPath": "system.drawing.common.6.0.0.nupkg.sha512" + }, + "System.Formats.Asn1/9.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-VRDjgfqV0hCma5HBQa46nZTRuqfYMWZClwxUtvLJVTCeDp9Esdvr91AfEWP98IMO8ooSv1yXb6/oCc6jApoXvQ==", + "path": "system.formats.asn1/9.0.0", + "hashPath": "system.formats.asn1.9.0.0.nupkg.sha512" + }, + "System.IdentityModel.Tokens.Jwt/6.35.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-yxGIQd3BFK7F6S62/7RdZk3C/mfwyVxvh6ngd1VYMBmbJ1YZZA9+Ku6suylVtso0FjI0wbElpJ0d27CdsyLpBQ==", + "path": "system.identitymodel.tokens.jwt/6.35.0", + "hashPath": "system.identitymodel.tokens.jwt.6.35.0.nupkg.sha512" + }, + "System.IO.Pipelines/9.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-eA3cinogwaNB4jdjQHOP3Z3EuyiDII7MT35jgtnsA4vkn0LUrrSHsU0nzHTzFzmaFYeKV7MYyMxOocFzsBHpTw==", + "path": "system.io.pipelines/9.0.0", + "hashPath": "system.io.pipelines.9.0.0.nupkg.sha512" + }, + "System.Memory/4.5.4": { + "type": "package", + "serviceable": true, + "sha512": "sha512-1MbJTHS1lZ4bS4FmsJjnuGJOu88ZzTT2rLvrhW7Ygic+pC0NWA+3hgAen0HRdsocuQXCkUTdFn9yHJJhsijDXw==", + "path": "system.memory/4.5.4", + "hashPath": "system.memory.4.5.4.nupkg.sha512" + }, + "System.Memory.Data/1.0.2": { + "type": "package", + "serviceable": true, + "sha512": "sha512-JGkzeqgBsiZwKJZ1IxPNsDFZDhUvuEdX8L8BDC8N3KOj+6zMcNU28CNN59TpZE/VJYy9cP+5M+sbxtWJx3/xtw==", + "path": "system.memory.data/1.0.2", + "hashPath": "system.memory.data.1.0.2.nupkg.sha512" + }, + "System.Numerics.Vectors/4.5.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-QQTlPTl06J/iiDbJCiepZ4H//BVraReU4O4EoRw1U02H5TLUIT7xn3GnDp9AXPSlJUDyFs4uWjWafNX6WrAojQ==", + "path": "system.numerics.vectors/4.5.0", + "hashPath": "system.numerics.vectors.4.5.0.nupkg.sha512" + }, + "System.Reflection.Metadata/7.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-MclTG61lsD9sYdpNz9xsKBzjsmsfCtcMZYXz/IUr2zlhaTaABonlr1ESeompTgM+Xk+IwtGYU7/voh3YWB/fWw==", + "path": "system.reflection.metadata/7.0.0", + "hashPath": "system.reflection.metadata.7.0.0.nupkg.sha512" + }, + "System.Runtime/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-JufQi0vPQ0xGnAczR13AUFglDyVYt4Kqnz1AZaiKZ5+GICq0/1MH/mO/eAJHt/mHW1zjKBJd7kV26SrxddAhiw==", + "path": "system.runtime/4.3.0", + "hashPath": "system.runtime.4.3.0.nupkg.sha512" + }, + "System.Runtime.Caching/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-E0e03kUp5X2k+UAoVl6efmI7uU7JRBWi5EIdlQ7cr0NpBGjHG4fWII35PgsBY9T4fJQ8E4QPsL0rKksU9gcL5A==", + "path": "system.runtime.caching/6.0.0", + "hashPath": "system.runtime.caching.6.0.0.nupkg.sha512" + }, + "System.Runtime.CompilerServices.Unsafe/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-/iUeP3tq1S0XdNNoMz5C9twLSrM/TH+qElHkXWaPvuNOt+99G75NrV0OS2EqHx5wMN7popYjpc8oTjC1y16DLg==", + "path": "system.runtime.compilerservices.unsafe/6.0.0", + "hashPath": "system.runtime.compilerservices.unsafe.6.0.0.nupkg.sha512" + }, + "System.Security.AccessControl/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-AUADIc0LIEQe7MzC+I0cl0rAT8RrTAKFHl53yHjEUzNVIaUlhFY11vc2ebiVJzVBuOzun6F7FBA+8KAbGTTedQ==", + "path": "system.security.accesscontrol/6.0.0", + "hashPath": "system.security.accesscontrol.6.0.0.nupkg.sha512" + }, + "System.Security.Cryptography.Cng/5.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-jIMXsKn94T9JY7PvPq/tMfqa6GAaHpElRDpmG+SuL+D3+sTw2M8VhnibKnN8Tq+4JqbPJ/f+BwtLeDMEnzAvRg==", + "path": "system.security.cryptography.cng/5.0.0", + "hashPath": "system.security.cryptography.cng.5.0.0.nupkg.sha512" + }, + "System.Security.Cryptography.ProtectedData/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-rp1gMNEZpvx9vP0JW0oHLxlf8oSiQgtno77Y4PLUBjSiDYoD77Y8uXHr1Ea5XG4/pIKhqAdxZ8v8OTUtqo9PeQ==", + "path": "system.security.cryptography.protecteddata/6.0.0", + "hashPath": "system.security.cryptography.protecteddata.6.0.0.nupkg.sha512" + }, + "System.Security.Permissions/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-T/uuc7AklkDoxmcJ7LGkyX1CcSviZuLCa4jg3PekfJ7SU0niF0IVTXwUiNVP9DSpzou2PpxJ+eNY2IfDM90ZCg==", + "path": "system.security.permissions/6.0.0", + "hashPath": "system.security.permissions.6.0.0.nupkg.sha512" + }, + "System.Security.Principal.Windows/5.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-t0MGLukB5WAVU9bO3MGzvlGnyJPgUlcwerXn1kzBRjwLKixT96XV0Uza41W49gVd8zEMFu9vQEFlv0IOrytICA==", + "path": "system.security.principal.windows/5.0.0", + "hashPath": "system.security.principal.windows.5.0.0.nupkg.sha512" + }, + "System.Text.Encoding/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-BiIg+KWaSDOITze6jGQynxg64naAPtqGHBwDrLaCtixsa5bKiR8dpPOHA7ge3C0JJQizJE+sfkz1wV+BAKAYZw==", + "path": "system.text.encoding/4.3.0", + "hashPath": "system.text.encoding.4.3.0.nupkg.sha512" + }, + "System.Text.Encoding.CodePages/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ZFCILZuOvtKPauZ/j/swhvw68ZRi9ATCfvGbk1QfydmcXBkIWecWKn/250UH7rahZ5OoDBaiAudJtPvLwzw85A==", + "path": "system.text.encoding.codepages/6.0.0", + "hashPath": "system.text.encoding.codepages.6.0.0.nupkg.sha512" + }, + "System.Text.Encodings.Web/9.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-e2hMgAErLbKyUUwt18qSBf9T5Y+SFAL3ZedM8fLupkVj8Rj2PZ9oxQ37XX2LF8fTO1wNIxvKpihD7Of7D/NxZw==", + "path": "system.text.encodings.web/9.0.0", + "hashPath": "system.text.encodings.web.9.0.0.nupkg.sha512" + }, + "System.Text.Json/9.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-js7+qAu/9mQvnhA4EfGMZNEzXtJCDxgkgj8ohuxq/Qxv+R56G+ljefhiJHOxTNiw54q8vmABCWUwkMulNdlZ4A==", + "path": "system.text.json/9.0.0", + "hashPath": "system.text.json.9.0.0.nupkg.sha512" + }, + "System.Threading.Channels/7.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-qmeeYNROMsONF6ndEZcIQ+VxR4Q/TX/7uIVLJqtwIWL7dDWeh0l1UIqgo4wYyjG//5lUNhwkLDSFl+pAWO6oiA==", + "path": "system.threading.channels/7.0.0", + "hashPath": "system.threading.channels.7.0.0.nupkg.sha512" + }, + "System.Threading.Tasks.Extensions/4.5.4": { + "type": "package", + "serviceable": true, + "sha512": "sha512-zteT+G8xuGu6mS+mzDzYXbzS7rd3K6Fjb9RiZlYlJPam2/hU7JCBZBVEcywNuR+oZ1ncTvc/cq0faRr3P01OVg==", + "path": "system.threading.tasks.extensions/4.5.4", + "hashPath": "system.threading.tasks.extensions.4.5.4.nupkg.sha512" + }, + "System.Windows.Extensions/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-IXoJOXIqc39AIe+CIR7koBtRGMiCt/LPM3lI+PELtDIy9XdyeSrwXFdWV9dzJ2Awl0paLWUaknLxFQ5HpHZUog==", + "path": "system.windows.extensions/6.0.0", + "hashPath": "system.windows.extensions.6.0.0.nupkg.sha512" } } } \ No newline at end of file diff --git "a/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/MVC\344\274\240\345\217\202/Blog/bin/Debug/net8.0/Blog.dll" "b/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/MVC\344\274\240\345\217\202/Blog/bin/Debug/net8.0/Blog.dll" index 9beff81a14ce9137ecd91843c58cdfa1752e5526..0e28a6d9b89c43bdea8ed4f629920beb046db67f 100644 Binary files "a/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/MVC\344\274\240\345\217\202/Blog/bin/Debug/net8.0/Blog.dll" and "b/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/MVC\344\274\240\345\217\202/Blog/bin/Debug/net8.0/Blog.dll" differ diff --git "a/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/MVC\344\274\240\345\217\202/Blog/bin/Debug/net8.0/Blog.exe" "b/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/MVC\344\274\240\345\217\202/Blog/bin/Debug/net8.0/Blog.exe" index 55e18638482fba9812836ee43b29a433a89a1d3d..9bf9c7d1528883c5c6df69be92be657e4108ce55 100644 Binary files "a/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/MVC\344\274\240\345\217\202/Blog/bin/Debug/net8.0/Blog.exe" and "b/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/MVC\344\274\240\345\217\202/Blog/bin/Debug/net8.0/Blog.exe" differ diff --git "a/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/MVC\344\274\240\345\217\202/Blog/bin/Debug/net8.0/Blog.pdb" "b/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/MVC\344\274\240\345\217\202/Blog/bin/Debug/net8.0/Blog.pdb" index fb9dba992938db245db5b465fd1ae611e31a68ec..d752240509d0a65055a4319f72b8710a9aaceb8f 100644 Binary files "a/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/MVC\344\274\240\345\217\202/Blog/bin/Debug/net8.0/Blog.pdb" and "b/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/MVC\344\274\240\345\217\202/Blog/bin/Debug/net8.0/Blog.pdb" differ diff --git "a/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/MVC\344\274\240\345\217\202/Blog/bin/Debug/net8.0/Blog.runtimeconfig.json" "b/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/MVC\344\274\240\345\217\202/Blog/bin/Debug/net8.0/Blog.runtimeconfig.json" index 5e604c7e54d717b29a8b4b0a9c5986fe33a68ef3..b8a4a9c3fadd41ca5864b92e3d9d904b91b19400 100644 --- "a/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/MVC\344\274\240\345\217\202/Blog/bin/Debug/net8.0/Blog.runtimeconfig.json" +++ "b/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/MVC\344\274\240\345\217\202/Blog/bin/Debug/net8.0/Blog.runtimeconfig.json" @@ -13,6 +13,7 @@ ], "configProperties": { "System.GC.Server": true, + "System.Reflection.NullabilityInfoContext.IsSupported": true, "System.Runtime.Serialization.EnableUnsafeBinaryFormatterSerialization": false } } diff --git "a/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/MVC\344\274\240\345\217\202/Blog/bin/Debug/net8.0/Humanizer.dll" "b/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/MVC\344\274\240\345\217\202/Blog/bin/Debug/net8.0/Humanizer.dll" new file mode 100644 index 0000000000000000000000000000000000000000..c9a7ef8aadffcfeb76e9ab6193156b370b3d6c95 Binary files /dev/null and "b/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/MVC\344\274\240\345\217\202/Blog/bin/Debug/net8.0/Humanizer.dll" differ diff --git "a/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/MVC\344\274\240\345\217\202/Blog/bin/Debug/net8.0/Microsoft.Bcl.AsyncInterfaces.dll" "b/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/MVC\344\274\240\345\217\202/Blog/bin/Debug/net8.0/Microsoft.Bcl.AsyncInterfaces.dll" new file mode 100644 index 0000000000000000000000000000000000000000..f5f1ceecf119c6d87bd83ad3fae063922dd63aeb Binary files /dev/null and "b/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/MVC\344\274\240\345\217\202/Blog/bin/Debug/net8.0/Microsoft.Bcl.AsyncInterfaces.dll" differ diff --git "a/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/MVC\344\274\240\345\217\202/Blog/bin/Debug/net8.0/Microsoft.Build.Locator.dll" "b/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/MVC\344\274\240\345\217\202/Blog/bin/Debug/net8.0/Microsoft.Build.Locator.dll" new file mode 100644 index 0000000000000000000000000000000000000000..446d341594be61b1e968b53e3843c2d6addaf93a Binary files /dev/null and "b/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/MVC\344\274\240\345\217\202/Blog/bin/Debug/net8.0/Microsoft.Build.Locator.dll" differ diff --git "a/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/MVC\344\274\240\345\217\202/Blog/bin/Debug/net8.0/Microsoft.CodeAnalysis.CSharp.Workspaces.dll" "b/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/MVC\344\274\240\345\217\202/Blog/bin/Debug/net8.0/Microsoft.CodeAnalysis.CSharp.Workspaces.dll" new file mode 100644 index 0000000000000000000000000000000000000000..2e99f76519190623bfc04354d459edd1a3b54639 Binary files /dev/null and "b/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/MVC\344\274\240\345\217\202/Blog/bin/Debug/net8.0/Microsoft.CodeAnalysis.CSharp.Workspaces.dll" differ diff --git "a/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/MVC\344\274\240\345\217\202/Blog/bin/Debug/net8.0/Microsoft.CodeAnalysis.CSharp.dll" "b/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/MVC\344\274\240\345\217\202/Blog/bin/Debug/net8.0/Microsoft.CodeAnalysis.CSharp.dll" new file mode 100644 index 0000000000000000000000000000000000000000..8d56de13cdce7cc570d9c8025cc2b9dc96c65df1 Binary files /dev/null and "b/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/MVC\344\274\240\345\217\202/Blog/bin/Debug/net8.0/Microsoft.CodeAnalysis.CSharp.dll" differ diff --git "a/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/MVC\344\274\240\345\217\202/Blog/bin/Debug/net8.0/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.dll" "b/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/MVC\344\274\240\345\217\202/Blog/bin/Debug/net8.0/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.dll" new file mode 100644 index 0000000000000000000000000000000000000000..a17c676da51a839d0f253dc6da509dd95ede1de5 Binary files /dev/null and "b/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/MVC\344\274\240\345\217\202/Blog/bin/Debug/net8.0/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.dll" differ diff --git "a/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/MVC\344\274\240\345\217\202/Blog/bin/Debug/net8.0/Microsoft.CodeAnalysis.Workspaces.MSBuild.dll" "b/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/MVC\344\274\240\345\217\202/Blog/bin/Debug/net8.0/Microsoft.CodeAnalysis.Workspaces.MSBuild.dll" new file mode 100644 index 0000000000000000000000000000000000000000..f70a016c20978271035c3656fbd727904381a77b Binary files /dev/null and "b/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/MVC\344\274\240\345\217\202/Blog/bin/Debug/net8.0/Microsoft.CodeAnalysis.Workspaces.MSBuild.dll" differ diff --git "a/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/MVC\344\274\240\345\217\202/Blog/bin/Debug/net8.0/Microsoft.CodeAnalysis.Workspaces.dll" "b/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/MVC\344\274\240\345\217\202/Blog/bin/Debug/net8.0/Microsoft.CodeAnalysis.Workspaces.dll" new file mode 100644 index 0000000000000000000000000000000000000000..7253875bb14437a94b10359b4eb9710bcf659a37 Binary files /dev/null and "b/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/MVC\344\274\240\345\217\202/Blog/bin/Debug/net8.0/Microsoft.CodeAnalysis.Workspaces.dll" differ diff --git "a/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/MVC\344\274\240\345\217\202/Blog/bin/Debug/net8.0/Microsoft.CodeAnalysis.dll" "b/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/MVC\344\274\240\345\217\202/Blog/bin/Debug/net8.0/Microsoft.CodeAnalysis.dll" new file mode 100644 index 0000000000000000000000000000000000000000..7d537db632cbcde6d6c04bc43811022773f8b28b Binary files /dev/null and "b/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/MVC\344\274\240\345\217\202/Blog/bin/Debug/net8.0/Microsoft.CodeAnalysis.dll" differ diff --git "a/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/MVC\344\274\240\345\217\202/Blog/bin/Debug/net8.0/Microsoft.Data.SqlClient.dll" "b/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/MVC\344\274\240\345\217\202/Blog/bin/Debug/net8.0/Microsoft.Data.SqlClient.dll" new file mode 100644 index 0000000000000000000000000000000000000000..85903b08a607ff811db48a699549b5eb4f2c2f83 Binary files /dev/null and "b/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/MVC\344\274\240\345\217\202/Blog/bin/Debug/net8.0/Microsoft.Data.SqlClient.dll" differ diff --git "a/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/MVC\344\274\240\345\217\202/Blog/bin/Debug/net8.0/Microsoft.EntityFrameworkCore.Abstractions.dll" "b/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/MVC\344\274\240\345\217\202/Blog/bin/Debug/net8.0/Microsoft.EntityFrameworkCore.Abstractions.dll" new file mode 100644 index 0000000000000000000000000000000000000000..e5b92b54b34a317a5d0722b3da3a840fad684c5d Binary files /dev/null and "b/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/MVC\344\274\240\345\217\202/Blog/bin/Debug/net8.0/Microsoft.EntityFrameworkCore.Abstractions.dll" differ diff --git "a/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/MVC\344\274\240\345\217\202/Blog/bin/Debug/net8.0/Microsoft.EntityFrameworkCore.Design.dll" "b/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/MVC\344\274\240\345\217\202/Blog/bin/Debug/net8.0/Microsoft.EntityFrameworkCore.Design.dll" new file mode 100644 index 0000000000000000000000000000000000000000..41cf45ad97ccaf5ebf4d18bbb8c43237a308b6cc Binary files /dev/null and "b/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/MVC\344\274\240\345\217\202/Blog/bin/Debug/net8.0/Microsoft.EntityFrameworkCore.Design.dll" differ diff --git "a/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/MVC\344\274\240\345\217\202/Blog/bin/Debug/net8.0/Microsoft.EntityFrameworkCore.Relational.dll" "b/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/MVC\344\274\240\345\217\202/Blog/bin/Debug/net8.0/Microsoft.EntityFrameworkCore.Relational.dll" new file mode 100644 index 0000000000000000000000000000000000000000..7e313e5e2696b85e9d934e50b25dbf61f832dc9e Binary files /dev/null and "b/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/MVC\344\274\240\345\217\202/Blog/bin/Debug/net8.0/Microsoft.EntityFrameworkCore.Relational.dll" differ diff --git "a/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/MVC\344\274\240\345\217\202/Blog/bin/Debug/net8.0/Microsoft.EntityFrameworkCore.SqlServer.dll" "b/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/MVC\344\274\240\345\217\202/Blog/bin/Debug/net8.0/Microsoft.EntityFrameworkCore.SqlServer.dll" new file mode 100644 index 0000000000000000000000000000000000000000..6c881dc4cc2fe0983d8eba73311f9cb5f0778ed2 Binary files /dev/null and "b/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/MVC\344\274\240\345\217\202/Blog/bin/Debug/net8.0/Microsoft.EntityFrameworkCore.SqlServer.dll" differ diff --git "a/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/MVC\344\274\240\345\217\202/Blog/bin/Debug/net8.0/Microsoft.EntityFrameworkCore.dll" "b/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/MVC\344\274\240\345\217\202/Blog/bin/Debug/net8.0/Microsoft.EntityFrameworkCore.dll" new file mode 100644 index 0000000000000000000000000000000000000000..f362a04d308a3a2acd6d3b23fc920473acb9c8b4 Binary files /dev/null and "b/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/MVC\344\274\240\345\217\202/Blog/bin/Debug/net8.0/Microsoft.EntityFrameworkCore.dll" differ diff --git "a/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/MVC\344\274\240\345\217\202/Blog/bin/Debug/net8.0/Microsoft.Extensions.Caching.Abstractions.dll" "b/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/MVC\344\274\240\345\217\202/Blog/bin/Debug/net8.0/Microsoft.Extensions.Caching.Abstractions.dll" new file mode 100644 index 0000000000000000000000000000000000000000..569fb1a5a611024791100af6e8fab086ae436aa9 Binary files /dev/null and "b/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/MVC\344\274\240\345\217\202/Blog/bin/Debug/net8.0/Microsoft.Extensions.Caching.Abstractions.dll" differ diff --git "a/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/MVC\344\274\240\345\217\202/Blog/bin/Debug/net8.0/Microsoft.Extensions.Caching.Memory.dll" "b/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/MVC\344\274\240\345\217\202/Blog/bin/Debug/net8.0/Microsoft.Extensions.Caching.Memory.dll" new file mode 100644 index 0000000000000000000000000000000000000000..7c013132f2770daa19f7871c47bd21aaaf454d6d Binary files /dev/null and "b/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/MVC\344\274\240\345\217\202/Blog/bin/Debug/net8.0/Microsoft.Extensions.Caching.Memory.dll" differ diff --git "a/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/MVC\344\274\240\345\217\202/Blog/bin/Debug/net8.0/Microsoft.Extensions.Configuration.Abstractions.dll" "b/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/MVC\344\274\240\345\217\202/Blog/bin/Debug/net8.0/Microsoft.Extensions.Configuration.Abstractions.dll" new file mode 100644 index 0000000000000000000000000000000000000000..5de000c2a8bd044b0316b78912793b38066d0569 Binary files /dev/null and "b/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/MVC\344\274\240\345\217\202/Blog/bin/Debug/net8.0/Microsoft.Extensions.Configuration.Abstractions.dll" differ diff --git "a/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/MVC\344\274\240\345\217\202/Blog/bin/Debug/net8.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll" "b/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/MVC\344\274\240\345\217\202/Blog/bin/Debug/net8.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll" new file mode 100644 index 0000000000000000000000000000000000000000..405651a694e8907f26184726e2cf20a2972171bf Binary files /dev/null and "b/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/MVC\344\274\240\345\217\202/Blog/bin/Debug/net8.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll" differ diff --git "a/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/MVC\344\274\240\345\217\202/Blog/bin/Debug/net8.0/Microsoft.Extensions.DependencyInjection.dll" "b/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/MVC\344\274\240\345\217\202/Blog/bin/Debug/net8.0/Microsoft.Extensions.DependencyInjection.dll" new file mode 100644 index 0000000000000000000000000000000000000000..e9884691f249b7e5587a703e3fceb177c1a742e1 Binary files /dev/null and "b/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/MVC\344\274\240\345\217\202/Blog/bin/Debug/net8.0/Microsoft.Extensions.DependencyInjection.dll" differ diff --git "a/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/MVC\344\274\240\345\217\202/Blog/bin/Debug/net8.0/Microsoft.Extensions.DependencyModel.dll" "b/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/MVC\344\274\240\345\217\202/Blog/bin/Debug/net8.0/Microsoft.Extensions.DependencyModel.dll" new file mode 100644 index 0000000000000000000000000000000000000000..2ffabf83ea043b31853b8edd479342abbdd489d9 Binary files /dev/null and "b/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/MVC\344\274\240\345\217\202/Blog/bin/Debug/net8.0/Microsoft.Extensions.DependencyModel.dll" differ diff --git "a/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/MVC\344\274\240\345\217\202/Blog/bin/Debug/net8.0/Microsoft.Extensions.Logging.Abstractions.dll" "b/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/MVC\344\274\240\345\217\202/Blog/bin/Debug/net8.0/Microsoft.Extensions.Logging.Abstractions.dll" new file mode 100644 index 0000000000000000000000000000000000000000..8d274124b825938916aab0e1d48638e2cd5a7b6d Binary files /dev/null and "b/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/MVC\344\274\240\345\217\202/Blog/bin/Debug/net8.0/Microsoft.Extensions.Logging.Abstractions.dll" differ diff --git "a/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/MVC\344\274\240\345\217\202/Blog/bin/Debug/net8.0/Microsoft.Extensions.Logging.dll" "b/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/MVC\344\274\240\345\217\202/Blog/bin/Debug/net8.0/Microsoft.Extensions.Logging.dll" new file mode 100644 index 0000000000000000000000000000000000000000..754fabe4b2ce5a33a6efd7709f2197ac96f7b656 Binary files /dev/null and "b/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/MVC\344\274\240\345\217\202/Blog/bin/Debug/net8.0/Microsoft.Extensions.Logging.dll" differ diff --git "a/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/MVC\344\274\240\345\217\202/Blog/bin/Debug/net8.0/Microsoft.Extensions.Options.dll" "b/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/MVC\344\274\240\345\217\202/Blog/bin/Debug/net8.0/Microsoft.Extensions.Options.dll" new file mode 100644 index 0000000000000000000000000000000000000000..d5c55a2ed5396cce5c8cb8ccb6b850a5243b7cc2 Binary files /dev/null and "b/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/MVC\344\274\240\345\217\202/Blog/bin/Debug/net8.0/Microsoft.Extensions.Options.dll" differ diff --git "a/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/MVC\344\274\240\345\217\202/Blog/bin/Debug/net8.0/Microsoft.Extensions.Primitives.dll" "b/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/MVC\344\274\240\345\217\202/Blog/bin/Debug/net8.0/Microsoft.Extensions.Primitives.dll" new file mode 100644 index 0000000000000000000000000000000000000000..8cb2645d2973b9b86d8cea78a2a20d769632e207 Binary files /dev/null and "b/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/MVC\344\274\240\345\217\202/Blog/bin/Debug/net8.0/Microsoft.Extensions.Primitives.dll" differ diff --git "a/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/MVC\344\274\240\345\217\202/Blog/bin/Debug/net8.0/Microsoft.Identity.Client.Extensions.Msal.dll" "b/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/MVC\344\274\240\345\217\202/Blog/bin/Debug/net8.0/Microsoft.Identity.Client.Extensions.Msal.dll" new file mode 100644 index 0000000000000000000000000000000000000000..9a7cadb88e3faec69e891e1e772b05c0c154c72f Binary files /dev/null and "b/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/MVC\344\274\240\345\217\202/Blog/bin/Debug/net8.0/Microsoft.Identity.Client.Extensions.Msal.dll" differ diff --git "a/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/MVC\344\274\240\345\217\202/Blog/bin/Debug/net8.0/Microsoft.Identity.Client.dll" "b/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/MVC\344\274\240\345\217\202/Blog/bin/Debug/net8.0/Microsoft.Identity.Client.dll" new file mode 100644 index 0000000000000000000000000000000000000000..73873e59b102d2b36a496a52c0ae3ebb15ba4493 Binary files /dev/null and "b/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/MVC\344\274\240\345\217\202/Blog/bin/Debug/net8.0/Microsoft.Identity.Client.dll" differ diff --git "a/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/MVC\344\274\240\345\217\202/Blog/bin/Debug/net8.0/Microsoft.IdentityModel.Abstractions.dll" "b/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/MVC\344\274\240\345\217\202/Blog/bin/Debug/net8.0/Microsoft.IdentityModel.Abstractions.dll" new file mode 100644 index 0000000000000000000000000000000000000000..dfcb6320d8f982efe214eb43086ea8b27c71d96b Binary files /dev/null and "b/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/MVC\344\274\240\345\217\202/Blog/bin/Debug/net8.0/Microsoft.IdentityModel.Abstractions.dll" differ diff --git "a/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/MVC\344\274\240\345\217\202/Blog/bin/Debug/net8.0/Microsoft.IdentityModel.JsonWebTokens.dll" "b/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/MVC\344\274\240\345\217\202/Blog/bin/Debug/net8.0/Microsoft.IdentityModel.JsonWebTokens.dll" new file mode 100644 index 0000000000000000000000000000000000000000..30b9c05b917c6a18a82bd0c3ad6d5a5cd444e1fb Binary files /dev/null and "b/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/MVC\344\274\240\345\217\202/Blog/bin/Debug/net8.0/Microsoft.IdentityModel.JsonWebTokens.dll" differ diff --git "a/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/MVC\344\274\240\345\217\202/Blog/bin/Debug/net8.0/Microsoft.IdentityModel.Logging.dll" "b/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/MVC\344\274\240\345\217\202/Blog/bin/Debug/net8.0/Microsoft.IdentityModel.Logging.dll" new file mode 100644 index 0000000000000000000000000000000000000000..ce60b3c2cb2adea18239ac12158b2178e4d02833 Binary files /dev/null and "b/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/MVC\344\274\240\345\217\202/Blog/bin/Debug/net8.0/Microsoft.IdentityModel.Logging.dll" differ diff --git "a/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/MVC\344\274\240\345\217\202/Blog/bin/Debug/net8.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll" "b/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/MVC\344\274\240\345\217\202/Blog/bin/Debug/net8.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll" new file mode 100644 index 0000000000000000000000000000000000000000..57a9536b45b5169d5b7d648fd35ece74eb11292f Binary files /dev/null and "b/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/MVC\344\274\240\345\217\202/Blog/bin/Debug/net8.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll" differ diff --git "a/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/MVC\344\274\240\345\217\202/Blog/bin/Debug/net8.0/Microsoft.IdentityModel.Protocols.dll" "b/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/MVC\344\274\240\345\217\202/Blog/bin/Debug/net8.0/Microsoft.IdentityModel.Protocols.dll" new file mode 100644 index 0000000000000000000000000000000000000000..9fd9ebf602a9db5b55de353e1c98a8f0fcb771f6 Binary files /dev/null and "b/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/MVC\344\274\240\345\217\202/Blog/bin/Debug/net8.0/Microsoft.IdentityModel.Protocols.dll" differ diff --git "a/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/MVC\344\274\240\345\217\202/Blog/bin/Debug/net8.0/Microsoft.IdentityModel.Tokens.dll" "b/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/MVC\344\274\240\345\217\202/Blog/bin/Debug/net8.0/Microsoft.IdentityModel.Tokens.dll" new file mode 100644 index 0000000000000000000000000000000000000000..da12e5fa0374b3e4a636da343bad47ae2b3017ba Binary files /dev/null and "b/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/MVC\344\274\240\345\217\202/Blog/bin/Debug/net8.0/Microsoft.IdentityModel.Tokens.dll" differ diff --git "a/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/MVC\344\274\240\345\217\202/Blog/bin/Debug/net8.0/Microsoft.SqlServer.Server.dll" "b/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/MVC\344\274\240\345\217\202/Blog/bin/Debug/net8.0/Microsoft.SqlServer.Server.dll" new file mode 100644 index 0000000000000000000000000000000000000000..ddeaa864f59a7bf9a498719e2698dc4d98fba651 Binary files /dev/null and "b/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/MVC\344\274\240\345\217\202/Blog/bin/Debug/net8.0/Microsoft.SqlServer.Server.dll" differ diff --git "a/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/MVC\344\274\240\345\217\202/Blog/bin/Debug/net8.0/Microsoft.Win32.SystemEvents.dll" "b/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/MVC\344\274\240\345\217\202/Blog/bin/Debug/net8.0/Microsoft.Win32.SystemEvents.dll" new file mode 100644 index 0000000000000000000000000000000000000000..3ab58500b3493be298d02b94e2e655bdaadec1dd Binary files /dev/null and "b/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/MVC\344\274\240\345\217\202/Blog/bin/Debug/net8.0/Microsoft.Win32.SystemEvents.dll" differ diff --git "a/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/MVC\344\274\240\345\217\202/Blog/bin/Debug/net8.0/Mono.TextTemplating.dll" "b/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/MVC\344\274\240\345\217\202/Blog/bin/Debug/net8.0/Mono.TextTemplating.dll" new file mode 100644 index 0000000000000000000000000000000000000000..4a765119afe76a39e221e11808bf75d8db640667 Binary files /dev/null and "b/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/MVC\344\274\240\345\217\202/Blog/bin/Debug/net8.0/Mono.TextTemplating.dll" differ diff --git "a/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/MVC\344\274\240\345\217\202/Blog/bin/Debug/net8.0/System.ClientModel.dll" "b/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/MVC\344\274\240\345\217\202/Blog/bin/Debug/net8.0/System.ClientModel.dll" new file mode 100644 index 0000000000000000000000000000000000000000..00a3380450c572b7e485ad01678858cb0e6083cd Binary files /dev/null and "b/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/MVC\344\274\240\345\217\202/Blog/bin/Debug/net8.0/System.ClientModel.dll" differ diff --git "a/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/MVC\344\274\240\345\217\202/Blog/bin/Debug/net8.0/System.CodeDom.dll" "b/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/MVC\344\274\240\345\217\202/Blog/bin/Debug/net8.0/System.CodeDom.dll" new file mode 100644 index 0000000000000000000000000000000000000000..54c82b665c7a5ad476a1d109efe226559516b9ea Binary files /dev/null and "b/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/MVC\344\274\240\345\217\202/Blog/bin/Debug/net8.0/System.CodeDom.dll" differ diff --git "a/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/MVC\344\274\240\345\217\202/Blog/bin/Debug/net8.0/System.Composition.AttributedModel.dll" "b/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/MVC\344\274\240\345\217\202/Blog/bin/Debug/net8.0/System.Composition.AttributedModel.dll" new file mode 100644 index 0000000000000000000000000000000000000000..14317511a5fdfca4784c347aa5355b3fa7fd44d4 Binary files /dev/null and "b/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/MVC\344\274\240\345\217\202/Blog/bin/Debug/net8.0/System.Composition.AttributedModel.dll" differ diff --git "a/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/MVC\344\274\240\345\217\202/Blog/bin/Debug/net8.0/System.Composition.Convention.dll" "b/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/MVC\344\274\240\345\217\202/Blog/bin/Debug/net8.0/System.Composition.Convention.dll" new file mode 100644 index 0000000000000000000000000000000000000000..e9dacb14ce6ac1acb97254af809858e904b24510 Binary files /dev/null and "b/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/MVC\344\274\240\345\217\202/Blog/bin/Debug/net8.0/System.Composition.Convention.dll" differ diff --git "a/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/MVC\344\274\240\345\217\202/Blog/bin/Debug/net8.0/System.Composition.Hosting.dll" "b/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/MVC\344\274\240\345\217\202/Blog/bin/Debug/net8.0/System.Composition.Hosting.dll" new file mode 100644 index 0000000000000000000000000000000000000000..8381202a9df2e60b2ef441fca9ddbfe4d6360987 Binary files /dev/null and "b/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/MVC\344\274\240\345\217\202/Blog/bin/Debug/net8.0/System.Composition.Hosting.dll" differ diff --git "a/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/MVC\344\274\240\345\217\202/Blog/bin/Debug/net8.0/System.Composition.Runtime.dll" "b/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/MVC\344\274\240\345\217\202/Blog/bin/Debug/net8.0/System.Composition.Runtime.dll" new file mode 100644 index 0000000000000000000000000000000000000000..d583c3ae7067ebf97c210243f76902ada61a0589 Binary files /dev/null and "b/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/MVC\344\274\240\345\217\202/Blog/bin/Debug/net8.0/System.Composition.Runtime.dll" differ diff --git "a/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/MVC\344\274\240\345\217\202/Blog/bin/Debug/net8.0/System.Composition.TypedParts.dll" "b/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/MVC\344\274\240\345\217\202/Blog/bin/Debug/net8.0/System.Composition.TypedParts.dll" new file mode 100644 index 0000000000000000000000000000000000000000..2b278d7c19809a6c38c316836d7121b71cdb4417 Binary files /dev/null and "b/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/MVC\344\274\240\345\217\202/Blog/bin/Debug/net8.0/System.Composition.TypedParts.dll" differ diff --git "a/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/MVC\344\274\240\345\217\202/Blog/bin/Debug/net8.0/System.Configuration.ConfigurationManager.dll" "b/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/MVC\344\274\240\345\217\202/Blog/bin/Debug/net8.0/System.Configuration.ConfigurationManager.dll" new file mode 100644 index 0000000000000000000000000000000000000000..14f8ef6ce962e58dd46e230affad4b5206d61cb7 Binary files /dev/null and "b/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/MVC\344\274\240\345\217\202/Blog/bin/Debug/net8.0/System.Configuration.ConfigurationManager.dll" differ diff --git "a/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/MVC\344\274\240\345\217\202/Blog/bin/Debug/net8.0/System.Diagnostics.DiagnosticSource.dll" "b/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/MVC\344\274\240\345\217\202/Blog/bin/Debug/net8.0/System.Diagnostics.DiagnosticSource.dll" new file mode 100644 index 0000000000000000000000000000000000000000..bae10b1577526f1a8d36387e4f36479fc455742a Binary files /dev/null and "b/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/MVC\344\274\240\345\217\202/Blog/bin/Debug/net8.0/System.Diagnostics.DiagnosticSource.dll" differ diff --git "a/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/MVC\344\274\240\345\217\202/Blog/bin/Debug/net8.0/System.Drawing.Common.dll" "b/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/MVC\344\274\240\345\217\202/Blog/bin/Debug/net8.0/System.Drawing.Common.dll" new file mode 100644 index 0000000000000000000000000000000000000000..be6915e544f94caae303a037096eb41cdb23ed35 Binary files /dev/null and "b/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/MVC\344\274\240\345\217\202/Blog/bin/Debug/net8.0/System.Drawing.Common.dll" differ diff --git "a/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/MVC\344\274\240\345\217\202/Blog/bin/Debug/net8.0/System.Formats.Asn1.dll" "b/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/MVC\344\274\240\345\217\202/Blog/bin/Debug/net8.0/System.Formats.Asn1.dll" new file mode 100644 index 0000000000000000000000000000000000000000..5f718cd0d4b1c35e12e331cec389c1c7b89ed0df Binary files /dev/null and "b/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/MVC\344\274\240\345\217\202/Blog/bin/Debug/net8.0/System.Formats.Asn1.dll" differ diff --git "a/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/MVC\344\274\240\345\217\202/Blog/bin/Debug/net8.0/System.IO.Pipelines.dll" "b/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/MVC\344\274\240\345\217\202/Blog/bin/Debug/net8.0/System.IO.Pipelines.dll" new file mode 100644 index 0000000000000000000000000000000000000000..712f47db99da5853abf81e86b5cfb4a99361450e Binary files /dev/null and "b/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/MVC\344\274\240\345\217\202/Blog/bin/Debug/net8.0/System.IO.Pipelines.dll" differ diff --git "a/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/MVC\344\274\240\345\217\202/Blog/bin/Debug/net8.0/System.IdentityModel.Tokens.Jwt.dll" "b/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/MVC\344\274\240\345\217\202/Blog/bin/Debug/net8.0/System.IdentityModel.Tokens.Jwt.dll" new file mode 100644 index 0000000000000000000000000000000000000000..231102575f7942b0ce0966bdb62324e5e9432423 Binary files /dev/null and "b/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/MVC\344\274\240\345\217\202/Blog/bin/Debug/net8.0/System.IdentityModel.Tokens.Jwt.dll" differ diff --git "a/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/MVC\344\274\240\345\217\202/Blog/bin/Debug/net8.0/System.Memory.Data.dll" "b/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/MVC\344\274\240\345\217\202/Blog/bin/Debug/net8.0/System.Memory.Data.dll" new file mode 100644 index 0000000000000000000000000000000000000000..6f2a3e0ad07f3da4c6be0fff96acfdbe69d06af1 Binary files /dev/null and "b/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/MVC\344\274\240\345\217\202/Blog/bin/Debug/net8.0/System.Memory.Data.dll" differ diff --git "a/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/MVC\344\274\240\345\217\202/Blog/bin/Debug/net8.0/System.Runtime.Caching.dll" "b/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/MVC\344\274\240\345\217\202/Blog/bin/Debug/net8.0/System.Runtime.Caching.dll" new file mode 100644 index 0000000000000000000000000000000000000000..14826eb896738638abea6029837965169ad44b77 Binary files /dev/null and "b/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/MVC\344\274\240\345\217\202/Blog/bin/Debug/net8.0/System.Runtime.Caching.dll" differ diff --git "a/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/MVC\344\274\240\345\217\202/Blog/bin/Debug/net8.0/System.Security.Cryptography.ProtectedData.dll" "b/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/MVC\344\274\240\345\217\202/Blog/bin/Debug/net8.0/System.Security.Cryptography.ProtectedData.dll" new file mode 100644 index 0000000000000000000000000000000000000000..1ba87704c95adab062fec437b34a715b9583b650 Binary files /dev/null and "b/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/MVC\344\274\240\345\217\202/Blog/bin/Debug/net8.0/System.Security.Cryptography.ProtectedData.dll" differ diff --git "a/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/MVC\344\274\240\345\217\202/Blog/bin/Debug/net8.0/System.Security.Permissions.dll" "b/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/MVC\344\274\240\345\217\202/Blog/bin/Debug/net8.0/System.Security.Permissions.dll" new file mode 100644 index 0000000000000000000000000000000000000000..39dd4df91b690ab1953e844d4becd9b931cc0962 Binary files /dev/null and "b/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/MVC\344\274\240\345\217\202/Blog/bin/Debug/net8.0/System.Security.Permissions.dll" differ diff --git "a/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/MVC\344\274\240\345\217\202/Blog/bin/Debug/net8.0/System.Text.Encodings.Web.dll" "b/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/MVC\344\274\240\345\217\202/Blog/bin/Debug/net8.0/System.Text.Encodings.Web.dll" new file mode 100644 index 0000000000000000000000000000000000000000..5c041691890cb470f791332c15c06a74a82afea0 Binary files /dev/null and "b/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/MVC\344\274\240\345\217\202/Blog/bin/Debug/net8.0/System.Text.Encodings.Web.dll" differ diff --git "a/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/MVC\344\274\240\345\217\202/Blog/bin/Debug/net8.0/System.Text.Json.dll" "b/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/MVC\344\274\240\345\217\202/Blog/bin/Debug/net8.0/System.Text.Json.dll" new file mode 100644 index 0000000000000000000000000000000000000000..f4dd021ad4e2d64a66c438c42accd619de898cd3 Binary files /dev/null and "b/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/MVC\344\274\240\345\217\202/Blog/bin/Debug/net8.0/System.Text.Json.dll" differ diff --git "a/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/MVC\344\274\240\345\217\202/Blog/bin/Debug/net8.0/System.Windows.Extensions.dll" "b/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/MVC\344\274\240\345\217\202/Blog/bin/Debug/net8.0/System.Windows.Extensions.dll" new file mode 100644 index 0000000000000000000000000000000000000000..c3e8844fa15014ccd53ee208cc4bce0346691926 Binary files /dev/null and "b/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/MVC\344\274\240\345\217\202/Blog/bin/Debug/net8.0/System.Windows.Extensions.dll" differ diff --git "a/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/MVC\344\274\240\345\217\202/Blog/bin/Debug/net8.0/cs/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll" "b/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/MVC\344\274\240\345\217\202/Blog/bin/Debug/net8.0/cs/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll" new file mode 100644 index 0000000000000000000000000000000000000000..4e90e2094f902ebccb2d7f1358e34fcaf7294098 Binary files /dev/null and "b/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/MVC\344\274\240\345\217\202/Blog/bin/Debug/net8.0/cs/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll" differ diff --git "a/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/MVC\344\274\240\345\217\202/Blog/bin/Debug/net8.0/cs/Microsoft.CodeAnalysis.CSharp.resources.dll" "b/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/MVC\344\274\240\345\217\202/Blog/bin/Debug/net8.0/cs/Microsoft.CodeAnalysis.CSharp.resources.dll" new file mode 100644 index 0000000000000000000000000000000000000000..8dcc1bdf20a89bd63e2d39a9f89685d8201b52cb Binary files /dev/null and "b/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/MVC\344\274\240\345\217\202/Blog/bin/Debug/net8.0/cs/Microsoft.CodeAnalysis.CSharp.resources.dll" differ diff --git "a/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/MVC\344\274\240\345\217\202/Blog/bin/Debug/net8.0/cs/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll" "b/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/MVC\344\274\240\345\217\202/Blog/bin/Debug/net8.0/cs/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll" new file mode 100644 index 0000000000000000000000000000000000000000..8ee4b4deb23d8363f860465e2431850783289f85 Binary files /dev/null and "b/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/MVC\344\274\240\345\217\202/Blog/bin/Debug/net8.0/cs/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll" differ diff --git "a/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/MVC\344\274\240\345\217\202/Blog/bin/Debug/net8.0/cs/Microsoft.CodeAnalysis.Workspaces.resources.dll" "b/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/MVC\344\274\240\345\217\202/Blog/bin/Debug/net8.0/cs/Microsoft.CodeAnalysis.Workspaces.resources.dll" new file mode 100644 index 0000000000000000000000000000000000000000..62b042262b33eb2fec6889edcf9e734b310cd66d Binary files /dev/null and "b/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/MVC\344\274\240\345\217\202/Blog/bin/Debug/net8.0/cs/Microsoft.CodeAnalysis.Workspaces.resources.dll" differ diff --git "a/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/MVC\344\274\240\345\217\202/Blog/bin/Debug/net8.0/cs/Microsoft.CodeAnalysis.resources.dll" "b/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/MVC\344\274\240\345\217\202/Blog/bin/Debug/net8.0/cs/Microsoft.CodeAnalysis.resources.dll" new file mode 100644 index 0000000000000000000000000000000000000000..180a8d9f20e5b48c5b58b526e5a52d6c6cf41f1d Binary files /dev/null and "b/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/MVC\344\274\240\345\217\202/Blog/bin/Debug/net8.0/cs/Microsoft.CodeAnalysis.resources.dll" differ diff --git "a/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/MVC\344\274\240\345\217\202/Blog/bin/Debug/net8.0/de/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll" "b/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/MVC\344\274\240\345\217\202/Blog/bin/Debug/net8.0/de/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll" new file mode 100644 index 0000000000000000000000000000000000000000..4b7bae7ffd4fda728dad54c35f58dc320fb9671a Binary files /dev/null and "b/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/MVC\344\274\240\345\217\202/Blog/bin/Debug/net8.0/de/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll" differ diff --git "a/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/MVC\344\274\240\345\217\202/Blog/bin/Debug/net8.0/de/Microsoft.CodeAnalysis.CSharp.resources.dll" "b/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/MVC\344\274\240\345\217\202/Blog/bin/Debug/net8.0/de/Microsoft.CodeAnalysis.CSharp.resources.dll" new file mode 100644 index 0000000000000000000000000000000000000000..05da79f9463cfc3891c8006194fad137a366e114 Binary files /dev/null and "b/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/MVC\344\274\240\345\217\202/Blog/bin/Debug/net8.0/de/Microsoft.CodeAnalysis.CSharp.resources.dll" differ diff --git "a/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/MVC\344\274\240\345\217\202/Blog/bin/Debug/net8.0/de/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll" "b/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/MVC\344\274\240\345\217\202/Blog/bin/Debug/net8.0/de/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll" new file mode 100644 index 0000000000000000000000000000000000000000..bd0bb72b1cdda408b1d8e0fddc28f721771d0a58 Binary files /dev/null and "b/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/MVC\344\274\240\345\217\202/Blog/bin/Debug/net8.0/de/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll" differ diff --git "a/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/MVC\344\274\240\345\217\202/Blog/bin/Debug/net8.0/de/Microsoft.CodeAnalysis.Workspaces.resources.dll" "b/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/MVC\344\274\240\345\217\202/Blog/bin/Debug/net8.0/de/Microsoft.CodeAnalysis.Workspaces.resources.dll" new file mode 100644 index 0000000000000000000000000000000000000000..e1284078c5ac4f9a81f715dd872193353cc66469 Binary files /dev/null and "b/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/MVC\344\274\240\345\217\202/Blog/bin/Debug/net8.0/de/Microsoft.CodeAnalysis.Workspaces.resources.dll" differ diff --git "a/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/MVC\344\274\240\345\217\202/Blog/bin/Debug/net8.0/de/Microsoft.CodeAnalysis.resources.dll" "b/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/MVC\344\274\240\345\217\202/Blog/bin/Debug/net8.0/de/Microsoft.CodeAnalysis.resources.dll" new file mode 100644 index 0000000000000000000000000000000000000000..6a98feb69553827fc5e303a2a95f4fbd43cd993e Binary files /dev/null and "b/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/MVC\344\274\240\345\217\202/Blog/bin/Debug/net8.0/de/Microsoft.CodeAnalysis.resources.dll" differ diff --git "a/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/MVC\344\274\240\345\217\202/Blog/bin/Debug/net8.0/es/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll" "b/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/MVC\344\274\240\345\217\202/Blog/bin/Debug/net8.0/es/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll" new file mode 100644 index 0000000000000000000000000000000000000000..8e8ced10e6839ff51687812eee3d30067c26b4f4 Binary files /dev/null and "b/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/MVC\344\274\240\345\217\202/Blog/bin/Debug/net8.0/es/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll" differ diff --git "a/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/MVC\344\274\240\345\217\202/Blog/bin/Debug/net8.0/es/Microsoft.CodeAnalysis.CSharp.resources.dll" "b/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/MVC\344\274\240\345\217\202/Blog/bin/Debug/net8.0/es/Microsoft.CodeAnalysis.CSharp.resources.dll" new file mode 100644 index 0000000000000000000000000000000000000000..970399ec982dac41718b98bc80a2c953bab35b49 Binary files /dev/null and "b/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/MVC\344\274\240\345\217\202/Blog/bin/Debug/net8.0/es/Microsoft.CodeAnalysis.CSharp.resources.dll" differ diff --git "a/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/MVC\344\274\240\345\217\202/Blog/bin/Debug/net8.0/es/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll" "b/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/MVC\344\274\240\345\217\202/Blog/bin/Debug/net8.0/es/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll" new file mode 100644 index 0000000000000000000000000000000000000000..9e6afdd14b7ded8fed322183e0fcd55ee1f5d030 Binary files /dev/null and "b/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/MVC\344\274\240\345\217\202/Blog/bin/Debug/net8.0/es/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll" differ diff --git "a/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/MVC\344\274\240\345\217\202/Blog/bin/Debug/net8.0/es/Microsoft.CodeAnalysis.Workspaces.resources.dll" "b/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/MVC\344\274\240\345\217\202/Blog/bin/Debug/net8.0/es/Microsoft.CodeAnalysis.Workspaces.resources.dll" new file mode 100644 index 0000000000000000000000000000000000000000..6cb47acedfe65b01a6931e2d17d9718775cd590c Binary files /dev/null and "b/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/MVC\344\274\240\345\217\202/Blog/bin/Debug/net8.0/es/Microsoft.CodeAnalysis.Workspaces.resources.dll" differ diff --git "a/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/MVC\344\274\240\345\217\202/Blog/bin/Debug/net8.0/es/Microsoft.CodeAnalysis.resources.dll" "b/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/MVC\344\274\240\345\217\202/Blog/bin/Debug/net8.0/es/Microsoft.CodeAnalysis.resources.dll" new file mode 100644 index 0000000000000000000000000000000000000000..76ddceb6d3e3d885eb076d461f3b4fd99995791c Binary files /dev/null and "b/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/MVC\344\274\240\345\217\202/Blog/bin/Debug/net8.0/es/Microsoft.CodeAnalysis.resources.dll" differ diff --git "a/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/MVC\344\274\240\345\217\202/Blog/bin/Debug/net8.0/fr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll" "b/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/MVC\344\274\240\345\217\202/Blog/bin/Debug/net8.0/fr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll" new file mode 100644 index 0000000000000000000000000000000000000000..c41ed4c34adfd7b44c156fe88790f5d40b4b621d Binary files /dev/null and "b/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/MVC\344\274\240\345\217\202/Blog/bin/Debug/net8.0/fr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll" differ diff --git "a/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/MVC\344\274\240\345\217\202/Blog/bin/Debug/net8.0/fr/Microsoft.CodeAnalysis.CSharp.resources.dll" "b/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/MVC\344\274\240\345\217\202/Blog/bin/Debug/net8.0/fr/Microsoft.CodeAnalysis.CSharp.resources.dll" new file mode 100644 index 0000000000000000000000000000000000000000..5fe6dd873bf68cf99ac017efdc1263fdbd751049 Binary files /dev/null and "b/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/MVC\344\274\240\345\217\202/Blog/bin/Debug/net8.0/fr/Microsoft.CodeAnalysis.CSharp.resources.dll" differ diff --git "a/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/MVC\344\274\240\345\217\202/Blog/bin/Debug/net8.0/fr/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll" "b/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/MVC\344\274\240\345\217\202/Blog/bin/Debug/net8.0/fr/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll" new file mode 100644 index 0000000000000000000000000000000000000000..6eb37cb7b27505913f98242a270d715b97e2d85e Binary files /dev/null and "b/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/MVC\344\274\240\345\217\202/Blog/bin/Debug/net8.0/fr/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll" differ diff --git "a/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/MVC\344\274\240\345\217\202/Blog/bin/Debug/net8.0/fr/Microsoft.CodeAnalysis.Workspaces.resources.dll" "b/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/MVC\344\274\240\345\217\202/Blog/bin/Debug/net8.0/fr/Microsoft.CodeAnalysis.Workspaces.resources.dll" new file mode 100644 index 0000000000000000000000000000000000000000..046c953008bca2531f61a3a9579800bc4a93995a Binary files /dev/null and "b/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/MVC\344\274\240\345\217\202/Blog/bin/Debug/net8.0/fr/Microsoft.CodeAnalysis.Workspaces.resources.dll" differ diff --git "a/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/MVC\344\274\240\345\217\202/Blog/bin/Debug/net8.0/fr/Microsoft.CodeAnalysis.resources.dll" "b/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/MVC\344\274\240\345\217\202/Blog/bin/Debug/net8.0/fr/Microsoft.CodeAnalysis.resources.dll" new file mode 100644 index 0000000000000000000000000000000000000000..368bb7bc8cd3c203d800dc426190247e06140825 Binary files /dev/null and "b/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/MVC\344\274\240\345\217\202/Blog/bin/Debug/net8.0/fr/Microsoft.CodeAnalysis.resources.dll" differ diff --git "a/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/MVC\344\274\240\345\217\202/Blog/bin/Debug/net8.0/it/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll" "b/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/MVC\344\274\240\345\217\202/Blog/bin/Debug/net8.0/it/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll" new file mode 100644 index 0000000000000000000000000000000000000000..72bb9d5603a83e3c41462f6b2c1ba4d2232931c4 Binary files /dev/null and "b/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/MVC\344\274\240\345\217\202/Blog/bin/Debug/net8.0/it/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll" differ diff --git "a/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/MVC\344\274\240\345\217\202/Blog/bin/Debug/net8.0/it/Microsoft.CodeAnalysis.CSharp.resources.dll" "b/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/MVC\344\274\240\345\217\202/Blog/bin/Debug/net8.0/it/Microsoft.CodeAnalysis.CSharp.resources.dll" new file mode 100644 index 0000000000000000000000000000000000000000..6051d99dfb6810d72a8a12f08f47c929c53b460f Binary files /dev/null and "b/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/MVC\344\274\240\345\217\202/Blog/bin/Debug/net8.0/it/Microsoft.CodeAnalysis.CSharp.resources.dll" differ diff --git "a/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/MVC\344\274\240\345\217\202/Blog/bin/Debug/net8.0/it/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll" "b/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/MVC\344\274\240\345\217\202/Blog/bin/Debug/net8.0/it/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll" new file mode 100644 index 0000000000000000000000000000000000000000..ad0d2cd242f1247151a25471c01922074e67ce42 Binary files /dev/null and "b/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/MVC\344\274\240\345\217\202/Blog/bin/Debug/net8.0/it/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll" differ diff --git "a/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/MVC\344\274\240\345\217\202/Blog/bin/Debug/net8.0/it/Microsoft.CodeAnalysis.Workspaces.resources.dll" "b/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/MVC\344\274\240\345\217\202/Blog/bin/Debug/net8.0/it/Microsoft.CodeAnalysis.Workspaces.resources.dll" new file mode 100644 index 0000000000000000000000000000000000000000..829ed5d0a6006b688ee473cc9a20cb86591adcbb Binary files /dev/null and "b/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/MVC\344\274\240\345\217\202/Blog/bin/Debug/net8.0/it/Microsoft.CodeAnalysis.Workspaces.resources.dll" differ diff --git "a/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/MVC\344\274\240\345\217\202/Blog/bin/Debug/net8.0/it/Microsoft.CodeAnalysis.resources.dll" "b/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/MVC\344\274\240\345\217\202/Blog/bin/Debug/net8.0/it/Microsoft.CodeAnalysis.resources.dll" new file mode 100644 index 0000000000000000000000000000000000000000..9890df127f5d48d1d46432e40b8db5da6c9ee9eb Binary files /dev/null and "b/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/MVC\344\274\240\345\217\202/Blog/bin/Debug/net8.0/it/Microsoft.CodeAnalysis.resources.dll" differ diff --git "a/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/MVC\344\274\240\345\217\202/Blog/bin/Debug/net8.0/ja/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll" "b/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/MVC\344\274\240\345\217\202/Blog/bin/Debug/net8.0/ja/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll" new file mode 100644 index 0000000000000000000000000000000000000000..eaded8c9304f2f0c7748b7bb757b705c9e300b36 Binary files /dev/null and "b/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/MVC\344\274\240\345\217\202/Blog/bin/Debug/net8.0/ja/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll" differ diff --git "a/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/MVC\344\274\240\345\217\202/Blog/bin/Debug/net8.0/ja/Microsoft.CodeAnalysis.CSharp.resources.dll" "b/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/MVC\344\274\240\345\217\202/Blog/bin/Debug/net8.0/ja/Microsoft.CodeAnalysis.CSharp.resources.dll" new file mode 100644 index 0000000000000000000000000000000000000000..47f3fd5e4216854f2488d0c1eeeb744f1b8a2ec7 Binary files /dev/null and "b/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/MVC\344\274\240\345\217\202/Blog/bin/Debug/net8.0/ja/Microsoft.CodeAnalysis.CSharp.resources.dll" differ diff --git "a/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/MVC\344\274\240\345\217\202/Blog/bin/Debug/net8.0/ja/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll" "b/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/MVC\344\274\240\345\217\202/Blog/bin/Debug/net8.0/ja/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll" new file mode 100644 index 0000000000000000000000000000000000000000..28c43a13854d50c9a10261f0a3d1cfa80c114ec0 Binary files /dev/null and "b/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/MVC\344\274\240\345\217\202/Blog/bin/Debug/net8.0/ja/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll" differ diff --git "a/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/MVC\344\274\240\345\217\202/Blog/bin/Debug/net8.0/ja/Microsoft.CodeAnalysis.Workspaces.resources.dll" "b/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/MVC\344\274\240\345\217\202/Blog/bin/Debug/net8.0/ja/Microsoft.CodeAnalysis.Workspaces.resources.dll" new file mode 100644 index 0000000000000000000000000000000000000000..203cc83b02d9f6c513faf00b987e20eadd6aa343 Binary files /dev/null and "b/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/MVC\344\274\240\345\217\202/Blog/bin/Debug/net8.0/ja/Microsoft.CodeAnalysis.Workspaces.resources.dll" differ diff --git "a/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/MVC\344\274\240\345\217\202/Blog/bin/Debug/net8.0/ja/Microsoft.CodeAnalysis.resources.dll" "b/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/MVC\344\274\240\345\217\202/Blog/bin/Debug/net8.0/ja/Microsoft.CodeAnalysis.resources.dll" new file mode 100644 index 0000000000000000000000000000000000000000..208b1d935be470c83f7690c09278062912b12b74 Binary files /dev/null and "b/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/MVC\344\274\240\345\217\202/Blog/bin/Debug/net8.0/ja/Microsoft.CodeAnalysis.resources.dll" differ diff --git "a/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/MVC\344\274\240\345\217\202/Blog/bin/Debug/net8.0/ko/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll" "b/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/MVC\344\274\240\345\217\202/Blog/bin/Debug/net8.0/ko/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll" new file mode 100644 index 0000000000000000000000000000000000000000..895ca111f56372aa4e69625932053ed0987983f3 Binary files /dev/null and "b/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/MVC\344\274\240\345\217\202/Blog/bin/Debug/net8.0/ko/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll" differ diff --git "a/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/MVC\344\274\240\345\217\202/Blog/bin/Debug/net8.0/ko/Microsoft.CodeAnalysis.CSharp.resources.dll" "b/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/MVC\344\274\240\345\217\202/Blog/bin/Debug/net8.0/ko/Microsoft.CodeAnalysis.CSharp.resources.dll" new file mode 100644 index 0000000000000000000000000000000000000000..c712a3797caf1d8cb2baeaa0a7081648a1c2f843 Binary files /dev/null and "b/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/MVC\344\274\240\345\217\202/Blog/bin/Debug/net8.0/ko/Microsoft.CodeAnalysis.CSharp.resources.dll" differ diff --git "a/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/MVC\344\274\240\345\217\202/Blog/bin/Debug/net8.0/ko/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll" "b/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/MVC\344\274\240\345\217\202/Blog/bin/Debug/net8.0/ko/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll" new file mode 100644 index 0000000000000000000000000000000000000000..4d5b1a358220841c27fbf876d8a1a273480acdc3 Binary files /dev/null and "b/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/MVC\344\274\240\345\217\202/Blog/bin/Debug/net8.0/ko/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll" differ diff --git "a/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/MVC\344\274\240\345\217\202/Blog/bin/Debug/net8.0/ko/Microsoft.CodeAnalysis.Workspaces.resources.dll" "b/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/MVC\344\274\240\345\217\202/Blog/bin/Debug/net8.0/ko/Microsoft.CodeAnalysis.Workspaces.resources.dll" new file mode 100644 index 0000000000000000000000000000000000000000..4790c29c0975b3e84f789dca94e5958aae6cfecc Binary files /dev/null and "b/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/MVC\344\274\240\345\217\202/Blog/bin/Debug/net8.0/ko/Microsoft.CodeAnalysis.Workspaces.resources.dll" differ diff --git "a/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/MVC\344\274\240\345\217\202/Blog/bin/Debug/net8.0/ko/Microsoft.CodeAnalysis.resources.dll" "b/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/MVC\344\274\240\345\217\202/Blog/bin/Debug/net8.0/ko/Microsoft.CodeAnalysis.resources.dll" new file mode 100644 index 0000000000000000000000000000000000000000..05bc700a2d7c1df9d22908b610891cfaa2bb45ac Binary files /dev/null and "b/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/MVC\344\274\240\345\217\202/Blog/bin/Debug/net8.0/ko/Microsoft.CodeAnalysis.resources.dll" differ diff --git "a/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/MVC\344\274\240\345\217\202/Blog/bin/Debug/net8.0/pl/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll" "b/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/MVC\344\274\240\345\217\202/Blog/bin/Debug/net8.0/pl/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll" new file mode 100644 index 0000000000000000000000000000000000000000..eb61affd8be4e4f556215014689ad5fc32561abb Binary files /dev/null and "b/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/MVC\344\274\240\345\217\202/Blog/bin/Debug/net8.0/pl/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll" differ diff --git "a/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/MVC\344\274\240\345\217\202/Blog/bin/Debug/net8.0/pl/Microsoft.CodeAnalysis.CSharp.resources.dll" "b/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/MVC\344\274\240\345\217\202/Blog/bin/Debug/net8.0/pl/Microsoft.CodeAnalysis.CSharp.resources.dll" new file mode 100644 index 0000000000000000000000000000000000000000..ea192ccb5f92e9ee11e9f7fc741009a08f3d6aaa Binary files /dev/null and "b/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/MVC\344\274\240\345\217\202/Blog/bin/Debug/net8.0/pl/Microsoft.CodeAnalysis.CSharp.resources.dll" differ diff --git "a/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/MVC\344\274\240\345\217\202/Blog/bin/Debug/net8.0/pl/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll" "b/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/MVC\344\274\240\345\217\202/Blog/bin/Debug/net8.0/pl/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll" new file mode 100644 index 0000000000000000000000000000000000000000..08eaeab078ea25106c87bf4883af6dfdd8fa6988 Binary files /dev/null and "b/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/MVC\344\274\240\345\217\202/Blog/bin/Debug/net8.0/pl/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll" differ diff --git "a/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/MVC\344\274\240\345\217\202/Blog/bin/Debug/net8.0/pl/Microsoft.CodeAnalysis.Workspaces.resources.dll" "b/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/MVC\344\274\240\345\217\202/Blog/bin/Debug/net8.0/pl/Microsoft.CodeAnalysis.Workspaces.resources.dll" new file mode 100644 index 0000000000000000000000000000000000000000..fce2d362757a74286fa3904e4cac31abeee94cf3 Binary files /dev/null and "b/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/MVC\344\274\240\345\217\202/Blog/bin/Debug/net8.0/pl/Microsoft.CodeAnalysis.Workspaces.resources.dll" differ diff --git "a/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/MVC\344\274\240\345\217\202/Blog/bin/Debug/net8.0/pl/Microsoft.CodeAnalysis.resources.dll" "b/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/MVC\344\274\240\345\217\202/Blog/bin/Debug/net8.0/pl/Microsoft.CodeAnalysis.resources.dll" new file mode 100644 index 0000000000000000000000000000000000000000..e14202973ddc4c80e5ef2bffb830f90f976ac1a2 Binary files /dev/null and "b/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/MVC\344\274\240\345\217\202/Blog/bin/Debug/net8.0/pl/Microsoft.CodeAnalysis.resources.dll" differ diff --git "a/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/MVC\344\274\240\345\217\202/Blog/bin/Debug/net8.0/pt-BR/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll" "b/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/MVC\344\274\240\345\217\202/Blog/bin/Debug/net8.0/pt-BR/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll" new file mode 100644 index 0000000000000000000000000000000000000000..7c202091eed0dc9b9039481a29a99ff53102065a Binary files /dev/null and "b/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/MVC\344\274\240\345\217\202/Blog/bin/Debug/net8.0/pt-BR/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll" differ diff --git "a/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/MVC\344\274\240\345\217\202/Blog/bin/Debug/net8.0/pt-BR/Microsoft.CodeAnalysis.CSharp.resources.dll" "b/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/MVC\344\274\240\345\217\202/Blog/bin/Debug/net8.0/pt-BR/Microsoft.CodeAnalysis.CSharp.resources.dll" new file mode 100644 index 0000000000000000000000000000000000000000..be860336300f73110abef1b5abe12df523df6f7e Binary files /dev/null and "b/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/MVC\344\274\240\345\217\202/Blog/bin/Debug/net8.0/pt-BR/Microsoft.CodeAnalysis.CSharp.resources.dll" differ diff --git "a/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/MVC\344\274\240\345\217\202/Blog/bin/Debug/net8.0/pt-BR/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll" "b/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/MVC\344\274\240\345\217\202/Blog/bin/Debug/net8.0/pt-BR/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll" new file mode 100644 index 0000000000000000000000000000000000000000..4be51d2a48a25111691d9bda6ed7504a5304cc92 Binary files /dev/null and "b/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/MVC\344\274\240\345\217\202/Blog/bin/Debug/net8.0/pt-BR/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll" differ diff --git "a/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/MVC\344\274\240\345\217\202/Blog/bin/Debug/net8.0/pt-BR/Microsoft.CodeAnalysis.Workspaces.resources.dll" "b/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/MVC\344\274\240\345\217\202/Blog/bin/Debug/net8.0/pt-BR/Microsoft.CodeAnalysis.Workspaces.resources.dll" new file mode 100644 index 0000000000000000000000000000000000000000..768264caa7b606ff2f135875b5f895b906878cc8 Binary files /dev/null and "b/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/MVC\344\274\240\345\217\202/Blog/bin/Debug/net8.0/pt-BR/Microsoft.CodeAnalysis.Workspaces.resources.dll" differ diff --git "a/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/MVC\344\274\240\345\217\202/Blog/bin/Debug/net8.0/pt-BR/Microsoft.CodeAnalysis.resources.dll" "b/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/MVC\344\274\240\345\217\202/Blog/bin/Debug/net8.0/pt-BR/Microsoft.CodeAnalysis.resources.dll" new file mode 100644 index 0000000000000000000000000000000000000000..0dc6fae02213f8d86797257662413a80e37814b2 Binary files /dev/null and "b/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/MVC\344\274\240\345\217\202/Blog/bin/Debug/net8.0/pt-BR/Microsoft.CodeAnalysis.resources.dll" differ diff --git "a/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/MVC\344\274\240\345\217\202/Blog/bin/Debug/net8.0/ru/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll" "b/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/MVC\344\274\240\345\217\202/Blog/bin/Debug/net8.0/ru/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll" new file mode 100644 index 0000000000000000000000000000000000000000..85dd902f5f1922fb15c88423f8d9d4cc747332e3 Binary files /dev/null and "b/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/MVC\344\274\240\345\217\202/Blog/bin/Debug/net8.0/ru/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll" differ diff --git "a/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/MVC\344\274\240\345\217\202/Blog/bin/Debug/net8.0/ru/Microsoft.CodeAnalysis.CSharp.resources.dll" "b/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/MVC\344\274\240\345\217\202/Blog/bin/Debug/net8.0/ru/Microsoft.CodeAnalysis.CSharp.resources.dll" new file mode 100644 index 0000000000000000000000000000000000000000..dfd0a6bfd97125d58b899666d4091c471941e217 Binary files /dev/null and "b/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/MVC\344\274\240\345\217\202/Blog/bin/Debug/net8.0/ru/Microsoft.CodeAnalysis.CSharp.resources.dll" differ diff --git "a/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/MVC\344\274\240\345\217\202/Blog/bin/Debug/net8.0/ru/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll" "b/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/MVC\344\274\240\345\217\202/Blog/bin/Debug/net8.0/ru/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll" new file mode 100644 index 0000000000000000000000000000000000000000..f5e6b57a300f9e0089c1b6465babc8150067ce31 Binary files /dev/null and "b/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/MVC\344\274\240\345\217\202/Blog/bin/Debug/net8.0/ru/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll" differ diff --git "a/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/MVC\344\274\240\345\217\202/Blog/bin/Debug/net8.0/ru/Microsoft.CodeAnalysis.Workspaces.resources.dll" "b/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/MVC\344\274\240\345\217\202/Blog/bin/Debug/net8.0/ru/Microsoft.CodeAnalysis.Workspaces.resources.dll" new file mode 100644 index 0000000000000000000000000000000000000000..cafdf2152ada08d03b777e867df2cf49ddd21fe1 Binary files /dev/null and "b/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/MVC\344\274\240\345\217\202/Blog/bin/Debug/net8.0/ru/Microsoft.CodeAnalysis.Workspaces.resources.dll" differ diff --git "a/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/MVC\344\274\240\345\217\202/Blog/bin/Debug/net8.0/ru/Microsoft.CodeAnalysis.resources.dll" "b/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/MVC\344\274\240\345\217\202/Blog/bin/Debug/net8.0/ru/Microsoft.CodeAnalysis.resources.dll" new file mode 100644 index 0000000000000000000000000000000000000000..ace0504db4d60017874213b3c4d63b8ea8c8bfae Binary files /dev/null and "b/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/MVC\344\274\240\345\217\202/Blog/bin/Debug/net8.0/ru/Microsoft.CodeAnalysis.resources.dll" differ diff --git "a/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/MVC\344\274\240\345\217\202/Blog/bin/Debug/net8.0/runtimes/browser/lib/net8.0/System.Text.Encodings.Web.dll" "b/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/MVC\344\274\240\345\217\202/Blog/bin/Debug/net8.0/runtimes/browser/lib/net8.0/System.Text.Encodings.Web.dll" new file mode 100644 index 0000000000000000000000000000000000000000..38c9af4ad8494a7a0b77b5bfc6327d8113405877 Binary files /dev/null and "b/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/MVC\344\274\240\345\217\202/Blog/bin/Debug/net8.0/runtimes/browser/lib/net8.0/System.Text.Encodings.Web.dll" differ diff --git "a/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/MVC\344\274\240\345\217\202/Blog/bin/Debug/net8.0/runtimes/unix/lib/net6.0/Microsoft.Data.SqlClient.dll" "b/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/MVC\344\274\240\345\217\202/Blog/bin/Debug/net8.0/runtimes/unix/lib/net6.0/Microsoft.Data.SqlClient.dll" new file mode 100644 index 0000000000000000000000000000000000000000..206341fa14f14d614fbde6a27edad8af980a6515 Binary files /dev/null and "b/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/MVC\344\274\240\345\217\202/Blog/bin/Debug/net8.0/runtimes/unix/lib/net6.0/Microsoft.Data.SqlClient.dll" differ diff --git "a/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/MVC\344\274\240\345\217\202/Blog/bin/Debug/net8.0/runtimes/unix/lib/net6.0/System.Drawing.Common.dll" "b/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/MVC\344\274\240\345\217\202/Blog/bin/Debug/net8.0/runtimes/unix/lib/net6.0/System.Drawing.Common.dll" new file mode 100644 index 0000000000000000000000000000000000000000..9e26473d19758449ffdf145fe1975e6a627e3639 Binary files /dev/null and "b/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/MVC\344\274\240\345\217\202/Blog/bin/Debug/net8.0/runtimes/unix/lib/net6.0/System.Drawing.Common.dll" differ diff --git "a/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/MVC\344\274\240\345\217\202/Blog/bin/Debug/net8.0/runtimes/win-arm/native/Microsoft.Data.SqlClient.SNI.dll" "b/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/MVC\344\274\240\345\217\202/Blog/bin/Debug/net8.0/runtimes/win-arm/native/Microsoft.Data.SqlClient.SNI.dll" new file mode 100644 index 0000000000000000000000000000000000000000..c171a721211df5251930e67537ca85366cb7184d Binary files /dev/null and "b/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/MVC\344\274\240\345\217\202/Blog/bin/Debug/net8.0/runtimes/win-arm/native/Microsoft.Data.SqlClient.SNI.dll" differ diff --git "a/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/MVC\344\274\240\345\217\202/Blog/bin/Debug/net8.0/runtimes/win-arm64/native/Microsoft.Data.SqlClient.SNI.dll" "b/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/MVC\344\274\240\345\217\202/Blog/bin/Debug/net8.0/runtimes/win-arm64/native/Microsoft.Data.SqlClient.SNI.dll" new file mode 100644 index 0000000000000000000000000000000000000000..3f2b45205cb4ae2836c419f9893472552dfd0cdd Binary files /dev/null and "b/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/MVC\344\274\240\345\217\202/Blog/bin/Debug/net8.0/runtimes/win-arm64/native/Microsoft.Data.SqlClient.SNI.dll" differ diff --git "a/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/MVC\344\274\240\345\217\202/Blog/bin/Debug/net8.0/runtimes/win-x64/native/Microsoft.Data.SqlClient.SNI.dll" "b/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/MVC\344\274\240\345\217\202/Blog/bin/Debug/net8.0/runtimes/win-x64/native/Microsoft.Data.SqlClient.SNI.dll" new file mode 100644 index 0000000000000000000000000000000000000000..8fde16b4e05369a997773c4157ba8e9e7487ef70 Binary files /dev/null and "b/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/MVC\344\274\240\345\217\202/Blog/bin/Debug/net8.0/runtimes/win-x64/native/Microsoft.Data.SqlClient.SNI.dll" differ diff --git "a/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/MVC\344\274\240\345\217\202/Blog/bin/Debug/net8.0/runtimes/win-x86/native/Microsoft.Data.SqlClient.SNI.dll" "b/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/MVC\344\274\240\345\217\202/Blog/bin/Debug/net8.0/runtimes/win-x86/native/Microsoft.Data.SqlClient.SNI.dll" new file mode 100644 index 0000000000000000000000000000000000000000..93fb6315d10502c302e07002f400ca4f2ccae361 Binary files /dev/null and "b/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/MVC\344\274\240\345\217\202/Blog/bin/Debug/net8.0/runtimes/win-x86/native/Microsoft.Data.SqlClient.SNI.dll" differ diff --git "a/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/MVC\344\274\240\345\217\202/Blog/bin/Debug/net8.0/runtimes/win/lib/net6.0/Microsoft.Data.SqlClient.dll" "b/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/MVC\344\274\240\345\217\202/Blog/bin/Debug/net8.0/runtimes/win/lib/net6.0/Microsoft.Data.SqlClient.dll" new file mode 100644 index 0000000000000000000000000000000000000000..ff20fab8efbb2527811fe9ac37cec1b167b8acee Binary files /dev/null and "b/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/MVC\344\274\240\345\217\202/Blog/bin/Debug/net8.0/runtimes/win/lib/net6.0/Microsoft.Data.SqlClient.dll" differ diff --git "a/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/MVC\344\274\240\345\217\202/Blog/bin/Debug/net8.0/runtimes/win/lib/net6.0/Microsoft.Win32.SystemEvents.dll" "b/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/MVC\344\274\240\345\217\202/Blog/bin/Debug/net8.0/runtimes/win/lib/net6.0/Microsoft.Win32.SystemEvents.dll" new file mode 100644 index 0000000000000000000000000000000000000000..66af198214c6d916c745d364c27bbf02f354bb36 Binary files /dev/null and "b/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/MVC\344\274\240\345\217\202/Blog/bin/Debug/net8.0/runtimes/win/lib/net6.0/Microsoft.Win32.SystemEvents.dll" differ diff --git "a/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/MVC\344\274\240\345\217\202/Blog/bin/Debug/net8.0/runtimes/win/lib/net6.0/System.Drawing.Common.dll" "b/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/MVC\344\274\240\345\217\202/Blog/bin/Debug/net8.0/runtimes/win/lib/net6.0/System.Drawing.Common.dll" new file mode 100644 index 0000000000000000000000000000000000000000..7c9e87b4e1820b2beb6928ab1dd927d23a8cb2e7 Binary files /dev/null and "b/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/MVC\344\274\240\345\217\202/Blog/bin/Debug/net8.0/runtimes/win/lib/net6.0/System.Drawing.Common.dll" differ diff --git "a/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/MVC\344\274\240\345\217\202/Blog/bin/Debug/net8.0/runtimes/win/lib/net6.0/System.Runtime.Caching.dll" "b/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/MVC\344\274\240\345\217\202/Blog/bin/Debug/net8.0/runtimes/win/lib/net6.0/System.Runtime.Caching.dll" new file mode 100644 index 0000000000000000000000000000000000000000..bdca76dac9e875711d3f5040421b42b4c7d9aafa Binary files /dev/null and "b/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/MVC\344\274\240\345\217\202/Blog/bin/Debug/net8.0/runtimes/win/lib/net6.0/System.Runtime.Caching.dll" differ diff --git "a/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/MVC\344\274\240\345\217\202/Blog/bin/Debug/net8.0/runtimes/win/lib/net6.0/System.Security.Cryptography.ProtectedData.dll" "b/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/MVC\344\274\240\345\217\202/Blog/bin/Debug/net8.0/runtimes/win/lib/net6.0/System.Security.Cryptography.ProtectedData.dll" new file mode 100644 index 0000000000000000000000000000000000000000..332dbfa952d36ad63df57c145bd3acb12c2c2f3c Binary files /dev/null and "b/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/MVC\344\274\240\345\217\202/Blog/bin/Debug/net8.0/runtimes/win/lib/net6.0/System.Security.Cryptography.ProtectedData.dll" differ diff --git "a/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/MVC\344\274\240\345\217\202/Blog/bin/Debug/net8.0/runtimes/win/lib/net6.0/System.Windows.Extensions.dll" "b/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/MVC\344\274\240\345\217\202/Blog/bin/Debug/net8.0/runtimes/win/lib/net6.0/System.Windows.Extensions.dll" new file mode 100644 index 0000000000000000000000000000000000000000..69f0d1b74e97ab70411ce50f2af8a5c902facdd6 Binary files /dev/null and "b/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/MVC\344\274\240\345\217\202/Blog/bin/Debug/net8.0/runtimes/win/lib/net6.0/System.Windows.Extensions.dll" differ diff --git "a/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/MVC\344\274\240\345\217\202/Blog/bin/Debug/net8.0/tr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll" "b/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/MVC\344\274\240\345\217\202/Blog/bin/Debug/net8.0/tr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll" new file mode 100644 index 0000000000000000000000000000000000000000..9867f6fe78238dabd88e4bc223b36492d811b939 Binary files /dev/null and "b/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/MVC\344\274\240\345\217\202/Blog/bin/Debug/net8.0/tr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll" differ diff --git "a/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/MVC\344\274\240\345\217\202/Blog/bin/Debug/net8.0/tr/Microsoft.CodeAnalysis.CSharp.resources.dll" "b/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/MVC\344\274\240\345\217\202/Blog/bin/Debug/net8.0/tr/Microsoft.CodeAnalysis.CSharp.resources.dll" new file mode 100644 index 0000000000000000000000000000000000000000..2a4742eec89228f8d248a741c007f5d2e4ea5d77 Binary files /dev/null and "b/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/MVC\344\274\240\345\217\202/Blog/bin/Debug/net8.0/tr/Microsoft.CodeAnalysis.CSharp.resources.dll" differ diff --git "a/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/MVC\344\274\240\345\217\202/Blog/bin/Debug/net8.0/tr/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll" "b/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/MVC\344\274\240\345\217\202/Blog/bin/Debug/net8.0/tr/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll" new file mode 100644 index 0000000000000000000000000000000000000000..8977db0cb35fa2a494f531884484eb670c0c1a3f Binary files /dev/null and "b/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/MVC\344\274\240\345\217\202/Blog/bin/Debug/net8.0/tr/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll" differ diff --git "a/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/MVC\344\274\240\345\217\202/Blog/bin/Debug/net8.0/tr/Microsoft.CodeAnalysis.Workspaces.resources.dll" "b/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/MVC\344\274\240\345\217\202/Blog/bin/Debug/net8.0/tr/Microsoft.CodeAnalysis.Workspaces.resources.dll" new file mode 100644 index 0000000000000000000000000000000000000000..8012969cb1a265c587d0832faa10a24983d8c767 Binary files /dev/null and "b/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/MVC\344\274\240\345\217\202/Blog/bin/Debug/net8.0/tr/Microsoft.CodeAnalysis.Workspaces.resources.dll" differ diff --git "a/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/MVC\344\274\240\345\217\202/Blog/bin/Debug/net8.0/tr/Microsoft.CodeAnalysis.resources.dll" "b/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/MVC\344\274\240\345\217\202/Blog/bin/Debug/net8.0/tr/Microsoft.CodeAnalysis.resources.dll" new file mode 100644 index 0000000000000000000000000000000000000000..9a06288f43738ac84271eae1969968febdb453ba Binary files /dev/null and "b/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/MVC\344\274\240\345\217\202/Blog/bin/Debug/net8.0/tr/Microsoft.CodeAnalysis.resources.dll" differ diff --git "a/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/MVC\344\274\240\345\217\202/Blog/bin/Debug/net8.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll" "b/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/MVC\344\274\240\345\217\202/Blog/bin/Debug/net8.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll" new file mode 100644 index 0000000000000000000000000000000000000000..e4b3c7aa2ece8c96d58c13d5c33f37bfd4583c47 Binary files /dev/null and "b/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/MVC\344\274\240\345\217\202/Blog/bin/Debug/net8.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll" differ diff --git "a/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/MVC\344\274\240\345\217\202/Blog/bin/Debug/net8.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.resources.dll" "b/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/MVC\344\274\240\345\217\202/Blog/bin/Debug/net8.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.resources.dll" new file mode 100644 index 0000000000000000000000000000000000000000..b51ee5764843de4d4ec81d73dfc6ed4177856325 Binary files /dev/null and "b/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/MVC\344\274\240\345\217\202/Blog/bin/Debug/net8.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.resources.dll" differ diff --git "a/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/MVC\344\274\240\345\217\202/Blog/bin/Debug/net8.0/zh-Hans/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll" "b/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/MVC\344\274\240\345\217\202/Blog/bin/Debug/net8.0/zh-Hans/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll" new file mode 100644 index 0000000000000000000000000000000000000000..d16092587ee1dfd8445649899da2c761281ee42b Binary files /dev/null and "b/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/MVC\344\274\240\345\217\202/Blog/bin/Debug/net8.0/zh-Hans/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll" differ diff --git "a/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/MVC\344\274\240\345\217\202/Blog/bin/Debug/net8.0/zh-Hans/Microsoft.CodeAnalysis.Workspaces.resources.dll" "b/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/MVC\344\274\240\345\217\202/Blog/bin/Debug/net8.0/zh-Hans/Microsoft.CodeAnalysis.Workspaces.resources.dll" new file mode 100644 index 0000000000000000000000000000000000000000..e27e8bed8d316c50233fb8bc8982eff6806cc0ca Binary files /dev/null and "b/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/MVC\344\274\240\345\217\202/Blog/bin/Debug/net8.0/zh-Hans/Microsoft.CodeAnalysis.Workspaces.resources.dll" differ diff --git "a/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/MVC\344\274\240\345\217\202/Blog/bin/Debug/net8.0/zh-Hans/Microsoft.CodeAnalysis.resources.dll" "b/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/MVC\344\274\240\345\217\202/Blog/bin/Debug/net8.0/zh-Hans/Microsoft.CodeAnalysis.resources.dll" new file mode 100644 index 0000000000000000000000000000000000000000..22b6e9513e572ffd261566507cec59c2fc298449 Binary files /dev/null and "b/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/MVC\344\274\240\345\217\202/Blog/bin/Debug/net8.0/zh-Hans/Microsoft.CodeAnalysis.resources.dll" differ diff --git "a/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/MVC\344\274\240\345\217\202/Blog/bin/Debug/net8.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll" "b/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/MVC\344\274\240\345\217\202/Blog/bin/Debug/net8.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll" new file mode 100644 index 0000000000000000000000000000000000000000..57e4d28e054cca111a567ebfa59a4ab085c7c62e Binary files /dev/null and "b/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/MVC\344\274\240\345\217\202/Blog/bin/Debug/net8.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll" differ diff --git "a/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/MVC\344\274\240\345\217\202/Blog/bin/Debug/net8.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.resources.dll" "b/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/MVC\344\274\240\345\217\202/Blog/bin/Debug/net8.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.resources.dll" new file mode 100644 index 0000000000000000000000000000000000000000..305dfbf34a025e7ea0729fab3ae0b76c43a6dd33 Binary files /dev/null and "b/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/MVC\344\274\240\345\217\202/Blog/bin/Debug/net8.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.resources.dll" differ diff --git "a/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/MVC\344\274\240\345\217\202/Blog/bin/Debug/net8.0/zh-Hant/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll" "b/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/MVC\344\274\240\345\217\202/Blog/bin/Debug/net8.0/zh-Hant/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll" new file mode 100644 index 0000000000000000000000000000000000000000..28a5c18aaa1dcebdb4f1f426e3fc533a75be58fa Binary files /dev/null and "b/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/MVC\344\274\240\345\217\202/Blog/bin/Debug/net8.0/zh-Hant/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll" differ diff --git "a/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/MVC\344\274\240\345\217\202/Blog/bin/Debug/net8.0/zh-Hant/Microsoft.CodeAnalysis.Workspaces.resources.dll" "b/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/MVC\344\274\240\345\217\202/Blog/bin/Debug/net8.0/zh-Hant/Microsoft.CodeAnalysis.Workspaces.resources.dll" new file mode 100644 index 0000000000000000000000000000000000000000..cef3ebc64bdbc58224163b9c4780050650ed7e1d Binary files /dev/null and "b/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/MVC\344\274\240\345\217\202/Blog/bin/Debug/net8.0/zh-Hant/Microsoft.CodeAnalysis.Workspaces.resources.dll" differ diff --git "a/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/MVC\344\274\240\345\217\202/Blog/bin/Debug/net8.0/zh-Hant/Microsoft.CodeAnalysis.resources.dll" "b/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/MVC\344\274\240\345\217\202/Blog/bin/Debug/net8.0/zh-Hant/Microsoft.CodeAnalysis.resources.dll" new file mode 100644 index 0000000000000000000000000000000000000000..dce3bc0f6e168674c8f48cef17e75e9b5a01c512 Binary files /dev/null and "b/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/MVC\344\274\240\345\217\202/Blog/bin/Debug/net8.0/zh-Hant/Microsoft.CodeAnalysis.resources.dll" differ diff --git "a/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/MVC\344\274\240\345\217\202/Blog/obj/Blog.csproj.EntityFrameworkCore.targets" "b/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/MVC\344\274\240\345\217\202/Blog/obj/Blog.csproj.EntityFrameworkCore.targets" new file mode 100644 index 0000000000000000000000000000000000000000..7d6485dcc7c9ec06986dd0c7ad61a9a5dc2615c8 --- /dev/null +++ "b/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/MVC\344\274\240\345\217\202/Blog/obj/Blog.csproj.EntityFrameworkCore.targets" @@ -0,0 +1,28 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git "a/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/MVC\344\274\240\345\217\202/Blog/obj/Blog.csproj.nuget.dgspec.json" "b/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/MVC\344\274\240\345\217\202/Blog/obj/Blog.csproj.nuget.dgspec.json" index da1fe480f9ecc3de9656fd7fd77f2902e9936806..21c0f77abdcef31f0c25d48a846c509bdcc3c449 100644 --- "a/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/MVC\344\274\240\345\217\202/Blog/obj/Blog.csproj.nuget.dgspec.json" +++ "b/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/MVC\344\274\240\345\217\202/Blog/obj/Blog.csproj.nuget.dgspec.json" @@ -44,6 +44,18 @@ "frameworks": { "net8.0": { "targetAlias": "net8.0", + "dependencies": { + "Microsoft.EntityFrameworkCore.Design": { + "include": "Runtime, Build, Native, ContentFiles, Analyzers, BuildTransitive", + "suppressParent": "All", + "target": "Package", + "version": "[9.0.0, )" + }, + "Microsoft.EntityFrameworkCore.SqlServer": { + "target": "Package", + "version": "[9.0.0, )" + } + }, "imports": [ "net461", "net462", diff --git "a/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/MVC\344\274\240\345\217\202/Blog/obj/Blog.csproj.nuget.g.props" "b/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/MVC\344\274\240\345\217\202/Blog/obj/Blog.csproj.nuget.g.props" index f70a8f8cae231adf99f0e53198cbace1282bfd27..2e2a026c50c9e2eaf9139ac2f938577cf200e0ab 100644 --- "a/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/MVC\344\274\240\345\217\202/Blog/obj/Blog.csproj.nuget.g.props" +++ "b/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/MVC\344\274\240\345\217\202/Blog/obj/Blog.csproj.nuget.g.props" @@ -12,4 +12,12 @@ + + + + + + + C:\Users\Dishey\.nuget\packages\microsoft.codeanalysis.analyzers\3.3.4 + \ No newline at end of file diff --git "a/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/MVC\344\274\240\345\217\202/Blog/obj/Blog.csproj.nuget.g.targets" "b/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/MVC\344\274\240\345\217\202/Blog/obj/Blog.csproj.nuget.g.targets" index 3dc06ef3cc4057524bf5d2cd49936dff789cebe8..c732405a8c534b602ef6feacfa2f9e9ba67301f3 100644 --- "a/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/MVC\344\274\240\345\217\202/Blog/obj/Blog.csproj.nuget.g.targets" +++ "b/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/MVC\344\274\240\345\217\202/Blog/obj/Blog.csproj.nuget.g.targets" @@ -1,2 +1,10 @@  - \ No newline at end of file + + + + + + + + + \ No newline at end of file diff --git "a/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/MVC\344\274\240\345\217\202/Blog/obj/Debug/net8.0/Blog.AssemblyInfo.cs" "b/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/MVC\344\274\240\345\217\202/Blog/obj/Debug/net8.0/Blog.AssemblyInfo.cs" index 521996b10fe0b988834df47a303d9a6778b1108c..bf29c947d62511b6bc41fcdc6aee45a1179ab556 100644 --- "a/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/MVC\344\274\240\345\217\202/Blog/obj/Debug/net8.0/Blog.AssemblyInfo.cs" +++ "b/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/MVC\344\274\240\345\217\202/Blog/obj/Debug/net8.0/Blog.AssemblyInfo.cs" @@ -13,7 +13,7 @@ using System.Reflection; [assembly: System.Reflection.AssemblyCompanyAttribute("Blog")] [assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] [assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] -[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+479528ff06e302e0979de98aaf06c3ea3b894423")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+18464ec4b01534d41a231e824ccc1db9b10308ad")] [assembly: System.Reflection.AssemblyProductAttribute("Blog")] [assembly: System.Reflection.AssemblyTitleAttribute("Blog")] [assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] diff --git "a/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/MVC\344\274\240\345\217\202/Blog/obj/Debug/net8.0/Blog.AssemblyInfoInputs.cache" "b/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/MVC\344\274\240\345\217\202/Blog/obj/Debug/net8.0/Blog.AssemblyInfoInputs.cache" index 786d12535886a99b9605be72ecc4072037eed159..e8ec7eca2148b7f41e3e49ab2f3e9d11462298fe 100644 --- "a/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/MVC\344\274\240\345\217\202/Blog/obj/Debug/net8.0/Blog.AssemblyInfoInputs.cache" +++ "b/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/MVC\344\274\240\345\217\202/Blog/obj/Debug/net8.0/Blog.AssemblyInfoInputs.cache" @@ -1 +1 @@ -4b09b7bc684d09aeeb777d94b2179570dc3ed3324755e8cbf295a6eb51113183 +6f357250fbb1dd855b8b878a07efdddac8f770980056b00d2fc36c65478341aa diff --git "a/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/MVC\344\274\240\345\217\202/Blog/obj/Debug/net8.0/Blog.GeneratedMSBuildEditorConfig.editorconfig" "b/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/MVC\344\274\240\345\217\202/Blog/obj/Debug/net8.0/Blog.GeneratedMSBuildEditorConfig.editorconfig" index e8cdc4f7f819e80dca1acd2f7ccffc8a60571634..b4dcb32b32c83e38f0c85dde759d0c65293ab372 100644 --- "a/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/MVC\344\274\240\345\217\202/Blog/obj/Debug/net8.0/Blog.GeneratedMSBuildEditorConfig.editorconfig" +++ "b/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/MVC\344\274\240\345\217\202/Blog/obj/Debug/net8.0/Blog.GeneratedMSBuildEditorConfig.editorconfig" @@ -1,11 +1,19 @@ is_global = true build_property.TargetFramework = net8.0 +build_property.TargetFramework = net8.0 +build_property.TargetPlatformMinVersion = build_property.TargetPlatformMinVersion = build_property.UsingMicrosoftNETSdkWeb = true +build_property.UsingMicrosoftNETSdkWeb = true +build_property.ProjectTypeGuids = build_property.ProjectTypeGuids = build_property.InvariantGlobalization = +build_property.InvariantGlobalization = +build_property.PlatformNeutralAssembly = build_property.PlatformNeutralAssembly = build_property.EnforceExtendedAnalyzerRules = +build_property.EnforceExtendedAnalyzerRules = +build_property._SupportedPlatformList = Linux,macOS,Windows build_property._SupportedPlatformList = Linux,macOS,Windows build_property.RootNamespace = Blog build_property.RootNamespace = Blog diff --git "a/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/MVC\344\274\240\345\217\202/Blog/obj/Debug/net8.0/Blog.assets.cache" "b/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/MVC\344\274\240\345\217\202/Blog/obj/Debug/net8.0/Blog.assets.cache" index 34f37cdadcadb5b5e6a786f43ea82c59ce9c8da6..c47baf10f14cf1e824d065f0451bbabffad01243 100644 Binary files "a/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/MVC\344\274\240\345\217\202/Blog/obj/Debug/net8.0/Blog.assets.cache" and "b/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/MVC\344\274\240\345\217\202/Blog/obj/Debug/net8.0/Blog.assets.cache" differ diff --git "a/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/MVC\344\274\240\345\217\202/Blog/obj/Debug/net8.0/Blog.csproj.AssemblyReference.cache" "b/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/MVC\344\274\240\345\217\202/Blog/obj/Debug/net8.0/Blog.csproj.AssemblyReference.cache" new file mode 100644 index 0000000000000000000000000000000000000000..741ee94f26d6b12552cdb7dd09f8b1df9a4d4155 Binary files /dev/null and "b/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/MVC\344\274\240\345\217\202/Blog/obj/Debug/net8.0/Blog.csproj.AssemblyReference.cache" differ diff --git "a/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/MVC\344\274\240\345\217\202/Blog/obj/Debug/net8.0/Blog.csproj.CoreCompileInputs.cache" "b/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/MVC\344\274\240\345\217\202/Blog/obj/Debug/net8.0/Blog.csproj.CoreCompileInputs.cache" index 12323c4607b0b23477734e96b9d1455d2aa5abf1..07f2e1d855697df9c6be2367570bfa919a1018d2 100644 --- "a/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/MVC\344\274\240\345\217\202/Blog/obj/Debug/net8.0/Blog.csproj.CoreCompileInputs.cache" +++ "b/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/MVC\344\274\240\345\217\202/Blog/obj/Debug/net8.0/Blog.csproj.CoreCompileInputs.cache" @@ -1 +1 @@ -de308d072eb51b3b5cecc88948195684af69724424ec7159192a6462481c7379 +fd0d0a58d2c662fef2378d7c6e0b32787cd240625795c3ff63630bb2366a3165 diff --git "a/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/MVC\344\274\240\345\217\202/Blog/obj/Debug/net8.0/Blog.csproj.FileListAbsolute.txt" "b/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/MVC\344\274\240\345\217\202/Blog/obj/Debug/net8.0/Blog.csproj.FileListAbsolute.txt" index 8402e952ce6d613d4a724c19f170fdd8dbabe872..420eb3a7276f1ae55d60d99bf52b5ebe500bb410 100644 --- "a/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/MVC\344\274\240\345\217\202/Blog/obj/Debug/net8.0/Blog.csproj.FileListAbsolute.txt" +++ "b/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/MVC\344\274\240\345\217\202/Blog/obj/Debug/net8.0/Blog.csproj.FileListAbsolute.txt" @@ -58,3 +58,279 @@ G:\作业上传处\Gitee\grade23-class4-note-mvc\韦诗诗\作业\MVC传参\Blog G:\作业上传处\Gitee\grade23-class4-note-mvc\韦诗诗\作业\MVC传参\Blog\obj\Debug\net8.0\Blog.pdb G:\作业上传处\Gitee\grade23-class4-note-mvc\韦诗诗\作业\MVC传参\Blog\obj\Debug\net8.0\Blog.genruntimeconfig.cache G:\作业上传处\Gitee\grade23-class4-note-mvc\韦诗诗\作业\MVC传参\Blog\obj\Debug\net8.0\ref\Blog.dll +E:\作业上传处\Gitee\grade23-class4-note-mvc\韦诗诗\作业\MVC传参\Blog\obj\Debug\net8.0\Blog.csproj.AssemblyReference.cache +E:\作业上传处\Gitee\grade23-class4-note-mvc\韦诗诗\作业\MVC传参\Blog\bin\Debug\net8.0\Azure.Core.dll +E:\作业上传处\Gitee\grade23-class4-note-mvc\韦诗诗\作业\MVC传参\Blog\bin\Debug\net8.0\Azure.Identity.dll +E:\作业上传处\Gitee\grade23-class4-note-mvc\韦诗诗\作业\MVC传参\Blog\bin\Debug\net8.0\Humanizer.dll +E:\作业上传处\Gitee\grade23-class4-note-mvc\韦诗诗\作业\MVC传参\Blog\bin\Debug\net8.0\Microsoft.Bcl.AsyncInterfaces.dll +E:\作业上传处\Gitee\grade23-class4-note-mvc\韦诗诗\作业\MVC传参\Blog\bin\Debug\net8.0\Microsoft.Build.Locator.dll +E:\作业上传处\Gitee\grade23-class4-note-mvc\韦诗诗\作业\MVC传参\Blog\bin\Debug\net8.0\Microsoft.CodeAnalysis.dll +E:\作业上传处\Gitee\grade23-class4-note-mvc\韦诗诗\作业\MVC传参\Blog\bin\Debug\net8.0\Microsoft.CodeAnalysis.CSharp.dll +E:\作业上传处\Gitee\grade23-class4-note-mvc\韦诗诗\作业\MVC传参\Blog\bin\Debug\net8.0\Microsoft.CodeAnalysis.CSharp.Workspaces.dll +E:\作业上传处\Gitee\grade23-class4-note-mvc\韦诗诗\作业\MVC传参\Blog\bin\Debug\net8.0\Microsoft.CodeAnalysis.Workspaces.dll +E:\作业上传处\Gitee\grade23-class4-note-mvc\韦诗诗\作业\MVC传参\Blog\bin\Debug\net8.0\Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.dll +E:\作业上传处\Gitee\grade23-class4-note-mvc\韦诗诗\作业\MVC传参\Blog\bin\Debug\net8.0\Microsoft.CodeAnalysis.Workspaces.MSBuild.dll +E:\作业上传处\Gitee\grade23-class4-note-mvc\韦诗诗\作业\MVC传参\Blog\bin\Debug\net8.0\Microsoft.Data.SqlClient.dll +E:\作业上传处\Gitee\grade23-class4-note-mvc\韦诗诗\作业\MVC传参\Blog\bin\Debug\net8.0\Microsoft.EntityFrameworkCore.dll +E:\作业上传处\Gitee\grade23-class4-note-mvc\韦诗诗\作业\MVC传参\Blog\bin\Debug\net8.0\Microsoft.EntityFrameworkCore.Abstractions.dll +E:\作业上传处\Gitee\grade23-class4-note-mvc\韦诗诗\作业\MVC传参\Blog\bin\Debug\net8.0\Microsoft.EntityFrameworkCore.Design.dll +E:\作业上传处\Gitee\grade23-class4-note-mvc\韦诗诗\作业\MVC传参\Blog\bin\Debug\net8.0\Microsoft.EntityFrameworkCore.Relational.dll +E:\作业上传处\Gitee\grade23-class4-note-mvc\韦诗诗\作业\MVC传参\Blog\bin\Debug\net8.0\Microsoft.EntityFrameworkCore.SqlServer.dll +E:\作业上传处\Gitee\grade23-class4-note-mvc\韦诗诗\作业\MVC传参\Blog\bin\Debug\net8.0\Microsoft.Extensions.Caching.Abstractions.dll +E:\作业上传处\Gitee\grade23-class4-note-mvc\韦诗诗\作业\MVC传参\Blog\bin\Debug\net8.0\Microsoft.Extensions.Caching.Memory.dll +E:\作业上传处\Gitee\grade23-class4-note-mvc\韦诗诗\作业\MVC传参\Blog\bin\Debug\net8.0\Microsoft.Extensions.Configuration.Abstractions.dll +E:\作业上传处\Gitee\grade23-class4-note-mvc\韦诗诗\作业\MVC传参\Blog\bin\Debug\net8.0\Microsoft.Extensions.DependencyInjection.dll +E:\作业上传处\Gitee\grade23-class4-note-mvc\韦诗诗\作业\MVC传参\Blog\bin\Debug\net8.0\Microsoft.Extensions.DependencyInjection.Abstractions.dll +E:\作业上传处\Gitee\grade23-class4-note-mvc\韦诗诗\作业\MVC传参\Blog\bin\Debug\net8.0\Microsoft.Extensions.DependencyModel.dll +E:\作业上传处\Gitee\grade23-class4-note-mvc\韦诗诗\作业\MVC传参\Blog\bin\Debug\net8.0\Microsoft.Extensions.Logging.dll +E:\作业上传处\Gitee\grade23-class4-note-mvc\韦诗诗\作业\MVC传参\Blog\bin\Debug\net8.0\Microsoft.Extensions.Logging.Abstractions.dll +E:\作业上传处\Gitee\grade23-class4-note-mvc\韦诗诗\作业\MVC传参\Blog\bin\Debug\net8.0\Microsoft.Extensions.Options.dll +E:\作业上传处\Gitee\grade23-class4-note-mvc\韦诗诗\作业\MVC传参\Blog\bin\Debug\net8.0\Microsoft.Extensions.Primitives.dll +E:\作业上传处\Gitee\grade23-class4-note-mvc\韦诗诗\作业\MVC传参\Blog\bin\Debug\net8.0\Microsoft.Identity.Client.dll +E:\作业上传处\Gitee\grade23-class4-note-mvc\韦诗诗\作业\MVC传参\Blog\bin\Debug\net8.0\Microsoft.Identity.Client.Extensions.Msal.dll +E:\作业上传处\Gitee\grade23-class4-note-mvc\韦诗诗\作业\MVC传参\Blog\bin\Debug\net8.0\Microsoft.IdentityModel.Abstractions.dll +E:\作业上传处\Gitee\grade23-class4-note-mvc\韦诗诗\作业\MVC传参\Blog\bin\Debug\net8.0\Microsoft.IdentityModel.JsonWebTokens.dll +E:\作业上传处\Gitee\grade23-class4-note-mvc\韦诗诗\作业\MVC传参\Blog\bin\Debug\net8.0\Microsoft.IdentityModel.Logging.dll +E:\作业上传处\Gitee\grade23-class4-note-mvc\韦诗诗\作业\MVC传参\Blog\bin\Debug\net8.0\Microsoft.IdentityModel.Protocols.dll +E:\作业上传处\Gitee\grade23-class4-note-mvc\韦诗诗\作业\MVC传参\Blog\bin\Debug\net8.0\Microsoft.IdentityModel.Protocols.OpenIdConnect.dll +E:\作业上传处\Gitee\grade23-class4-note-mvc\韦诗诗\作业\MVC传参\Blog\bin\Debug\net8.0\Microsoft.IdentityModel.Tokens.dll +E:\作业上传处\Gitee\grade23-class4-note-mvc\韦诗诗\作业\MVC传参\Blog\bin\Debug\net8.0\Microsoft.SqlServer.Server.dll +E:\作业上传处\Gitee\grade23-class4-note-mvc\韦诗诗\作业\MVC传参\Blog\bin\Debug\net8.0\Microsoft.Win32.SystemEvents.dll +E:\作业上传处\Gitee\grade23-class4-note-mvc\韦诗诗\作业\MVC传参\Blog\bin\Debug\net8.0\Mono.TextTemplating.dll +E:\作业上传处\Gitee\grade23-class4-note-mvc\韦诗诗\作业\MVC传参\Blog\bin\Debug\net8.0\System.ClientModel.dll +E:\作业上传处\Gitee\grade23-class4-note-mvc\韦诗诗\作业\MVC传参\Blog\bin\Debug\net8.0\System.CodeDom.dll +E:\作业上传处\Gitee\grade23-class4-note-mvc\韦诗诗\作业\MVC传参\Blog\bin\Debug\net8.0\System.Composition.AttributedModel.dll +E:\作业上传处\Gitee\grade23-class4-note-mvc\韦诗诗\作业\MVC传参\Blog\bin\Debug\net8.0\System.Composition.Convention.dll +E:\作业上传处\Gitee\grade23-class4-note-mvc\韦诗诗\作业\MVC传参\Blog\bin\Debug\net8.0\System.Composition.Hosting.dll +E:\作业上传处\Gitee\grade23-class4-note-mvc\韦诗诗\作业\MVC传参\Blog\bin\Debug\net8.0\System.Composition.Runtime.dll +E:\作业上传处\Gitee\grade23-class4-note-mvc\韦诗诗\作业\MVC传参\Blog\bin\Debug\net8.0\System.Composition.TypedParts.dll +E:\作业上传处\Gitee\grade23-class4-note-mvc\韦诗诗\作业\MVC传参\Blog\bin\Debug\net8.0\System.Configuration.ConfigurationManager.dll +E:\作业上传处\Gitee\grade23-class4-note-mvc\韦诗诗\作业\MVC传参\Blog\bin\Debug\net8.0\System.Diagnostics.DiagnosticSource.dll +E:\作业上传处\Gitee\grade23-class4-note-mvc\韦诗诗\作业\MVC传参\Blog\bin\Debug\net8.0\System.Drawing.Common.dll +E:\作业上传处\Gitee\grade23-class4-note-mvc\韦诗诗\作业\MVC传参\Blog\bin\Debug\net8.0\System.Formats.Asn1.dll +E:\作业上传处\Gitee\grade23-class4-note-mvc\韦诗诗\作业\MVC传参\Blog\bin\Debug\net8.0\System.IdentityModel.Tokens.Jwt.dll +E:\作业上传处\Gitee\grade23-class4-note-mvc\韦诗诗\作业\MVC传参\Blog\bin\Debug\net8.0\System.IO.Pipelines.dll +E:\作业上传处\Gitee\grade23-class4-note-mvc\韦诗诗\作业\MVC传参\Blog\bin\Debug\net8.0\System.Memory.Data.dll +E:\作业上传处\Gitee\grade23-class4-note-mvc\韦诗诗\作业\MVC传参\Blog\bin\Debug\net8.0\System.Runtime.Caching.dll +E:\作业上传处\Gitee\grade23-class4-note-mvc\韦诗诗\作业\MVC传参\Blog\bin\Debug\net8.0\System.Security.Cryptography.ProtectedData.dll +E:\作业上传处\Gitee\grade23-class4-note-mvc\韦诗诗\作业\MVC传参\Blog\bin\Debug\net8.0\System.Security.Permissions.dll +E:\作业上传处\Gitee\grade23-class4-note-mvc\韦诗诗\作业\MVC传参\Blog\bin\Debug\net8.0\System.Text.Encodings.Web.dll +E:\作业上传处\Gitee\grade23-class4-note-mvc\韦诗诗\作业\MVC传参\Blog\bin\Debug\net8.0\System.Text.Json.dll +E:\作业上传处\Gitee\grade23-class4-note-mvc\韦诗诗\作业\MVC传参\Blog\bin\Debug\net8.0\System.Windows.Extensions.dll +E:\作业上传处\Gitee\grade23-class4-note-mvc\韦诗诗\作业\MVC传参\Blog\bin\Debug\net8.0\cs\Microsoft.CodeAnalysis.resources.dll +E:\作业上传处\Gitee\grade23-class4-note-mvc\韦诗诗\作业\MVC传参\Blog\bin\Debug\net8.0\de\Microsoft.CodeAnalysis.resources.dll +E:\作业上传处\Gitee\grade23-class4-note-mvc\韦诗诗\作业\MVC传参\Blog\bin\Debug\net8.0\es\Microsoft.CodeAnalysis.resources.dll +E:\作业上传处\Gitee\grade23-class4-note-mvc\韦诗诗\作业\MVC传参\Blog\bin\Debug\net8.0\fr\Microsoft.CodeAnalysis.resources.dll +E:\作业上传处\Gitee\grade23-class4-note-mvc\韦诗诗\作业\MVC传参\Blog\bin\Debug\net8.0\it\Microsoft.CodeAnalysis.resources.dll +E:\作业上传处\Gitee\grade23-class4-note-mvc\韦诗诗\作业\MVC传参\Blog\bin\Debug\net8.0\ja\Microsoft.CodeAnalysis.resources.dll +E:\作业上传处\Gitee\grade23-class4-note-mvc\韦诗诗\作业\MVC传参\Blog\bin\Debug\net8.0\ko\Microsoft.CodeAnalysis.resources.dll +E:\作业上传处\Gitee\grade23-class4-note-mvc\韦诗诗\作业\MVC传参\Blog\bin\Debug\net8.0\pl\Microsoft.CodeAnalysis.resources.dll +E:\作业上传处\Gitee\grade23-class4-note-mvc\韦诗诗\作业\MVC传参\Blog\bin\Debug\net8.0\pt-BR\Microsoft.CodeAnalysis.resources.dll +E:\作业上传处\Gitee\grade23-class4-note-mvc\韦诗诗\作业\MVC传参\Blog\bin\Debug\net8.0\ru\Microsoft.CodeAnalysis.resources.dll +E:\作业上传处\Gitee\grade23-class4-note-mvc\韦诗诗\作业\MVC传参\Blog\bin\Debug\net8.0\tr\Microsoft.CodeAnalysis.resources.dll +E:\作业上传处\Gitee\grade23-class4-note-mvc\韦诗诗\作业\MVC传参\Blog\bin\Debug\net8.0\zh-Hans\Microsoft.CodeAnalysis.resources.dll +E:\作业上传处\Gitee\grade23-class4-note-mvc\韦诗诗\作业\MVC传参\Blog\bin\Debug\net8.0\zh-Hant\Microsoft.CodeAnalysis.resources.dll +E:\作业上传处\Gitee\grade23-class4-note-mvc\韦诗诗\作业\MVC传参\Blog\bin\Debug\net8.0\cs\Microsoft.CodeAnalysis.CSharp.resources.dll +E:\作业上传处\Gitee\grade23-class4-note-mvc\韦诗诗\作业\MVC传参\Blog\bin\Debug\net8.0\de\Microsoft.CodeAnalysis.CSharp.resources.dll +E:\作业上传处\Gitee\grade23-class4-note-mvc\韦诗诗\作业\MVC传参\Blog\bin\Debug\net8.0\es\Microsoft.CodeAnalysis.CSharp.resources.dll +E:\作业上传处\Gitee\grade23-class4-note-mvc\韦诗诗\作业\MVC传参\Blog\bin\Debug\net8.0\fr\Microsoft.CodeAnalysis.CSharp.resources.dll +E:\作业上传处\Gitee\grade23-class4-note-mvc\韦诗诗\作业\MVC传参\Blog\bin\Debug\net8.0\it\Microsoft.CodeAnalysis.CSharp.resources.dll +E:\作业上传处\Gitee\grade23-class4-note-mvc\韦诗诗\作业\MVC传参\Blog\bin\Debug\net8.0\ja\Microsoft.CodeAnalysis.CSharp.resources.dll +E:\作业上传处\Gitee\grade23-class4-note-mvc\韦诗诗\作业\MVC传参\Blog\bin\Debug\net8.0\ko\Microsoft.CodeAnalysis.CSharp.resources.dll +E:\作业上传处\Gitee\grade23-class4-note-mvc\韦诗诗\作业\MVC传参\Blog\bin\Debug\net8.0\pl\Microsoft.CodeAnalysis.CSharp.resources.dll +E:\作业上传处\Gitee\grade23-class4-note-mvc\韦诗诗\作业\MVC传参\Blog\bin\Debug\net8.0\pt-BR\Microsoft.CodeAnalysis.CSharp.resources.dll +E:\作业上传处\Gitee\grade23-class4-note-mvc\韦诗诗\作业\MVC传参\Blog\bin\Debug\net8.0\ru\Microsoft.CodeAnalysis.CSharp.resources.dll +E:\作业上传处\Gitee\grade23-class4-note-mvc\韦诗诗\作业\MVC传参\Blog\bin\Debug\net8.0\tr\Microsoft.CodeAnalysis.CSharp.resources.dll +E:\作业上传处\Gitee\grade23-class4-note-mvc\韦诗诗\作业\MVC传参\Blog\bin\Debug\net8.0\zh-Hans\Microsoft.CodeAnalysis.CSharp.resources.dll +E:\作业上传处\Gitee\grade23-class4-note-mvc\韦诗诗\作业\MVC传参\Blog\bin\Debug\net8.0\zh-Hant\Microsoft.CodeAnalysis.CSharp.resources.dll +E:\作业上传处\Gitee\grade23-class4-note-mvc\韦诗诗\作业\MVC传参\Blog\bin\Debug\net8.0\cs\Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll +E:\作业上传处\Gitee\grade23-class4-note-mvc\韦诗诗\作业\MVC传参\Blog\bin\Debug\net8.0\de\Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll +E:\作业上传处\Gitee\grade23-class4-note-mvc\韦诗诗\作业\MVC传参\Blog\bin\Debug\net8.0\es\Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll +E:\作业上传处\Gitee\grade23-class4-note-mvc\韦诗诗\作业\MVC传参\Blog\bin\Debug\net8.0\fr\Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll +E:\作业上传处\Gitee\grade23-class4-note-mvc\韦诗诗\作业\MVC传参\Blog\bin\Debug\net8.0\it\Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll +E:\作业上传处\Gitee\grade23-class4-note-mvc\韦诗诗\作业\MVC传参\Blog\bin\Debug\net8.0\ja\Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll +E:\作业上传处\Gitee\grade23-class4-note-mvc\韦诗诗\作业\MVC传参\Blog\bin\Debug\net8.0\ko\Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll +E:\作业上传处\Gitee\grade23-class4-note-mvc\韦诗诗\作业\MVC传参\Blog\bin\Debug\net8.0\pl\Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll +E:\作业上传处\Gitee\grade23-class4-note-mvc\韦诗诗\作业\MVC传参\Blog\bin\Debug\net8.0\pt-BR\Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll +E:\作业上传处\Gitee\grade23-class4-note-mvc\韦诗诗\作业\MVC传参\Blog\bin\Debug\net8.0\ru\Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll +E:\作业上传处\Gitee\grade23-class4-note-mvc\韦诗诗\作业\MVC传参\Blog\bin\Debug\net8.0\tr\Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll +E:\作业上传处\Gitee\grade23-class4-note-mvc\韦诗诗\作业\MVC传参\Blog\bin\Debug\net8.0\zh-Hans\Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll +E:\作业上传处\Gitee\grade23-class4-note-mvc\韦诗诗\作业\MVC传参\Blog\bin\Debug\net8.0\zh-Hant\Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll +E:\作业上传处\Gitee\grade23-class4-note-mvc\韦诗诗\作业\MVC传参\Blog\bin\Debug\net8.0\cs\Microsoft.CodeAnalysis.Workspaces.resources.dll +E:\作业上传处\Gitee\grade23-class4-note-mvc\韦诗诗\作业\MVC传参\Blog\bin\Debug\net8.0\de\Microsoft.CodeAnalysis.Workspaces.resources.dll +E:\作业上传处\Gitee\grade23-class4-note-mvc\韦诗诗\作业\MVC传参\Blog\bin\Debug\net8.0\es\Microsoft.CodeAnalysis.Workspaces.resources.dll +E:\作业上传处\Gitee\grade23-class4-note-mvc\韦诗诗\作业\MVC传参\Blog\bin\Debug\net8.0\fr\Microsoft.CodeAnalysis.Workspaces.resources.dll +E:\作业上传处\Gitee\grade23-class4-note-mvc\韦诗诗\作业\MVC传参\Blog\bin\Debug\net8.0\it\Microsoft.CodeAnalysis.Workspaces.resources.dll +E:\作业上传处\Gitee\grade23-class4-note-mvc\韦诗诗\作业\MVC传参\Blog\bin\Debug\net8.0\ja\Microsoft.CodeAnalysis.Workspaces.resources.dll +E:\作业上传处\Gitee\grade23-class4-note-mvc\韦诗诗\作业\MVC传参\Blog\bin\Debug\net8.0\ko\Microsoft.CodeAnalysis.Workspaces.resources.dll +E:\作业上传处\Gitee\grade23-class4-note-mvc\韦诗诗\作业\MVC传参\Blog\bin\Debug\net8.0\pl\Microsoft.CodeAnalysis.Workspaces.resources.dll +E:\作业上传处\Gitee\grade23-class4-note-mvc\韦诗诗\作业\MVC传参\Blog\bin\Debug\net8.0\pt-BR\Microsoft.CodeAnalysis.Workspaces.resources.dll +E:\作业上传处\Gitee\grade23-class4-note-mvc\韦诗诗\作业\MVC传参\Blog\bin\Debug\net8.0\ru\Microsoft.CodeAnalysis.Workspaces.resources.dll +E:\作业上传处\Gitee\grade23-class4-note-mvc\韦诗诗\作业\MVC传参\Blog\bin\Debug\net8.0\tr\Microsoft.CodeAnalysis.Workspaces.resources.dll +E:\作业上传处\Gitee\grade23-class4-note-mvc\韦诗诗\作业\MVC传参\Blog\bin\Debug\net8.0\zh-Hans\Microsoft.CodeAnalysis.Workspaces.resources.dll +E:\作业上传处\Gitee\grade23-class4-note-mvc\韦诗诗\作业\MVC传参\Blog\bin\Debug\net8.0\zh-Hant\Microsoft.CodeAnalysis.Workspaces.resources.dll +E:\作业上传处\Gitee\grade23-class4-note-mvc\韦诗诗\作业\MVC传参\Blog\bin\Debug\net8.0\cs\Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll +E:\作业上传处\Gitee\grade23-class4-note-mvc\韦诗诗\作业\MVC传参\Blog\bin\Debug\net8.0\de\Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll +E:\作业上传处\Gitee\grade23-class4-note-mvc\韦诗诗\作业\MVC传参\Blog\bin\Debug\net8.0\es\Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll +E:\作业上传处\Gitee\grade23-class4-note-mvc\韦诗诗\作业\MVC传参\Blog\bin\Debug\net8.0\fr\Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll +E:\作业上传处\Gitee\grade23-class4-note-mvc\韦诗诗\作业\MVC传参\Blog\bin\Debug\net8.0\it\Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll +E:\作业上传处\Gitee\grade23-class4-note-mvc\韦诗诗\作业\MVC传参\Blog\bin\Debug\net8.0\ja\Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll +E:\作业上传处\Gitee\grade23-class4-note-mvc\韦诗诗\作业\MVC传参\Blog\bin\Debug\net8.0\ko\Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll +E:\作业上传处\Gitee\grade23-class4-note-mvc\韦诗诗\作业\MVC传参\Blog\bin\Debug\net8.0\pl\Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll +E:\作业上传处\Gitee\grade23-class4-note-mvc\韦诗诗\作业\MVC传参\Blog\bin\Debug\net8.0\pt-BR\Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll +E:\作业上传处\Gitee\grade23-class4-note-mvc\韦诗诗\作业\MVC传参\Blog\bin\Debug\net8.0\ru\Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll +E:\作业上传处\Gitee\grade23-class4-note-mvc\韦诗诗\作业\MVC传参\Blog\bin\Debug\net8.0\tr\Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll +E:\作业上传处\Gitee\grade23-class4-note-mvc\韦诗诗\作业\MVC传参\Blog\bin\Debug\net8.0\zh-Hans\Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll +E:\作业上传处\Gitee\grade23-class4-note-mvc\韦诗诗\作业\MVC传参\Blog\bin\Debug\net8.0\zh-Hant\Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll +E:\作业上传处\Gitee\grade23-class4-note-mvc\韦诗诗\作业\MVC传参\Blog\bin\Debug\net8.0\runtimes\unix\lib\net6.0\Microsoft.Data.SqlClient.dll +E:\作业上传处\Gitee\grade23-class4-note-mvc\韦诗诗\作业\MVC传参\Blog\bin\Debug\net8.0\runtimes\win\lib\net6.0\Microsoft.Data.SqlClient.dll +E:\作业上传处\Gitee\grade23-class4-note-mvc\韦诗诗\作业\MVC传参\Blog\bin\Debug\net8.0\runtimes\win-arm\native\Microsoft.Data.SqlClient.SNI.dll +E:\作业上传处\Gitee\grade23-class4-note-mvc\韦诗诗\作业\MVC传参\Blog\bin\Debug\net8.0\runtimes\win-arm64\native\Microsoft.Data.SqlClient.SNI.dll +E:\作业上传处\Gitee\grade23-class4-note-mvc\韦诗诗\作业\MVC传参\Blog\bin\Debug\net8.0\runtimes\win-x64\native\Microsoft.Data.SqlClient.SNI.dll +E:\作业上传处\Gitee\grade23-class4-note-mvc\韦诗诗\作业\MVC传参\Blog\bin\Debug\net8.0\runtimes\win-x86\native\Microsoft.Data.SqlClient.SNI.dll +E:\作业上传处\Gitee\grade23-class4-note-mvc\韦诗诗\作业\MVC传参\Blog\bin\Debug\net8.0\runtimes\win\lib\net6.0\Microsoft.Win32.SystemEvents.dll +E:\作业上传处\Gitee\grade23-class4-note-mvc\韦诗诗\作业\MVC传参\Blog\bin\Debug\net8.0\runtimes\unix\lib\net6.0\System.Drawing.Common.dll +E:\作业上传处\Gitee\grade23-class4-note-mvc\韦诗诗\作业\MVC传参\Blog\bin\Debug\net8.0\runtimes\win\lib\net6.0\System.Drawing.Common.dll +E:\作业上传处\Gitee\grade23-class4-note-mvc\韦诗诗\作业\MVC传参\Blog\bin\Debug\net8.0\runtimes\win\lib\net6.0\System.Runtime.Caching.dll +E:\作业上传处\Gitee\grade23-class4-note-mvc\韦诗诗\作业\MVC传参\Blog\bin\Debug\net8.0\runtimes\win\lib\net6.0\System.Security.Cryptography.ProtectedData.dll +E:\作业上传处\Gitee\grade23-class4-note-mvc\韦诗诗\作业\MVC传参\Blog\bin\Debug\net8.0\runtimes\browser\lib\net8.0\System.Text.Encodings.Web.dll +E:\作业上传处\Gitee\grade23-class4-note-mvc\韦诗诗\作业\MVC传参\Blog\bin\Debug\net8.0\runtimes\win\lib\net6.0\System.Windows.Extensions.dll +E:\作业上传处\Gitee\grade23-class4-note-mvc\韦诗诗\作业\MVC传参\Blog\obj\Debug\net8.0\Blog.csproj.Up2Date +G:\作业上传处\Gitee\grade23-class4-note-mvc\韦诗诗\作业\MVC传参\Blog\bin\Debug\net8.0\Azure.Core.dll +G:\作业上传处\Gitee\grade23-class4-note-mvc\韦诗诗\作业\MVC传参\Blog\bin\Debug\net8.0\Azure.Identity.dll +G:\作业上传处\Gitee\grade23-class4-note-mvc\韦诗诗\作业\MVC传参\Blog\bin\Debug\net8.0\Humanizer.dll +G:\作业上传处\Gitee\grade23-class4-note-mvc\韦诗诗\作业\MVC传参\Blog\bin\Debug\net8.0\Microsoft.Bcl.AsyncInterfaces.dll +G:\作业上传处\Gitee\grade23-class4-note-mvc\韦诗诗\作业\MVC传参\Blog\bin\Debug\net8.0\Microsoft.Build.Locator.dll +G:\作业上传处\Gitee\grade23-class4-note-mvc\韦诗诗\作业\MVC传参\Blog\bin\Debug\net8.0\Microsoft.CodeAnalysis.dll +G:\作业上传处\Gitee\grade23-class4-note-mvc\韦诗诗\作业\MVC传参\Blog\bin\Debug\net8.0\Microsoft.CodeAnalysis.CSharp.dll +G:\作业上传处\Gitee\grade23-class4-note-mvc\韦诗诗\作业\MVC传参\Blog\bin\Debug\net8.0\Microsoft.CodeAnalysis.CSharp.Workspaces.dll +G:\作业上传处\Gitee\grade23-class4-note-mvc\韦诗诗\作业\MVC传参\Blog\bin\Debug\net8.0\Microsoft.CodeAnalysis.Workspaces.dll +G:\作业上传处\Gitee\grade23-class4-note-mvc\韦诗诗\作业\MVC传参\Blog\bin\Debug\net8.0\Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.dll +G:\作业上传处\Gitee\grade23-class4-note-mvc\韦诗诗\作业\MVC传参\Blog\bin\Debug\net8.0\Microsoft.CodeAnalysis.Workspaces.MSBuild.dll +G:\作业上传处\Gitee\grade23-class4-note-mvc\韦诗诗\作业\MVC传参\Blog\bin\Debug\net8.0\Microsoft.Data.SqlClient.dll +G:\作业上传处\Gitee\grade23-class4-note-mvc\韦诗诗\作业\MVC传参\Blog\bin\Debug\net8.0\Microsoft.EntityFrameworkCore.dll +G:\作业上传处\Gitee\grade23-class4-note-mvc\韦诗诗\作业\MVC传参\Blog\bin\Debug\net8.0\Microsoft.EntityFrameworkCore.Abstractions.dll +G:\作业上传处\Gitee\grade23-class4-note-mvc\韦诗诗\作业\MVC传参\Blog\bin\Debug\net8.0\Microsoft.EntityFrameworkCore.Design.dll +G:\作业上传处\Gitee\grade23-class4-note-mvc\韦诗诗\作业\MVC传参\Blog\bin\Debug\net8.0\Microsoft.EntityFrameworkCore.Relational.dll +G:\作业上传处\Gitee\grade23-class4-note-mvc\韦诗诗\作业\MVC传参\Blog\bin\Debug\net8.0\Microsoft.EntityFrameworkCore.SqlServer.dll +G:\作业上传处\Gitee\grade23-class4-note-mvc\韦诗诗\作业\MVC传参\Blog\bin\Debug\net8.0\Microsoft.Extensions.Caching.Abstractions.dll +G:\作业上传处\Gitee\grade23-class4-note-mvc\韦诗诗\作业\MVC传参\Blog\bin\Debug\net8.0\Microsoft.Extensions.Caching.Memory.dll +G:\作业上传处\Gitee\grade23-class4-note-mvc\韦诗诗\作业\MVC传参\Blog\bin\Debug\net8.0\Microsoft.Extensions.Configuration.Abstractions.dll +G:\作业上传处\Gitee\grade23-class4-note-mvc\韦诗诗\作业\MVC传参\Blog\bin\Debug\net8.0\Microsoft.Extensions.DependencyInjection.dll +G:\作业上传处\Gitee\grade23-class4-note-mvc\韦诗诗\作业\MVC传参\Blog\bin\Debug\net8.0\Microsoft.Extensions.DependencyInjection.Abstractions.dll +G:\作业上传处\Gitee\grade23-class4-note-mvc\韦诗诗\作业\MVC传参\Blog\bin\Debug\net8.0\Microsoft.Extensions.DependencyModel.dll +G:\作业上传处\Gitee\grade23-class4-note-mvc\韦诗诗\作业\MVC传参\Blog\bin\Debug\net8.0\Microsoft.Extensions.Logging.dll +G:\作业上传处\Gitee\grade23-class4-note-mvc\韦诗诗\作业\MVC传参\Blog\bin\Debug\net8.0\Microsoft.Extensions.Logging.Abstractions.dll +G:\作业上传处\Gitee\grade23-class4-note-mvc\韦诗诗\作业\MVC传参\Blog\bin\Debug\net8.0\Microsoft.Extensions.Options.dll +G:\作业上传处\Gitee\grade23-class4-note-mvc\韦诗诗\作业\MVC传参\Blog\bin\Debug\net8.0\Microsoft.Extensions.Primitives.dll +G:\作业上传处\Gitee\grade23-class4-note-mvc\韦诗诗\作业\MVC传参\Blog\bin\Debug\net8.0\Microsoft.Identity.Client.dll +G:\作业上传处\Gitee\grade23-class4-note-mvc\韦诗诗\作业\MVC传参\Blog\bin\Debug\net8.0\Microsoft.Identity.Client.Extensions.Msal.dll +G:\作业上传处\Gitee\grade23-class4-note-mvc\韦诗诗\作业\MVC传参\Blog\bin\Debug\net8.0\Microsoft.IdentityModel.Abstractions.dll +G:\作业上传处\Gitee\grade23-class4-note-mvc\韦诗诗\作业\MVC传参\Blog\bin\Debug\net8.0\Microsoft.IdentityModel.JsonWebTokens.dll +G:\作业上传处\Gitee\grade23-class4-note-mvc\韦诗诗\作业\MVC传参\Blog\bin\Debug\net8.0\Microsoft.IdentityModel.Logging.dll +G:\作业上传处\Gitee\grade23-class4-note-mvc\韦诗诗\作业\MVC传参\Blog\bin\Debug\net8.0\Microsoft.IdentityModel.Protocols.dll +G:\作业上传处\Gitee\grade23-class4-note-mvc\韦诗诗\作业\MVC传参\Blog\bin\Debug\net8.0\Microsoft.IdentityModel.Protocols.OpenIdConnect.dll +G:\作业上传处\Gitee\grade23-class4-note-mvc\韦诗诗\作业\MVC传参\Blog\bin\Debug\net8.0\Microsoft.IdentityModel.Tokens.dll +G:\作业上传处\Gitee\grade23-class4-note-mvc\韦诗诗\作业\MVC传参\Blog\bin\Debug\net8.0\Microsoft.SqlServer.Server.dll +G:\作业上传处\Gitee\grade23-class4-note-mvc\韦诗诗\作业\MVC传参\Blog\bin\Debug\net8.0\Microsoft.Win32.SystemEvents.dll +G:\作业上传处\Gitee\grade23-class4-note-mvc\韦诗诗\作业\MVC传参\Blog\bin\Debug\net8.0\Mono.TextTemplating.dll +G:\作业上传处\Gitee\grade23-class4-note-mvc\韦诗诗\作业\MVC传参\Blog\bin\Debug\net8.0\System.ClientModel.dll +G:\作业上传处\Gitee\grade23-class4-note-mvc\韦诗诗\作业\MVC传参\Blog\bin\Debug\net8.0\System.CodeDom.dll +G:\作业上传处\Gitee\grade23-class4-note-mvc\韦诗诗\作业\MVC传参\Blog\bin\Debug\net8.0\System.Composition.AttributedModel.dll +G:\作业上传处\Gitee\grade23-class4-note-mvc\韦诗诗\作业\MVC传参\Blog\bin\Debug\net8.0\System.Composition.Convention.dll +G:\作业上传处\Gitee\grade23-class4-note-mvc\韦诗诗\作业\MVC传参\Blog\bin\Debug\net8.0\System.Composition.Hosting.dll +G:\作业上传处\Gitee\grade23-class4-note-mvc\韦诗诗\作业\MVC传参\Blog\bin\Debug\net8.0\System.Composition.Runtime.dll +G:\作业上传处\Gitee\grade23-class4-note-mvc\韦诗诗\作业\MVC传参\Blog\bin\Debug\net8.0\System.Composition.TypedParts.dll +G:\作业上传处\Gitee\grade23-class4-note-mvc\韦诗诗\作业\MVC传参\Blog\bin\Debug\net8.0\System.Configuration.ConfigurationManager.dll +G:\作业上传处\Gitee\grade23-class4-note-mvc\韦诗诗\作业\MVC传参\Blog\bin\Debug\net8.0\System.Diagnostics.DiagnosticSource.dll +G:\作业上传处\Gitee\grade23-class4-note-mvc\韦诗诗\作业\MVC传参\Blog\bin\Debug\net8.0\System.Drawing.Common.dll +G:\作业上传处\Gitee\grade23-class4-note-mvc\韦诗诗\作业\MVC传参\Blog\bin\Debug\net8.0\System.Formats.Asn1.dll +G:\作业上传处\Gitee\grade23-class4-note-mvc\韦诗诗\作业\MVC传参\Blog\bin\Debug\net8.0\System.IdentityModel.Tokens.Jwt.dll +G:\作业上传处\Gitee\grade23-class4-note-mvc\韦诗诗\作业\MVC传参\Blog\bin\Debug\net8.0\System.IO.Pipelines.dll +G:\作业上传处\Gitee\grade23-class4-note-mvc\韦诗诗\作业\MVC传参\Blog\bin\Debug\net8.0\System.Memory.Data.dll +G:\作业上传处\Gitee\grade23-class4-note-mvc\韦诗诗\作业\MVC传参\Blog\bin\Debug\net8.0\System.Runtime.Caching.dll +G:\作业上传处\Gitee\grade23-class4-note-mvc\韦诗诗\作业\MVC传参\Blog\bin\Debug\net8.0\System.Security.Cryptography.ProtectedData.dll +G:\作业上传处\Gitee\grade23-class4-note-mvc\韦诗诗\作业\MVC传参\Blog\bin\Debug\net8.0\System.Security.Permissions.dll +G:\作业上传处\Gitee\grade23-class4-note-mvc\韦诗诗\作业\MVC传参\Blog\bin\Debug\net8.0\System.Text.Encodings.Web.dll +G:\作业上传处\Gitee\grade23-class4-note-mvc\韦诗诗\作业\MVC传参\Blog\bin\Debug\net8.0\System.Text.Json.dll +G:\作业上传处\Gitee\grade23-class4-note-mvc\韦诗诗\作业\MVC传参\Blog\bin\Debug\net8.0\System.Windows.Extensions.dll +G:\作业上传处\Gitee\grade23-class4-note-mvc\韦诗诗\作业\MVC传参\Blog\bin\Debug\net8.0\cs\Microsoft.CodeAnalysis.resources.dll +G:\作业上传处\Gitee\grade23-class4-note-mvc\韦诗诗\作业\MVC传参\Blog\bin\Debug\net8.0\de\Microsoft.CodeAnalysis.resources.dll +G:\作业上传处\Gitee\grade23-class4-note-mvc\韦诗诗\作业\MVC传参\Blog\bin\Debug\net8.0\es\Microsoft.CodeAnalysis.resources.dll +G:\作业上传处\Gitee\grade23-class4-note-mvc\韦诗诗\作业\MVC传参\Blog\bin\Debug\net8.0\fr\Microsoft.CodeAnalysis.resources.dll +G:\作业上传处\Gitee\grade23-class4-note-mvc\韦诗诗\作业\MVC传参\Blog\bin\Debug\net8.0\it\Microsoft.CodeAnalysis.resources.dll +G:\作业上传处\Gitee\grade23-class4-note-mvc\韦诗诗\作业\MVC传参\Blog\bin\Debug\net8.0\ja\Microsoft.CodeAnalysis.resources.dll +G:\作业上传处\Gitee\grade23-class4-note-mvc\韦诗诗\作业\MVC传参\Blog\bin\Debug\net8.0\ko\Microsoft.CodeAnalysis.resources.dll +G:\作业上传处\Gitee\grade23-class4-note-mvc\韦诗诗\作业\MVC传参\Blog\bin\Debug\net8.0\pl\Microsoft.CodeAnalysis.resources.dll +G:\作业上传处\Gitee\grade23-class4-note-mvc\韦诗诗\作业\MVC传参\Blog\bin\Debug\net8.0\pt-BR\Microsoft.CodeAnalysis.resources.dll +G:\作业上传处\Gitee\grade23-class4-note-mvc\韦诗诗\作业\MVC传参\Blog\bin\Debug\net8.0\ru\Microsoft.CodeAnalysis.resources.dll +G:\作业上传处\Gitee\grade23-class4-note-mvc\韦诗诗\作业\MVC传参\Blog\bin\Debug\net8.0\tr\Microsoft.CodeAnalysis.resources.dll +G:\作业上传处\Gitee\grade23-class4-note-mvc\韦诗诗\作业\MVC传参\Blog\bin\Debug\net8.0\zh-Hans\Microsoft.CodeAnalysis.resources.dll +G:\作业上传处\Gitee\grade23-class4-note-mvc\韦诗诗\作业\MVC传参\Blog\bin\Debug\net8.0\zh-Hant\Microsoft.CodeAnalysis.resources.dll +G:\作业上传处\Gitee\grade23-class4-note-mvc\韦诗诗\作业\MVC传参\Blog\bin\Debug\net8.0\cs\Microsoft.CodeAnalysis.CSharp.resources.dll +G:\作业上传处\Gitee\grade23-class4-note-mvc\韦诗诗\作业\MVC传参\Blog\bin\Debug\net8.0\de\Microsoft.CodeAnalysis.CSharp.resources.dll +G:\作业上传处\Gitee\grade23-class4-note-mvc\韦诗诗\作业\MVC传参\Blog\bin\Debug\net8.0\es\Microsoft.CodeAnalysis.CSharp.resources.dll +G:\作业上传处\Gitee\grade23-class4-note-mvc\韦诗诗\作业\MVC传参\Blog\bin\Debug\net8.0\fr\Microsoft.CodeAnalysis.CSharp.resources.dll +G:\作业上传处\Gitee\grade23-class4-note-mvc\韦诗诗\作业\MVC传参\Blog\bin\Debug\net8.0\it\Microsoft.CodeAnalysis.CSharp.resources.dll +G:\作业上传处\Gitee\grade23-class4-note-mvc\韦诗诗\作业\MVC传参\Blog\bin\Debug\net8.0\ja\Microsoft.CodeAnalysis.CSharp.resources.dll +G:\作业上传处\Gitee\grade23-class4-note-mvc\韦诗诗\作业\MVC传参\Blog\bin\Debug\net8.0\ko\Microsoft.CodeAnalysis.CSharp.resources.dll +G:\作业上传处\Gitee\grade23-class4-note-mvc\韦诗诗\作业\MVC传参\Blog\bin\Debug\net8.0\pl\Microsoft.CodeAnalysis.CSharp.resources.dll +G:\作业上传处\Gitee\grade23-class4-note-mvc\韦诗诗\作业\MVC传参\Blog\bin\Debug\net8.0\pt-BR\Microsoft.CodeAnalysis.CSharp.resources.dll +G:\作业上传处\Gitee\grade23-class4-note-mvc\韦诗诗\作业\MVC传参\Blog\bin\Debug\net8.0\ru\Microsoft.CodeAnalysis.CSharp.resources.dll +G:\作业上传处\Gitee\grade23-class4-note-mvc\韦诗诗\作业\MVC传参\Blog\bin\Debug\net8.0\tr\Microsoft.CodeAnalysis.CSharp.resources.dll +G:\作业上传处\Gitee\grade23-class4-note-mvc\韦诗诗\作业\MVC传参\Blog\bin\Debug\net8.0\zh-Hans\Microsoft.CodeAnalysis.CSharp.resources.dll +G:\作业上传处\Gitee\grade23-class4-note-mvc\韦诗诗\作业\MVC传参\Blog\bin\Debug\net8.0\zh-Hant\Microsoft.CodeAnalysis.CSharp.resources.dll +G:\作业上传处\Gitee\grade23-class4-note-mvc\韦诗诗\作业\MVC传参\Blog\bin\Debug\net8.0\cs\Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll +G:\作业上传处\Gitee\grade23-class4-note-mvc\韦诗诗\作业\MVC传参\Blog\bin\Debug\net8.0\de\Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll +G:\作业上传处\Gitee\grade23-class4-note-mvc\韦诗诗\作业\MVC传参\Blog\bin\Debug\net8.0\es\Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll +G:\作业上传处\Gitee\grade23-class4-note-mvc\韦诗诗\作业\MVC传参\Blog\bin\Debug\net8.0\fr\Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll +G:\作业上传处\Gitee\grade23-class4-note-mvc\韦诗诗\作业\MVC传参\Blog\bin\Debug\net8.0\it\Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll +G:\作业上传处\Gitee\grade23-class4-note-mvc\韦诗诗\作业\MVC传参\Blog\bin\Debug\net8.0\ja\Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll +G:\作业上传处\Gitee\grade23-class4-note-mvc\韦诗诗\作业\MVC传参\Blog\bin\Debug\net8.0\ko\Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll +G:\作业上传处\Gitee\grade23-class4-note-mvc\韦诗诗\作业\MVC传参\Blog\bin\Debug\net8.0\pl\Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll +G:\作业上传处\Gitee\grade23-class4-note-mvc\韦诗诗\作业\MVC传参\Blog\bin\Debug\net8.0\pt-BR\Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll +G:\作业上传处\Gitee\grade23-class4-note-mvc\韦诗诗\作业\MVC传参\Blog\bin\Debug\net8.0\ru\Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll +G:\作业上传处\Gitee\grade23-class4-note-mvc\韦诗诗\作业\MVC传参\Blog\bin\Debug\net8.0\tr\Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll +G:\作业上传处\Gitee\grade23-class4-note-mvc\韦诗诗\作业\MVC传参\Blog\bin\Debug\net8.0\zh-Hans\Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll +G:\作业上传处\Gitee\grade23-class4-note-mvc\韦诗诗\作业\MVC传参\Blog\bin\Debug\net8.0\zh-Hant\Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll +G:\作业上传处\Gitee\grade23-class4-note-mvc\韦诗诗\作业\MVC传参\Blog\bin\Debug\net8.0\cs\Microsoft.CodeAnalysis.Workspaces.resources.dll +G:\作业上传处\Gitee\grade23-class4-note-mvc\韦诗诗\作业\MVC传参\Blog\bin\Debug\net8.0\de\Microsoft.CodeAnalysis.Workspaces.resources.dll +G:\作业上传处\Gitee\grade23-class4-note-mvc\韦诗诗\作业\MVC传参\Blog\bin\Debug\net8.0\es\Microsoft.CodeAnalysis.Workspaces.resources.dll +G:\作业上传处\Gitee\grade23-class4-note-mvc\韦诗诗\作业\MVC传参\Blog\bin\Debug\net8.0\fr\Microsoft.CodeAnalysis.Workspaces.resources.dll +G:\作业上传处\Gitee\grade23-class4-note-mvc\韦诗诗\作业\MVC传参\Blog\bin\Debug\net8.0\it\Microsoft.CodeAnalysis.Workspaces.resources.dll +G:\作业上传处\Gitee\grade23-class4-note-mvc\韦诗诗\作业\MVC传参\Blog\bin\Debug\net8.0\ja\Microsoft.CodeAnalysis.Workspaces.resources.dll +G:\作业上传处\Gitee\grade23-class4-note-mvc\韦诗诗\作业\MVC传参\Blog\bin\Debug\net8.0\ko\Microsoft.CodeAnalysis.Workspaces.resources.dll +G:\作业上传处\Gitee\grade23-class4-note-mvc\韦诗诗\作业\MVC传参\Blog\bin\Debug\net8.0\pl\Microsoft.CodeAnalysis.Workspaces.resources.dll +G:\作业上传处\Gitee\grade23-class4-note-mvc\韦诗诗\作业\MVC传参\Blog\bin\Debug\net8.0\pt-BR\Microsoft.CodeAnalysis.Workspaces.resources.dll +G:\作业上传处\Gitee\grade23-class4-note-mvc\韦诗诗\作业\MVC传参\Blog\bin\Debug\net8.0\ru\Microsoft.CodeAnalysis.Workspaces.resources.dll +G:\作业上传处\Gitee\grade23-class4-note-mvc\韦诗诗\作业\MVC传参\Blog\bin\Debug\net8.0\tr\Microsoft.CodeAnalysis.Workspaces.resources.dll +G:\作业上传处\Gitee\grade23-class4-note-mvc\韦诗诗\作业\MVC传参\Blog\bin\Debug\net8.0\zh-Hans\Microsoft.CodeAnalysis.Workspaces.resources.dll +G:\作业上传处\Gitee\grade23-class4-note-mvc\韦诗诗\作业\MVC传参\Blog\bin\Debug\net8.0\zh-Hant\Microsoft.CodeAnalysis.Workspaces.resources.dll +G:\作业上传处\Gitee\grade23-class4-note-mvc\韦诗诗\作业\MVC传参\Blog\bin\Debug\net8.0\cs\Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll +G:\作业上传处\Gitee\grade23-class4-note-mvc\韦诗诗\作业\MVC传参\Blog\bin\Debug\net8.0\de\Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll +G:\作业上传处\Gitee\grade23-class4-note-mvc\韦诗诗\作业\MVC传参\Blog\bin\Debug\net8.0\es\Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll +G:\作业上传处\Gitee\grade23-class4-note-mvc\韦诗诗\作业\MVC传参\Blog\bin\Debug\net8.0\fr\Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll +G:\作业上传处\Gitee\grade23-class4-note-mvc\韦诗诗\作业\MVC传参\Blog\bin\Debug\net8.0\it\Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll +G:\作业上传处\Gitee\grade23-class4-note-mvc\韦诗诗\作业\MVC传参\Blog\bin\Debug\net8.0\ja\Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll +G:\作业上传处\Gitee\grade23-class4-note-mvc\韦诗诗\作业\MVC传参\Blog\bin\Debug\net8.0\ko\Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll +G:\作业上传处\Gitee\grade23-class4-note-mvc\韦诗诗\作业\MVC传参\Blog\bin\Debug\net8.0\pl\Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll +G:\作业上传处\Gitee\grade23-class4-note-mvc\韦诗诗\作业\MVC传参\Blog\bin\Debug\net8.0\pt-BR\Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll +G:\作业上传处\Gitee\grade23-class4-note-mvc\韦诗诗\作业\MVC传参\Blog\bin\Debug\net8.0\ru\Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll +G:\作业上传处\Gitee\grade23-class4-note-mvc\韦诗诗\作业\MVC传参\Blog\bin\Debug\net8.0\tr\Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll +G:\作业上传处\Gitee\grade23-class4-note-mvc\韦诗诗\作业\MVC传参\Blog\bin\Debug\net8.0\zh-Hans\Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll +G:\作业上传处\Gitee\grade23-class4-note-mvc\韦诗诗\作业\MVC传参\Blog\bin\Debug\net8.0\zh-Hant\Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll +G:\作业上传处\Gitee\grade23-class4-note-mvc\韦诗诗\作业\MVC传参\Blog\bin\Debug\net8.0\runtimes\unix\lib\net6.0\Microsoft.Data.SqlClient.dll +G:\作业上传处\Gitee\grade23-class4-note-mvc\韦诗诗\作业\MVC传参\Blog\bin\Debug\net8.0\runtimes\win\lib\net6.0\Microsoft.Data.SqlClient.dll +G:\作业上传处\Gitee\grade23-class4-note-mvc\韦诗诗\作业\MVC传参\Blog\bin\Debug\net8.0\runtimes\win-arm\native\Microsoft.Data.SqlClient.SNI.dll +G:\作业上传处\Gitee\grade23-class4-note-mvc\韦诗诗\作业\MVC传参\Blog\bin\Debug\net8.0\runtimes\win-arm64\native\Microsoft.Data.SqlClient.SNI.dll +G:\作业上传处\Gitee\grade23-class4-note-mvc\韦诗诗\作业\MVC传参\Blog\bin\Debug\net8.0\runtimes\win-x64\native\Microsoft.Data.SqlClient.SNI.dll +G:\作业上传处\Gitee\grade23-class4-note-mvc\韦诗诗\作业\MVC传参\Blog\bin\Debug\net8.0\runtimes\win-x86\native\Microsoft.Data.SqlClient.SNI.dll +G:\作业上传处\Gitee\grade23-class4-note-mvc\韦诗诗\作业\MVC传参\Blog\bin\Debug\net8.0\runtimes\win\lib\net6.0\Microsoft.Win32.SystemEvents.dll +G:\作业上传处\Gitee\grade23-class4-note-mvc\韦诗诗\作业\MVC传参\Blog\bin\Debug\net8.0\runtimes\unix\lib\net6.0\System.Drawing.Common.dll +G:\作业上传处\Gitee\grade23-class4-note-mvc\韦诗诗\作业\MVC传参\Blog\bin\Debug\net8.0\runtimes\win\lib\net6.0\System.Drawing.Common.dll +G:\作业上传处\Gitee\grade23-class4-note-mvc\韦诗诗\作业\MVC传参\Blog\bin\Debug\net8.0\runtimes\win\lib\net6.0\System.Runtime.Caching.dll +G:\作业上传处\Gitee\grade23-class4-note-mvc\韦诗诗\作业\MVC传参\Blog\bin\Debug\net8.0\runtimes\win\lib\net6.0\System.Security.Cryptography.ProtectedData.dll +G:\作业上传处\Gitee\grade23-class4-note-mvc\韦诗诗\作业\MVC传参\Blog\bin\Debug\net8.0\runtimes\browser\lib\net8.0\System.Text.Encodings.Web.dll +G:\作业上传处\Gitee\grade23-class4-note-mvc\韦诗诗\作业\MVC传参\Blog\bin\Debug\net8.0\runtimes\win\lib\net6.0\System.Windows.Extensions.dll +G:\作业上传处\Gitee\grade23-class4-note-mvc\韦诗诗\作业\MVC传参\Blog\obj\Debug\net8.0\Blog.csproj.AssemblyReference.cache +G:\作业上传处\Gitee\grade23-class4-note-mvc\韦诗诗\作业\MVC传参\Blog\obj\Debug\net8.0\Blog.csproj.Up2Date diff --git "a/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/MVC\344\274\240\345\217\202/Blog/obj/Debug/net8.0/Blog.csproj.Up2Date" "b/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/MVC\344\274\240\345\217\202/Blog/obj/Debug/net8.0/Blog.csproj.Up2Date" new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git "a/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/MVC\344\274\240\345\217\202/Blog/obj/Debug/net8.0/Blog.dll" "b/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/MVC\344\274\240\345\217\202/Blog/obj/Debug/net8.0/Blog.dll" index 9beff81a14ce9137ecd91843c58cdfa1752e5526..0e28a6d9b89c43bdea8ed4f629920beb046db67f 100644 Binary files "a/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/MVC\344\274\240\345\217\202/Blog/obj/Debug/net8.0/Blog.dll" and "b/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/MVC\344\274\240\345\217\202/Blog/obj/Debug/net8.0/Blog.dll" differ diff --git "a/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/MVC\344\274\240\345\217\202/Blog/obj/Debug/net8.0/Blog.genruntimeconfig.cache" "b/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/MVC\344\274\240\345\217\202/Blog/obj/Debug/net8.0/Blog.genruntimeconfig.cache" index d7416ac606c345943247c0e6ec7fa0b8438556a0..239345cb8722962e6eb823b58705012b1e48a6cd 100644 --- "a/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/MVC\344\274\240\345\217\202/Blog/obj/Debug/net8.0/Blog.genruntimeconfig.cache" +++ "b/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/MVC\344\274\240\345\217\202/Blog/obj/Debug/net8.0/Blog.genruntimeconfig.cache" @@ -1 +1 @@ -362665c3fe274a6bf97f10776d9123bc9d2573a6ba80d6bdd2053cde1dbe4728 +91732bee723a41824380e79e12b2e9f5ed669b730961fde5be31fbfef2ff67f1 diff --git "a/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/MVC\344\274\240\345\217\202/Blog/obj/Debug/net8.0/Blog.pdb" "b/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/MVC\344\274\240\345\217\202/Blog/obj/Debug/net8.0/Blog.pdb" index fb9dba992938db245db5b465fd1ae611e31a68ec..d752240509d0a65055a4319f72b8710a9aaceb8f 100644 Binary files "a/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/MVC\344\274\240\345\217\202/Blog/obj/Debug/net8.0/Blog.pdb" and "b/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/MVC\344\274\240\345\217\202/Blog/obj/Debug/net8.0/Blog.pdb" differ diff --git "a/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/MVC\344\274\240\345\217\202/Blog/obj/Debug/net8.0/apphost.exe" "b/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/MVC\344\274\240\345\217\202/Blog/obj/Debug/net8.0/apphost.exe" index 55e18638482fba9812836ee43b29a433a89a1d3d..9bf9c7d1528883c5c6df69be92be657e4108ce55 100644 Binary files "a/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/MVC\344\274\240\345\217\202/Blog/obj/Debug/net8.0/apphost.exe" and "b/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/MVC\344\274\240\345\217\202/Blog/obj/Debug/net8.0/apphost.exe" differ diff --git "a/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/MVC\344\274\240\345\217\202/Blog/obj/Debug/net8.0/ref/Blog.dll" "b/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/MVC\344\274\240\345\217\202/Blog/obj/Debug/net8.0/ref/Blog.dll" index 9454ed7dc1ff61c590c129e3c3cc11194a166619..7a66a9bc3e02498f77561e66164e7d4a80ec1f8c 100644 Binary files "a/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/MVC\344\274\240\345\217\202/Blog/obj/Debug/net8.0/ref/Blog.dll" and "b/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/MVC\344\274\240\345\217\202/Blog/obj/Debug/net8.0/ref/Blog.dll" differ diff --git "a/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/MVC\344\274\240\345\217\202/Blog/obj/Debug/net8.0/refint/Blog.dll" "b/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/MVC\344\274\240\345\217\202/Blog/obj/Debug/net8.0/refint/Blog.dll" index 9454ed7dc1ff61c590c129e3c3cc11194a166619..7a66a9bc3e02498f77561e66164e7d4a80ec1f8c 100644 Binary files "a/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/MVC\344\274\240\345\217\202/Blog/obj/Debug/net8.0/refint/Blog.dll" and "b/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/MVC\344\274\240\345\217\202/Blog/obj/Debug/net8.0/refint/Blog.dll" differ diff --git "a/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/MVC\344\274\240\345\217\202/Blog/obj/project.assets.json" "b/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/MVC\344\274\240\345\217\202/Blog/obj/project.assets.json" index 66e562b07de6ed2cccdc128b131bdd624f9ce924..e797c7e2b27836c5fce98109a7f90c5a45057cb2 100644 --- "a/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/MVC\344\274\240\345\217\202/Blog/obj/project.assets.json" +++ "b/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/MVC\344\274\240\345\217\202/Blog/obj/project.assets.json" @@ -1,11 +1,4705 @@ { "version": 3, "targets": { - "net8.0": {} + "net8.0": { + "Azure.Core/1.38.0": { + "type": "package", + "dependencies": { + "Microsoft.Bcl.AsyncInterfaces": "1.1.1", + "System.ClientModel": "1.0.0", + "System.Diagnostics.DiagnosticSource": "6.0.1", + "System.Memory.Data": "1.0.2", + "System.Numerics.Vectors": "4.5.0", + "System.Text.Encodings.Web": "4.7.2", + "System.Text.Json": "4.7.2", + "System.Threading.Tasks.Extensions": "4.5.4" + }, + "compile": { + "lib/net6.0/Azure.Core.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/Azure.Core.dll": { + "related": ".xml" + } + } + }, + "Azure.Identity/1.11.4": { + "type": "package", + "dependencies": { + "Azure.Core": "1.38.0", + "Microsoft.Identity.Client": "4.61.3", + "Microsoft.Identity.Client.Extensions.Msal": "4.61.3", + "System.Memory": "4.5.4", + "System.Security.Cryptography.ProtectedData": "4.7.0", + "System.Text.Json": "4.7.2", + "System.Threading.Tasks.Extensions": "4.5.4" + }, + "compile": { + "lib/netstandard2.0/Azure.Identity.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/Azure.Identity.dll": { + "related": ".xml" + } + } + }, + "Humanizer.Core/2.14.1": { + "type": "package", + "compile": { + "lib/net6.0/_._": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/Humanizer.dll": { + "related": ".xml" + } + } + }, + "Microsoft.Bcl.AsyncInterfaces/7.0.0": { + "type": "package", + "compile": { + "lib/netstandard2.1/Microsoft.Bcl.AsyncInterfaces.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.1/Microsoft.Bcl.AsyncInterfaces.dll": { + "related": ".xml" + } + } + }, + "Microsoft.Build.Framework/17.8.3": { + "type": "package", + "compile": { + "ref/net8.0/_._": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/_._": { + "related": ".pdb;.xml" + } + } + }, + "Microsoft.Build.Locator/1.7.8": { + "type": "package", + "compile": { + "lib/net6.0/_._": {} + }, + "runtime": { + "lib/net6.0/Microsoft.Build.Locator.dll": {} + }, + "build": { + "build/_._": {} + } + }, + "Microsoft.CodeAnalysis.Analyzers/3.3.4": { + "type": "package", + "build": { + "buildTransitive/Microsoft.CodeAnalysis.Analyzers.props": {}, + "buildTransitive/Microsoft.CodeAnalysis.Analyzers.targets": {} + } + }, + "Microsoft.CodeAnalysis.Common/4.8.0": { + "type": "package", + "dependencies": { + "Microsoft.CodeAnalysis.Analyzers": "3.3.4", + "System.Collections.Immutable": "7.0.0", + "System.Reflection.Metadata": "7.0.0", + "System.Runtime.CompilerServices.Unsafe": "6.0.0" + }, + "compile": { + "lib/net7.0/_._": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net7.0/Microsoft.CodeAnalysis.dll": { + "related": ".pdb;.xml" + } + }, + "resource": { + "lib/net7.0/cs/Microsoft.CodeAnalysis.resources.dll": { + "locale": "cs" + }, + "lib/net7.0/de/Microsoft.CodeAnalysis.resources.dll": { + "locale": "de" + }, + "lib/net7.0/es/Microsoft.CodeAnalysis.resources.dll": { + "locale": "es" + }, + "lib/net7.0/fr/Microsoft.CodeAnalysis.resources.dll": { + "locale": "fr" + }, + "lib/net7.0/it/Microsoft.CodeAnalysis.resources.dll": { + "locale": "it" + }, + "lib/net7.0/ja/Microsoft.CodeAnalysis.resources.dll": { + "locale": "ja" + }, + "lib/net7.0/ko/Microsoft.CodeAnalysis.resources.dll": { + "locale": "ko" + }, + "lib/net7.0/pl/Microsoft.CodeAnalysis.resources.dll": { + "locale": "pl" + }, + "lib/net7.0/pt-BR/Microsoft.CodeAnalysis.resources.dll": { + "locale": "pt-BR" + }, + "lib/net7.0/ru/Microsoft.CodeAnalysis.resources.dll": { + "locale": "ru" + }, + "lib/net7.0/tr/Microsoft.CodeAnalysis.resources.dll": { + "locale": "tr" + }, + "lib/net7.0/zh-Hans/Microsoft.CodeAnalysis.resources.dll": { + "locale": "zh-Hans" + }, + "lib/net7.0/zh-Hant/Microsoft.CodeAnalysis.resources.dll": { + "locale": "zh-Hant" + } + } + }, + "Microsoft.CodeAnalysis.CSharp/4.8.0": { + "type": "package", + "dependencies": { + "Microsoft.CodeAnalysis.Common": "[4.8.0]" + }, + "compile": { + "lib/net7.0/_._": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net7.0/Microsoft.CodeAnalysis.CSharp.dll": { + "related": ".pdb;.xml" + } + }, + "resource": { + "lib/net7.0/cs/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "cs" + }, + "lib/net7.0/de/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "de" + }, + "lib/net7.0/es/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "es" + }, + "lib/net7.0/fr/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "fr" + }, + "lib/net7.0/it/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "it" + }, + "lib/net7.0/ja/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "ja" + }, + "lib/net7.0/ko/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "ko" + }, + "lib/net7.0/pl/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "pl" + }, + "lib/net7.0/pt-BR/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "pt-BR" + }, + "lib/net7.0/ru/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "ru" + }, + "lib/net7.0/tr/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "tr" + }, + "lib/net7.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "zh-Hans" + }, + "lib/net7.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "zh-Hant" + } + } + }, + "Microsoft.CodeAnalysis.CSharp.Workspaces/4.8.0": { + "type": "package", + "dependencies": { + "Humanizer.Core": "2.14.1", + "Microsoft.CodeAnalysis.CSharp": "[4.8.0]", + "Microsoft.CodeAnalysis.Common": "[4.8.0]", + "Microsoft.CodeAnalysis.Workspaces.Common": "[4.8.0]" + }, + "compile": { + "lib/net7.0/_._": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net7.0/Microsoft.CodeAnalysis.CSharp.Workspaces.dll": { + "related": ".pdb;.xml" + } + }, + "resource": { + "lib/net7.0/cs/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": { + "locale": "cs" + }, + "lib/net7.0/de/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": { + "locale": "de" + }, + "lib/net7.0/es/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": { + "locale": "es" + }, + "lib/net7.0/fr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": { + "locale": "fr" + }, + "lib/net7.0/it/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": { + "locale": "it" + }, + "lib/net7.0/ja/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": { + "locale": "ja" + }, + "lib/net7.0/ko/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": { + "locale": "ko" + }, + "lib/net7.0/pl/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": { + "locale": "pl" + }, + "lib/net7.0/pt-BR/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": { + "locale": "pt-BR" + }, + "lib/net7.0/ru/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": { + "locale": "ru" + }, + "lib/net7.0/tr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": { + "locale": "tr" + }, + "lib/net7.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": { + "locale": "zh-Hans" + }, + "lib/net7.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": { + "locale": "zh-Hant" + } + } + }, + "Microsoft.CodeAnalysis.Workspaces.Common/4.8.0": { + "type": "package", + "dependencies": { + "Humanizer.Core": "2.14.1", + "Microsoft.Bcl.AsyncInterfaces": "7.0.0", + "Microsoft.CodeAnalysis.Common": "[4.8.0]", + "System.Composition": "7.0.0", + "System.IO.Pipelines": "7.0.0", + "System.Threading.Channels": "7.0.0" + }, + "compile": { + "lib/net7.0/_._": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net7.0/Microsoft.CodeAnalysis.Workspaces.dll": { + "related": ".pdb;.xml" + } + }, + "resource": { + "lib/net7.0/cs/Microsoft.CodeAnalysis.Workspaces.resources.dll": { + "locale": "cs" + }, + "lib/net7.0/de/Microsoft.CodeAnalysis.Workspaces.resources.dll": { + "locale": "de" + }, + "lib/net7.0/es/Microsoft.CodeAnalysis.Workspaces.resources.dll": { + "locale": "es" + }, + "lib/net7.0/fr/Microsoft.CodeAnalysis.Workspaces.resources.dll": { + "locale": "fr" + }, + "lib/net7.0/it/Microsoft.CodeAnalysis.Workspaces.resources.dll": { + "locale": "it" + }, + "lib/net7.0/ja/Microsoft.CodeAnalysis.Workspaces.resources.dll": { + "locale": "ja" + }, + "lib/net7.0/ko/Microsoft.CodeAnalysis.Workspaces.resources.dll": { + "locale": "ko" + }, + "lib/net7.0/pl/Microsoft.CodeAnalysis.Workspaces.resources.dll": { + "locale": "pl" + }, + "lib/net7.0/pt-BR/Microsoft.CodeAnalysis.Workspaces.resources.dll": { + "locale": "pt-BR" + }, + "lib/net7.0/ru/Microsoft.CodeAnalysis.Workspaces.resources.dll": { + "locale": "ru" + }, + "lib/net7.0/tr/Microsoft.CodeAnalysis.Workspaces.resources.dll": { + "locale": "tr" + }, + "lib/net7.0/zh-Hans/Microsoft.CodeAnalysis.Workspaces.resources.dll": { + "locale": "zh-Hans" + }, + "lib/net7.0/zh-Hant/Microsoft.CodeAnalysis.Workspaces.resources.dll": { + "locale": "zh-Hant" + } + } + }, + "Microsoft.CodeAnalysis.Workspaces.MSBuild/4.8.0": { + "type": "package", + "dependencies": { + "Microsoft.Build.Framework": "16.10.0", + "Microsoft.CodeAnalysis.Common": "[4.8.0]", + "Microsoft.CodeAnalysis.Workspaces.Common": "[4.8.0]", + "System.Text.Json": "7.0.3" + }, + "compile": { + "lib/net7.0/_._": { + "related": ".pdb;.runtimeconfig.json;.xml" + } + }, + "runtime": { + "lib/net7.0/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.dll": { + "related": ".pdb;.runtimeconfig.json;.xml" + }, + "lib/net7.0/Microsoft.CodeAnalysis.Workspaces.MSBuild.dll": { + "related": ".BuildHost.pdb;.BuildHost.runtimeconfig.json;.BuildHost.xml;.pdb;.xml" + } + }, + "resource": { + "lib/net7.0/cs/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll": { + "locale": "cs" + }, + "lib/net7.0/de/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll": { + "locale": "de" + }, + "lib/net7.0/es/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll": { + "locale": "es" + }, + "lib/net7.0/fr/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll": { + "locale": "fr" + }, + "lib/net7.0/it/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll": { + "locale": "it" + }, + "lib/net7.0/ja/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll": { + "locale": "ja" + }, + "lib/net7.0/ko/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll": { + "locale": "ko" + }, + "lib/net7.0/pl/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll": { + "locale": "pl" + }, + "lib/net7.0/pt-BR/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll": { + "locale": "pt-BR" + }, + "lib/net7.0/ru/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll": { + "locale": "ru" + }, + "lib/net7.0/tr/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll": { + "locale": "tr" + }, + "lib/net7.0/zh-Hans/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll": { + "locale": "zh-Hans" + }, + "lib/net7.0/zh-Hant/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll": { + "locale": "zh-Hant" + } + } + }, + "Microsoft.CSharp/4.5.0": { + "type": "package", + "compile": { + "ref/netcoreapp2.0/_._": {} + }, + "runtime": { + "lib/netcoreapp2.0/_._": {} + } + }, + "Microsoft.Data.SqlClient/5.1.6": { + "type": "package", + "dependencies": { + "Azure.Identity": "1.11.4", + "Microsoft.Data.SqlClient.SNI.runtime": "5.1.1", + "Microsoft.Identity.Client": "4.61.3", + "Microsoft.IdentityModel.JsonWebTokens": "6.35.0", + "Microsoft.IdentityModel.Protocols.OpenIdConnect": "6.35.0", + "Microsoft.SqlServer.Server": "1.0.0", + "System.Configuration.ConfigurationManager": "6.0.1", + "System.Diagnostics.DiagnosticSource": "6.0.1", + "System.Runtime.Caching": "6.0.0", + "System.Security.Cryptography.Cng": "5.0.0", + "System.Security.Principal.Windows": "5.0.0", + "System.Text.Encoding.CodePages": "6.0.0", + "System.Text.Encodings.Web": "6.0.0" + }, + "compile": { + "ref/net6.0/Microsoft.Data.SqlClient.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0/Microsoft.Data.SqlClient.dll": { + "related": ".pdb;.xml" + } + }, + "runtimeTargets": { + "runtimes/unix/lib/net6.0/Microsoft.Data.SqlClient.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/net6.0/Microsoft.Data.SqlClient.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "Microsoft.Data.SqlClient.SNI.runtime/5.1.1": { + "type": "package", + "runtimeTargets": { + "runtimes/win-arm/native/Microsoft.Data.SqlClient.SNI.dll": { + "assetType": "native", + "rid": "win-arm" + }, + "runtimes/win-arm64/native/Microsoft.Data.SqlClient.SNI.dll": { + "assetType": "native", + "rid": "win-arm64" + }, + "runtimes/win-x64/native/Microsoft.Data.SqlClient.SNI.dll": { + "assetType": "native", + "rid": "win-x64" + }, + "runtimes/win-x86/native/Microsoft.Data.SqlClient.SNI.dll": { + "assetType": "native", + "rid": "win-x86" + } + } + }, + "Microsoft.EntityFrameworkCore/9.0.0": { + "type": "package", + "dependencies": { + "Microsoft.EntityFrameworkCore.Abstractions": "9.0.0", + "Microsoft.EntityFrameworkCore.Analyzers": "9.0.0", + "Microsoft.Extensions.Caching.Memory": "9.0.0", + "Microsoft.Extensions.Logging": "9.0.0" + }, + "compile": { + "lib/net8.0/Microsoft.EntityFrameworkCore.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.EntityFrameworkCore.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net8.0/Microsoft.EntityFrameworkCore.props": {} + } + }, + "Microsoft.EntityFrameworkCore.Abstractions/9.0.0": { + "type": "package", + "compile": { + "lib/net8.0/Microsoft.EntityFrameworkCore.Abstractions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.EntityFrameworkCore.Abstractions.dll": { + "related": ".xml" + } + } + }, + "Microsoft.EntityFrameworkCore.Analyzers/9.0.0": { + "type": "package" + }, + "Microsoft.EntityFrameworkCore.Design/9.0.0": { + "type": "package", + "dependencies": { + "Humanizer.Core": "2.14.1", + "Microsoft.Build.Framework": "17.8.3", + "Microsoft.Build.Locator": "1.7.8", + "Microsoft.CodeAnalysis.CSharp": "4.8.0", + "Microsoft.CodeAnalysis.CSharp.Workspaces": "4.8.0", + "Microsoft.CodeAnalysis.Workspaces.MSBuild": "4.8.0", + "Microsoft.EntityFrameworkCore.Relational": "9.0.0", + "Microsoft.Extensions.Caching.Memory": "9.0.0", + "Microsoft.Extensions.Configuration.Abstractions": "9.0.0", + "Microsoft.Extensions.DependencyModel": "9.0.0", + "Microsoft.Extensions.Logging": "9.0.0", + "Mono.TextTemplating": "3.0.0", + "System.Text.Json": "9.0.0" + }, + "compile": { + "lib/net8.0/_._": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.EntityFrameworkCore.Design.dll": { + "related": ".xml" + } + }, + "build": { + "build/net8.0/Microsoft.EntityFrameworkCore.Design.props": {} + } + }, + "Microsoft.EntityFrameworkCore.Relational/9.0.0": { + "type": "package", + "dependencies": { + "Microsoft.EntityFrameworkCore": "9.0.0", + "Microsoft.Extensions.Caching.Memory": "9.0.0", + "Microsoft.Extensions.Configuration.Abstractions": "9.0.0", + "Microsoft.Extensions.Logging": "9.0.0" + }, + "compile": { + "lib/net8.0/Microsoft.EntityFrameworkCore.Relational.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.EntityFrameworkCore.Relational.dll": { + "related": ".xml" + } + } + }, + "Microsoft.EntityFrameworkCore.SqlServer/9.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Data.SqlClient": "5.1.6", + "Microsoft.EntityFrameworkCore.Relational": "9.0.0", + "Microsoft.Extensions.Caching.Memory": "9.0.0", + "Microsoft.Extensions.Configuration.Abstractions": "9.0.0", + "Microsoft.Extensions.Logging": "9.0.0", + "System.Formats.Asn1": "9.0.0", + "System.Text.Json": "9.0.0" + }, + "compile": { + "lib/net8.0/Microsoft.EntityFrameworkCore.SqlServer.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.EntityFrameworkCore.SqlServer.dll": { + "related": ".xml" + } + } + }, + "Microsoft.Extensions.Caching.Abstractions/9.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Primitives": "9.0.0" + }, + "compile": { + "lib/net8.0/Microsoft.Extensions.Caching.Abstractions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Caching.Abstractions.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net8.0/_._": {} + } + }, + "Microsoft.Extensions.Caching.Memory/9.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Caching.Abstractions": "9.0.0", + "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.0", + "Microsoft.Extensions.Logging.Abstractions": "9.0.0", + "Microsoft.Extensions.Options": "9.0.0", + "Microsoft.Extensions.Primitives": "9.0.0" + }, + "compile": { + "lib/net8.0/Microsoft.Extensions.Caching.Memory.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Caching.Memory.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net8.0/_._": {} + } + }, + "Microsoft.Extensions.Configuration.Abstractions/9.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Primitives": "9.0.0" + }, + "compile": { + "lib/net8.0/Microsoft.Extensions.Configuration.Abstractions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Configuration.Abstractions.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net8.0/_._": {} + } + }, + "Microsoft.Extensions.DependencyInjection/9.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.0" + }, + "compile": { + "lib/net8.0/Microsoft.Extensions.DependencyInjection.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.DependencyInjection.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net8.0/_._": {} + } + }, + "Microsoft.Extensions.DependencyInjection.Abstractions/9.0.0": { + "type": "package", + "compile": { + "lib/net8.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net8.0/_._": {} + } + }, + "Microsoft.Extensions.DependencyModel/9.0.0": { + "type": "package", + "dependencies": { + "System.Text.Encodings.Web": "9.0.0", + "System.Text.Json": "9.0.0" + }, + "compile": { + "lib/net8.0/_._": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.DependencyModel.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net8.0/_._": {} + } + }, + "Microsoft.Extensions.Logging/9.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection": "9.0.0", + "Microsoft.Extensions.Logging.Abstractions": "9.0.0", + "Microsoft.Extensions.Options": "9.0.0" + }, + "compile": { + "lib/net8.0/Microsoft.Extensions.Logging.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Logging.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net8.0/_._": {} + } + }, + "Microsoft.Extensions.Logging.Abstractions/9.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.0", + "System.Diagnostics.DiagnosticSource": "9.0.0" + }, + "compile": { + "lib/net8.0/Microsoft.Extensions.Logging.Abstractions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Logging.Abstractions.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net8.0/Microsoft.Extensions.Logging.Abstractions.targets": {} + } + }, + "Microsoft.Extensions.Options/9.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.0", + "Microsoft.Extensions.Primitives": "9.0.0" + }, + "compile": { + "lib/net8.0/Microsoft.Extensions.Options.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Options.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net8.0/Microsoft.Extensions.Options.targets": {} + } + }, + "Microsoft.Extensions.Primitives/9.0.0": { + "type": "package", + "compile": { + "lib/net8.0/Microsoft.Extensions.Primitives.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Primitives.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net8.0/_._": {} + } + }, + "Microsoft.Identity.Client/4.61.3": { + "type": "package", + "dependencies": { + "Microsoft.IdentityModel.Abstractions": "6.35.0", + "System.Diagnostics.DiagnosticSource": "6.0.1" + }, + "compile": { + "lib/net6.0/Microsoft.Identity.Client.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/Microsoft.Identity.Client.dll": { + "related": ".xml" + } + } + }, + "Microsoft.Identity.Client.Extensions.Msal/4.61.3": { + "type": "package", + "dependencies": { + "Microsoft.Identity.Client": "4.61.3", + "System.Security.Cryptography.ProtectedData": "4.5.0" + }, + "compile": { + "lib/net6.0/Microsoft.Identity.Client.Extensions.Msal.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/Microsoft.Identity.Client.Extensions.Msal.dll": { + "related": ".xml" + } + } + }, + "Microsoft.IdentityModel.Abstractions/6.35.0": { + "type": "package", + "compile": { + "lib/net6.0/Microsoft.IdentityModel.Abstractions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/Microsoft.IdentityModel.Abstractions.dll": { + "related": ".xml" + } + } + }, + "Microsoft.IdentityModel.JsonWebTokens/6.35.0": { + "type": "package", + "dependencies": { + "Microsoft.IdentityModel.Tokens": "6.35.0", + "System.Text.Encoding": "4.3.0", + "System.Text.Encodings.Web": "4.7.2", + "System.Text.Json": "4.7.2" + }, + "compile": { + "lib/net6.0/Microsoft.IdentityModel.JsonWebTokens.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/Microsoft.IdentityModel.JsonWebTokens.dll": { + "related": ".xml" + } + } + }, + "Microsoft.IdentityModel.Logging/6.35.0": { + "type": "package", + "dependencies": { + "Microsoft.IdentityModel.Abstractions": "6.35.0" + }, + "compile": { + "lib/net6.0/Microsoft.IdentityModel.Logging.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/Microsoft.IdentityModel.Logging.dll": { + "related": ".xml" + } + } + }, + "Microsoft.IdentityModel.Protocols/6.35.0": { + "type": "package", + "dependencies": { + "Microsoft.IdentityModel.Logging": "6.35.0", + "Microsoft.IdentityModel.Tokens": "6.35.0" + }, + "compile": { + "lib/net6.0/Microsoft.IdentityModel.Protocols.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/Microsoft.IdentityModel.Protocols.dll": { + "related": ".xml" + } + } + }, + "Microsoft.IdentityModel.Protocols.OpenIdConnect/6.35.0": { + "type": "package", + "dependencies": { + "Microsoft.IdentityModel.Protocols": "6.35.0", + "System.IdentityModel.Tokens.Jwt": "6.35.0" + }, + "compile": { + "lib/net6.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll": { + "related": ".xml" + } + } + }, + "Microsoft.IdentityModel.Tokens/6.35.0": { + "type": "package", + "dependencies": { + "Microsoft.CSharp": "4.5.0", + "Microsoft.IdentityModel.Logging": "6.35.0", + "System.Security.Cryptography.Cng": "4.5.0" + }, + "compile": { + "lib/net6.0/Microsoft.IdentityModel.Tokens.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/Microsoft.IdentityModel.Tokens.dll": { + "related": ".xml" + } + } + }, + "Microsoft.NETCore.Platforms/1.1.0": { + "type": "package", + "compile": { + "lib/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.0/_._": {} + } + }, + "Microsoft.NETCore.Targets/1.1.0": { + "type": "package", + "compile": { + "lib/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.0/_._": {} + } + }, + "Microsoft.SqlServer.Server/1.0.0": { + "type": "package", + "compile": { + "lib/netstandard2.0/Microsoft.SqlServer.Server.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/netstandard2.0/Microsoft.SqlServer.Server.dll": { + "related": ".pdb;.xml" + } + } + }, + "Microsoft.Win32.SystemEvents/6.0.0": { + "type": "package", + "compile": { + "lib/net6.0/_._": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/Microsoft.Win32.SystemEvents.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/netcoreapp3.1/_._": {} + }, + "runtimeTargets": { + "runtimes/win/lib/net6.0/Microsoft.Win32.SystemEvents.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "Mono.TextTemplating/3.0.0": { + "type": "package", + "dependencies": { + "System.CodeDom": "6.0.0" + }, + "compile": { + "lib/net6.0/_._": {} + }, + "runtime": { + "lib/net6.0/Mono.TextTemplating.dll": {} + }, + "build": { + "buildTransitive/Mono.TextTemplating.targets": {} + } + }, + "System.ClientModel/1.0.0": { + "type": "package", + "dependencies": { + "System.Memory.Data": "1.0.2", + "System.Text.Json": "4.7.2" + }, + "compile": { + "lib/net6.0/System.ClientModel.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/System.ClientModel.dll": { + "related": ".xml" + } + } + }, + "System.CodeDom/6.0.0": { + "type": "package", + "compile": { + "lib/net6.0/_._": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/System.CodeDom.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/netcoreapp3.1/_._": {} + } + }, + "System.Collections.Immutable/7.0.0": { + "type": "package", + "compile": { + "lib/net7.0/_._": { + "related": ".xml" + } + }, + "runtime": { + "lib/net7.0/System.Collections.Immutable.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + } + }, + "System.Composition/7.0.0": { + "type": "package", + "dependencies": { + "System.Composition.AttributedModel": "7.0.0", + "System.Composition.Convention": "7.0.0", + "System.Composition.Hosting": "7.0.0", + "System.Composition.Runtime": "7.0.0", + "System.Composition.TypedParts": "7.0.0" + }, + "compile": { + "lib/netcoreapp2.0/_._": {} + }, + "runtime": { + "lib/netcoreapp2.0/_._": {} + }, + "build": { + "buildTransitive/net6.0/_._": {} + } + }, + "System.Composition.AttributedModel/7.0.0": { + "type": "package", + "compile": { + "lib/net7.0/_._": { + "related": ".xml" + } + }, + "runtime": { + "lib/net7.0/System.Composition.AttributedModel.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + } + }, + "System.Composition.Convention/7.0.0": { + "type": "package", + "dependencies": { + "System.Composition.AttributedModel": "7.0.0" + }, + "compile": { + "lib/net7.0/_._": { + "related": ".xml" + } + }, + "runtime": { + "lib/net7.0/System.Composition.Convention.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + } + }, + "System.Composition.Hosting/7.0.0": { + "type": "package", + "dependencies": { + "System.Composition.Runtime": "7.0.0" + }, + "compile": { + "lib/net7.0/_._": { + "related": ".xml" + } + }, + "runtime": { + "lib/net7.0/System.Composition.Hosting.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + } + }, + "System.Composition.Runtime/7.0.0": { + "type": "package", + "compile": { + "lib/net7.0/_._": { + "related": ".xml" + } + }, + "runtime": { + "lib/net7.0/System.Composition.Runtime.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + } + }, + "System.Composition.TypedParts/7.0.0": { + "type": "package", + "dependencies": { + "System.Composition.AttributedModel": "7.0.0", + "System.Composition.Hosting": "7.0.0", + "System.Composition.Runtime": "7.0.0" + }, + "compile": { + "lib/net7.0/_._": { + "related": ".xml" + } + }, + "runtime": { + "lib/net7.0/System.Composition.TypedParts.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + } + }, + "System.Configuration.ConfigurationManager/6.0.1": { + "type": "package", + "dependencies": { + "System.Security.Cryptography.ProtectedData": "6.0.0", + "System.Security.Permissions": "6.0.0" + }, + "compile": { + "lib/net6.0/_._": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/System.Configuration.ConfigurationManager.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/netcoreapp3.1/_._": {} + } + }, + "System.Diagnostics.DiagnosticSource/9.0.0": { + "type": "package", + "compile": { + "lib/net8.0/System.Diagnostics.DiagnosticSource.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/System.Diagnostics.DiagnosticSource.dll": { + "related": ".xml" + } + }, + "contentFiles": { + "contentFiles/any/any/_._": { + "buildAction": "None", + "codeLanguage": "any", + "copyToOutput": false + } + }, + "build": { + "buildTransitive/net8.0/_._": {} + } + }, + "System.Drawing.Common/6.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Win32.SystemEvents": "6.0.0" + }, + "compile": { + "lib/net6.0/_._": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/System.Drawing.Common.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/netcoreapp3.1/_._": {} + }, + "runtimeTargets": { + "runtimes/unix/lib/net6.0/System.Drawing.Common.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/net6.0/System.Drawing.Common.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Formats.Asn1/9.0.0": { + "type": "package", + "compile": { + "lib/net8.0/_._": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/System.Formats.Asn1.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net8.0/_._": {} + } + }, + "System.IdentityModel.Tokens.Jwt/6.35.0": { + "type": "package", + "dependencies": { + "Microsoft.IdentityModel.JsonWebTokens": "6.35.0", + "Microsoft.IdentityModel.Tokens": "6.35.0" + }, + "compile": { + "lib/net6.0/System.IdentityModel.Tokens.Jwt.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/System.IdentityModel.Tokens.Jwt.dll": { + "related": ".xml" + } + } + }, + "System.IO.Pipelines/9.0.0": { + "type": "package", + "compile": { + "lib/net8.0/System.IO.Pipelines.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/System.IO.Pipelines.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net8.0/_._": {} + } + }, + "System.Memory/4.5.4": { + "type": "package", + "compile": { + "ref/netcoreapp2.1/_._": {} + }, + "runtime": { + "lib/netcoreapp2.1/_._": {} + } + }, + "System.Memory.Data/1.0.2": { + "type": "package", + "dependencies": { + "System.Text.Encodings.Web": "4.7.2", + "System.Text.Json": "4.6.0" + }, + "compile": { + "lib/netstandard2.0/System.Memory.Data.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/System.Memory.Data.dll": { + "related": ".xml" + } + } + }, + "System.Numerics.Vectors/4.5.0": { + "type": "package", + "compile": { + "ref/netcoreapp2.0/_._": {} + }, + "runtime": { + "lib/netcoreapp2.0/_._": {} + } + }, + "System.Reflection.Metadata/7.0.0": { + "type": "package", + "dependencies": { + "System.Collections.Immutable": "7.0.0" + }, + "compile": { + "lib/net7.0/_._": { + "related": ".xml" + } + }, + "runtime": { + "lib/net7.0/System.Reflection.Metadata.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + } + }, + "System.Runtime/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0" + }, + "compile": { + "ref/netstandard1.5/System.Runtime.dll": { + "related": ".xml" + } + } + }, + "System.Runtime.Caching/6.0.0": { + "type": "package", + "dependencies": { + "System.Configuration.ConfigurationManager": "6.0.0" + }, + "compile": { + "lib/net6.0/_._": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/System.Runtime.Caching.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/netcoreapp3.1/_._": {} + }, + "runtimeTargets": { + "runtimes/win/lib/net6.0/System.Runtime.Caching.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Runtime.CompilerServices.Unsafe/6.0.0": { + "type": "package", + "compile": { + "lib/net6.0/_._": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/System.Runtime.CompilerServices.Unsafe.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/netcoreapp3.1/_._": {} + } + }, + "System.Security.AccessControl/6.0.0": { + "type": "package", + "compile": { + "lib/net6.0/_._": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/System.Security.AccessControl.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/netcoreapp3.1/_._": {} + }, + "runtimeTargets": { + "runtimes/win/lib/net6.0/System.Security.AccessControl.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Security.Cryptography.Cng/5.0.0": { + "type": "package", + "dependencies": { + "System.Formats.Asn1": "5.0.0" + }, + "compile": { + "ref/netcoreapp3.0/System.Security.Cryptography.Cng.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netcoreapp3.0/System.Security.Cryptography.Cng.dll": { + "related": ".xml" + } + }, + "runtimeTargets": { + "runtimes/win/lib/netcoreapp3.0/System.Security.Cryptography.Cng.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Security.Cryptography.ProtectedData/6.0.0": { + "type": "package", + "compile": { + "lib/net6.0/System.Security.Cryptography.ProtectedData.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/System.Security.Cryptography.ProtectedData.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/netcoreapp3.1/_._": {} + }, + "runtimeTargets": { + "runtimes/win/lib/net6.0/System.Security.Cryptography.ProtectedData.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Security.Permissions/6.0.0": { + "type": "package", + "dependencies": { + "System.Security.AccessControl": "6.0.0", + "System.Windows.Extensions": "6.0.0" + }, + "compile": { + "lib/net6.0/_._": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/System.Security.Permissions.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/netcoreapp3.1/_._": {} + } + }, + "System.Security.Principal.Windows/5.0.0": { + "type": "package", + "compile": { + "ref/netcoreapp3.0/_._": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/System.Security.Principal.Windows.dll": { + "related": ".xml" + } + }, + "runtimeTargets": { + "runtimes/unix/lib/netcoreapp2.1/System.Security.Principal.Windows.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/netcoreapp2.1/System.Security.Principal.Windows.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Text.Encoding/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Text.Encoding.dll": { + "related": ".xml" + } + } + }, + "System.Text.Encoding.CodePages/6.0.0": { + "type": "package", + "dependencies": { + "System.Runtime.CompilerServices.Unsafe": "6.0.0" + }, + "compile": { + "lib/net6.0/_._": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/System.Text.Encoding.CodePages.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/netcoreapp3.1/_._": {} + }, + "runtimeTargets": { + "runtimes/win/lib/net6.0/System.Text.Encoding.CodePages.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Text.Encodings.Web/9.0.0": { + "type": "package", + "compile": { + "lib/net8.0/System.Text.Encodings.Web.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/System.Text.Encodings.Web.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net8.0/_._": {} + }, + "runtimeTargets": { + "runtimes/browser/lib/net8.0/System.Text.Encodings.Web.dll": { + "assetType": "runtime", + "rid": "browser" + } + } + }, + "System.Text.Json/9.0.0": { + "type": "package", + "dependencies": { + "System.IO.Pipelines": "9.0.0", + "System.Text.Encodings.Web": "9.0.0" + }, + "compile": { + "lib/net8.0/System.Text.Json.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/System.Text.Json.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net8.0/System.Text.Json.targets": {} + } + }, + "System.Threading.Channels/7.0.0": { + "type": "package", + "compile": { + "lib/net7.0/_._": { + "related": ".xml" + } + }, + "runtime": { + "lib/net7.0/System.Threading.Channels.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + } + }, + "System.Threading.Tasks.Extensions/4.5.4": { + "type": "package", + "compile": { + "ref/netcoreapp2.1/_._": {} + }, + "runtime": { + "lib/netcoreapp2.1/_._": {} + } + }, + "System.Windows.Extensions/6.0.0": { + "type": "package", + "dependencies": { + "System.Drawing.Common": "6.0.0" + }, + "compile": { + "lib/net6.0/_._": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/System.Windows.Extensions.dll": { + "related": ".xml" + } + }, + "runtimeTargets": { + "runtimes/win/lib/net6.0/System.Windows.Extensions.dll": { + "assetType": "runtime", + "rid": "win" + } + } + } + } + }, + "libraries": { + "Azure.Core/1.38.0": { + "sha512": "IuEgCoVA0ef7E4pQtpC3+TkPbzaoQfa77HlfJDmfuaJUCVJmn7fT0izamZiryW5sYUFKizsftIxMkXKbgIcPMQ==", + "type": "package", + "path": "azure.core/1.38.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "CHANGELOG.md", + "README.md", + "azure.core.1.38.0.nupkg.sha512", + "azure.core.nuspec", + "azureicon.png", + "lib/net461/Azure.Core.dll", + "lib/net461/Azure.Core.xml", + "lib/net472/Azure.Core.dll", + "lib/net472/Azure.Core.xml", + "lib/net6.0/Azure.Core.dll", + "lib/net6.0/Azure.Core.xml", + "lib/netstandard2.0/Azure.Core.dll", + "lib/netstandard2.0/Azure.Core.xml" + ] + }, + "Azure.Identity/1.11.4": { + "sha512": "Sf4BoE6Q3jTgFkgBkx7qztYOFELBCo+wQgpYDwal/qJ1unBH73ywPztIJKXBXORRzAeNijsuxhk94h0TIMvfYg==", + "type": "package", + "path": "azure.identity/1.11.4", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "CHANGELOG.md", + "README.md", + "azure.identity.1.11.4.nupkg.sha512", + "azure.identity.nuspec", + "azureicon.png", + "lib/netstandard2.0/Azure.Identity.dll", + "lib/netstandard2.0/Azure.Identity.xml" + ] + }, + "Humanizer.Core/2.14.1": { + "sha512": "lQKvtaTDOXnoVJ20ibTuSIOf2i0uO0MPbDhd1jm238I+U/2ZnRENj0cktKZhtchBMtCUSRQ5v4xBCUbKNmyVMw==", + "type": "package", + "path": "humanizer.core/2.14.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "humanizer.core.2.14.1.nupkg.sha512", + "humanizer.core.nuspec", + "lib/net6.0/Humanizer.dll", + "lib/net6.0/Humanizer.xml", + "lib/netstandard1.0/Humanizer.dll", + "lib/netstandard1.0/Humanizer.xml", + "lib/netstandard2.0/Humanizer.dll", + "lib/netstandard2.0/Humanizer.xml", + "logo.png" + ] + }, + "Microsoft.Bcl.AsyncInterfaces/7.0.0": { + "sha512": "3aeMZ1N0lJoSyzqiP03hqemtb1BijhsJADdobn/4nsMJ8V1H+CrpuduUe4hlRdx+ikBQju1VGjMD1GJ3Sk05Eg==", + "type": "package", + "path": "microsoft.bcl.asyncinterfaces/7.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/Microsoft.Bcl.AsyncInterfaces.targets", + "buildTransitive/net462/_._", + "lib/net462/Microsoft.Bcl.AsyncInterfaces.dll", + "lib/net462/Microsoft.Bcl.AsyncInterfaces.xml", + "lib/netstandard2.0/Microsoft.Bcl.AsyncInterfaces.dll", + "lib/netstandard2.0/Microsoft.Bcl.AsyncInterfaces.xml", + "lib/netstandard2.1/Microsoft.Bcl.AsyncInterfaces.dll", + "lib/netstandard2.1/Microsoft.Bcl.AsyncInterfaces.xml", + "microsoft.bcl.asyncinterfaces.7.0.0.nupkg.sha512", + "microsoft.bcl.asyncinterfaces.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Build.Framework/17.8.3": { + "sha512": "NrQZJW8TlKVPx72yltGb8SVz3P5mNRk9fNiD/ao8jRSk48WqIIdCn99q4IjlVmPcruuQ+yLdjNQLL8Rb4c916g==", + "type": "package", + "path": "microsoft.build.framework/17.8.3", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "MSBuild-NuGet-Icon.png", + "README.md", + "lib/net472/Microsoft.Build.Framework.dll", + "lib/net472/Microsoft.Build.Framework.pdb", + "lib/net472/Microsoft.Build.Framework.xml", + "lib/net8.0/Microsoft.Build.Framework.dll", + "lib/net8.0/Microsoft.Build.Framework.pdb", + "lib/net8.0/Microsoft.Build.Framework.xml", + "microsoft.build.framework.17.8.3.nupkg.sha512", + "microsoft.build.framework.nuspec", + "notices/THIRDPARTYNOTICES.txt", + "ref/net472/Microsoft.Build.Framework.dll", + "ref/net472/Microsoft.Build.Framework.xml", + "ref/net8.0/Microsoft.Build.Framework.dll", + "ref/net8.0/Microsoft.Build.Framework.xml", + "ref/netstandard2.0/Microsoft.Build.Framework.dll", + "ref/netstandard2.0/Microsoft.Build.Framework.xml" + ] + }, + "Microsoft.Build.Locator/1.7.8": { + "sha512": "sPy10x527Ph16S2u0yGME4S6ohBKJ69WfjeGG/bvELYeZVmJdKjxgnlL8cJJJLGV/cZIRqSfB12UDB8ICakOog==", + "type": "package", + "path": "microsoft.build.locator/1.7.8", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "MSBuild-NuGet-Icon.png", + "build/Microsoft.Build.Locator.props", + "build/Microsoft.Build.Locator.targets", + "lib/net46/Microsoft.Build.Locator.dll", + "lib/net6.0/Microsoft.Build.Locator.dll", + "microsoft.build.locator.1.7.8.nupkg.sha512", + "microsoft.build.locator.nuspec" + ] + }, + "Microsoft.CodeAnalysis.Analyzers/3.3.4": { + "sha512": "AxkxcPR+rheX0SmvpLVIGLhOUXAKG56a64kV9VQZ4y9gR9ZmPXnqZvHJnmwLSwzrEP6junUF11vuc+aqo5r68g==", + "type": "package", + "path": "microsoft.codeanalysis.analyzers/3.3.4", + "hasTools": true, + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "ThirdPartyNotices.txt", + "analyzers/dotnet/cs/Microsoft.CodeAnalysis.Analyzers.dll", + "analyzers/dotnet/cs/Microsoft.CodeAnalysis.CSharp.Analyzers.dll", + "analyzers/dotnet/cs/cs/Microsoft.CodeAnalysis.Analyzers.resources.dll", + "analyzers/dotnet/cs/de/Microsoft.CodeAnalysis.Analyzers.resources.dll", + "analyzers/dotnet/cs/es/Microsoft.CodeAnalysis.Analyzers.resources.dll", + "analyzers/dotnet/cs/fr/Microsoft.CodeAnalysis.Analyzers.resources.dll", + "analyzers/dotnet/cs/it/Microsoft.CodeAnalysis.Analyzers.resources.dll", + "analyzers/dotnet/cs/ja/Microsoft.CodeAnalysis.Analyzers.resources.dll", + "analyzers/dotnet/cs/ko/Microsoft.CodeAnalysis.Analyzers.resources.dll", + "analyzers/dotnet/cs/pl/Microsoft.CodeAnalysis.Analyzers.resources.dll", + "analyzers/dotnet/cs/pt-BR/Microsoft.CodeAnalysis.Analyzers.resources.dll", + "analyzers/dotnet/cs/ru/Microsoft.CodeAnalysis.Analyzers.resources.dll", + "analyzers/dotnet/cs/tr/Microsoft.CodeAnalysis.Analyzers.resources.dll", + "analyzers/dotnet/cs/zh-Hans/Microsoft.CodeAnalysis.Analyzers.resources.dll", + "analyzers/dotnet/cs/zh-Hant/Microsoft.CodeAnalysis.Analyzers.resources.dll", + "analyzers/dotnet/vb/Microsoft.CodeAnalysis.Analyzers.dll", + "analyzers/dotnet/vb/Microsoft.CodeAnalysis.VisualBasic.Analyzers.dll", + "analyzers/dotnet/vb/cs/Microsoft.CodeAnalysis.Analyzers.resources.dll", + "analyzers/dotnet/vb/de/Microsoft.CodeAnalysis.Analyzers.resources.dll", + "analyzers/dotnet/vb/es/Microsoft.CodeAnalysis.Analyzers.resources.dll", + "analyzers/dotnet/vb/fr/Microsoft.CodeAnalysis.Analyzers.resources.dll", + "analyzers/dotnet/vb/it/Microsoft.CodeAnalysis.Analyzers.resources.dll", + "analyzers/dotnet/vb/ja/Microsoft.CodeAnalysis.Analyzers.resources.dll", + "analyzers/dotnet/vb/ko/Microsoft.CodeAnalysis.Analyzers.resources.dll", + "analyzers/dotnet/vb/pl/Microsoft.CodeAnalysis.Analyzers.resources.dll", + "analyzers/dotnet/vb/pt-BR/Microsoft.CodeAnalysis.Analyzers.resources.dll", + "analyzers/dotnet/vb/ru/Microsoft.CodeAnalysis.Analyzers.resources.dll", + "analyzers/dotnet/vb/tr/Microsoft.CodeAnalysis.Analyzers.resources.dll", + "analyzers/dotnet/vb/zh-Hans/Microsoft.CodeAnalysis.Analyzers.resources.dll", + "analyzers/dotnet/vb/zh-Hant/Microsoft.CodeAnalysis.Analyzers.resources.dll", + "buildTransitive/Microsoft.CodeAnalysis.Analyzers.props", + "buildTransitive/Microsoft.CodeAnalysis.Analyzers.targets", + "buildTransitive/config/analysislevel_2_9_8_all.globalconfig", + "buildTransitive/config/analysislevel_2_9_8_all_warnaserror.globalconfig", + "buildTransitive/config/analysislevel_2_9_8_default.globalconfig", + "buildTransitive/config/analysislevel_2_9_8_default_warnaserror.globalconfig", + "buildTransitive/config/analysislevel_2_9_8_minimum.globalconfig", + "buildTransitive/config/analysislevel_2_9_8_minimum_warnaserror.globalconfig", + "buildTransitive/config/analysislevel_2_9_8_none.globalconfig", + "buildTransitive/config/analysislevel_2_9_8_none_warnaserror.globalconfig", + "buildTransitive/config/analysislevel_2_9_8_recommended.globalconfig", + "buildTransitive/config/analysislevel_2_9_8_recommended_warnaserror.globalconfig", + "buildTransitive/config/analysislevel_3_3_3_all.globalconfig", + "buildTransitive/config/analysislevel_3_3_3_all_warnaserror.globalconfig", + "buildTransitive/config/analysislevel_3_3_3_default.globalconfig", + "buildTransitive/config/analysislevel_3_3_3_default_warnaserror.globalconfig", + "buildTransitive/config/analysislevel_3_3_3_minimum.globalconfig", + "buildTransitive/config/analysislevel_3_3_3_minimum_warnaserror.globalconfig", + "buildTransitive/config/analysislevel_3_3_3_none.globalconfig", + "buildTransitive/config/analysislevel_3_3_3_none_warnaserror.globalconfig", + "buildTransitive/config/analysislevel_3_3_3_recommended.globalconfig", + "buildTransitive/config/analysislevel_3_3_3_recommended_warnaserror.globalconfig", + "buildTransitive/config/analysislevel_3_3_all.globalconfig", + "buildTransitive/config/analysislevel_3_3_all_warnaserror.globalconfig", + "buildTransitive/config/analysislevel_3_3_default.globalconfig", + "buildTransitive/config/analysislevel_3_3_default_warnaserror.globalconfig", + "buildTransitive/config/analysislevel_3_3_minimum.globalconfig", + "buildTransitive/config/analysislevel_3_3_minimum_warnaserror.globalconfig", + "buildTransitive/config/analysislevel_3_3_none.globalconfig", + "buildTransitive/config/analysislevel_3_3_none_warnaserror.globalconfig", + "buildTransitive/config/analysislevel_3_3_recommended.globalconfig", + "buildTransitive/config/analysislevel_3_3_recommended_warnaserror.globalconfig", + "buildTransitive/config/analysislevel_3_all.globalconfig", + "buildTransitive/config/analysislevel_3_all_warnaserror.globalconfig", + "buildTransitive/config/analysislevel_3_default.globalconfig", + "buildTransitive/config/analysislevel_3_default_warnaserror.globalconfig", + "buildTransitive/config/analysislevel_3_minimum.globalconfig", + "buildTransitive/config/analysislevel_3_minimum_warnaserror.globalconfig", + "buildTransitive/config/analysislevel_3_none.globalconfig", + "buildTransitive/config/analysislevel_3_none_warnaserror.globalconfig", + "buildTransitive/config/analysislevel_3_recommended.globalconfig", + "buildTransitive/config/analysislevel_3_recommended_warnaserror.globalconfig", + "buildTransitive/config/analysislevel_4_3_all.globalconfig", + "buildTransitive/config/analysislevel_4_3_all_warnaserror.globalconfig", + "buildTransitive/config/analysislevel_4_3_default.globalconfig", + "buildTransitive/config/analysislevel_4_3_default_warnaserror.globalconfig", + "buildTransitive/config/analysislevel_4_3_minimum.globalconfig", + "buildTransitive/config/analysislevel_4_3_minimum_warnaserror.globalconfig", + "buildTransitive/config/analysislevel_4_3_none.globalconfig", + "buildTransitive/config/analysislevel_4_3_none_warnaserror.globalconfig", + "buildTransitive/config/analysislevel_4_3_recommended.globalconfig", + "buildTransitive/config/analysislevel_4_3_recommended_warnaserror.globalconfig", + "buildTransitive/config/analysislevelcorrectness_2_9_8_all.globalconfig", + "buildTransitive/config/analysislevelcorrectness_2_9_8_all_warnaserror.globalconfig", + "buildTransitive/config/analysislevelcorrectness_2_9_8_default.globalconfig", + "buildTransitive/config/analysislevelcorrectness_2_9_8_default_warnaserror.globalconfig", + "buildTransitive/config/analysislevelcorrectness_2_9_8_minimum.globalconfig", + "buildTransitive/config/analysislevelcorrectness_2_9_8_minimum_warnaserror.globalconfig", + "buildTransitive/config/analysislevelcorrectness_2_9_8_none.globalconfig", + "buildTransitive/config/analysislevelcorrectness_2_9_8_none_warnaserror.globalconfig", + "buildTransitive/config/analysislevelcorrectness_2_9_8_recommended.globalconfig", + "buildTransitive/config/analysislevelcorrectness_2_9_8_recommended_warnaserror.globalconfig", + "buildTransitive/config/analysislevelcorrectness_3_3_3_all.globalconfig", + "buildTransitive/config/analysislevelcorrectness_3_3_3_all_warnaserror.globalconfig", + "buildTransitive/config/analysislevelcorrectness_3_3_3_default.globalconfig", + "buildTransitive/config/analysislevelcorrectness_3_3_3_default_warnaserror.globalconfig", + "buildTransitive/config/analysislevelcorrectness_3_3_3_minimum.globalconfig", + "buildTransitive/config/analysislevelcorrectness_3_3_3_minimum_warnaserror.globalconfig", + "buildTransitive/config/analysislevelcorrectness_3_3_3_none.globalconfig", + "buildTransitive/config/analysislevelcorrectness_3_3_3_none_warnaserror.globalconfig", + "buildTransitive/config/analysislevelcorrectness_3_3_3_recommended.globalconfig", + "buildTransitive/config/analysislevelcorrectness_3_3_3_recommended_warnaserror.globalconfig", + "buildTransitive/config/analysislevelcorrectness_3_3_all.globalconfig", + "buildTransitive/config/analysislevelcorrectness_3_3_all_warnaserror.globalconfig", + "buildTransitive/config/analysislevelcorrectness_3_3_default.globalconfig", + "buildTransitive/config/analysislevelcorrectness_3_3_default_warnaserror.globalconfig", + "buildTransitive/config/analysislevelcorrectness_3_3_minimum.globalconfig", + "buildTransitive/config/analysislevelcorrectness_3_3_minimum_warnaserror.globalconfig", + "buildTransitive/config/analysislevelcorrectness_3_3_none.globalconfig", + "buildTransitive/config/analysislevelcorrectness_3_3_none_warnaserror.globalconfig", + "buildTransitive/config/analysislevelcorrectness_3_3_recommended.globalconfig", + "buildTransitive/config/analysislevelcorrectness_3_3_recommended_warnaserror.globalconfig", + "buildTransitive/config/analysislevelcorrectness_3_all.globalconfig", + "buildTransitive/config/analysislevelcorrectness_3_all_warnaserror.globalconfig", + "buildTransitive/config/analysislevelcorrectness_3_default.globalconfig", + "buildTransitive/config/analysislevelcorrectness_3_default_warnaserror.globalconfig", + "buildTransitive/config/analysislevelcorrectness_3_minimum.globalconfig", + "buildTransitive/config/analysislevelcorrectness_3_minimum_warnaserror.globalconfig", + "buildTransitive/config/analysislevelcorrectness_3_none.globalconfig", + "buildTransitive/config/analysislevelcorrectness_3_none_warnaserror.globalconfig", + "buildTransitive/config/analysislevelcorrectness_3_recommended.globalconfig", + "buildTransitive/config/analysislevelcorrectness_3_recommended_warnaserror.globalconfig", + "buildTransitive/config/analysislevelcorrectness_4_3_all.globalconfig", + "buildTransitive/config/analysislevelcorrectness_4_3_all_warnaserror.globalconfig", + "buildTransitive/config/analysislevelcorrectness_4_3_default.globalconfig", + "buildTransitive/config/analysislevelcorrectness_4_3_default_warnaserror.globalconfig", + "buildTransitive/config/analysislevelcorrectness_4_3_minimum.globalconfig", + "buildTransitive/config/analysislevelcorrectness_4_3_minimum_warnaserror.globalconfig", + "buildTransitive/config/analysislevelcorrectness_4_3_none.globalconfig", + "buildTransitive/config/analysislevelcorrectness_4_3_none_warnaserror.globalconfig", + "buildTransitive/config/analysislevelcorrectness_4_3_recommended.globalconfig", + "buildTransitive/config/analysislevelcorrectness_4_3_recommended_warnaserror.globalconfig", + "buildTransitive/config/analysislevellibrary_2_9_8_all.globalconfig", + "buildTransitive/config/analysislevellibrary_2_9_8_all_warnaserror.globalconfig", + "buildTransitive/config/analysislevellibrary_2_9_8_default.globalconfig", + "buildTransitive/config/analysislevellibrary_2_9_8_default_warnaserror.globalconfig", + "buildTransitive/config/analysislevellibrary_2_9_8_minimum.globalconfig", + "buildTransitive/config/analysislevellibrary_2_9_8_minimum_warnaserror.globalconfig", + "buildTransitive/config/analysislevellibrary_2_9_8_none.globalconfig", + "buildTransitive/config/analysislevellibrary_2_9_8_none_warnaserror.globalconfig", + "buildTransitive/config/analysislevellibrary_2_9_8_recommended.globalconfig", + "buildTransitive/config/analysislevellibrary_2_9_8_recommended_warnaserror.globalconfig", + "buildTransitive/config/analysislevellibrary_3_3_3_all.globalconfig", + "buildTransitive/config/analysislevellibrary_3_3_3_all_warnaserror.globalconfig", + "buildTransitive/config/analysislevellibrary_3_3_3_default.globalconfig", + "buildTransitive/config/analysislevellibrary_3_3_3_default_warnaserror.globalconfig", + "buildTransitive/config/analysislevellibrary_3_3_3_minimum.globalconfig", + "buildTransitive/config/analysislevellibrary_3_3_3_minimum_warnaserror.globalconfig", + "buildTransitive/config/analysislevellibrary_3_3_3_none.globalconfig", + "buildTransitive/config/analysislevellibrary_3_3_3_none_warnaserror.globalconfig", + "buildTransitive/config/analysislevellibrary_3_3_3_recommended.globalconfig", + "buildTransitive/config/analysislevellibrary_3_3_3_recommended_warnaserror.globalconfig", + "buildTransitive/config/analysislevellibrary_3_3_all.globalconfig", + "buildTransitive/config/analysislevellibrary_3_3_all_warnaserror.globalconfig", + "buildTransitive/config/analysislevellibrary_3_3_default.globalconfig", + "buildTransitive/config/analysislevellibrary_3_3_default_warnaserror.globalconfig", + "buildTransitive/config/analysislevellibrary_3_3_minimum.globalconfig", + "buildTransitive/config/analysislevellibrary_3_3_minimum_warnaserror.globalconfig", + "buildTransitive/config/analysislevellibrary_3_3_none.globalconfig", + "buildTransitive/config/analysislevellibrary_3_3_none_warnaserror.globalconfig", + "buildTransitive/config/analysislevellibrary_3_3_recommended.globalconfig", + "buildTransitive/config/analysislevellibrary_3_3_recommended_warnaserror.globalconfig", + "buildTransitive/config/analysislevellibrary_3_all.globalconfig", + "buildTransitive/config/analysislevellibrary_3_all_warnaserror.globalconfig", + "buildTransitive/config/analysislevellibrary_3_default.globalconfig", + "buildTransitive/config/analysislevellibrary_3_default_warnaserror.globalconfig", + "buildTransitive/config/analysislevellibrary_3_minimum.globalconfig", + "buildTransitive/config/analysislevellibrary_3_minimum_warnaserror.globalconfig", + "buildTransitive/config/analysislevellibrary_3_none.globalconfig", + "buildTransitive/config/analysislevellibrary_3_none_warnaserror.globalconfig", + "buildTransitive/config/analysislevellibrary_3_recommended.globalconfig", + "buildTransitive/config/analysislevellibrary_3_recommended_warnaserror.globalconfig", + "buildTransitive/config/analysislevellibrary_4_3_all.globalconfig", + "buildTransitive/config/analysislevellibrary_4_3_all_warnaserror.globalconfig", + "buildTransitive/config/analysislevellibrary_4_3_default.globalconfig", + "buildTransitive/config/analysislevellibrary_4_3_default_warnaserror.globalconfig", + "buildTransitive/config/analysislevellibrary_4_3_minimum.globalconfig", + "buildTransitive/config/analysislevellibrary_4_3_minimum_warnaserror.globalconfig", + "buildTransitive/config/analysislevellibrary_4_3_none.globalconfig", + "buildTransitive/config/analysislevellibrary_4_3_none_warnaserror.globalconfig", + "buildTransitive/config/analysislevellibrary_4_3_recommended.globalconfig", + "buildTransitive/config/analysislevellibrary_4_3_recommended_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_2_9_8_all.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_2_9_8_all_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_2_9_8_default.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_2_9_8_default_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_2_9_8_minimum.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_2_9_8_minimum_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_2_9_8_none.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_2_9_8_none_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_2_9_8_recommended.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_2_9_8_recommended_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_3_3_3_all.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_3_3_3_all_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_3_3_3_default.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_3_3_3_default_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_3_3_3_minimum.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_3_3_3_minimum_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_3_3_3_none.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_3_3_3_none_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_3_3_3_recommended.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_3_3_3_recommended_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_3_3_all.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_3_3_all_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_3_3_default.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_3_3_default_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_3_3_minimum.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_3_3_minimum_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_3_3_none.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_3_3_none_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_3_3_recommended.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_3_3_recommended_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_3_all.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_3_all_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_3_default.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_3_default_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_3_minimum.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_3_minimum_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_3_none.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_3_none_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_3_recommended.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_3_recommended_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_4_3_all.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_4_3_all_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_4_3_default.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_4_3_default_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_4_3_minimum.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_4_3_minimum_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_4_3_none.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_4_3_none_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_4_3_recommended.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_4_3_recommended_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_2_9_8_all.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_2_9_8_all_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_2_9_8_default.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_2_9_8_default_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_2_9_8_minimum.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_2_9_8_minimum_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_2_9_8_none.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_2_9_8_none_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_2_9_8_recommended.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_2_9_8_recommended_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_3_3_3_all.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_3_3_3_all_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_3_3_3_default.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_3_3_3_default_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_3_3_3_minimum.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_3_3_3_minimum_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_3_3_3_none.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_3_3_3_none_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_3_3_3_recommended.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_3_3_3_recommended_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_3_3_all.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_3_3_all_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_3_3_default.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_3_3_default_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_3_3_minimum.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_3_3_minimum_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_3_3_none.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_3_3_none_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_3_3_recommended.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_3_3_recommended_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_3_all.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_3_all_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_3_default.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_3_default_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_3_minimum.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_3_minimum_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_3_none.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_3_none_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_3_recommended.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_3_recommended_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_4_3_all.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_4_3_all_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_4_3_default.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_4_3_default_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_4_3_minimum.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_4_3_minimum_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_4_3_none.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_4_3_none_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_4_3_recommended.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_4_3_recommended_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_2_9_8_all.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_2_9_8_all_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_2_9_8_default.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_2_9_8_default_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_2_9_8_minimum.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_2_9_8_minimum_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_2_9_8_none.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_2_9_8_none_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_2_9_8_recommended.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_2_9_8_recommended_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_3_3_3_all.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_3_3_3_all_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_3_3_3_default.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_3_3_3_default_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_3_3_3_minimum.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_3_3_3_minimum_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_3_3_3_none.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_3_3_3_none_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_3_3_3_recommended.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_3_3_3_recommended_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_3_3_all.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_3_3_all_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_3_3_default.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_3_3_default_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_3_3_minimum.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_3_3_minimum_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_3_3_none.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_3_3_none_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_3_3_recommended.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_3_3_recommended_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_3_all.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_3_all_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_3_default.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_3_default_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_3_minimum.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_3_minimum_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_3_none.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_3_none_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_3_recommended.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_3_recommended_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_4_3_all.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_4_3_all_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_4_3_default.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_4_3_default_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_4_3_minimum.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_4_3_minimum_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_4_3_none.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_4_3_none_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_4_3_recommended.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_4_3_recommended_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_2_9_8_all.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_2_9_8_all_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_2_9_8_default.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_2_9_8_default_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_2_9_8_minimum.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_2_9_8_minimum_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_2_9_8_none.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_2_9_8_none_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_2_9_8_recommended.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_2_9_8_recommended_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_3_3_3_all.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_3_3_3_all_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_3_3_3_default.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_3_3_3_default_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_3_3_3_minimum.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_3_3_3_minimum_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_3_3_3_none.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_3_3_3_none_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_3_3_3_recommended.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_3_3_3_recommended_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_3_3_all.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_3_3_all_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_3_3_default.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_3_3_default_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_3_3_minimum.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_3_3_minimum_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_3_3_none.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_3_3_none_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_3_3_recommended.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_3_3_recommended_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_3_all.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_3_all_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_3_default.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_3_default_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_3_minimum.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_3_minimum_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_3_none.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_3_none_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_3_recommended.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_3_recommended_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_4_3_all.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_4_3_all_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_4_3_default.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_4_3_default_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_4_3_minimum.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_4_3_minimum_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_4_3_none.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_4_3_none_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_4_3_recommended.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_4_3_recommended_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_2_9_8_all.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_2_9_8_all_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_2_9_8_default.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_2_9_8_default_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_2_9_8_minimum.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_2_9_8_minimum_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_2_9_8_none.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_2_9_8_none_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_2_9_8_recommended.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_2_9_8_recommended_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_3_3_3_all.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_3_3_3_all_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_3_3_3_default.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_3_3_3_default_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_3_3_3_minimum.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_3_3_3_minimum_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_3_3_3_none.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_3_3_3_none_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_3_3_3_recommended.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_3_3_3_recommended_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_3_3_all.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_3_3_all_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_3_3_default.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_3_3_default_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_3_3_minimum.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_3_3_minimum_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_3_3_none.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_3_3_none_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_3_3_recommended.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_3_3_recommended_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_3_all.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_3_all_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_3_default.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_3_default_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_3_minimum.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_3_minimum_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_3_none.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_3_none_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_3_recommended.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_3_recommended_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_4_3_all.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_4_3_all_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_4_3_default.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_4_3_default_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_4_3_minimum.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_4_3_minimum_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_4_3_none.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_4_3_none_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_4_3_recommended.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_4_3_recommended_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_2_9_8_all.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_2_9_8_all_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_2_9_8_default.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_2_9_8_default_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_2_9_8_minimum.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_2_9_8_minimum_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_2_9_8_none.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_2_9_8_none_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_2_9_8_recommended.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_2_9_8_recommended_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_3_3_3_all.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_3_3_3_all_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_3_3_3_default.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_3_3_3_default_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_3_3_3_minimum.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_3_3_3_minimum_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_3_3_3_none.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_3_3_3_none_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_3_3_3_recommended.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_3_3_3_recommended_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_3_3_all.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_3_3_all_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_3_3_default.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_3_3_default_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_3_3_minimum.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_3_3_minimum_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_3_3_none.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_3_3_none_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_3_3_recommended.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_3_3_recommended_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_3_all.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_3_all_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_3_default.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_3_default_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_3_minimum.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_3_minimum_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_3_none.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_3_none_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_3_recommended.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_3_recommended_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_4_3_all.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_4_3_all_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_4_3_default.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_4_3_default_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_4_3_minimum.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_4_3_minimum_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_4_3_none.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_4_3_none_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_4_3_recommended.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_4_3_recommended_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_2_9_8_all.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_2_9_8_all_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_2_9_8_default.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_2_9_8_default_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_2_9_8_minimum.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_2_9_8_minimum_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_2_9_8_none.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_2_9_8_none_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_2_9_8_recommended.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_2_9_8_recommended_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_3_3_all.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_3_3_all_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_3_3_default.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_3_3_default_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_3_3_minimum.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_3_3_minimum_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_3_3_none.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_3_3_none_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_3_3_recommended.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_3_3_recommended_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_3_all.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_3_all_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_3_default.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_3_default_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_3_minimum.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_3_minimum_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_3_none.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_3_none_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_3_recommended.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_3_recommended_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_all.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_all_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_default.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_default_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_minimum.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_minimum_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_none.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_none_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_recommended.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_recommended_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_4_3_all.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_4_3_all_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_4_3_default.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_4_3_default_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_4_3_minimum.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_4_3_minimum_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_4_3_none.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_4_3_none_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_4_3_recommended.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_4_3_recommended_warnaserror.globalconfig", + "documentation/Analyzer Configuration.md", + "documentation/Microsoft.CodeAnalysis.Analyzers.md", + "documentation/Microsoft.CodeAnalysis.Analyzers.sarif", + "editorconfig/AllRulesDefault/.editorconfig", + "editorconfig/AllRulesDisabled/.editorconfig", + "editorconfig/AllRulesEnabled/.editorconfig", + "editorconfig/CorrectnessRulesDefault/.editorconfig", + "editorconfig/CorrectnessRulesEnabled/.editorconfig", + "editorconfig/DataflowRulesDefault/.editorconfig", + "editorconfig/DataflowRulesEnabled/.editorconfig", + "editorconfig/LibraryRulesDefault/.editorconfig", + "editorconfig/LibraryRulesEnabled/.editorconfig", + "editorconfig/MicrosoftCodeAnalysisCompatibilityRulesDefault/.editorconfig", + "editorconfig/MicrosoftCodeAnalysisCompatibilityRulesEnabled/.editorconfig", + "editorconfig/MicrosoftCodeAnalysisCorrectnessRulesDefault/.editorconfig", + "editorconfig/MicrosoftCodeAnalysisCorrectnessRulesEnabled/.editorconfig", + "editorconfig/MicrosoftCodeAnalysisDesignRulesDefault/.editorconfig", + "editorconfig/MicrosoftCodeAnalysisDesignRulesEnabled/.editorconfig", + "editorconfig/MicrosoftCodeAnalysisDocumentationRulesDefault/.editorconfig", + "editorconfig/MicrosoftCodeAnalysisDocumentationRulesEnabled/.editorconfig", + "editorconfig/MicrosoftCodeAnalysisLocalizationRulesDefault/.editorconfig", + "editorconfig/MicrosoftCodeAnalysisLocalizationRulesEnabled/.editorconfig", + "editorconfig/MicrosoftCodeAnalysisPerformanceRulesDefault/.editorconfig", + "editorconfig/MicrosoftCodeAnalysisPerformanceRulesEnabled/.editorconfig", + "editorconfig/MicrosoftCodeAnalysisReleaseTrackingRulesDefault/.editorconfig", + "editorconfig/MicrosoftCodeAnalysisReleaseTrackingRulesEnabled/.editorconfig", + "editorconfig/PortedFromFxCopRulesDefault/.editorconfig", + "editorconfig/PortedFromFxCopRulesEnabled/.editorconfig", + "microsoft.codeanalysis.analyzers.3.3.4.nupkg.sha512", + "microsoft.codeanalysis.analyzers.nuspec", + "rulesets/AllRulesDefault.ruleset", + "rulesets/AllRulesDisabled.ruleset", + "rulesets/AllRulesEnabled.ruleset", + "rulesets/CorrectnessRulesDefault.ruleset", + "rulesets/CorrectnessRulesEnabled.ruleset", + "rulesets/DataflowRulesDefault.ruleset", + "rulesets/DataflowRulesEnabled.ruleset", + "rulesets/LibraryRulesDefault.ruleset", + "rulesets/LibraryRulesEnabled.ruleset", + "rulesets/MicrosoftCodeAnalysisCompatibilityRulesDefault.ruleset", + "rulesets/MicrosoftCodeAnalysisCompatibilityRulesEnabled.ruleset", + "rulesets/MicrosoftCodeAnalysisCorrectnessRulesDefault.ruleset", + "rulesets/MicrosoftCodeAnalysisCorrectnessRulesEnabled.ruleset", + "rulesets/MicrosoftCodeAnalysisDesignRulesDefault.ruleset", + "rulesets/MicrosoftCodeAnalysisDesignRulesEnabled.ruleset", + "rulesets/MicrosoftCodeAnalysisDocumentationRulesDefault.ruleset", + "rulesets/MicrosoftCodeAnalysisDocumentationRulesEnabled.ruleset", + "rulesets/MicrosoftCodeAnalysisLocalizationRulesDefault.ruleset", + "rulesets/MicrosoftCodeAnalysisLocalizationRulesEnabled.ruleset", + "rulesets/MicrosoftCodeAnalysisPerformanceRulesDefault.ruleset", + "rulesets/MicrosoftCodeAnalysisPerformanceRulesEnabled.ruleset", + "rulesets/MicrosoftCodeAnalysisReleaseTrackingRulesDefault.ruleset", + "rulesets/MicrosoftCodeAnalysisReleaseTrackingRulesEnabled.ruleset", + "rulesets/PortedFromFxCopRulesDefault.ruleset", + "rulesets/PortedFromFxCopRulesEnabled.ruleset", + "tools/install.ps1", + "tools/uninstall.ps1" + ] + }, + "Microsoft.CodeAnalysis.Common/4.8.0": { + "sha512": "/jR+e/9aT+BApoQJABlVCKnnggGQbvGh7BKq2/wI1LamxC+LbzhcLj4Vj7gXCofl1n4E521YfF9w0WcASGg/KA==", + "type": "package", + "path": "microsoft.codeanalysis.common/4.8.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "ThirdPartyNotices.rtf", + "lib/net6.0/Microsoft.CodeAnalysis.dll", + "lib/net6.0/Microsoft.CodeAnalysis.pdb", + "lib/net6.0/Microsoft.CodeAnalysis.xml", + "lib/net6.0/cs/Microsoft.CodeAnalysis.resources.dll", + "lib/net6.0/de/Microsoft.CodeAnalysis.resources.dll", + "lib/net6.0/es/Microsoft.CodeAnalysis.resources.dll", + "lib/net6.0/fr/Microsoft.CodeAnalysis.resources.dll", + "lib/net6.0/it/Microsoft.CodeAnalysis.resources.dll", + "lib/net6.0/ja/Microsoft.CodeAnalysis.resources.dll", + "lib/net6.0/ko/Microsoft.CodeAnalysis.resources.dll", + "lib/net6.0/pl/Microsoft.CodeAnalysis.resources.dll", + "lib/net6.0/pt-BR/Microsoft.CodeAnalysis.resources.dll", + "lib/net6.0/ru/Microsoft.CodeAnalysis.resources.dll", + "lib/net6.0/tr/Microsoft.CodeAnalysis.resources.dll", + "lib/net6.0/zh-Hans/Microsoft.CodeAnalysis.resources.dll", + "lib/net6.0/zh-Hant/Microsoft.CodeAnalysis.resources.dll", + "lib/net7.0/Microsoft.CodeAnalysis.dll", + "lib/net7.0/Microsoft.CodeAnalysis.pdb", + "lib/net7.0/Microsoft.CodeAnalysis.xml", + "lib/net7.0/cs/Microsoft.CodeAnalysis.resources.dll", + "lib/net7.0/de/Microsoft.CodeAnalysis.resources.dll", + "lib/net7.0/es/Microsoft.CodeAnalysis.resources.dll", + "lib/net7.0/fr/Microsoft.CodeAnalysis.resources.dll", + "lib/net7.0/it/Microsoft.CodeAnalysis.resources.dll", + "lib/net7.0/ja/Microsoft.CodeAnalysis.resources.dll", + "lib/net7.0/ko/Microsoft.CodeAnalysis.resources.dll", + "lib/net7.0/pl/Microsoft.CodeAnalysis.resources.dll", + "lib/net7.0/pt-BR/Microsoft.CodeAnalysis.resources.dll", + "lib/net7.0/ru/Microsoft.CodeAnalysis.resources.dll", + "lib/net7.0/tr/Microsoft.CodeAnalysis.resources.dll", + "lib/net7.0/zh-Hans/Microsoft.CodeAnalysis.resources.dll", + "lib/net7.0/zh-Hant/Microsoft.CodeAnalysis.resources.dll", + "lib/netstandard2.0/Microsoft.CodeAnalysis.dll", + "lib/netstandard2.0/Microsoft.CodeAnalysis.pdb", + "lib/netstandard2.0/Microsoft.CodeAnalysis.xml", + "lib/netstandard2.0/cs/Microsoft.CodeAnalysis.resources.dll", + "lib/netstandard2.0/de/Microsoft.CodeAnalysis.resources.dll", + "lib/netstandard2.0/es/Microsoft.CodeAnalysis.resources.dll", + "lib/netstandard2.0/fr/Microsoft.CodeAnalysis.resources.dll", + "lib/netstandard2.0/it/Microsoft.CodeAnalysis.resources.dll", + "lib/netstandard2.0/ja/Microsoft.CodeAnalysis.resources.dll", + "lib/netstandard2.0/ko/Microsoft.CodeAnalysis.resources.dll", + "lib/netstandard2.0/pl/Microsoft.CodeAnalysis.resources.dll", + "lib/netstandard2.0/pt-BR/Microsoft.CodeAnalysis.resources.dll", + "lib/netstandard2.0/ru/Microsoft.CodeAnalysis.resources.dll", + "lib/netstandard2.0/tr/Microsoft.CodeAnalysis.resources.dll", + "lib/netstandard2.0/zh-Hans/Microsoft.CodeAnalysis.resources.dll", + "lib/netstandard2.0/zh-Hant/Microsoft.CodeAnalysis.resources.dll", + "microsoft.codeanalysis.common.4.8.0.nupkg.sha512", + "microsoft.codeanalysis.common.nuspec" + ] + }, + "Microsoft.CodeAnalysis.CSharp/4.8.0": { + "sha512": "+3+qfdb/aaGD8PZRCrsdobbzGs1m9u119SkkJt8e/mk3xLJz/udLtS2T6nY27OTXxBBw10HzAbC8Z9w08VyP/g==", + "type": "package", + "path": "microsoft.codeanalysis.csharp/4.8.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "ThirdPartyNotices.rtf", + "lib/net6.0/Microsoft.CodeAnalysis.CSharp.dll", + "lib/net6.0/Microsoft.CodeAnalysis.CSharp.pdb", + "lib/net6.0/Microsoft.CodeAnalysis.CSharp.xml", + "lib/net6.0/cs/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/net6.0/de/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/net6.0/es/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/net6.0/fr/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/net6.0/it/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/net6.0/ja/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/net6.0/ko/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/net6.0/pl/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/net6.0/pt-BR/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/net6.0/ru/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/net6.0/tr/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/net6.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/net6.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/net7.0/Microsoft.CodeAnalysis.CSharp.dll", + "lib/net7.0/Microsoft.CodeAnalysis.CSharp.pdb", + "lib/net7.0/Microsoft.CodeAnalysis.CSharp.xml", + "lib/net7.0/cs/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/net7.0/de/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/net7.0/es/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/net7.0/fr/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/net7.0/it/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/net7.0/ja/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/net7.0/ko/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/net7.0/pl/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/net7.0/pt-BR/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/net7.0/ru/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/net7.0/tr/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/net7.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/net7.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/netstandard2.0/Microsoft.CodeAnalysis.CSharp.dll", + "lib/netstandard2.0/Microsoft.CodeAnalysis.CSharp.pdb", + "lib/netstandard2.0/Microsoft.CodeAnalysis.CSharp.xml", + "lib/netstandard2.0/cs/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/netstandard2.0/de/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/netstandard2.0/es/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/netstandard2.0/fr/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/netstandard2.0/it/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/netstandard2.0/ja/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/netstandard2.0/ko/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/netstandard2.0/pl/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/netstandard2.0/pt-BR/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/netstandard2.0/ru/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/netstandard2.0/tr/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/netstandard2.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/netstandard2.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.resources.dll", + "microsoft.codeanalysis.csharp.4.8.0.nupkg.sha512", + "microsoft.codeanalysis.csharp.nuspec" + ] + }, + "Microsoft.CodeAnalysis.CSharp.Workspaces/4.8.0": { + "sha512": "3amm4tq4Lo8/BGvg9p3BJh3S9nKq2wqCXfS7138i69TUpo/bD+XvD0hNurpEBtcNZhi1FyutiomKJqVF39ugYA==", + "type": "package", + "path": "microsoft.codeanalysis.csharp.workspaces/4.8.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "ThirdPartyNotices.rtf", + "lib/net6.0/Microsoft.CodeAnalysis.CSharp.Workspaces.dll", + "lib/net6.0/Microsoft.CodeAnalysis.CSharp.Workspaces.pdb", + "lib/net6.0/Microsoft.CodeAnalysis.CSharp.Workspaces.xml", + "lib/net6.0/cs/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll", + "lib/net6.0/de/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll", + "lib/net6.0/es/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll", + "lib/net6.0/fr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll", + "lib/net6.0/it/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll", + "lib/net6.0/ja/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll", + "lib/net6.0/ko/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll", + "lib/net6.0/pl/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll", + "lib/net6.0/pt-BR/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll", + "lib/net6.0/ru/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll", + "lib/net6.0/tr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll", + "lib/net6.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll", + "lib/net6.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll", + "lib/net7.0/Microsoft.CodeAnalysis.CSharp.Workspaces.dll", + "lib/net7.0/Microsoft.CodeAnalysis.CSharp.Workspaces.pdb", + "lib/net7.0/Microsoft.CodeAnalysis.CSharp.Workspaces.xml", + "lib/net7.0/cs/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll", + "lib/net7.0/de/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll", + "lib/net7.0/es/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll", + "lib/net7.0/fr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll", + "lib/net7.0/it/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll", + "lib/net7.0/ja/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll", + "lib/net7.0/ko/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll", + "lib/net7.0/pl/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll", + "lib/net7.0/pt-BR/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll", + "lib/net7.0/ru/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll", + "lib/net7.0/tr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll", + "lib/net7.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll", + "lib/net7.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll", + "lib/netstandard2.0/Microsoft.CodeAnalysis.CSharp.Workspaces.dll", + "lib/netstandard2.0/Microsoft.CodeAnalysis.CSharp.Workspaces.pdb", + "lib/netstandard2.0/Microsoft.CodeAnalysis.CSharp.Workspaces.xml", + "lib/netstandard2.0/cs/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll", + "lib/netstandard2.0/de/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll", + "lib/netstandard2.0/es/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll", + "lib/netstandard2.0/fr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll", + "lib/netstandard2.0/it/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll", + "lib/netstandard2.0/ja/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll", + "lib/netstandard2.0/ko/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll", + "lib/netstandard2.0/pl/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll", + "lib/netstandard2.0/pt-BR/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll", + "lib/netstandard2.0/ru/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll", + "lib/netstandard2.0/tr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll", + "lib/netstandard2.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll", + "lib/netstandard2.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll", + "microsoft.codeanalysis.csharp.workspaces.4.8.0.nupkg.sha512", + "microsoft.codeanalysis.csharp.workspaces.nuspec" + ] + }, + "Microsoft.CodeAnalysis.Workspaces.Common/4.8.0": { + "sha512": "LXyV+MJKsKRu3FGJA3OmSk40OUIa/dQCFLOnm5X8MNcujx7hzGu8o+zjXlb/cy5xUdZK2UKYb9YaQ2E8m9QehQ==", + "type": "package", + "path": "microsoft.codeanalysis.workspaces.common/4.8.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "ThirdPartyNotices.rtf", + "lib/net6.0/Microsoft.CodeAnalysis.Workspaces.dll", + "lib/net6.0/Microsoft.CodeAnalysis.Workspaces.pdb", + "lib/net6.0/Microsoft.CodeAnalysis.Workspaces.xml", + "lib/net6.0/cs/Microsoft.CodeAnalysis.Workspaces.resources.dll", + "lib/net6.0/de/Microsoft.CodeAnalysis.Workspaces.resources.dll", + "lib/net6.0/es/Microsoft.CodeAnalysis.Workspaces.resources.dll", + "lib/net6.0/fr/Microsoft.CodeAnalysis.Workspaces.resources.dll", + "lib/net6.0/it/Microsoft.CodeAnalysis.Workspaces.resources.dll", + "lib/net6.0/ja/Microsoft.CodeAnalysis.Workspaces.resources.dll", + "lib/net6.0/ko/Microsoft.CodeAnalysis.Workspaces.resources.dll", + "lib/net6.0/pl/Microsoft.CodeAnalysis.Workspaces.resources.dll", + "lib/net6.0/pt-BR/Microsoft.CodeAnalysis.Workspaces.resources.dll", + "lib/net6.0/ru/Microsoft.CodeAnalysis.Workspaces.resources.dll", + "lib/net6.0/tr/Microsoft.CodeAnalysis.Workspaces.resources.dll", + "lib/net6.0/zh-Hans/Microsoft.CodeAnalysis.Workspaces.resources.dll", + "lib/net6.0/zh-Hant/Microsoft.CodeAnalysis.Workspaces.resources.dll", + "lib/net7.0/Microsoft.CodeAnalysis.Workspaces.dll", + "lib/net7.0/Microsoft.CodeAnalysis.Workspaces.pdb", + "lib/net7.0/Microsoft.CodeAnalysis.Workspaces.xml", + "lib/net7.0/cs/Microsoft.CodeAnalysis.Workspaces.resources.dll", + "lib/net7.0/de/Microsoft.CodeAnalysis.Workspaces.resources.dll", + "lib/net7.0/es/Microsoft.CodeAnalysis.Workspaces.resources.dll", + "lib/net7.0/fr/Microsoft.CodeAnalysis.Workspaces.resources.dll", + "lib/net7.0/it/Microsoft.CodeAnalysis.Workspaces.resources.dll", + "lib/net7.0/ja/Microsoft.CodeAnalysis.Workspaces.resources.dll", + "lib/net7.0/ko/Microsoft.CodeAnalysis.Workspaces.resources.dll", + "lib/net7.0/pl/Microsoft.CodeAnalysis.Workspaces.resources.dll", + "lib/net7.0/pt-BR/Microsoft.CodeAnalysis.Workspaces.resources.dll", + "lib/net7.0/ru/Microsoft.CodeAnalysis.Workspaces.resources.dll", + "lib/net7.0/tr/Microsoft.CodeAnalysis.Workspaces.resources.dll", + "lib/net7.0/zh-Hans/Microsoft.CodeAnalysis.Workspaces.resources.dll", + "lib/net7.0/zh-Hant/Microsoft.CodeAnalysis.Workspaces.resources.dll", + "lib/netstandard2.0/Microsoft.CodeAnalysis.Workspaces.dll", + "lib/netstandard2.0/Microsoft.CodeAnalysis.Workspaces.pdb", + "lib/netstandard2.0/Microsoft.CodeAnalysis.Workspaces.xml", + "lib/netstandard2.0/cs/Microsoft.CodeAnalysis.Workspaces.resources.dll", + "lib/netstandard2.0/de/Microsoft.CodeAnalysis.Workspaces.resources.dll", + "lib/netstandard2.0/es/Microsoft.CodeAnalysis.Workspaces.resources.dll", + "lib/netstandard2.0/fr/Microsoft.CodeAnalysis.Workspaces.resources.dll", + "lib/netstandard2.0/it/Microsoft.CodeAnalysis.Workspaces.resources.dll", + "lib/netstandard2.0/ja/Microsoft.CodeAnalysis.Workspaces.resources.dll", + "lib/netstandard2.0/ko/Microsoft.CodeAnalysis.Workspaces.resources.dll", + "lib/netstandard2.0/pl/Microsoft.CodeAnalysis.Workspaces.resources.dll", + "lib/netstandard2.0/pt-BR/Microsoft.CodeAnalysis.Workspaces.resources.dll", + "lib/netstandard2.0/ru/Microsoft.CodeAnalysis.Workspaces.resources.dll", + "lib/netstandard2.0/tr/Microsoft.CodeAnalysis.Workspaces.resources.dll", + "lib/netstandard2.0/zh-Hans/Microsoft.CodeAnalysis.Workspaces.resources.dll", + "lib/netstandard2.0/zh-Hant/Microsoft.CodeAnalysis.Workspaces.resources.dll", + "microsoft.codeanalysis.workspaces.common.4.8.0.nupkg.sha512", + "microsoft.codeanalysis.workspaces.common.nuspec" + ] + }, + "Microsoft.CodeAnalysis.Workspaces.MSBuild/4.8.0": { + "sha512": "IEYreI82QZKklp54yPHxZNG9EKSK6nHEkeuf+0Asie9llgS1gp0V1hw7ODG+QyoB7MuAnNQHmeV1Per/ECpv6A==", + "type": "package", + "path": "microsoft.codeanalysis.workspaces.msbuild/4.8.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "ThirdPartyNotices.rtf", + "lib/net472/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.exe", + "lib/net472/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.pdb", + "lib/net472/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.xml", + "lib/net472/Microsoft.CodeAnalysis.Workspaces.MSBuild.dll", + "lib/net472/Microsoft.CodeAnalysis.Workspaces.MSBuild.pdb", + "lib/net472/Microsoft.CodeAnalysis.Workspaces.MSBuild.xml", + "lib/net472/cs/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll", + "lib/net472/de/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll", + "lib/net472/es/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll", + "lib/net472/fr/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll", + "lib/net472/it/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll", + "lib/net472/ja/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll", + "lib/net472/ko/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll", + "lib/net472/pl/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll", + "lib/net472/pt-BR/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll", + "lib/net472/ru/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll", + "lib/net472/tr/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll", + "lib/net472/zh-Hans/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll", + "lib/net472/zh-Hant/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll", + "lib/net6.0/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.dll", + "lib/net6.0/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.pdb", + "lib/net6.0/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.runtimeconfig.json", + "lib/net6.0/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.xml", + "lib/net6.0/Microsoft.CodeAnalysis.Workspaces.MSBuild.dll", + "lib/net6.0/Microsoft.CodeAnalysis.Workspaces.MSBuild.pdb", + "lib/net6.0/Microsoft.CodeAnalysis.Workspaces.MSBuild.xml", + "lib/net6.0/cs/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll", + "lib/net6.0/de/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll", + "lib/net6.0/es/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll", + "lib/net6.0/fr/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll", + "lib/net6.0/it/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll", + "lib/net6.0/ja/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll", + "lib/net6.0/ko/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll", + "lib/net6.0/pl/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll", + "lib/net6.0/pt-BR/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll", + "lib/net6.0/ru/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll", + "lib/net6.0/tr/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll", + "lib/net6.0/zh-Hans/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll", + "lib/net6.0/zh-Hant/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll", + "lib/net7.0/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.dll", + "lib/net7.0/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.pdb", + "lib/net7.0/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.runtimeconfig.json", + "lib/net7.0/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.xml", + "lib/net7.0/Microsoft.CodeAnalysis.Workspaces.MSBuild.dll", + "lib/net7.0/Microsoft.CodeAnalysis.Workspaces.MSBuild.pdb", + "lib/net7.0/Microsoft.CodeAnalysis.Workspaces.MSBuild.xml", + "lib/net7.0/cs/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll", + "lib/net7.0/de/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll", + "lib/net7.0/es/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll", + "lib/net7.0/fr/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll", + "lib/net7.0/it/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll", + "lib/net7.0/ja/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll", + "lib/net7.0/ko/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll", + "lib/net7.0/pl/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll", + "lib/net7.0/pt-BR/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll", + "lib/net7.0/ru/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll", + "lib/net7.0/tr/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll", + "lib/net7.0/zh-Hans/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll", + "lib/net7.0/zh-Hant/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll", + "microsoft.codeanalysis.workspaces.msbuild.4.8.0.nupkg.sha512", + "microsoft.codeanalysis.workspaces.msbuild.nuspec" + ] + }, + "Microsoft.CSharp/4.5.0": { + "sha512": "kaj6Wb4qoMuH3HySFJhxwQfe8R/sJsNJnANrvv8WdFPMoNbKY5htfNscv+LHCu5ipz+49m2e+WQXpLXr9XYemQ==", + "type": "package", + "path": "microsoft.csharp/4.5.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/Microsoft.CSharp.dll", + "lib/netcoreapp2.0/_._", + "lib/netstandard1.3/Microsoft.CSharp.dll", + "lib/netstandard2.0/Microsoft.CSharp.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/uap10.0.16299/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "microsoft.csharp.4.5.0.nupkg.sha512", + "microsoft.csharp.nuspec", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/Microsoft.CSharp.dll", + "ref/netcore50/Microsoft.CSharp.xml", + "ref/netcore50/de/Microsoft.CSharp.xml", + "ref/netcore50/es/Microsoft.CSharp.xml", + "ref/netcore50/fr/Microsoft.CSharp.xml", + "ref/netcore50/it/Microsoft.CSharp.xml", + "ref/netcore50/ja/Microsoft.CSharp.xml", + "ref/netcore50/ko/Microsoft.CSharp.xml", + "ref/netcore50/ru/Microsoft.CSharp.xml", + "ref/netcore50/zh-hans/Microsoft.CSharp.xml", + "ref/netcore50/zh-hant/Microsoft.CSharp.xml", + "ref/netcoreapp2.0/_._", + "ref/netstandard1.0/Microsoft.CSharp.dll", + "ref/netstandard1.0/Microsoft.CSharp.xml", + "ref/netstandard1.0/de/Microsoft.CSharp.xml", + "ref/netstandard1.0/es/Microsoft.CSharp.xml", + "ref/netstandard1.0/fr/Microsoft.CSharp.xml", + "ref/netstandard1.0/it/Microsoft.CSharp.xml", + "ref/netstandard1.0/ja/Microsoft.CSharp.xml", + "ref/netstandard1.0/ko/Microsoft.CSharp.xml", + "ref/netstandard1.0/ru/Microsoft.CSharp.xml", + "ref/netstandard1.0/zh-hans/Microsoft.CSharp.xml", + "ref/netstandard1.0/zh-hant/Microsoft.CSharp.xml", + "ref/netstandard2.0/Microsoft.CSharp.dll", + "ref/netstandard2.0/Microsoft.CSharp.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/uap10.0.16299/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "Microsoft.Data.SqlClient/5.1.6": { + "sha512": "+pz7gIPh5ydsBcQvivt4R98PwJXer86fyQBBToIBLxZ5kuhW4N13Ijz87s9WpuPtF1vh4JesYCgpDPAOgkMhdg==", + "type": "package", + "path": "microsoft.data.sqlclient/5.1.6", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "dotnet.png", + "lib/net462/Microsoft.Data.SqlClient.dll", + "lib/net462/Microsoft.Data.SqlClient.pdb", + "lib/net462/Microsoft.Data.SqlClient.xml", + "lib/net462/de/Microsoft.Data.SqlClient.resources.dll", + "lib/net462/es/Microsoft.Data.SqlClient.resources.dll", + "lib/net462/fr/Microsoft.Data.SqlClient.resources.dll", + "lib/net462/it/Microsoft.Data.SqlClient.resources.dll", + "lib/net462/ja/Microsoft.Data.SqlClient.resources.dll", + "lib/net462/ko/Microsoft.Data.SqlClient.resources.dll", + "lib/net462/pt-BR/Microsoft.Data.SqlClient.resources.dll", + "lib/net462/ru/Microsoft.Data.SqlClient.resources.dll", + "lib/net462/zh-Hans/Microsoft.Data.SqlClient.resources.dll", + "lib/net462/zh-Hant/Microsoft.Data.SqlClient.resources.dll", + "lib/net6.0/Microsoft.Data.SqlClient.dll", + "lib/net6.0/Microsoft.Data.SqlClient.pdb", + "lib/net6.0/Microsoft.Data.SqlClient.xml", + "lib/netstandard2.0/Microsoft.Data.SqlClient.dll", + "lib/netstandard2.0/Microsoft.Data.SqlClient.pdb", + "lib/netstandard2.0/Microsoft.Data.SqlClient.xml", + "lib/netstandard2.1/Microsoft.Data.SqlClient.dll", + "lib/netstandard2.1/Microsoft.Data.SqlClient.pdb", + "lib/netstandard2.1/Microsoft.Data.SqlClient.xml", + "microsoft.data.sqlclient.5.1.6.nupkg.sha512", + "microsoft.data.sqlclient.nuspec", + "ref/net462/Microsoft.Data.SqlClient.dll", + "ref/net462/Microsoft.Data.SqlClient.pdb", + "ref/net462/Microsoft.Data.SqlClient.xml", + "ref/net6.0/Microsoft.Data.SqlClient.dll", + "ref/net6.0/Microsoft.Data.SqlClient.pdb", + "ref/net6.0/Microsoft.Data.SqlClient.xml", + "ref/netstandard2.0/Microsoft.Data.SqlClient.dll", + "ref/netstandard2.0/Microsoft.Data.SqlClient.pdb", + "ref/netstandard2.0/Microsoft.Data.SqlClient.xml", + "ref/netstandard2.1/Microsoft.Data.SqlClient.dll", + "ref/netstandard2.1/Microsoft.Data.SqlClient.pdb", + "ref/netstandard2.1/Microsoft.Data.SqlClient.xml", + "runtimes/unix/lib/net6.0/Microsoft.Data.SqlClient.dll", + "runtimes/unix/lib/net6.0/Microsoft.Data.SqlClient.pdb", + "runtimes/unix/lib/netstandard2.0/Microsoft.Data.SqlClient.dll", + "runtimes/unix/lib/netstandard2.0/Microsoft.Data.SqlClient.pdb", + "runtimes/unix/lib/netstandard2.1/Microsoft.Data.SqlClient.dll", + "runtimes/unix/lib/netstandard2.1/Microsoft.Data.SqlClient.pdb", + "runtimes/win/lib/net462/Microsoft.Data.SqlClient.dll", + "runtimes/win/lib/net462/Microsoft.Data.SqlClient.pdb", + "runtimes/win/lib/net6.0/Microsoft.Data.SqlClient.dll", + "runtimes/win/lib/net6.0/Microsoft.Data.SqlClient.pdb", + "runtimes/win/lib/netstandard2.0/Microsoft.Data.SqlClient.dll", + "runtimes/win/lib/netstandard2.0/Microsoft.Data.SqlClient.pdb", + "runtimes/win/lib/netstandard2.1/Microsoft.Data.SqlClient.dll", + "runtimes/win/lib/netstandard2.1/Microsoft.Data.SqlClient.pdb" + ] + }, + "Microsoft.Data.SqlClient.SNI.runtime/5.1.1": { + "sha512": "wNGM5ZTQCa2blc9ikXQouybGiyMd6IHPVJvAlBEPtr6JepZEOYeDxGyprYvFVeOxlCXs7avridZQ0nYkHzQWCQ==", + "type": "package", + "path": "microsoft.data.sqlclient.sni.runtime/5.1.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.txt", + "dotnet.png", + "microsoft.data.sqlclient.sni.runtime.5.1.1.nupkg.sha512", + "microsoft.data.sqlclient.sni.runtime.nuspec", + "runtimes/win-arm/native/Microsoft.Data.SqlClient.SNI.dll", + "runtimes/win-arm64/native/Microsoft.Data.SqlClient.SNI.dll", + "runtimes/win-x64/native/Microsoft.Data.SqlClient.SNI.dll", + "runtimes/win-x86/native/Microsoft.Data.SqlClient.SNI.dll" + ] + }, + "Microsoft.EntityFrameworkCore/9.0.0": { + "sha512": "wpG+nfnfDAw87R3ovAsUmjr3MZ4tYXf6bFqEPVAIKE6IfPml3DS//iX0DBnf8kWn5ZHSO5oi1m4d/Jf+1LifJQ==", + "type": "package", + "path": "microsoft.entityframeworkcore/9.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "PACKAGE.md", + "buildTransitive/net8.0/Microsoft.EntityFrameworkCore.props", + "lib/net8.0/Microsoft.EntityFrameworkCore.dll", + "lib/net8.0/Microsoft.EntityFrameworkCore.xml", + "microsoft.entityframeworkcore.9.0.0.nupkg.sha512", + "microsoft.entityframeworkcore.nuspec" + ] + }, + "Microsoft.EntityFrameworkCore.Abstractions/9.0.0": { + "sha512": "fnmifFL8KaA4ZNLCVgfjCWhZUFxkrDInx5hR4qG7Q8IEaSiy/6VOSRFyx55oH7MV4y7wM3J3EE90nSpcVBI44Q==", + "type": "package", + "path": "microsoft.entityframeworkcore.abstractions/9.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "PACKAGE.md", + "lib/net8.0/Microsoft.EntityFrameworkCore.Abstractions.dll", + "lib/net8.0/Microsoft.EntityFrameworkCore.Abstractions.xml", + "microsoft.entityframeworkcore.abstractions.9.0.0.nupkg.sha512", + "microsoft.entityframeworkcore.abstractions.nuspec" + ] + }, + "Microsoft.EntityFrameworkCore.Analyzers/9.0.0": { + "sha512": "Qje+DzXJOKiXF72SL0XxNlDtTkvWWvmwknuZtFahY5hIQpRKO59qnGuERIQ3qlzuq5x4bAJ8WMbgU5DLhBgeOQ==", + "type": "package", + "path": "microsoft.entityframeworkcore.analyzers/9.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "analyzers/dotnet/cs/Microsoft.EntityFrameworkCore.Analyzers.dll", + "docs/PACKAGE.md", + "microsoft.entityframeworkcore.analyzers.9.0.0.nupkg.sha512", + "microsoft.entityframeworkcore.analyzers.nuspec" + ] + }, + "Microsoft.EntityFrameworkCore.Design/9.0.0": { + "sha512": "Pqo8I+yHJ3VQrAoY0hiSncf+5P7gN/RkNilK5e+/K/yKh+yAWxdUAI6t0TG26a9VPlCa9FhyklzyFvRyj3YG9A==", + "type": "package", + "path": "microsoft.entityframeworkcore.design/9.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "PACKAGE.md", + "build/net8.0/Microsoft.EntityFrameworkCore.Design.props", + "lib/net8.0/Microsoft.EntityFrameworkCore.Design.dll", + "lib/net8.0/Microsoft.EntityFrameworkCore.Design.xml", + "microsoft.entityframeworkcore.design.9.0.0.nupkg.sha512", + "microsoft.entityframeworkcore.design.nuspec" + ] + }, + "Microsoft.EntityFrameworkCore.Relational/9.0.0": { + "sha512": "j+msw6fWgAE9M3Q/5B9Uhv7pdAdAQUvFPJAiBJmoy+OXvehVbfbCE8ftMAa51Uo2ZeiqVnHShhnv4Y4UJJmUzA==", + "type": "package", + "path": "microsoft.entityframeworkcore.relational/9.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "PACKAGE.md", + "lib/net8.0/Microsoft.EntityFrameworkCore.Relational.dll", + "lib/net8.0/Microsoft.EntityFrameworkCore.Relational.xml", + "microsoft.entityframeworkcore.relational.9.0.0.nupkg.sha512", + "microsoft.entityframeworkcore.relational.nuspec" + ] + }, + "Microsoft.EntityFrameworkCore.SqlServer/9.0.0": { + "sha512": "3Y7/3kgz6C5kRFeELLZ5VeIeBlxB31x/ywscbN4r1JqTXIy8WWGo0CqzuOxBy4UzaTzpifElAZvv4fyD3ZQK5w==", + "type": "package", + "path": "microsoft.entityframeworkcore.sqlserver/9.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "PACKAGE.md", + "lib/net8.0/Microsoft.EntityFrameworkCore.SqlServer.dll", + "lib/net8.0/Microsoft.EntityFrameworkCore.SqlServer.xml", + "microsoft.entityframeworkcore.sqlserver.9.0.0.nupkg.sha512", + "microsoft.entityframeworkcore.sqlserver.nuspec" + ] + }, + "Microsoft.Extensions.Caching.Abstractions/9.0.0": { + "sha512": "FPWZAa9c0H4dvOj351iR1jkUIs4u9ykL4Bm592yhjDyO5lCoWd+TMAHx2EMbarzUvCvgjWjJIoC6//Q9kH6YhA==", + "type": "package", + "path": "microsoft.extensions.caching.abstractions/9.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "PACKAGE.md", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/Microsoft.Extensions.Caching.Abstractions.targets", + "buildTransitive/net462/_._", + "buildTransitive/net8.0/_._", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Caching.Abstractions.targets", + "lib/net462/Microsoft.Extensions.Caching.Abstractions.dll", + "lib/net462/Microsoft.Extensions.Caching.Abstractions.xml", + "lib/net8.0/Microsoft.Extensions.Caching.Abstractions.dll", + "lib/net8.0/Microsoft.Extensions.Caching.Abstractions.xml", + "lib/net9.0/Microsoft.Extensions.Caching.Abstractions.dll", + "lib/net9.0/Microsoft.Extensions.Caching.Abstractions.xml", + "lib/netstandard2.0/Microsoft.Extensions.Caching.Abstractions.dll", + "lib/netstandard2.0/Microsoft.Extensions.Caching.Abstractions.xml", + "microsoft.extensions.caching.abstractions.9.0.0.nupkg.sha512", + "microsoft.extensions.caching.abstractions.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.Caching.Memory/9.0.0": { + "sha512": "zbnPX/JQ0pETRSUG9fNPBvpIq42Aufvs15gGYyNIMhCun9yhmWihz0WgsI7bSDPjxWTKBf8oX/zv6v2uZ3W9OQ==", + "type": "package", + "path": "microsoft.extensions.caching.memory/9.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "PACKAGE.md", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/Microsoft.Extensions.Caching.Memory.targets", + "buildTransitive/net462/_._", + "buildTransitive/net8.0/_._", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Caching.Memory.targets", + "lib/net462/Microsoft.Extensions.Caching.Memory.dll", + "lib/net462/Microsoft.Extensions.Caching.Memory.xml", + "lib/net8.0/Microsoft.Extensions.Caching.Memory.dll", + "lib/net8.0/Microsoft.Extensions.Caching.Memory.xml", + "lib/net9.0/Microsoft.Extensions.Caching.Memory.dll", + "lib/net9.0/Microsoft.Extensions.Caching.Memory.xml", + "lib/netstandard2.0/Microsoft.Extensions.Caching.Memory.dll", + "lib/netstandard2.0/Microsoft.Extensions.Caching.Memory.xml", + "microsoft.extensions.caching.memory.9.0.0.nupkg.sha512", + "microsoft.extensions.caching.memory.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.Configuration.Abstractions/9.0.0": { + "sha512": "lqvd7W3FGKUO1+ZoUEMaZ5XDJeWvjpy2/M/ptCGz3tXLD4HWVaSzjufsAsjemasBEg+2SxXVtYVvGt5r2nKDlg==", + "type": "package", + "path": "microsoft.extensions.configuration.abstractions/9.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "PACKAGE.md", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/Microsoft.Extensions.Configuration.Abstractions.targets", + "buildTransitive/net462/_._", + "buildTransitive/net8.0/_._", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Configuration.Abstractions.targets", + "lib/net462/Microsoft.Extensions.Configuration.Abstractions.dll", + "lib/net462/Microsoft.Extensions.Configuration.Abstractions.xml", + "lib/net8.0/Microsoft.Extensions.Configuration.Abstractions.dll", + "lib/net8.0/Microsoft.Extensions.Configuration.Abstractions.xml", + "lib/net9.0/Microsoft.Extensions.Configuration.Abstractions.dll", + "lib/net9.0/Microsoft.Extensions.Configuration.Abstractions.xml", + "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.dll", + "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.xml", + "microsoft.extensions.configuration.abstractions.9.0.0.nupkg.sha512", + "microsoft.extensions.configuration.abstractions.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.DependencyInjection/9.0.0": { + "sha512": "MCPrg7v3QgNMr0vX4vzRXvkNGgLg8vKWX0nKCWUxu2uPyMsaRgiRc1tHBnbTcfJMhMKj2slE/j2M9oGkd25DNw==", + "type": "package", + "path": "microsoft.extensions.dependencyinjection/9.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "PACKAGE.md", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/Microsoft.Extensions.DependencyInjection.targets", + "buildTransitive/net462/_._", + "buildTransitive/net8.0/_._", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.DependencyInjection.targets", + "lib/net462/Microsoft.Extensions.DependencyInjection.dll", + "lib/net462/Microsoft.Extensions.DependencyInjection.xml", + "lib/net8.0/Microsoft.Extensions.DependencyInjection.dll", + "lib/net8.0/Microsoft.Extensions.DependencyInjection.xml", + "lib/net9.0/Microsoft.Extensions.DependencyInjection.dll", + "lib/net9.0/Microsoft.Extensions.DependencyInjection.xml", + "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.dll", + "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.xml", + "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.dll", + "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.xml", + "microsoft.extensions.dependencyinjection.9.0.0.nupkg.sha512", + "microsoft.extensions.dependencyinjection.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.DependencyInjection.Abstractions/9.0.0": { + "sha512": "+6f2qv2a3dLwd5w6JanPIPs47CxRbnk+ZocMJUhv9NxP88VlOcJYZs9jY+MYSjxvady08bUZn6qgiNh7DadGgg==", + "type": "package", + "path": "microsoft.extensions.dependencyinjection.abstractions/9.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "PACKAGE.md", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/Microsoft.Extensions.DependencyInjection.Abstractions.targets", + "buildTransitive/net462/_._", + "buildTransitive/net8.0/_._", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.DependencyInjection.Abstractions.targets", + "lib/net462/Microsoft.Extensions.DependencyInjection.Abstractions.dll", + "lib/net462/Microsoft.Extensions.DependencyInjection.Abstractions.xml", + "lib/net8.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll", + "lib/net8.0/Microsoft.Extensions.DependencyInjection.Abstractions.xml", + "lib/net9.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll", + "lib/net9.0/Microsoft.Extensions.DependencyInjection.Abstractions.xml", + "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll", + "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.xml", + "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.Abstractions.dll", + "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.Abstractions.xml", + "microsoft.extensions.dependencyinjection.abstractions.9.0.0.nupkg.sha512", + "microsoft.extensions.dependencyinjection.abstractions.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.DependencyModel/9.0.0": { + "sha512": "saxr2XzwgDU77LaQfYFXmddEDRUKHF4DaGMZkNB3qjdVSZlax3//dGJagJkKrGMIPNZs2jVFXITyCCR6UHJNdA==", + "type": "package", + "path": "microsoft.extensions.dependencymodel/9.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "PACKAGE.md", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/Microsoft.Extensions.DependencyModel.targets", + "buildTransitive/net462/_._", + "buildTransitive/net8.0/_._", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.DependencyModel.targets", + "lib/net462/Microsoft.Extensions.DependencyModel.dll", + "lib/net462/Microsoft.Extensions.DependencyModel.xml", + "lib/net8.0/Microsoft.Extensions.DependencyModel.dll", + "lib/net8.0/Microsoft.Extensions.DependencyModel.xml", + "lib/net9.0/Microsoft.Extensions.DependencyModel.dll", + "lib/net9.0/Microsoft.Extensions.DependencyModel.xml", + "lib/netstandard2.0/Microsoft.Extensions.DependencyModel.dll", + "lib/netstandard2.0/Microsoft.Extensions.DependencyModel.xml", + "microsoft.extensions.dependencymodel.9.0.0.nupkg.sha512", + "microsoft.extensions.dependencymodel.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.Logging/9.0.0": { + "sha512": "crjWyORoug0kK7RSNJBTeSE6VX8IQgLf3nUpTB9m62bPXp/tzbnOsnbe8TXEG0AASNaKZddnpHKw7fET8E++Pg==", + "type": "package", + "path": "microsoft.extensions.logging/9.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "PACKAGE.md", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/Microsoft.Extensions.Logging.targets", + "buildTransitive/net462/_._", + "buildTransitive/net8.0/_._", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Logging.targets", + "lib/net462/Microsoft.Extensions.Logging.dll", + "lib/net462/Microsoft.Extensions.Logging.xml", + "lib/net8.0/Microsoft.Extensions.Logging.dll", + "lib/net8.0/Microsoft.Extensions.Logging.xml", + "lib/net9.0/Microsoft.Extensions.Logging.dll", + "lib/net9.0/Microsoft.Extensions.Logging.xml", + "lib/netstandard2.0/Microsoft.Extensions.Logging.dll", + "lib/netstandard2.0/Microsoft.Extensions.Logging.xml", + "lib/netstandard2.1/Microsoft.Extensions.Logging.dll", + "lib/netstandard2.1/Microsoft.Extensions.Logging.xml", + "microsoft.extensions.logging.9.0.0.nupkg.sha512", + "microsoft.extensions.logging.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.Logging.Abstractions/9.0.0": { + "sha512": "g0UfujELzlLbHoVG8kPKVBaW470Ewi+jnptGS9KUi6jcb+k2StujtK3m26DFSGGwQ/+bVgZfsWqNzlP6YOejvw==", + "type": "package", + "path": "microsoft.extensions.logging.abstractions/9.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "PACKAGE.md", + "THIRD-PARTY-NOTICES.TXT", + "analyzers/dotnet/roslyn3.11/cs/Microsoft.Extensions.Logging.Generators.dll", + "analyzers/dotnet/roslyn3.11/cs/cs/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/de/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/es/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/fr/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/it/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/ja/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/ko/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/pl/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/pt-BR/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/ru/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/tr/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/zh-Hans/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/zh-Hant/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/Microsoft.Extensions.Logging.Generators.dll", + "analyzers/dotnet/roslyn4.0/cs/cs/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/de/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/es/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/fr/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/it/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/ja/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/ko/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/pl/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/pt-BR/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/ru/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/tr/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/zh-Hans/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/zh-Hant/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/Microsoft.Extensions.Logging.Generators.dll", + "analyzers/dotnet/roslyn4.4/cs/cs/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/de/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/es/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/fr/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/it/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/ja/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/ko/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/pl/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/pt-BR/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/ru/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/tr/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/zh-Hans/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/zh-Hant/Microsoft.Extensions.Logging.Generators.resources.dll", + "buildTransitive/net461/Microsoft.Extensions.Logging.Abstractions.targets", + "buildTransitive/net462/Microsoft.Extensions.Logging.Abstractions.targets", + "buildTransitive/net8.0/Microsoft.Extensions.Logging.Abstractions.targets", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Logging.Abstractions.targets", + "buildTransitive/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.targets", + "lib/net462/Microsoft.Extensions.Logging.Abstractions.dll", + "lib/net462/Microsoft.Extensions.Logging.Abstractions.xml", + "lib/net8.0/Microsoft.Extensions.Logging.Abstractions.dll", + "lib/net8.0/Microsoft.Extensions.Logging.Abstractions.xml", + "lib/net9.0/Microsoft.Extensions.Logging.Abstractions.dll", + "lib/net9.0/Microsoft.Extensions.Logging.Abstractions.xml", + "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.dll", + "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.xml", + "microsoft.extensions.logging.abstractions.9.0.0.nupkg.sha512", + "microsoft.extensions.logging.abstractions.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.Options/9.0.0": { + "sha512": "y2146b3jrPI3Q0lokKXdKLpmXqakYbDIPDV6r3M8SqvSf45WwOTzkyfDpxnZXJsJQEpAsAqjUq5Pu8RCJMjubg==", + "type": "package", + "path": "microsoft.extensions.options/9.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "PACKAGE.md", + "THIRD-PARTY-NOTICES.TXT", + "analyzers/dotnet/roslyn4.4/cs/Microsoft.Extensions.Options.SourceGeneration.dll", + "analyzers/dotnet/roslyn4.4/cs/cs/Microsoft.Extensions.Options.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/de/Microsoft.Extensions.Options.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/es/Microsoft.Extensions.Options.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/fr/Microsoft.Extensions.Options.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/it/Microsoft.Extensions.Options.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/ja/Microsoft.Extensions.Options.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/ko/Microsoft.Extensions.Options.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/pl/Microsoft.Extensions.Options.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/pt-BR/Microsoft.Extensions.Options.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/ru/Microsoft.Extensions.Options.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/tr/Microsoft.Extensions.Options.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/zh-Hans/Microsoft.Extensions.Options.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/zh-Hant/Microsoft.Extensions.Options.SourceGeneration.resources.dll", + "buildTransitive/net461/Microsoft.Extensions.Options.targets", + "buildTransitive/net462/Microsoft.Extensions.Options.targets", + "buildTransitive/net8.0/Microsoft.Extensions.Options.targets", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Options.targets", + "buildTransitive/netstandard2.0/Microsoft.Extensions.Options.targets", + "lib/net462/Microsoft.Extensions.Options.dll", + "lib/net462/Microsoft.Extensions.Options.xml", + "lib/net8.0/Microsoft.Extensions.Options.dll", + "lib/net8.0/Microsoft.Extensions.Options.xml", + "lib/net9.0/Microsoft.Extensions.Options.dll", + "lib/net9.0/Microsoft.Extensions.Options.xml", + "lib/netstandard2.0/Microsoft.Extensions.Options.dll", + "lib/netstandard2.0/Microsoft.Extensions.Options.xml", + "lib/netstandard2.1/Microsoft.Extensions.Options.dll", + "lib/netstandard2.1/Microsoft.Extensions.Options.xml", + "microsoft.extensions.options.9.0.0.nupkg.sha512", + "microsoft.extensions.options.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.Primitives/9.0.0": { + "sha512": "N3qEBzmLMYiASUlKxxFIISP4AiwuPTHF5uCh+2CWSwwzAJiIYx0kBJsS30cp1nvhSySFAVi30jecD307jV+8Kg==", + "type": "package", + "path": "microsoft.extensions.primitives/9.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "PACKAGE.md", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/Microsoft.Extensions.Primitives.targets", + "buildTransitive/net462/_._", + "buildTransitive/net8.0/_._", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Primitives.targets", + "lib/net462/Microsoft.Extensions.Primitives.dll", + "lib/net462/Microsoft.Extensions.Primitives.xml", + "lib/net8.0/Microsoft.Extensions.Primitives.dll", + "lib/net8.0/Microsoft.Extensions.Primitives.xml", + "lib/net9.0/Microsoft.Extensions.Primitives.dll", + "lib/net9.0/Microsoft.Extensions.Primitives.xml", + "lib/netstandard2.0/Microsoft.Extensions.Primitives.dll", + "lib/netstandard2.0/Microsoft.Extensions.Primitives.xml", + "microsoft.extensions.primitives.9.0.0.nupkg.sha512", + "microsoft.extensions.primitives.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Identity.Client/4.61.3": { + "sha512": "naJo/Qm35Caaoxp5utcw+R8eU8ZtLz2ALh8S+gkekOYQ1oazfCQMWVT4NJ/FnHzdIJlm8dMz0oMpMGCabx5odA==", + "type": "package", + "path": "microsoft.identity.client/4.61.3", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "README.md", + "lib/net462/Microsoft.Identity.Client.dll", + "lib/net462/Microsoft.Identity.Client.xml", + "lib/net6.0-android31.0/Microsoft.Identity.Client.dll", + "lib/net6.0-android31.0/Microsoft.Identity.Client.xml", + "lib/net6.0-ios15.4/Microsoft.Identity.Client.dll", + "lib/net6.0-ios15.4/Microsoft.Identity.Client.xml", + "lib/net6.0/Microsoft.Identity.Client.dll", + "lib/net6.0/Microsoft.Identity.Client.xml", + "lib/netstandard2.0/Microsoft.Identity.Client.dll", + "lib/netstandard2.0/Microsoft.Identity.Client.xml", + "microsoft.identity.client.4.61.3.nupkg.sha512", + "microsoft.identity.client.nuspec" + ] + }, + "Microsoft.Identity.Client.Extensions.Msal/4.61.3": { + "sha512": "PWnJcznrSGr25MN8ajlc2XIDW4zCFu0U6FkpaNLEWLgd1NgFCp5uDY3mqLDgM8zCN8hqj8yo5wHYfLB2HjcdGw==", + "type": "package", + "path": "microsoft.identity.client.extensions.msal/4.61.3", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net6.0/Microsoft.Identity.Client.Extensions.Msal.dll", + "lib/net6.0/Microsoft.Identity.Client.Extensions.Msal.xml", + "lib/netstandard2.0/Microsoft.Identity.Client.Extensions.Msal.dll", + "lib/netstandard2.0/Microsoft.Identity.Client.Extensions.Msal.xml", + "microsoft.identity.client.extensions.msal.4.61.3.nupkg.sha512", + "microsoft.identity.client.extensions.msal.nuspec" + ] + }, + "Microsoft.IdentityModel.Abstractions/6.35.0": { + "sha512": "xuR8E4Rd96M41CnUSCiOJ2DBh+z+zQSmyrYHdYhD6K4fXBcQGVnRCFQ0efROUYpP+p0zC1BLKr0JRpVuujTZSg==", + "type": "package", + "path": "microsoft.identitymodel.abstractions/6.35.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net45/Microsoft.IdentityModel.Abstractions.dll", + "lib/net45/Microsoft.IdentityModel.Abstractions.xml", + "lib/net461/Microsoft.IdentityModel.Abstractions.dll", + "lib/net461/Microsoft.IdentityModel.Abstractions.xml", + "lib/net462/Microsoft.IdentityModel.Abstractions.dll", + "lib/net462/Microsoft.IdentityModel.Abstractions.xml", + "lib/net472/Microsoft.IdentityModel.Abstractions.dll", + "lib/net472/Microsoft.IdentityModel.Abstractions.xml", + "lib/net6.0/Microsoft.IdentityModel.Abstractions.dll", + "lib/net6.0/Microsoft.IdentityModel.Abstractions.xml", + "lib/netstandard2.0/Microsoft.IdentityModel.Abstractions.dll", + "lib/netstandard2.0/Microsoft.IdentityModel.Abstractions.xml", + "microsoft.identitymodel.abstractions.6.35.0.nupkg.sha512", + "microsoft.identitymodel.abstractions.nuspec" + ] + }, + "Microsoft.IdentityModel.JsonWebTokens/6.35.0": { + "sha512": "9wxai3hKgZUb4/NjdRKfQd0QJvtXKDlvmGMYACbEC8DFaicMFCFhQFZq9ZET1kJLwZahf2lfY5Gtcpsx8zYzbg==", + "type": "package", + "path": "microsoft.identitymodel.jsonwebtokens/6.35.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net45/Microsoft.IdentityModel.JsonWebTokens.dll", + "lib/net45/Microsoft.IdentityModel.JsonWebTokens.xml", + "lib/net461/Microsoft.IdentityModel.JsonWebTokens.dll", + "lib/net461/Microsoft.IdentityModel.JsonWebTokens.xml", + "lib/net462/Microsoft.IdentityModel.JsonWebTokens.dll", + "lib/net462/Microsoft.IdentityModel.JsonWebTokens.xml", + "lib/net472/Microsoft.IdentityModel.JsonWebTokens.dll", + "lib/net472/Microsoft.IdentityModel.JsonWebTokens.xml", + "lib/net6.0/Microsoft.IdentityModel.JsonWebTokens.dll", + "lib/net6.0/Microsoft.IdentityModel.JsonWebTokens.xml", + "lib/netstandard2.0/Microsoft.IdentityModel.JsonWebTokens.dll", + "lib/netstandard2.0/Microsoft.IdentityModel.JsonWebTokens.xml", + "microsoft.identitymodel.jsonwebtokens.6.35.0.nupkg.sha512", + "microsoft.identitymodel.jsonwebtokens.nuspec" + ] + }, + "Microsoft.IdentityModel.Logging/6.35.0": { + "sha512": "jePrSfGAmqT81JDCNSY+fxVWoGuJKt9e6eJ+vT7+quVS55nWl//jGjUQn4eFtVKt4rt5dXaleZdHRB9J9AJZ7Q==", + "type": "package", + "path": "microsoft.identitymodel.logging/6.35.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net45/Microsoft.IdentityModel.Logging.dll", + "lib/net45/Microsoft.IdentityModel.Logging.xml", + "lib/net461/Microsoft.IdentityModel.Logging.dll", + "lib/net461/Microsoft.IdentityModel.Logging.xml", + "lib/net462/Microsoft.IdentityModel.Logging.dll", + "lib/net462/Microsoft.IdentityModel.Logging.xml", + "lib/net472/Microsoft.IdentityModel.Logging.dll", + "lib/net472/Microsoft.IdentityModel.Logging.xml", + "lib/net6.0/Microsoft.IdentityModel.Logging.dll", + "lib/net6.0/Microsoft.IdentityModel.Logging.xml", + "lib/netstandard2.0/Microsoft.IdentityModel.Logging.dll", + "lib/netstandard2.0/Microsoft.IdentityModel.Logging.xml", + "microsoft.identitymodel.logging.6.35.0.nupkg.sha512", + "microsoft.identitymodel.logging.nuspec" + ] + }, + "Microsoft.IdentityModel.Protocols/6.35.0": { + "sha512": "BPQhlDzdFvv1PzaUxNSk+VEPwezlDEVADIKmyxubw7IiELK18uJ06RQ9QKKkds30XI+gDu9n8j24XQ8w7fjWcg==", + "type": "package", + "path": "microsoft.identitymodel.protocols/6.35.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net45/Microsoft.IdentityModel.Protocols.dll", + "lib/net45/Microsoft.IdentityModel.Protocols.xml", + "lib/net461/Microsoft.IdentityModel.Protocols.dll", + "lib/net461/Microsoft.IdentityModel.Protocols.xml", + "lib/net462/Microsoft.IdentityModel.Protocols.dll", + "lib/net462/Microsoft.IdentityModel.Protocols.xml", + "lib/net472/Microsoft.IdentityModel.Protocols.dll", + "lib/net472/Microsoft.IdentityModel.Protocols.xml", + "lib/net6.0/Microsoft.IdentityModel.Protocols.dll", + "lib/net6.0/Microsoft.IdentityModel.Protocols.xml", + "lib/netstandard2.0/Microsoft.IdentityModel.Protocols.dll", + "lib/netstandard2.0/Microsoft.IdentityModel.Protocols.xml", + "microsoft.identitymodel.protocols.6.35.0.nupkg.sha512", + "microsoft.identitymodel.protocols.nuspec" + ] + }, + "Microsoft.IdentityModel.Protocols.OpenIdConnect/6.35.0": { + "sha512": "LMtVqnECCCdSmyFoCOxIE5tXQqkOLrvGrL7OxHg41DIm1bpWtaCdGyVcTAfOQpJXvzND9zUKIN/lhngPkYR8vg==", + "type": "package", + "path": "microsoft.identitymodel.protocols.openidconnect/6.35.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net45/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll", + "lib/net45/Microsoft.IdentityModel.Protocols.OpenIdConnect.xml", + "lib/net461/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll", + "lib/net461/Microsoft.IdentityModel.Protocols.OpenIdConnect.xml", + "lib/net462/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll", + "lib/net462/Microsoft.IdentityModel.Protocols.OpenIdConnect.xml", + "lib/net472/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll", + "lib/net472/Microsoft.IdentityModel.Protocols.OpenIdConnect.xml", + "lib/net6.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll", + "lib/net6.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.xml", + "lib/netstandard2.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll", + "lib/netstandard2.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.xml", + "microsoft.identitymodel.protocols.openidconnect.6.35.0.nupkg.sha512", + "microsoft.identitymodel.protocols.openidconnect.nuspec" + ] + }, + "Microsoft.IdentityModel.Tokens/6.35.0": { + "sha512": "RN7lvp7s3Boucg1NaNAbqDbxtlLj5Qeb+4uSS1TeK5FSBVM40P4DKaTKChT43sHyKfh7V0zkrMph6DdHvyA4bg==", + "type": "package", + "path": "microsoft.identitymodel.tokens/6.35.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net45/Microsoft.IdentityModel.Tokens.dll", + "lib/net45/Microsoft.IdentityModel.Tokens.xml", + "lib/net461/Microsoft.IdentityModel.Tokens.dll", + "lib/net461/Microsoft.IdentityModel.Tokens.xml", + "lib/net462/Microsoft.IdentityModel.Tokens.dll", + "lib/net462/Microsoft.IdentityModel.Tokens.xml", + "lib/net472/Microsoft.IdentityModel.Tokens.dll", + "lib/net472/Microsoft.IdentityModel.Tokens.xml", + "lib/net6.0/Microsoft.IdentityModel.Tokens.dll", + "lib/net6.0/Microsoft.IdentityModel.Tokens.xml", + "lib/netstandard2.0/Microsoft.IdentityModel.Tokens.dll", + "lib/netstandard2.0/Microsoft.IdentityModel.Tokens.xml", + "microsoft.identitymodel.tokens.6.35.0.nupkg.sha512", + "microsoft.identitymodel.tokens.nuspec" + ] + }, + "Microsoft.NETCore.Platforms/1.1.0": { + "sha512": "kz0PEW2lhqygehI/d6XsPCQzD7ff7gUJaVGPVETX611eadGsA3A877GdSlU0LRVMCTH/+P3o2iDTak+S08V2+A==", + "type": "package", + "path": "microsoft.netcore.platforms/1.1.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/netstandard1.0/_._", + "microsoft.netcore.platforms.1.1.0.nupkg.sha512", + "microsoft.netcore.platforms.nuspec", + "runtime.json" + ] + }, + "Microsoft.NETCore.Targets/1.1.0": { + "sha512": "aOZA3BWfz9RXjpzt0sRJJMjAscAUm3Hoa4UWAfceV9UTYxgwZ1lZt5nO2myFf+/jetYQo4uTP7zS8sJY67BBxg==", + "type": "package", + "path": "microsoft.netcore.targets/1.1.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/netstandard1.0/_._", + "microsoft.netcore.targets.1.1.0.nupkg.sha512", + "microsoft.netcore.targets.nuspec", + "runtime.json" + ] + }, + "Microsoft.SqlServer.Server/1.0.0": { + "sha512": "N4KeF3cpcm1PUHym1RmakkzfkEv3GRMyofVv40uXsQhCQeglr2OHNcUk2WOG51AKpGO8ynGpo9M/kFXSzghwug==", + "type": "package", + "path": "microsoft.sqlserver.server/1.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "dotnet.png", + "lib/net46/Microsoft.SqlServer.Server.dll", + "lib/net46/Microsoft.SqlServer.Server.pdb", + "lib/net46/Microsoft.SqlServer.Server.xml", + "lib/netstandard2.0/Microsoft.SqlServer.Server.dll", + "lib/netstandard2.0/Microsoft.SqlServer.Server.pdb", + "lib/netstandard2.0/Microsoft.SqlServer.Server.xml", + "microsoft.sqlserver.server.1.0.0.nupkg.sha512", + "microsoft.sqlserver.server.nuspec" + ] + }, + "Microsoft.Win32.SystemEvents/6.0.0": { + "sha512": "hqTM5628jSsQiv+HGpiq3WKBl2c8v1KZfby2J6Pr7pEPlK9waPdgEO6b8A/+/xn/yZ9ulv8HuqK71ONy2tg67A==", + "type": "package", + "path": "microsoft.win32.systemevents/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/netcoreapp2.0/Microsoft.Win32.SystemEvents.targets", + "buildTransitive/netcoreapp3.1/_._", + "lib/net461/Microsoft.Win32.SystemEvents.dll", + "lib/net461/Microsoft.Win32.SystemEvents.xml", + "lib/net6.0/Microsoft.Win32.SystemEvents.dll", + "lib/net6.0/Microsoft.Win32.SystemEvents.xml", + "lib/netcoreapp3.1/Microsoft.Win32.SystemEvents.dll", + "lib/netcoreapp3.1/Microsoft.Win32.SystemEvents.xml", + "lib/netstandard2.0/Microsoft.Win32.SystemEvents.dll", + "lib/netstandard2.0/Microsoft.Win32.SystemEvents.xml", + "microsoft.win32.systemevents.6.0.0.nupkg.sha512", + "microsoft.win32.systemevents.nuspec", + "runtimes/win/lib/net6.0/Microsoft.Win32.SystemEvents.dll", + "runtimes/win/lib/net6.0/Microsoft.Win32.SystemEvents.xml", + "runtimes/win/lib/netcoreapp3.1/Microsoft.Win32.SystemEvents.dll", + "runtimes/win/lib/netcoreapp3.1/Microsoft.Win32.SystemEvents.xml", + "useSharedDesignerContext.txt" + ] + }, + "Mono.TextTemplating/3.0.0": { + "sha512": "YqueG52R/Xej4VVbKuRIodjiAhV0HR/XVbLbNrJhCZnzjnSjgMJ/dCdV0akQQxavX6hp/LC6rqLGLcXeQYU7XA==", + "type": "package", + "path": "mono.texttemplating/3.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.txt/LICENSE", + "buildTransitive/Mono.TextTemplating.targets", + "lib/net472/Mono.TextTemplating.dll", + "lib/net6.0/Mono.TextTemplating.dll", + "lib/netstandard2.0/Mono.TextTemplating.dll", + "mono.texttemplating.3.0.0.nupkg.sha512", + "mono.texttemplating.nuspec", + "readme.md" + ] + }, + "System.ClientModel/1.0.0": { + "sha512": "I3CVkvxeqFYjIVEP59DnjbeoGNfo/+SZrCLpRz2v/g0gpCHaEMPtWSY0s9k/7jR1rAsLNg2z2u1JRB76tPjnIw==", + "type": "package", + "path": "system.clientmodel/1.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "CHANGELOG.md", + "DotNetPackageIcon.png", + "README.md", + "lib/net6.0/System.ClientModel.dll", + "lib/net6.0/System.ClientModel.xml", + "lib/netstandard2.0/System.ClientModel.dll", + "lib/netstandard2.0/System.ClientModel.xml", + "system.clientmodel.1.0.0.nupkg.sha512", + "system.clientmodel.nuspec" + ] + }, + "System.CodeDom/6.0.0": { + "sha512": "CPc6tWO1LAer3IzfZufDBRL+UZQcj5uS207NHALQzP84Vp/z6wF0Aa0YZImOQY8iStY0A2zI/e3ihKNPfUm8XA==", + "type": "package", + "path": "system.codedom/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/netcoreapp2.0/System.CodeDom.targets", + "buildTransitive/netcoreapp3.1/_._", + "lib/net461/System.CodeDom.dll", + "lib/net461/System.CodeDom.xml", + "lib/net6.0/System.CodeDom.dll", + "lib/net6.0/System.CodeDom.xml", + "lib/netstandard2.0/System.CodeDom.dll", + "lib/netstandard2.0/System.CodeDom.xml", + "system.codedom.6.0.0.nupkg.sha512", + "system.codedom.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "System.Collections.Immutable/7.0.0": { + "sha512": "dQPcs0U1IKnBdRDBkrCTi1FoajSTBzLcVTpjO4MBCMC7f4pDOIPzgBoX8JjG7X6uZRJ8EBxsi8+DR1JuwjnzOQ==", + "type": "package", + "path": "system.collections.immutable/7.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "README.md", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/System.Collections.Immutable.targets", + "buildTransitive/net462/_._", + "buildTransitive/net6.0/_._", + "buildTransitive/netcoreapp2.0/System.Collections.Immutable.targets", + "lib/net462/System.Collections.Immutable.dll", + "lib/net462/System.Collections.Immutable.xml", + "lib/net6.0/System.Collections.Immutable.dll", + "lib/net6.0/System.Collections.Immutable.xml", + "lib/net7.0/System.Collections.Immutable.dll", + "lib/net7.0/System.Collections.Immutable.xml", + "lib/netstandard2.0/System.Collections.Immutable.dll", + "lib/netstandard2.0/System.Collections.Immutable.xml", + "system.collections.immutable.7.0.0.nupkg.sha512", + "system.collections.immutable.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "System.Composition/7.0.0": { + "sha512": "tRwgcAkDd85O8Aq6zHDANzQaq380cek9lbMg5Qma46u5BZXq/G+XvIYmu+UI+BIIZ9zssXLYrkTykEqxxvhcmg==", + "type": "package", + "path": "system.composition/7.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/System.Composition.targets", + "buildTransitive/net462/_._", + "buildTransitive/net6.0/_._", + "buildTransitive/netcoreapp2.0/System.Composition.targets", + "lib/net461/_._", + "lib/netcoreapp2.0/_._", + "lib/netstandard2.0/_._", + "system.composition.7.0.0.nupkg.sha512", + "system.composition.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "System.Composition.AttributedModel/7.0.0": { + "sha512": "2QzClqjElKxgI1jK1Jztnq44/8DmSuTSGGahXqQ4TdEV0h9s2KikQZIgcEqVzR7OuWDFPGLHIprBJGQEPr8fAQ==", + "type": "package", + "path": "system.composition.attributedmodel/7.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/System.Composition.AttributedModel.targets", + "buildTransitive/net462/_._", + "buildTransitive/net6.0/_._", + "buildTransitive/netcoreapp2.0/System.Composition.AttributedModel.targets", + "lib/net462/System.Composition.AttributedModel.dll", + "lib/net462/System.Composition.AttributedModel.xml", + "lib/net6.0/System.Composition.AttributedModel.dll", + "lib/net6.0/System.Composition.AttributedModel.xml", + "lib/net7.0/System.Composition.AttributedModel.dll", + "lib/net7.0/System.Composition.AttributedModel.xml", + "lib/netstandard2.0/System.Composition.AttributedModel.dll", + "lib/netstandard2.0/System.Composition.AttributedModel.xml", + "system.composition.attributedmodel.7.0.0.nupkg.sha512", + "system.composition.attributedmodel.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "System.Composition.Convention/7.0.0": { + "sha512": "IMhTlpCs4HmlD8B+J8/kWfwX7vrBBOs6xyjSTzBlYSs7W4OET4tlkR/Sg9NG8jkdJH9Mymq0qGdYS1VPqRTBnQ==", + "type": "package", + "path": "system.composition.convention/7.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/System.Composition.Convention.targets", + "buildTransitive/net462/_._", + "buildTransitive/net6.0/_._", + "buildTransitive/netcoreapp2.0/System.Composition.Convention.targets", + "lib/net462/System.Composition.Convention.dll", + "lib/net462/System.Composition.Convention.xml", + "lib/net6.0/System.Composition.Convention.dll", + "lib/net6.0/System.Composition.Convention.xml", + "lib/net7.0/System.Composition.Convention.dll", + "lib/net7.0/System.Composition.Convention.xml", + "lib/netstandard2.0/System.Composition.Convention.dll", + "lib/netstandard2.0/System.Composition.Convention.xml", + "system.composition.convention.7.0.0.nupkg.sha512", + "system.composition.convention.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "System.Composition.Hosting/7.0.0": { + "sha512": "eB6gwN9S+54jCTBJ5bpwMOVerKeUfGGTYCzz3QgDr1P55Gg/Wb27ShfPIhLMjmZ3MoAKu8uUSv6fcCdYJTN7Bg==", + "type": "package", + "path": "system.composition.hosting/7.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/System.Composition.Hosting.targets", + "buildTransitive/net462/_._", + "buildTransitive/net6.0/_._", + "buildTransitive/netcoreapp2.0/System.Composition.Hosting.targets", + "lib/net462/System.Composition.Hosting.dll", + "lib/net462/System.Composition.Hosting.xml", + "lib/net6.0/System.Composition.Hosting.dll", + "lib/net6.0/System.Composition.Hosting.xml", + "lib/net7.0/System.Composition.Hosting.dll", + "lib/net7.0/System.Composition.Hosting.xml", + "lib/netstandard2.0/System.Composition.Hosting.dll", + "lib/netstandard2.0/System.Composition.Hosting.xml", + "system.composition.hosting.7.0.0.nupkg.sha512", + "system.composition.hosting.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "System.Composition.Runtime/7.0.0": { + "sha512": "aZJ1Zr5Txe925rbo4742XifEyW0MIni1eiUebmcrP3HwLXZ3IbXUj4MFMUH/RmnJOAQiS401leg/2Sz1MkApDw==", + "type": "package", + "path": "system.composition.runtime/7.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/System.Composition.Runtime.targets", + "buildTransitive/net462/_._", + "buildTransitive/net6.0/_._", + "buildTransitive/netcoreapp2.0/System.Composition.Runtime.targets", + "lib/net462/System.Composition.Runtime.dll", + "lib/net462/System.Composition.Runtime.xml", + "lib/net6.0/System.Composition.Runtime.dll", + "lib/net6.0/System.Composition.Runtime.xml", + "lib/net7.0/System.Composition.Runtime.dll", + "lib/net7.0/System.Composition.Runtime.xml", + "lib/netstandard2.0/System.Composition.Runtime.dll", + "lib/netstandard2.0/System.Composition.Runtime.xml", + "system.composition.runtime.7.0.0.nupkg.sha512", + "system.composition.runtime.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "System.Composition.TypedParts/7.0.0": { + "sha512": "ZK0KNPfbtxVceTwh+oHNGUOYV2WNOHReX2AXipuvkURC7s/jPwoWfsu3SnDBDgofqbiWr96geofdQ2erm/KTHg==", + "type": "package", + "path": "system.composition.typedparts/7.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/System.Composition.TypedParts.targets", + "buildTransitive/net462/_._", + "buildTransitive/net6.0/_._", + "buildTransitive/netcoreapp2.0/System.Composition.TypedParts.targets", + "lib/net462/System.Composition.TypedParts.dll", + "lib/net462/System.Composition.TypedParts.xml", + "lib/net6.0/System.Composition.TypedParts.dll", + "lib/net6.0/System.Composition.TypedParts.xml", + "lib/net7.0/System.Composition.TypedParts.dll", + "lib/net7.0/System.Composition.TypedParts.xml", + "lib/netstandard2.0/System.Composition.TypedParts.dll", + "lib/netstandard2.0/System.Composition.TypedParts.xml", + "system.composition.typedparts.7.0.0.nupkg.sha512", + "system.composition.typedparts.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "System.Configuration.ConfigurationManager/6.0.1": { + "sha512": "jXw9MlUu/kRfEU0WyTptAVueupqIeE3/rl0EZDMlf8pcvJnitQ8HeVEp69rZdaStXwTV72boi/Bhw8lOeO+U2w==", + "type": "package", + "path": "system.configuration.configurationmanager/6.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/netcoreapp2.0/System.Configuration.ConfigurationManager.targets", + "buildTransitive/netcoreapp3.1/_._", + "lib/net461/System.Configuration.ConfigurationManager.dll", + "lib/net461/System.Configuration.ConfigurationManager.xml", + "lib/net6.0/System.Configuration.ConfigurationManager.dll", + "lib/net6.0/System.Configuration.ConfigurationManager.xml", + "lib/netstandard2.0/System.Configuration.ConfigurationManager.dll", + "lib/netstandard2.0/System.Configuration.ConfigurationManager.xml", + "runtimes/win/lib/net461/System.Configuration.ConfigurationManager.dll", + "runtimes/win/lib/net461/System.Configuration.ConfigurationManager.xml", + "system.configuration.configurationmanager.6.0.1.nupkg.sha512", + "system.configuration.configurationmanager.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "System.Diagnostics.DiagnosticSource/9.0.0": { + "sha512": "ddppcFpnbohLWdYKr/ZeLZHmmI+DXFgZ3Snq+/E7SwcdW4UnvxmaugkwGywvGVWkHPGCSZjCP+MLzu23AL5SDw==", + "type": "package", + "path": "system.diagnostics.diagnosticsource/9.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/System.Diagnostics.DiagnosticSource.targets", + "buildTransitive/net462/_._", + "buildTransitive/net8.0/_._", + "buildTransitive/netcoreapp2.0/System.Diagnostics.DiagnosticSource.targets", + "content/ILLink/ILLink.Descriptors.LibraryBuild.xml", + "contentFiles/any/net462/ILLink/ILLink.Descriptors.LibraryBuild.xml", + "contentFiles/any/net8.0/ILLink/ILLink.Descriptors.LibraryBuild.xml", + "contentFiles/any/net9.0/ILLink/ILLink.Descriptors.LibraryBuild.xml", + "contentFiles/any/netstandard2.0/ILLink/ILLink.Descriptors.LibraryBuild.xml", + "lib/net462/System.Diagnostics.DiagnosticSource.dll", + "lib/net462/System.Diagnostics.DiagnosticSource.xml", + "lib/net8.0/System.Diagnostics.DiagnosticSource.dll", + "lib/net8.0/System.Diagnostics.DiagnosticSource.xml", + "lib/net9.0/System.Diagnostics.DiagnosticSource.dll", + "lib/net9.0/System.Diagnostics.DiagnosticSource.xml", + "lib/netstandard2.0/System.Diagnostics.DiagnosticSource.dll", + "lib/netstandard2.0/System.Diagnostics.DiagnosticSource.xml", + "system.diagnostics.diagnosticsource.9.0.0.nupkg.sha512", + "system.diagnostics.diagnosticsource.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "System.Drawing.Common/6.0.0": { + "sha512": "NfuoKUiP2nUWwKZN6twGqXioIe1zVD0RIj2t976A+czLHr2nY454RwwXs6JU9Htc6mwqL6Dn/nEL3dpVf2jOhg==", + "type": "package", + "path": "system.drawing.common/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/netcoreapp2.0/System.Drawing.Common.targets", + "buildTransitive/netcoreapp3.1/_._", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net461/System.Drawing.Common.dll", + "lib/net461/System.Drawing.Common.xml", + "lib/net6.0/System.Drawing.Common.dll", + "lib/net6.0/System.Drawing.Common.xml", + "lib/netcoreapp3.1/System.Drawing.Common.dll", + "lib/netcoreapp3.1/System.Drawing.Common.xml", + "lib/netstandard2.0/System.Drawing.Common.dll", + "lib/netstandard2.0/System.Drawing.Common.xml", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "runtimes/unix/lib/net6.0/System.Drawing.Common.dll", + "runtimes/unix/lib/net6.0/System.Drawing.Common.xml", + "runtimes/unix/lib/netcoreapp3.1/System.Drawing.Common.dll", + "runtimes/unix/lib/netcoreapp3.1/System.Drawing.Common.xml", + "runtimes/win/lib/net6.0/System.Drawing.Common.dll", + "runtimes/win/lib/net6.0/System.Drawing.Common.xml", + "runtimes/win/lib/netcoreapp3.1/System.Drawing.Common.dll", + "runtimes/win/lib/netcoreapp3.1/System.Drawing.Common.xml", + "system.drawing.common.6.0.0.nupkg.sha512", + "system.drawing.common.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "System.Formats.Asn1/9.0.0": { + "sha512": "VRDjgfqV0hCma5HBQa46nZTRuqfYMWZClwxUtvLJVTCeDp9Esdvr91AfEWP98IMO8ooSv1yXb6/oCc6jApoXvQ==", + "type": "package", + "path": "system.formats.asn1/9.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "PACKAGE.md", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/System.Formats.Asn1.targets", + "buildTransitive/net462/_._", + "buildTransitive/net8.0/_._", + "buildTransitive/netcoreapp2.0/System.Formats.Asn1.targets", + "lib/net462/System.Formats.Asn1.dll", + "lib/net462/System.Formats.Asn1.xml", + "lib/net8.0/System.Formats.Asn1.dll", + "lib/net8.0/System.Formats.Asn1.xml", + "lib/net9.0/System.Formats.Asn1.dll", + "lib/net9.0/System.Formats.Asn1.xml", + "lib/netstandard2.0/System.Formats.Asn1.dll", + "lib/netstandard2.0/System.Formats.Asn1.xml", + "system.formats.asn1.9.0.0.nupkg.sha512", + "system.formats.asn1.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "System.IdentityModel.Tokens.Jwt/6.35.0": { + "sha512": "yxGIQd3BFK7F6S62/7RdZk3C/mfwyVxvh6ngd1VYMBmbJ1YZZA9+Ku6suylVtso0FjI0wbElpJ0d27CdsyLpBQ==", + "type": "package", + "path": "system.identitymodel.tokens.jwt/6.35.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net45/System.IdentityModel.Tokens.Jwt.dll", + "lib/net45/System.IdentityModel.Tokens.Jwt.xml", + "lib/net461/System.IdentityModel.Tokens.Jwt.dll", + "lib/net461/System.IdentityModel.Tokens.Jwt.xml", + "lib/net462/System.IdentityModel.Tokens.Jwt.dll", + "lib/net462/System.IdentityModel.Tokens.Jwt.xml", + "lib/net472/System.IdentityModel.Tokens.Jwt.dll", + "lib/net472/System.IdentityModel.Tokens.Jwt.xml", + "lib/net6.0/System.IdentityModel.Tokens.Jwt.dll", + "lib/net6.0/System.IdentityModel.Tokens.Jwt.xml", + "lib/netstandard2.0/System.IdentityModel.Tokens.Jwt.dll", + "lib/netstandard2.0/System.IdentityModel.Tokens.Jwt.xml", + "system.identitymodel.tokens.jwt.6.35.0.nupkg.sha512", + "system.identitymodel.tokens.jwt.nuspec" + ] + }, + "System.IO.Pipelines/9.0.0": { + "sha512": "eA3cinogwaNB4jdjQHOP3Z3EuyiDII7MT35jgtnsA4vkn0LUrrSHsU0nzHTzFzmaFYeKV7MYyMxOocFzsBHpTw==", + "type": "package", + "path": "system.io.pipelines/9.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "PACKAGE.md", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/System.IO.Pipelines.targets", + "buildTransitive/net462/_._", + "buildTransitive/net8.0/_._", + "buildTransitive/netcoreapp2.0/System.IO.Pipelines.targets", + "lib/net462/System.IO.Pipelines.dll", + "lib/net462/System.IO.Pipelines.xml", + "lib/net8.0/System.IO.Pipelines.dll", + "lib/net8.0/System.IO.Pipelines.xml", + "lib/net9.0/System.IO.Pipelines.dll", + "lib/net9.0/System.IO.Pipelines.xml", + "lib/netstandard2.0/System.IO.Pipelines.dll", + "lib/netstandard2.0/System.IO.Pipelines.xml", + "system.io.pipelines.9.0.0.nupkg.sha512", + "system.io.pipelines.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "System.Memory/4.5.4": { + "sha512": "1MbJTHS1lZ4bS4FmsJjnuGJOu88ZzTT2rLvrhW7Ygic+pC0NWA+3hgAen0HRdsocuQXCkUTdFn9yHJJhsijDXw==", + "type": "package", + "path": "system.memory/4.5.4", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net461/System.Memory.dll", + "lib/net461/System.Memory.xml", + "lib/netcoreapp2.1/_._", + "lib/netstandard1.1/System.Memory.dll", + "lib/netstandard1.1/System.Memory.xml", + "lib/netstandard2.0/System.Memory.dll", + "lib/netstandard2.0/System.Memory.xml", + "ref/netcoreapp2.1/_._", + "system.memory.4.5.4.nupkg.sha512", + "system.memory.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Memory.Data/1.0.2": { + "sha512": "JGkzeqgBsiZwKJZ1IxPNsDFZDhUvuEdX8L8BDC8N3KOj+6zMcNU28CNN59TpZE/VJYy9cP+5M+sbxtWJx3/xtw==", + "type": "package", + "path": "system.memory.data/1.0.2", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "CHANGELOG.md", + "DotNetPackageIcon.png", + "README.md", + "lib/net461/System.Memory.Data.dll", + "lib/net461/System.Memory.Data.xml", + "lib/netstandard2.0/System.Memory.Data.dll", + "lib/netstandard2.0/System.Memory.Data.xml", + "system.memory.data.1.0.2.nupkg.sha512", + "system.memory.data.nuspec" + ] + }, + "System.Numerics.Vectors/4.5.0": { + "sha512": "QQTlPTl06J/iiDbJCiepZ4H//BVraReU4O4EoRw1U02H5TLUIT7xn3GnDp9AXPSlJUDyFs4uWjWafNX6WrAojQ==", + "type": "package", + "path": "system.numerics.vectors/4.5.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Numerics.Vectors.dll", + "lib/net46/System.Numerics.Vectors.xml", + "lib/netcoreapp2.0/_._", + "lib/netstandard1.0/System.Numerics.Vectors.dll", + "lib/netstandard1.0/System.Numerics.Vectors.xml", + "lib/netstandard2.0/System.Numerics.Vectors.dll", + "lib/netstandard2.0/System.Numerics.Vectors.xml", + "lib/portable-net45+win8+wp8+wpa81/System.Numerics.Vectors.dll", + "lib/portable-net45+win8+wp8+wpa81/System.Numerics.Vectors.xml", + "lib/uap10.0.16299/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/System.Numerics.Vectors.dll", + "ref/net45/System.Numerics.Vectors.xml", + "ref/net46/System.Numerics.Vectors.dll", + "ref/net46/System.Numerics.Vectors.xml", + "ref/netcoreapp2.0/_._", + "ref/netstandard1.0/System.Numerics.Vectors.dll", + "ref/netstandard1.0/System.Numerics.Vectors.xml", + "ref/netstandard2.0/System.Numerics.Vectors.dll", + "ref/netstandard2.0/System.Numerics.Vectors.xml", + "ref/uap10.0.16299/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.numerics.vectors.4.5.0.nupkg.sha512", + "system.numerics.vectors.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Reflection.Metadata/7.0.0": { + "sha512": "MclTG61lsD9sYdpNz9xsKBzjsmsfCtcMZYXz/IUr2zlhaTaABonlr1ESeompTgM+Xk+IwtGYU7/voh3YWB/fWw==", + "type": "package", + "path": "system.reflection.metadata/7.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "README.md", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/System.Reflection.Metadata.targets", + "buildTransitive/net462/_._", + "buildTransitive/net6.0/_._", + "buildTransitive/netcoreapp2.0/System.Reflection.Metadata.targets", + "lib/net462/System.Reflection.Metadata.dll", + "lib/net462/System.Reflection.Metadata.xml", + "lib/net6.0/System.Reflection.Metadata.dll", + "lib/net6.0/System.Reflection.Metadata.xml", + "lib/net7.0/System.Reflection.Metadata.dll", + "lib/net7.0/System.Reflection.Metadata.xml", + "lib/netstandard2.0/System.Reflection.Metadata.dll", + "lib/netstandard2.0/System.Reflection.Metadata.xml", + "system.reflection.metadata.7.0.0.nupkg.sha512", + "system.reflection.metadata.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "System.Runtime/4.3.0": { + "sha512": "JufQi0vPQ0xGnAczR13AUFglDyVYt4Kqnz1AZaiKZ5+GICq0/1MH/mO/eAJHt/mHW1zjKBJd7kV26SrxddAhiw==", + "type": "package", + "path": "system.runtime/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net462/System.Runtime.dll", + "lib/portable-net45+win8+wp80+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net462/System.Runtime.dll", + "ref/netcore50/System.Runtime.dll", + "ref/netcore50/System.Runtime.xml", + "ref/netcore50/de/System.Runtime.xml", + "ref/netcore50/es/System.Runtime.xml", + "ref/netcore50/fr/System.Runtime.xml", + "ref/netcore50/it/System.Runtime.xml", + "ref/netcore50/ja/System.Runtime.xml", + "ref/netcore50/ko/System.Runtime.xml", + "ref/netcore50/ru/System.Runtime.xml", + "ref/netcore50/zh-hans/System.Runtime.xml", + "ref/netcore50/zh-hant/System.Runtime.xml", + "ref/netstandard1.0/System.Runtime.dll", + "ref/netstandard1.0/System.Runtime.xml", + "ref/netstandard1.0/de/System.Runtime.xml", + "ref/netstandard1.0/es/System.Runtime.xml", + "ref/netstandard1.0/fr/System.Runtime.xml", + "ref/netstandard1.0/it/System.Runtime.xml", + "ref/netstandard1.0/ja/System.Runtime.xml", + "ref/netstandard1.0/ko/System.Runtime.xml", + "ref/netstandard1.0/ru/System.Runtime.xml", + "ref/netstandard1.0/zh-hans/System.Runtime.xml", + "ref/netstandard1.0/zh-hant/System.Runtime.xml", + "ref/netstandard1.2/System.Runtime.dll", + "ref/netstandard1.2/System.Runtime.xml", + "ref/netstandard1.2/de/System.Runtime.xml", + "ref/netstandard1.2/es/System.Runtime.xml", + "ref/netstandard1.2/fr/System.Runtime.xml", + "ref/netstandard1.2/it/System.Runtime.xml", + "ref/netstandard1.2/ja/System.Runtime.xml", + "ref/netstandard1.2/ko/System.Runtime.xml", + "ref/netstandard1.2/ru/System.Runtime.xml", + "ref/netstandard1.2/zh-hans/System.Runtime.xml", + "ref/netstandard1.2/zh-hant/System.Runtime.xml", + "ref/netstandard1.3/System.Runtime.dll", + "ref/netstandard1.3/System.Runtime.xml", + "ref/netstandard1.3/de/System.Runtime.xml", + "ref/netstandard1.3/es/System.Runtime.xml", + "ref/netstandard1.3/fr/System.Runtime.xml", + "ref/netstandard1.3/it/System.Runtime.xml", + "ref/netstandard1.3/ja/System.Runtime.xml", + "ref/netstandard1.3/ko/System.Runtime.xml", + "ref/netstandard1.3/ru/System.Runtime.xml", + "ref/netstandard1.3/zh-hans/System.Runtime.xml", + "ref/netstandard1.3/zh-hant/System.Runtime.xml", + "ref/netstandard1.5/System.Runtime.dll", + "ref/netstandard1.5/System.Runtime.xml", + "ref/netstandard1.5/de/System.Runtime.xml", + "ref/netstandard1.5/es/System.Runtime.xml", + "ref/netstandard1.5/fr/System.Runtime.xml", + "ref/netstandard1.5/it/System.Runtime.xml", + "ref/netstandard1.5/ja/System.Runtime.xml", + "ref/netstandard1.5/ko/System.Runtime.xml", + "ref/netstandard1.5/ru/System.Runtime.xml", + "ref/netstandard1.5/zh-hans/System.Runtime.xml", + "ref/netstandard1.5/zh-hant/System.Runtime.xml", + "ref/portable-net45+win8+wp80+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.runtime.4.3.0.nupkg.sha512", + "system.runtime.nuspec" + ] + }, + "System.Runtime.Caching/6.0.0": { + "sha512": "E0e03kUp5X2k+UAoVl6efmI7uU7JRBWi5EIdlQ7cr0NpBGjHG4fWII35PgsBY9T4fJQ8E4QPsL0rKksU9gcL5A==", + "type": "package", + "path": "system.runtime.caching/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/netcoreapp2.0/System.Runtime.Caching.targets", + "buildTransitive/netcoreapp3.1/_._", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net461/_._", + "lib/net6.0/System.Runtime.Caching.dll", + "lib/net6.0/System.Runtime.Caching.xml", + "lib/netcoreapp3.1/System.Runtime.Caching.dll", + "lib/netcoreapp3.1/System.Runtime.Caching.xml", + "lib/netstandard2.0/System.Runtime.Caching.dll", + "lib/netstandard2.0/System.Runtime.Caching.xml", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "runtimes/win/lib/net461/_._", + "runtimes/win/lib/net6.0/System.Runtime.Caching.dll", + "runtimes/win/lib/net6.0/System.Runtime.Caching.xml", + "runtimes/win/lib/netcoreapp3.1/System.Runtime.Caching.dll", + "runtimes/win/lib/netcoreapp3.1/System.Runtime.Caching.xml", + "runtimes/win/lib/netstandard2.0/System.Runtime.Caching.dll", + "runtimes/win/lib/netstandard2.0/System.Runtime.Caching.xml", + "system.runtime.caching.6.0.0.nupkg.sha512", + "system.runtime.caching.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "System.Runtime.CompilerServices.Unsafe/6.0.0": { + "sha512": "/iUeP3tq1S0XdNNoMz5C9twLSrM/TH+qElHkXWaPvuNOt+99G75NrV0OS2EqHx5wMN7popYjpc8oTjC1y16DLg==", + "type": "package", + "path": "system.runtime.compilerservices.unsafe/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/netcoreapp2.0/System.Runtime.CompilerServices.Unsafe.targets", + "buildTransitive/netcoreapp3.1/_._", + "lib/net461/System.Runtime.CompilerServices.Unsafe.dll", + "lib/net461/System.Runtime.CompilerServices.Unsafe.xml", + "lib/net6.0/System.Runtime.CompilerServices.Unsafe.dll", + "lib/net6.0/System.Runtime.CompilerServices.Unsafe.xml", + "lib/netcoreapp3.1/System.Runtime.CompilerServices.Unsafe.dll", + "lib/netcoreapp3.1/System.Runtime.CompilerServices.Unsafe.xml", + "lib/netstandard2.0/System.Runtime.CompilerServices.Unsafe.dll", + "lib/netstandard2.0/System.Runtime.CompilerServices.Unsafe.xml", + "system.runtime.compilerservices.unsafe.6.0.0.nupkg.sha512", + "system.runtime.compilerservices.unsafe.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "System.Security.AccessControl/6.0.0": { + "sha512": "AUADIc0LIEQe7MzC+I0cl0rAT8RrTAKFHl53yHjEUzNVIaUlhFY11vc2ebiVJzVBuOzun6F7FBA+8KAbGTTedQ==", + "type": "package", + "path": "system.security.accesscontrol/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/netcoreapp2.0/System.Security.AccessControl.targets", + "buildTransitive/netcoreapp3.1/_._", + "lib/net461/System.Security.AccessControl.dll", + "lib/net461/System.Security.AccessControl.xml", + "lib/net6.0/System.Security.AccessControl.dll", + "lib/net6.0/System.Security.AccessControl.xml", + "lib/netstandard2.0/System.Security.AccessControl.dll", + "lib/netstandard2.0/System.Security.AccessControl.xml", + "runtimes/win/lib/net461/System.Security.AccessControl.dll", + "runtimes/win/lib/net461/System.Security.AccessControl.xml", + "runtimes/win/lib/net6.0/System.Security.AccessControl.dll", + "runtimes/win/lib/net6.0/System.Security.AccessControl.xml", + "runtimes/win/lib/netstandard2.0/System.Security.AccessControl.dll", + "runtimes/win/lib/netstandard2.0/System.Security.AccessControl.xml", + "system.security.accesscontrol.6.0.0.nupkg.sha512", + "system.security.accesscontrol.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "System.Security.Cryptography.Cng/5.0.0": { + "sha512": "jIMXsKn94T9JY7PvPq/tMfqa6GAaHpElRDpmG+SuL+D3+sTw2M8VhnibKnN8Tq+4JqbPJ/f+BwtLeDMEnzAvRg==", + "type": "package", + "path": "system.security.cryptography.cng/5.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Security.Cryptography.Cng.dll", + "lib/net461/System.Security.Cryptography.Cng.dll", + "lib/net461/System.Security.Cryptography.Cng.xml", + "lib/net462/System.Security.Cryptography.Cng.dll", + "lib/net462/System.Security.Cryptography.Cng.xml", + "lib/net47/System.Security.Cryptography.Cng.dll", + "lib/net47/System.Security.Cryptography.Cng.xml", + "lib/netcoreapp2.1/System.Security.Cryptography.Cng.dll", + "lib/netcoreapp3.0/System.Security.Cryptography.Cng.dll", + "lib/netcoreapp3.0/System.Security.Cryptography.Cng.xml", + "lib/netstandard1.3/System.Security.Cryptography.Cng.dll", + "lib/netstandard1.4/System.Security.Cryptography.Cng.dll", + "lib/netstandard1.6/System.Security.Cryptography.Cng.dll", + "lib/netstandard2.0/System.Security.Cryptography.Cng.dll", + "lib/netstandard2.0/System.Security.Cryptography.Cng.xml", + "lib/netstandard2.1/System.Security.Cryptography.Cng.dll", + "lib/netstandard2.1/System.Security.Cryptography.Cng.xml", + "lib/uap10.0.16299/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Security.Cryptography.Cng.dll", + "ref/net461/System.Security.Cryptography.Cng.dll", + "ref/net461/System.Security.Cryptography.Cng.xml", + "ref/net462/System.Security.Cryptography.Cng.dll", + "ref/net462/System.Security.Cryptography.Cng.xml", + "ref/net47/System.Security.Cryptography.Cng.dll", + "ref/net47/System.Security.Cryptography.Cng.xml", + "ref/netcoreapp2.0/System.Security.Cryptography.Cng.dll", + "ref/netcoreapp2.0/System.Security.Cryptography.Cng.xml", + "ref/netcoreapp2.1/System.Security.Cryptography.Cng.dll", + "ref/netcoreapp2.1/System.Security.Cryptography.Cng.xml", + "ref/netcoreapp3.0/System.Security.Cryptography.Cng.dll", + "ref/netcoreapp3.0/System.Security.Cryptography.Cng.xml", + "ref/netstandard1.3/System.Security.Cryptography.Cng.dll", + "ref/netstandard1.4/System.Security.Cryptography.Cng.dll", + "ref/netstandard1.6/System.Security.Cryptography.Cng.dll", + "ref/netstandard2.0/System.Security.Cryptography.Cng.dll", + "ref/netstandard2.0/System.Security.Cryptography.Cng.xml", + "ref/netstandard2.1/System.Security.Cryptography.Cng.dll", + "ref/netstandard2.1/System.Security.Cryptography.Cng.xml", + "ref/uap10.0.16299/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/win/lib/net46/System.Security.Cryptography.Cng.dll", + "runtimes/win/lib/net461/System.Security.Cryptography.Cng.dll", + "runtimes/win/lib/net461/System.Security.Cryptography.Cng.xml", + "runtimes/win/lib/net462/System.Security.Cryptography.Cng.dll", + "runtimes/win/lib/net462/System.Security.Cryptography.Cng.xml", + "runtimes/win/lib/net47/System.Security.Cryptography.Cng.dll", + "runtimes/win/lib/net47/System.Security.Cryptography.Cng.xml", + "runtimes/win/lib/netcoreapp2.0/System.Security.Cryptography.Cng.dll", + "runtimes/win/lib/netcoreapp2.1/System.Security.Cryptography.Cng.dll", + "runtimes/win/lib/netcoreapp3.0/System.Security.Cryptography.Cng.dll", + "runtimes/win/lib/netcoreapp3.0/System.Security.Cryptography.Cng.xml", + "runtimes/win/lib/netstandard1.4/System.Security.Cryptography.Cng.dll", + "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.Cng.dll", + "runtimes/win/lib/uap10.0.16299/_._", + "system.security.cryptography.cng.5.0.0.nupkg.sha512", + "system.security.cryptography.cng.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Security.Cryptography.ProtectedData/6.0.0": { + "sha512": "rp1gMNEZpvx9vP0JW0oHLxlf8oSiQgtno77Y4PLUBjSiDYoD77Y8uXHr1Ea5XG4/pIKhqAdxZ8v8OTUtqo9PeQ==", + "type": "package", + "path": "system.security.cryptography.protecteddata/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/netcoreapp2.0/System.Security.Cryptography.ProtectedData.targets", + "buildTransitive/netcoreapp3.1/_._", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net461/System.Security.Cryptography.ProtectedData.dll", + "lib/net461/System.Security.Cryptography.ProtectedData.xml", + "lib/net6.0/System.Security.Cryptography.ProtectedData.dll", + "lib/net6.0/System.Security.Cryptography.ProtectedData.xml", + "lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll", + "lib/netstandard2.0/System.Security.Cryptography.ProtectedData.xml", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "runtimes/win/lib/net461/System.Security.Cryptography.ProtectedData.dll", + "runtimes/win/lib/net461/System.Security.Cryptography.ProtectedData.xml", + "runtimes/win/lib/net6.0/System.Security.Cryptography.ProtectedData.dll", + "runtimes/win/lib/net6.0/System.Security.Cryptography.ProtectedData.xml", + "runtimes/win/lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll", + "runtimes/win/lib/netstandard2.0/System.Security.Cryptography.ProtectedData.xml", + "system.security.cryptography.protecteddata.6.0.0.nupkg.sha512", + "system.security.cryptography.protecteddata.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "System.Security.Permissions/6.0.0": { + "sha512": "T/uuc7AklkDoxmcJ7LGkyX1CcSviZuLCa4jg3PekfJ7SU0niF0IVTXwUiNVP9DSpzou2PpxJ+eNY2IfDM90ZCg==", + "type": "package", + "path": "system.security.permissions/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/netcoreapp2.0/System.Security.Permissions.targets", + "buildTransitive/netcoreapp3.1/_._", + "lib/net461/System.Security.Permissions.dll", + "lib/net461/System.Security.Permissions.xml", + "lib/net5.0/System.Security.Permissions.dll", + "lib/net5.0/System.Security.Permissions.xml", + "lib/net6.0/System.Security.Permissions.dll", + "lib/net6.0/System.Security.Permissions.xml", + "lib/netcoreapp3.1/System.Security.Permissions.dll", + "lib/netcoreapp3.1/System.Security.Permissions.xml", + "lib/netstandard2.0/System.Security.Permissions.dll", + "lib/netstandard2.0/System.Security.Permissions.xml", + "runtimes/win/lib/net461/System.Security.Permissions.dll", + "runtimes/win/lib/net461/System.Security.Permissions.xml", + "system.security.permissions.6.0.0.nupkg.sha512", + "system.security.permissions.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "System.Security.Principal.Windows/5.0.0": { + "sha512": "t0MGLukB5WAVU9bO3MGzvlGnyJPgUlcwerXn1kzBRjwLKixT96XV0Uza41W49gVd8zEMFu9vQEFlv0IOrytICA==", + "type": "package", + "path": "system.security.principal.windows/5.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net46/System.Security.Principal.Windows.dll", + "lib/net461/System.Security.Principal.Windows.dll", + "lib/net461/System.Security.Principal.Windows.xml", + "lib/netstandard1.3/System.Security.Principal.Windows.dll", + "lib/netstandard2.0/System.Security.Principal.Windows.dll", + "lib/netstandard2.0/System.Security.Principal.Windows.xml", + "lib/uap10.0.16299/_._", + "ref/net46/System.Security.Principal.Windows.dll", + "ref/net461/System.Security.Principal.Windows.dll", + "ref/net461/System.Security.Principal.Windows.xml", + "ref/netcoreapp3.0/System.Security.Principal.Windows.dll", + "ref/netcoreapp3.0/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/System.Security.Principal.Windows.dll", + "ref/netstandard1.3/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/de/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/es/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/fr/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/it/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/ja/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/ko/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/ru/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/zh-hans/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/zh-hant/System.Security.Principal.Windows.xml", + "ref/netstandard2.0/System.Security.Principal.Windows.dll", + "ref/netstandard2.0/System.Security.Principal.Windows.xml", + "ref/uap10.0.16299/_._", + "runtimes/unix/lib/netcoreapp2.0/System.Security.Principal.Windows.dll", + "runtimes/unix/lib/netcoreapp2.0/System.Security.Principal.Windows.xml", + "runtimes/unix/lib/netcoreapp2.1/System.Security.Principal.Windows.dll", + "runtimes/unix/lib/netcoreapp2.1/System.Security.Principal.Windows.xml", + "runtimes/win/lib/net46/System.Security.Principal.Windows.dll", + "runtimes/win/lib/net461/System.Security.Principal.Windows.dll", + "runtimes/win/lib/net461/System.Security.Principal.Windows.xml", + "runtimes/win/lib/netcoreapp2.0/System.Security.Principal.Windows.dll", + "runtimes/win/lib/netcoreapp2.0/System.Security.Principal.Windows.xml", + "runtimes/win/lib/netcoreapp2.1/System.Security.Principal.Windows.dll", + "runtimes/win/lib/netcoreapp2.1/System.Security.Principal.Windows.xml", + "runtimes/win/lib/netstandard1.3/System.Security.Principal.Windows.dll", + "runtimes/win/lib/uap10.0.16299/_._", + "system.security.principal.windows.5.0.0.nupkg.sha512", + "system.security.principal.windows.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Text.Encoding/4.3.0": { + "sha512": "BiIg+KWaSDOITze6jGQynxg64naAPtqGHBwDrLaCtixsa5bKiR8dpPOHA7ge3C0JJQizJE+sfkz1wV+BAKAYZw==", + "type": "package", + "path": "system.text.encoding/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Text.Encoding.dll", + "ref/netcore50/System.Text.Encoding.xml", + "ref/netcore50/de/System.Text.Encoding.xml", + "ref/netcore50/es/System.Text.Encoding.xml", + "ref/netcore50/fr/System.Text.Encoding.xml", + "ref/netcore50/it/System.Text.Encoding.xml", + "ref/netcore50/ja/System.Text.Encoding.xml", + "ref/netcore50/ko/System.Text.Encoding.xml", + "ref/netcore50/ru/System.Text.Encoding.xml", + "ref/netcore50/zh-hans/System.Text.Encoding.xml", + "ref/netcore50/zh-hant/System.Text.Encoding.xml", + "ref/netstandard1.0/System.Text.Encoding.dll", + "ref/netstandard1.0/System.Text.Encoding.xml", + "ref/netstandard1.0/de/System.Text.Encoding.xml", + "ref/netstandard1.0/es/System.Text.Encoding.xml", + "ref/netstandard1.0/fr/System.Text.Encoding.xml", + "ref/netstandard1.0/it/System.Text.Encoding.xml", + "ref/netstandard1.0/ja/System.Text.Encoding.xml", + "ref/netstandard1.0/ko/System.Text.Encoding.xml", + "ref/netstandard1.0/ru/System.Text.Encoding.xml", + "ref/netstandard1.0/zh-hans/System.Text.Encoding.xml", + "ref/netstandard1.0/zh-hant/System.Text.Encoding.xml", + "ref/netstandard1.3/System.Text.Encoding.dll", + "ref/netstandard1.3/System.Text.Encoding.xml", + "ref/netstandard1.3/de/System.Text.Encoding.xml", + "ref/netstandard1.3/es/System.Text.Encoding.xml", + "ref/netstandard1.3/fr/System.Text.Encoding.xml", + "ref/netstandard1.3/it/System.Text.Encoding.xml", + "ref/netstandard1.3/ja/System.Text.Encoding.xml", + "ref/netstandard1.3/ko/System.Text.Encoding.xml", + "ref/netstandard1.3/ru/System.Text.Encoding.xml", + "ref/netstandard1.3/zh-hans/System.Text.Encoding.xml", + "ref/netstandard1.3/zh-hant/System.Text.Encoding.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.text.encoding.4.3.0.nupkg.sha512", + "system.text.encoding.nuspec" + ] + }, + "System.Text.Encoding.CodePages/6.0.0": { + "sha512": "ZFCILZuOvtKPauZ/j/swhvw68ZRi9ATCfvGbk1QfydmcXBkIWecWKn/250UH7rahZ5OoDBaiAudJtPvLwzw85A==", + "type": "package", + "path": "system.text.encoding.codepages/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/netcoreapp2.0/System.Text.Encoding.CodePages.targets", + "buildTransitive/netcoreapp3.1/_._", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net461/System.Text.Encoding.CodePages.dll", + "lib/net461/System.Text.Encoding.CodePages.xml", + "lib/net6.0/System.Text.Encoding.CodePages.dll", + "lib/net6.0/System.Text.Encoding.CodePages.xml", + "lib/netcoreapp3.1/System.Text.Encoding.CodePages.dll", + "lib/netcoreapp3.1/System.Text.Encoding.CodePages.xml", + "lib/netstandard2.0/System.Text.Encoding.CodePages.dll", + "lib/netstandard2.0/System.Text.Encoding.CodePages.xml", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "runtimes/win/lib/net461/System.Text.Encoding.CodePages.dll", + "runtimes/win/lib/net461/System.Text.Encoding.CodePages.xml", + "runtimes/win/lib/net6.0/System.Text.Encoding.CodePages.dll", + "runtimes/win/lib/net6.0/System.Text.Encoding.CodePages.xml", + "runtimes/win/lib/netcoreapp3.1/System.Text.Encoding.CodePages.dll", + "runtimes/win/lib/netcoreapp3.1/System.Text.Encoding.CodePages.xml", + "runtimes/win/lib/netstandard2.0/System.Text.Encoding.CodePages.dll", + "runtimes/win/lib/netstandard2.0/System.Text.Encoding.CodePages.xml", + "system.text.encoding.codepages.6.0.0.nupkg.sha512", + "system.text.encoding.codepages.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "System.Text.Encodings.Web/9.0.0": { + "sha512": "e2hMgAErLbKyUUwt18qSBf9T5Y+SFAL3ZedM8fLupkVj8Rj2PZ9oxQ37XX2LF8fTO1wNIxvKpihD7Of7D/NxZw==", + "type": "package", + "path": "system.text.encodings.web/9.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "PACKAGE.md", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/System.Text.Encodings.Web.targets", + "buildTransitive/net462/_._", + "buildTransitive/net8.0/_._", + "buildTransitive/netcoreapp2.0/System.Text.Encodings.Web.targets", + "lib/net462/System.Text.Encodings.Web.dll", + "lib/net462/System.Text.Encodings.Web.xml", + "lib/net8.0/System.Text.Encodings.Web.dll", + "lib/net8.0/System.Text.Encodings.Web.xml", + "lib/net9.0/System.Text.Encodings.Web.dll", + "lib/net9.0/System.Text.Encodings.Web.xml", + "lib/netstandard2.0/System.Text.Encodings.Web.dll", + "lib/netstandard2.0/System.Text.Encodings.Web.xml", + "runtimes/browser/lib/net8.0/System.Text.Encodings.Web.dll", + "runtimes/browser/lib/net8.0/System.Text.Encodings.Web.xml", + "runtimes/browser/lib/net9.0/System.Text.Encodings.Web.dll", + "runtimes/browser/lib/net9.0/System.Text.Encodings.Web.xml", + "system.text.encodings.web.9.0.0.nupkg.sha512", + "system.text.encodings.web.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "System.Text.Json/9.0.0": { + "sha512": "js7+qAu/9mQvnhA4EfGMZNEzXtJCDxgkgj8ohuxq/Qxv+R56G+ljefhiJHOxTNiw54q8vmABCWUwkMulNdlZ4A==", + "type": "package", + "path": "system.text.json/9.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "PACKAGE.md", + "THIRD-PARTY-NOTICES.TXT", + "analyzers/dotnet/roslyn3.11/cs/System.Text.Json.SourceGeneration.dll", + "analyzers/dotnet/roslyn3.11/cs/cs/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/de/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/es/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/fr/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/it/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/ja/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/ko/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/pl/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/pt-BR/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/ru/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/tr/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/zh-Hans/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/zh-Hant/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/System.Text.Json.SourceGeneration.dll", + "analyzers/dotnet/roslyn4.0/cs/cs/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/de/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/es/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/fr/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/it/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/ja/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/ko/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/pl/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/pt-BR/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/ru/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/tr/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/zh-Hans/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/zh-Hant/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/System.Text.Json.SourceGeneration.dll", + "analyzers/dotnet/roslyn4.4/cs/cs/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/de/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/es/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/fr/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/it/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/ja/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/ko/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/pl/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/pt-BR/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/ru/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/tr/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/zh-Hans/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/zh-Hant/System.Text.Json.SourceGeneration.resources.dll", + "buildTransitive/net461/System.Text.Json.targets", + "buildTransitive/net462/System.Text.Json.targets", + "buildTransitive/net8.0/System.Text.Json.targets", + "buildTransitive/netcoreapp2.0/System.Text.Json.targets", + "buildTransitive/netstandard2.0/System.Text.Json.targets", + "lib/net462/System.Text.Json.dll", + "lib/net462/System.Text.Json.xml", + "lib/net8.0/System.Text.Json.dll", + "lib/net8.0/System.Text.Json.xml", + "lib/net9.0/System.Text.Json.dll", + "lib/net9.0/System.Text.Json.xml", + "lib/netstandard2.0/System.Text.Json.dll", + "lib/netstandard2.0/System.Text.Json.xml", + "system.text.json.9.0.0.nupkg.sha512", + "system.text.json.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "System.Threading.Channels/7.0.0": { + "sha512": "qmeeYNROMsONF6ndEZcIQ+VxR4Q/TX/7uIVLJqtwIWL7dDWeh0l1UIqgo4wYyjG//5lUNhwkLDSFl+pAWO6oiA==", + "type": "package", + "path": "system.threading.channels/7.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/System.Threading.Channels.targets", + "buildTransitive/net462/_._", + "buildTransitive/net6.0/_._", + "buildTransitive/netcoreapp2.0/System.Threading.Channels.targets", + "lib/net462/System.Threading.Channels.dll", + "lib/net462/System.Threading.Channels.xml", + "lib/net6.0/System.Threading.Channels.dll", + "lib/net6.0/System.Threading.Channels.xml", + "lib/net7.0/System.Threading.Channels.dll", + "lib/net7.0/System.Threading.Channels.xml", + "lib/netstandard2.0/System.Threading.Channels.dll", + "lib/netstandard2.0/System.Threading.Channels.xml", + "lib/netstandard2.1/System.Threading.Channels.dll", + "lib/netstandard2.1/System.Threading.Channels.xml", + "system.threading.channels.7.0.0.nupkg.sha512", + "system.threading.channels.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "System.Threading.Tasks.Extensions/4.5.4": { + "sha512": "zteT+G8xuGu6mS+mzDzYXbzS7rd3K6Fjb9RiZlYlJPam2/hU7JCBZBVEcywNuR+oZ1ncTvc/cq0faRr3P01OVg==", + "type": "package", + "path": "system.threading.tasks.extensions/4.5.4", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net461/System.Threading.Tasks.Extensions.dll", + "lib/net461/System.Threading.Tasks.Extensions.xml", + "lib/netcoreapp2.1/_._", + "lib/netstandard1.0/System.Threading.Tasks.Extensions.dll", + "lib/netstandard1.0/System.Threading.Tasks.Extensions.xml", + "lib/netstandard2.0/System.Threading.Tasks.Extensions.dll", + "lib/netstandard2.0/System.Threading.Tasks.Extensions.xml", + "lib/portable-net45+win8+wp8+wpa81/System.Threading.Tasks.Extensions.dll", + "lib/portable-net45+win8+wp8+wpa81/System.Threading.Tasks.Extensions.xml", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/netcoreapp2.1/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.threading.tasks.extensions.4.5.4.nupkg.sha512", + "system.threading.tasks.extensions.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Windows.Extensions/6.0.0": { + "sha512": "IXoJOXIqc39AIe+CIR7koBtRGMiCt/LPM3lI+PELtDIy9XdyeSrwXFdWV9dzJ2Awl0paLWUaknLxFQ5HpHZUog==", + "type": "package", + "path": "system.windows.extensions/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net6.0/System.Windows.Extensions.dll", + "lib/net6.0/System.Windows.Extensions.xml", + "lib/netcoreapp3.1/System.Windows.Extensions.dll", + "lib/netcoreapp3.1/System.Windows.Extensions.xml", + "runtimes/win/lib/net6.0/System.Windows.Extensions.dll", + "runtimes/win/lib/net6.0/System.Windows.Extensions.xml", + "runtimes/win/lib/netcoreapp3.1/System.Windows.Extensions.dll", + "runtimes/win/lib/netcoreapp3.1/System.Windows.Extensions.xml", + "system.windows.extensions.6.0.0.nupkg.sha512", + "system.windows.extensions.nuspec", + "useSharedDesignerContext.txt" + ] + } }, - "libraries": {}, "projectFileDependencyGroups": { - "net8.0": [] + "net8.0": [ + "Microsoft.EntityFrameworkCore.Design >= 9.0.0", + "Microsoft.EntityFrameworkCore.SqlServer >= 9.0.0" + ] }, "packageFolders": { "C:\\Users\\Dishey\\.nuget\\packages\\": {} @@ -50,6 +4744,18 @@ "frameworks": { "net8.0": { "targetAlias": "net8.0", + "dependencies": { + "Microsoft.EntityFrameworkCore.Design": { + "include": "Runtime, Build, Native, ContentFiles, Analyzers, BuildTransitive", + "suppressParent": "All", + "target": "Package", + "version": "[9.0.0, )" + }, + "Microsoft.EntityFrameworkCore.SqlServer": { + "target": "Package", + "version": "[9.0.0, )" + } + }, "imports": [ "net461", "net462", diff --git "a/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/MVC\344\274\240\345\217\202/Blog/obj/project.nuget.cache" "b/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/MVC\344\274\240\345\217\202/Blog/obj/project.nuget.cache" index 6f6de3ddaef0ccb56b8211ef6a4bec2f06bb2104..98679096f1d7083d020570a2e1447cf0ef4ced5c 100644 --- "a/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/MVC\344\274\240\345\217\202/Blog/obj/project.nuget.cache" +++ "b/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/MVC\344\274\240\345\217\202/Blog/obj/project.nuget.cache" @@ -1,8 +1,87 @@ { "version": 2, - "dgSpecHash": "eebj8BYNntE=", + "dgSpecHash": "BOaZA+HdVtk=", "success": true, "projectFilePath": "G:\\作业上传处\\Gitee\\grade23-class4-note-mvc\\韦诗诗\\作业\\MVC传参\\Blog\\Blog.csproj", - "expectedPackageFiles": [], + "expectedPackageFiles": [ + "C:\\Users\\Dishey\\.nuget\\packages\\azure.core\\1.38.0\\azure.core.1.38.0.nupkg.sha512", + "C:\\Users\\Dishey\\.nuget\\packages\\azure.identity\\1.11.4\\azure.identity.1.11.4.nupkg.sha512", + "C:\\Users\\Dishey\\.nuget\\packages\\humanizer.core\\2.14.1\\humanizer.core.2.14.1.nupkg.sha512", + "C:\\Users\\Dishey\\.nuget\\packages\\microsoft.bcl.asyncinterfaces\\7.0.0\\microsoft.bcl.asyncinterfaces.7.0.0.nupkg.sha512", + "C:\\Users\\Dishey\\.nuget\\packages\\microsoft.build.framework\\17.8.3\\microsoft.build.framework.17.8.3.nupkg.sha512", + "C:\\Users\\Dishey\\.nuget\\packages\\microsoft.build.locator\\1.7.8\\microsoft.build.locator.1.7.8.nupkg.sha512", + "C:\\Users\\Dishey\\.nuget\\packages\\microsoft.codeanalysis.analyzers\\3.3.4\\microsoft.codeanalysis.analyzers.3.3.4.nupkg.sha512", + "C:\\Users\\Dishey\\.nuget\\packages\\microsoft.codeanalysis.common\\4.8.0\\microsoft.codeanalysis.common.4.8.0.nupkg.sha512", + "C:\\Users\\Dishey\\.nuget\\packages\\microsoft.codeanalysis.csharp\\4.8.0\\microsoft.codeanalysis.csharp.4.8.0.nupkg.sha512", + "C:\\Users\\Dishey\\.nuget\\packages\\microsoft.codeanalysis.csharp.workspaces\\4.8.0\\microsoft.codeanalysis.csharp.workspaces.4.8.0.nupkg.sha512", + "C:\\Users\\Dishey\\.nuget\\packages\\microsoft.codeanalysis.workspaces.common\\4.8.0\\microsoft.codeanalysis.workspaces.common.4.8.0.nupkg.sha512", + "C:\\Users\\Dishey\\.nuget\\packages\\microsoft.codeanalysis.workspaces.msbuild\\4.8.0\\microsoft.codeanalysis.workspaces.msbuild.4.8.0.nupkg.sha512", + "C:\\Users\\Dishey\\.nuget\\packages\\microsoft.csharp\\4.5.0\\microsoft.csharp.4.5.0.nupkg.sha512", + "C:\\Users\\Dishey\\.nuget\\packages\\microsoft.data.sqlclient\\5.1.6\\microsoft.data.sqlclient.5.1.6.nupkg.sha512", + "C:\\Users\\Dishey\\.nuget\\packages\\microsoft.data.sqlclient.sni.runtime\\5.1.1\\microsoft.data.sqlclient.sni.runtime.5.1.1.nupkg.sha512", + "C:\\Users\\Dishey\\.nuget\\packages\\microsoft.entityframeworkcore\\9.0.0\\microsoft.entityframeworkcore.9.0.0.nupkg.sha512", + "C:\\Users\\Dishey\\.nuget\\packages\\microsoft.entityframeworkcore.abstractions\\9.0.0\\microsoft.entityframeworkcore.abstractions.9.0.0.nupkg.sha512", + "C:\\Users\\Dishey\\.nuget\\packages\\microsoft.entityframeworkcore.analyzers\\9.0.0\\microsoft.entityframeworkcore.analyzers.9.0.0.nupkg.sha512", + "C:\\Users\\Dishey\\.nuget\\packages\\microsoft.entityframeworkcore.design\\9.0.0\\microsoft.entityframeworkcore.design.9.0.0.nupkg.sha512", + "C:\\Users\\Dishey\\.nuget\\packages\\microsoft.entityframeworkcore.relational\\9.0.0\\microsoft.entityframeworkcore.relational.9.0.0.nupkg.sha512", + "C:\\Users\\Dishey\\.nuget\\packages\\microsoft.entityframeworkcore.sqlserver\\9.0.0\\microsoft.entityframeworkcore.sqlserver.9.0.0.nupkg.sha512", + "C:\\Users\\Dishey\\.nuget\\packages\\microsoft.extensions.caching.abstractions\\9.0.0\\microsoft.extensions.caching.abstractions.9.0.0.nupkg.sha512", + "C:\\Users\\Dishey\\.nuget\\packages\\microsoft.extensions.caching.memory\\9.0.0\\microsoft.extensions.caching.memory.9.0.0.nupkg.sha512", + "C:\\Users\\Dishey\\.nuget\\packages\\microsoft.extensions.configuration.abstractions\\9.0.0\\microsoft.extensions.configuration.abstractions.9.0.0.nupkg.sha512", + "C:\\Users\\Dishey\\.nuget\\packages\\microsoft.extensions.dependencyinjection\\9.0.0\\microsoft.extensions.dependencyinjection.9.0.0.nupkg.sha512", + "C:\\Users\\Dishey\\.nuget\\packages\\microsoft.extensions.dependencyinjection.abstractions\\9.0.0\\microsoft.extensions.dependencyinjection.abstractions.9.0.0.nupkg.sha512", + "C:\\Users\\Dishey\\.nuget\\packages\\microsoft.extensions.dependencymodel\\9.0.0\\microsoft.extensions.dependencymodel.9.0.0.nupkg.sha512", + "C:\\Users\\Dishey\\.nuget\\packages\\microsoft.extensions.logging\\9.0.0\\microsoft.extensions.logging.9.0.0.nupkg.sha512", + "C:\\Users\\Dishey\\.nuget\\packages\\microsoft.extensions.logging.abstractions\\9.0.0\\microsoft.extensions.logging.abstractions.9.0.0.nupkg.sha512", + "C:\\Users\\Dishey\\.nuget\\packages\\microsoft.extensions.options\\9.0.0\\microsoft.extensions.options.9.0.0.nupkg.sha512", + "C:\\Users\\Dishey\\.nuget\\packages\\microsoft.extensions.primitives\\9.0.0\\microsoft.extensions.primitives.9.0.0.nupkg.sha512", + "C:\\Users\\Dishey\\.nuget\\packages\\microsoft.identity.client\\4.61.3\\microsoft.identity.client.4.61.3.nupkg.sha512", + "C:\\Users\\Dishey\\.nuget\\packages\\microsoft.identity.client.extensions.msal\\4.61.3\\microsoft.identity.client.extensions.msal.4.61.3.nupkg.sha512", + "C:\\Users\\Dishey\\.nuget\\packages\\microsoft.identitymodel.abstractions\\6.35.0\\microsoft.identitymodel.abstractions.6.35.0.nupkg.sha512", + "C:\\Users\\Dishey\\.nuget\\packages\\microsoft.identitymodel.jsonwebtokens\\6.35.0\\microsoft.identitymodel.jsonwebtokens.6.35.0.nupkg.sha512", + "C:\\Users\\Dishey\\.nuget\\packages\\microsoft.identitymodel.logging\\6.35.0\\microsoft.identitymodel.logging.6.35.0.nupkg.sha512", + "C:\\Users\\Dishey\\.nuget\\packages\\microsoft.identitymodel.protocols\\6.35.0\\microsoft.identitymodel.protocols.6.35.0.nupkg.sha512", + "C:\\Users\\Dishey\\.nuget\\packages\\microsoft.identitymodel.protocols.openidconnect\\6.35.0\\microsoft.identitymodel.protocols.openidconnect.6.35.0.nupkg.sha512", + "C:\\Users\\Dishey\\.nuget\\packages\\microsoft.identitymodel.tokens\\6.35.0\\microsoft.identitymodel.tokens.6.35.0.nupkg.sha512", + "C:\\Users\\Dishey\\.nuget\\packages\\microsoft.netcore.platforms\\1.1.0\\microsoft.netcore.platforms.1.1.0.nupkg.sha512", + "C:\\Users\\Dishey\\.nuget\\packages\\microsoft.netcore.targets\\1.1.0\\microsoft.netcore.targets.1.1.0.nupkg.sha512", + "C:\\Users\\Dishey\\.nuget\\packages\\microsoft.sqlserver.server\\1.0.0\\microsoft.sqlserver.server.1.0.0.nupkg.sha512", + "C:\\Users\\Dishey\\.nuget\\packages\\microsoft.win32.systemevents\\6.0.0\\microsoft.win32.systemevents.6.0.0.nupkg.sha512", + "C:\\Users\\Dishey\\.nuget\\packages\\mono.texttemplating\\3.0.0\\mono.texttemplating.3.0.0.nupkg.sha512", + "C:\\Users\\Dishey\\.nuget\\packages\\system.clientmodel\\1.0.0\\system.clientmodel.1.0.0.nupkg.sha512", + "C:\\Users\\Dishey\\.nuget\\packages\\system.codedom\\6.0.0\\system.codedom.6.0.0.nupkg.sha512", + "C:\\Users\\Dishey\\.nuget\\packages\\system.collections.immutable\\7.0.0\\system.collections.immutable.7.0.0.nupkg.sha512", + "C:\\Users\\Dishey\\.nuget\\packages\\system.composition\\7.0.0\\system.composition.7.0.0.nupkg.sha512", + "C:\\Users\\Dishey\\.nuget\\packages\\system.composition.attributedmodel\\7.0.0\\system.composition.attributedmodel.7.0.0.nupkg.sha512", + "C:\\Users\\Dishey\\.nuget\\packages\\system.composition.convention\\7.0.0\\system.composition.convention.7.0.0.nupkg.sha512", + "C:\\Users\\Dishey\\.nuget\\packages\\system.composition.hosting\\7.0.0\\system.composition.hosting.7.0.0.nupkg.sha512", + "C:\\Users\\Dishey\\.nuget\\packages\\system.composition.runtime\\7.0.0\\system.composition.runtime.7.0.0.nupkg.sha512", + "C:\\Users\\Dishey\\.nuget\\packages\\system.composition.typedparts\\7.0.0\\system.composition.typedparts.7.0.0.nupkg.sha512", + "C:\\Users\\Dishey\\.nuget\\packages\\system.configuration.configurationmanager\\6.0.1\\system.configuration.configurationmanager.6.0.1.nupkg.sha512", + "C:\\Users\\Dishey\\.nuget\\packages\\system.diagnostics.diagnosticsource\\9.0.0\\system.diagnostics.diagnosticsource.9.0.0.nupkg.sha512", + "C:\\Users\\Dishey\\.nuget\\packages\\system.drawing.common\\6.0.0\\system.drawing.common.6.0.0.nupkg.sha512", + "C:\\Users\\Dishey\\.nuget\\packages\\system.formats.asn1\\9.0.0\\system.formats.asn1.9.0.0.nupkg.sha512", + "C:\\Users\\Dishey\\.nuget\\packages\\system.identitymodel.tokens.jwt\\6.35.0\\system.identitymodel.tokens.jwt.6.35.0.nupkg.sha512", + "C:\\Users\\Dishey\\.nuget\\packages\\system.io.pipelines\\9.0.0\\system.io.pipelines.9.0.0.nupkg.sha512", + "C:\\Users\\Dishey\\.nuget\\packages\\system.memory\\4.5.4\\system.memory.4.5.4.nupkg.sha512", + "C:\\Users\\Dishey\\.nuget\\packages\\system.memory.data\\1.0.2\\system.memory.data.1.0.2.nupkg.sha512", + "C:\\Users\\Dishey\\.nuget\\packages\\system.numerics.vectors\\4.5.0\\system.numerics.vectors.4.5.0.nupkg.sha512", + "C:\\Users\\Dishey\\.nuget\\packages\\system.reflection.metadata\\7.0.0\\system.reflection.metadata.7.0.0.nupkg.sha512", + "C:\\Users\\Dishey\\.nuget\\packages\\system.runtime\\4.3.0\\system.runtime.4.3.0.nupkg.sha512", + "C:\\Users\\Dishey\\.nuget\\packages\\system.runtime.caching\\6.0.0\\system.runtime.caching.6.0.0.nupkg.sha512", + "C:\\Users\\Dishey\\.nuget\\packages\\system.runtime.compilerservices.unsafe\\6.0.0\\system.runtime.compilerservices.unsafe.6.0.0.nupkg.sha512", + "C:\\Users\\Dishey\\.nuget\\packages\\system.security.accesscontrol\\6.0.0\\system.security.accesscontrol.6.0.0.nupkg.sha512", + "C:\\Users\\Dishey\\.nuget\\packages\\system.security.cryptography.cng\\5.0.0\\system.security.cryptography.cng.5.0.0.nupkg.sha512", + "C:\\Users\\Dishey\\.nuget\\packages\\system.security.cryptography.protecteddata\\6.0.0\\system.security.cryptography.protecteddata.6.0.0.nupkg.sha512", + "C:\\Users\\Dishey\\.nuget\\packages\\system.security.permissions\\6.0.0\\system.security.permissions.6.0.0.nupkg.sha512", + "C:\\Users\\Dishey\\.nuget\\packages\\system.security.principal.windows\\5.0.0\\system.security.principal.windows.5.0.0.nupkg.sha512", + "C:\\Users\\Dishey\\.nuget\\packages\\system.text.encoding\\4.3.0\\system.text.encoding.4.3.0.nupkg.sha512", + "C:\\Users\\Dishey\\.nuget\\packages\\system.text.encoding.codepages\\6.0.0\\system.text.encoding.codepages.6.0.0.nupkg.sha512", + "C:\\Users\\Dishey\\.nuget\\packages\\system.text.encodings.web\\9.0.0\\system.text.encodings.web.9.0.0.nupkg.sha512", + "C:\\Users\\Dishey\\.nuget\\packages\\system.text.json\\9.0.0\\system.text.json.9.0.0.nupkg.sha512", + "C:\\Users\\Dishey\\.nuget\\packages\\system.threading.channels\\7.0.0\\system.threading.channels.7.0.0.nupkg.sha512", + "C:\\Users\\Dishey\\.nuget\\packages\\system.threading.tasks.extensions\\4.5.4\\system.threading.tasks.extensions.4.5.4.nupkg.sha512", + "C:\\Users\\Dishey\\.nuget\\packages\\system.windows.extensions\\6.0.0\\system.windows.extensions.6.0.0.nupkg.sha512" + ], "logs": [] } \ No newline at end of file diff --git "a/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/MVC\345\242\236\345\210\240\346\224\271\346\237\245\350\241\250/Blog/Controllers/BlogsController.cs" "b/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/MVC\345\242\236\345\210\240\346\224\271\346\237\245\350\241\250/Blog/Controllers/BlogsController.cs" index 616962db970d5fe382c143a7ebecf5424b919180..9a00ac00c07215260a15440073c89eff8b2f5472 100644 --- "a/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/MVC\345\242\236\345\210\240\346\224\271\346\237\245\350\241\250/Blog/Controllers/BlogsController.cs" +++ "b/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/MVC\345\242\236\345\210\240\346\224\271\346\237\245\350\241\250/Blog/Controllers/BlogsController.cs" @@ -1,71 +1,101 @@ -using Microsoft.AspNetCore.Mvc; -using Blog.Models; +using Microsoft.AspNetCore.Mvc; +using Blog.Models; + namespace Blog.Controllers; + +// 定义一个控制器类BlogsController,它继承自Controller基类 +// 控制器是MVC模式中的C(Controller),负责处理HTTP请求并返回响应 public class BlogsController : Controller { + // Index方法用于显示博客列表,可以根据关键词进行筛选 public IActionResult Index(string keyword) { + // 如果关键词为空或仅包含空白字符,则将其设置为空字符串 keyword = string.IsNullOrEmpty(keyword) ? "" : keyword.Trim(); + + // 如果关键词为空,则直接返回所有博客的视图 if (string.IsNullOrEmpty(keyword)) { - return View(Db.Blogs); + return View(Db.Blogs); // Db.Blogs假设是一个博客文章的集合 } - + + // 如果提供了关键词,则筛选包含关键词的博客文章,并返回筛选后的列表视图 var list = Db.Blogs.Where(x => x.Title.Contains(keyword) || x.Content.Contains(keyword) || x.Author.Contains(keyword)).ToList(); return View(list); } + // ADD方法用于显示添加博客文章的表单视图 public IActionResult ADD() { return View(); } + + // [HttpPost]属性表明这个方法只处理POST请求 + // ADD(Blogs input)方法用于处理表单提交,添加新的博客文章 [HttpPost] public IActionResult ADD(Blogs input) { + // 检查数据库中是否已存在相同标题的博客文章 var blogs = Db.Blogs.Where(x => x.Title.Equals(input.Title)); if (blogs.Count() > 0) { + // 如果已存在,则重新显示添加表单视图 return View("add"); } - var maxId = Db.Blogs.Select(x => x.ID).Max(); - input.ID = maxId + 1; - Db.Blogs.Add(input); - return RedirectToAction("Index"); + + // 如果没有相同标题的文章,则添加新文章 + var maxId = Db.Blogs.Select(x => x.ID).Max(); // 获取当前最大ID + input.ID = maxId + 1; // 设置新文章的ID + Db.Blogs.Add(input); // 将新文章添加到数据库 + return RedirectToAction("Index"); // 重定向到博客列表页面 } + + // Bianji方法用于显示编辑博客文章的表单视图 public IActionResult Bianji(int id) { + // 根据ID查找要编辑的博客文章 var blog = Db.Blogs.FirstOrDefault(x => x.ID == id); - return View(blog); + return View(blog); // 返回包含博客文章的视图 } + + // [HttpPost]属性表明这个方法只处理POST请求 + // Bianji(Blogs input)方法用于处理表单提交,更新博客文章 [HttpPost] public IActionResult Bianji(Blogs input) { + // 根据ID查找要更新的博客文章 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"); + return RedirectToAction("Index"); // 重定向到博客列表页面 } + + // Delete方法用于显示删除博客文章的确认视图 public IActionResult Delete(int id) { + // 根据ID查找要删除的博客文章 var blog = Db.Blogs.FirstOrDefault(x => x.ID == id); - return View(blog); + return View(blog); // 返回包含博客文章的视图 } - + + // DeleteConfirm方法用于处理删除博客文章的确认请求 public IActionResult DeleteConfirm(int id) { + // 根据ID查找要删除的博客文章 var blog = Db.Blogs.FirstOrDefault(x => x.ID == id); if (blog != null) { + // 从数据库中删除博客文章 Db.Blogs.Remove(blog); - return RedirectToAction("Index"); + return RedirectToAction("Index"); // 重定向到博客列表页面 } - return NotFound(); + return NotFound(); // 如果找不到文章,则返回404错误 } - -} \ No newline at end of file +} diff --git "a/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/MVC\345\242\236\345\210\240\346\224\271\346\237\245\350\241\250/Blog/Models/Db.cs" "b/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/MVC\345\242\236\345\210\240\346\224\271\346\237\245\350\241\250/Blog/Models/Db.cs" index d52abae6e709fa7b601c697c8c5c3774599173bb..112f19c03aa1be056cf46c67a8c8f6d4e2ebff4f 100644 --- "a/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/MVC\345\242\236\345\210\240\346\224\271\346\237\245\350\241\250/Blog/Models/Db.cs" +++ "b/\351\237\246\350\257\227\350\257\227/\344\275\234\344\270\232/MVC\345\242\236\345\210\240\346\224\271\346\237\245\350\241\250/Blog/Models/Db.cs" @@ -1,21 +1,27 @@ namespace Blog.Models; +// 这个类用于存储和管理博客列表 public static class Db { + // 定义一个静态的Blogs列表,用于存储博客对象。 public static List Blogs { get; set; } + // 这里用于初始化Blogs列表,并向其中添加了一些示例博客数据。 static Db() { + // 初始化Blogs列表为空列表 Blogs = []; + // 使用for循环创建6个博客对象,并将它们添加到Blogs列表中。 for (int i = 1; i <= 6; i++) { var temp = new Blogs { ID = i, - Title = "忘记所有的不开心", + Title = $"忘记所有的不开心{i}", Content = "小事化面包,大事化蛋糕~", Author = "星星誓言" }; + // 将创建的博客对象添加到Blogs列表中。 Blogs.Add(temp); } } diff --git "a/\351\237\246\350\257\227\350\257\227/\347\254\224\350\256\260/2024-12-09-\346\225\260\346\215\256\345\272\223\344\270\213\350\275\275\351\205\215\347\275\256.md" "b/\351\237\246\350\257\227\350\257\227/\347\254\224\350\256\260/2024-12-09-\346\225\260\346\215\256\345\272\223\344\270\213\350\275\275\351\205\215\347\275\256.md" new file mode 100644 index 0000000000000000000000000000000000000000..81099973cfdd43ab6623f91d9e4c8924747c94ca --- /dev/null +++ "b/\351\237\246\350\257\227\350\257\227/\347\254\224\350\256\260/2024-12-09-\346\225\260\346\215\256\345\272\223\344\270\213\350\275\275\351\205\215\347\275\256.md" @@ -0,0 +1,73 @@ +## 数据的持久化 +- 结绳记事 +- 甲骨文 +- 木简 +- 竹简 +- 纸 +- 账本 +- 文本文件、Excel (磁盘:HDD、SSD) +- 数据库 + - 常见数据库 + - Sqlserver + - PostgreSQL + - Mysql/MariaDb - + - 常见ORM工具(比喻为应用和数据库之间的通讯员) + - Dapper + - EntityFrameworkCore + - FreeSql + +## 应用EntityFrameworkCore的步骤 +1. 安装依赖包 +```C# +dotnet add package Microsoft.EntityFrameworkCore.SqlServer +``` +2. 定义数据库表模型(新建一个Models) +```C# +using Microsoft.EntityFrameworkCore;// 这是生成迁移文件的依赖包 +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!; +} + +//定义数据库上下文 +public class BlogDbContext : DbContext +{ + public DbSet Blogs { get; set; } = null!; + + + // The following configures EF to create a Sqlite database file in the + // special "local" folder for your platform. + protected override void OnConfiguring(DbContextOptionsBuilder options) + //这里要先打开数据库,然后连接数据库 + //注意这里要是报转义错误是,把SK-20240829XXWR\SQLEXPRESS改成SK-20240829XXWR\\SQLEXPRESS就好 + => options.UseSqlServer($"Server=SK-20240829XXWR\\SQLEXPRESS;uid=sa;pwd=123456;TrustServerCertificate=True;"); +} + +``` + +3. 创建数据库 +```C# +dotnet tool install --global dotnet-ef //这部是安装版本,如果有就显示已安装,没有直接安装 +dotnet add package Microsoft.EntityFrameworkCore.Design //一步步来 + +``` +4. 生成迁移文件 +注意:失败的原因有两个 + - 不能有编译错误 + - 不能在运行(就是dotnet watch或者run 得暂停) +- 然后就是得有依赖包(Microsoft.EntityFrameworkCore) +```C# +dotnet ef migrations add XXX(XXX是自个命名) +``` +5. 将上一步生成的迁移文件,更新到数据库 +注意:需要保证连接字符串正确无误,包括用户名、密码等,数据库打开,并且允许远程连接 +```C# +dotnet ef database update +``` +6. 可以滚去数据库看有没有表了 \ No newline at end of file diff --git "a/\351\237\246\350\257\227\350\257\227/\347\254\224\350\256\260/2024-12-11-Linq\347\254\224\350\256\260.md" "b/\351\237\246\350\257\227\350\257\227/\347\254\224\350\256\260/2024-12-11-Linq\347\254\224\350\256\260.md" new file mode 100644 index 0000000000000000000000000000000000000000..90e478ae8f3cb06b4b54b6166ef725ba1940b41e --- /dev/null +++ "b/\351\237\246\350\257\227\350\257\227/\347\254\224\350\256\260/2024-12-11-Linq\347\254\224\350\256\260.md" @@ -0,0 +1,60 @@ +## Linq集成查询 +注意:都要首写字母大写 +1. where:条件查询 +```js +var query =nums.Where(n=> n>=2 && n<=8) +``` + +2. select:基本查询 +```js +var query =nums.Select(n=> n) +``` + +3. OrderBy:升序排序 +```js +var ages =nums.Where(s=> s.Age>20).OrderBy(s=>s.Age) +``` + +4. OrderByDescending:降序排序 +```js +var ages =nums.Where(s=> s.Age>20).OrderByDescending(s=>s.Age) +``` + +5. select:(选择特定属性或计算结果)投影 +```js +var query =nums.Select(n=> n*2) +``` + +6. Any:是否存在 (与之相反的是All) +```js +bool i =nums.Any(n=> n>10) +``` + +7. FirstOrDefault: 查找第一个元素 +```js +var first =nums.FirstOrDefault(n=> n>3) // 找出第一个大于3的 +``` + +8. Last: 查找最后一个元素 +```js +var last =nums.Where(n=> n<7>).Last() // 找出最后一个小于7的 +``` + +9. Distinct: 查重 +```js +var num =nums.Distinct +``` + +10. StartsWith :筛选字符串开头的 +```js +// 筛选字符串开头为王的 + var wangStu = students.Where(name => name.Name.StartsWith("王")); +``` + +11. Contains :筛选包含某个字符串的 +```js +// 筛选字符串包含王的 + var wangStu = students.Where(name => name.Name.Contains("王")); +``` + +### 聚合查询 \ No newline at end of file