@phuc1403/musketeer 0.2.4 → 0.4.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (129) hide show
  1. package/INSTALLATION.md +10 -0
  2. package/README.md +1 -1
  3. package/manifest.json +53 -3
  4. package/package.json +1 -1
  5. package/src/dotnet-build-props.js +163 -0
  6. package/src/dotnet-fs-scan.js +48 -0
  7. package/src/dotnet-scaffold-copier.js +72 -0
  8. package/src/dotnet-scaffold.js +175 -0
  9. package/src/reconcile.js +24 -0
  10. package/template/.claude/hooks/block-unsafe-adr-title.cjs +70 -0
  11. package/template/.claude/hooks/init-adr-dir.cjs +110 -0
  12. package/template/.claude/hooks/inject-adr-env.cjs +82 -0
  13. package/template/.claude/hooks/sync-adr-toc.cjs +111 -0
  14. package/template/.claude/hooks/warn-missing-characteristics.cjs +32 -0
  15. package/template/.claude/skills/adr-writer/SKILL.md +46 -78
  16. package/template/.claude/skills/adr-writer/references/adr-example.md +3 -6
  17. package/template/.claude/skills/adr-writer/references/adr-template.md +25 -46
  18. package/template/.claude/skills/tdd/dotnet-build-config.md +8 -0
  19. package/template/dotnet-scaffold/__SolutionName__.sln +77 -0
  20. package/template/dotnet-scaffold/global.json +6 -0
  21. package/template/dotnet-scaffold/src/__SolutionName__.Api/Program.cs +6 -0
  22. package/template/dotnet-scaffold/src/__SolutionName__.Api/Properties/launchSettings.json +38 -0
  23. package/template/dotnet-scaffold/src/__SolutionName__.Api/__SolutionName__.Api.csproj +15 -0
  24. package/template/dotnet-scaffold/src/__SolutionName__.Api/appsettings.Development.json +8 -0
  25. package/template/dotnet-scaffold/src/__SolutionName__.Api/appsettings.json +9 -0
  26. package/template/dotnet-scaffold/src/__SolutionName__.Api/obj/Debug/net10.0/.NETCoreApp,Version=v10.0.AssemblyAttributes.cs +4 -0
  27. package/template/dotnet-scaffold/src/__SolutionName__.Api/obj/Debug/net10.0/__SolutionName__.Api.AssemblyInfo.cs +22 -0
  28. package/template/dotnet-scaffold/src/__SolutionName__.Api/obj/Debug/net10.0/__SolutionName__.Api.AssemblyInfoInputs.cache +1 -0
  29. package/template/dotnet-scaffold/src/__SolutionName__.Api/obj/Debug/net10.0/__SolutionName__.Api.GeneratedMSBuildEditorConfig.editorconfig +23 -0
  30. package/template/dotnet-scaffold/src/__SolutionName__.Api/obj/Debug/net10.0/__SolutionName__.Api.GlobalUsings.g.cs +17 -0
  31. package/template/dotnet-scaffold/src/__SolutionName__.Api/obj/Debug/net10.0/__SolutionName__.Api.assets.cache +0 -0
  32. package/template/dotnet-scaffold/src/__SolutionName__.Api/obj/__SolutionName__.Api.csproj.nuget.dgspec.json +1536 -0
  33. package/template/dotnet-scaffold/src/__SolutionName__.Api/obj/__SolutionName__.Api.csproj.nuget.g.props +16 -0
  34. package/template/dotnet-scaffold/src/__SolutionName__.Api/obj/__SolutionName__.Api.csproj.nuget.g.targets +2 -0
  35. package/template/dotnet-scaffold/src/__SolutionName__.Api/obj/project.assets.json +559 -0
  36. package/template/dotnet-scaffold/src/__SolutionName__.Api/obj/project.nuget.cache +8 -0
  37. package/template/dotnet-scaffold/src/__SolutionName__.Application/__SolutionName__.Application.csproj +14 -0
  38. package/template/dotnet-scaffold/src/__SolutionName__.Application/obj/Debug/net10.0/.NETCoreApp,Version=v10.0.AssemblyAttributes.cs +4 -0
  39. package/template/dotnet-scaffold/src/__SolutionName__.Application/obj/Debug/net10.0/__SolutionName__.Application.AssemblyInfo.cs +22 -0
  40. package/template/dotnet-scaffold/src/__SolutionName__.Application/obj/Debug/net10.0/__SolutionName__.Application.AssemblyInfoInputs.cache +1 -0
  41. package/template/dotnet-scaffold/src/__SolutionName__.Application/obj/Debug/net10.0/__SolutionName__.Application.GeneratedMSBuildEditorConfig.editorconfig +17 -0
  42. package/template/dotnet-scaffold/src/__SolutionName__.Application/obj/Debug/net10.0/__SolutionName__.Application.GlobalUsings.g.cs +8 -0
  43. package/template/dotnet-scaffold/src/__SolutionName__.Application/obj/Debug/net10.0/__SolutionName__.Application.assets.cache +0 -0
  44. package/template/dotnet-scaffold/src/__SolutionName__.Application/obj/__SolutionName__.Application.csproj.nuget.dgspec.json +690 -0
  45. package/template/dotnet-scaffold/src/__SolutionName__.Application/obj/__SolutionName__.Application.csproj.nuget.g.props +16 -0
  46. package/template/dotnet-scaffold/src/__SolutionName__.Application/obj/__SolutionName__.Application.csproj.nuget.g.targets +2 -0
  47. package/template/dotnet-scaffold/src/__SolutionName__.Application/obj/project.assets.json +376 -0
  48. package/template/dotnet-scaffold/src/__SolutionName__.Application/obj/project.nuget.cache +8 -0
  49. package/template/dotnet-scaffold/src/__SolutionName__.Domain/__SolutionName__.Domain.csproj +24 -0
  50. package/template/dotnet-scaffold/src/__SolutionName__.Domain/obj/Debug/net10.0/.NETCoreApp,Version=v10.0.AssemblyAttributes.cs +4 -0
  51. package/template/dotnet-scaffold/src/__SolutionName__.Domain/obj/Debug/net10.0/__SolutionName__.Domain.AssemblyInfo.cs +22 -0
  52. package/template/dotnet-scaffold/src/__SolutionName__.Domain/obj/Debug/net10.0/__SolutionName__.Domain.AssemblyInfoInputs.cache +1 -0
  53. package/template/dotnet-scaffold/src/__SolutionName__.Domain/obj/Debug/net10.0/__SolutionName__.Domain.GeneratedMSBuildEditorConfig.editorconfig +17 -0
  54. package/template/dotnet-scaffold/src/__SolutionName__.Domain/obj/Debug/net10.0/__SolutionName__.Domain.GlobalUsings.g.cs +8 -0
  55. package/template/dotnet-scaffold/src/__SolutionName__.Domain/obj/Debug/net10.0/__SolutionName__.Domain.assets.cache +0 -0
  56. package/template/dotnet-scaffold/src/__SolutionName__.Domain/obj/__SolutionName__.Domain.csproj.nuget.dgspec.json +347 -0
  57. package/template/dotnet-scaffold/src/__SolutionName__.Domain/obj/__SolutionName__.Domain.csproj.nuget.g.props +16 -0
  58. package/template/dotnet-scaffold/src/__SolutionName__.Domain/obj/__SolutionName__.Domain.csproj.nuget.g.targets +2 -0
  59. package/template/dotnet-scaffold/src/__SolutionName__.Domain/obj/project.assets.json +353 -0
  60. package/template/dotnet-scaffold/src/__SolutionName__.Domain/obj/project.nuget.cache +8 -0
  61. package/template/dotnet-scaffold/src/__SolutionName__.Infrastructure/__SolutionName__.Infrastructure.csproj +20 -0
  62. package/template/dotnet-scaffold/src/__SolutionName__.Infrastructure/obj/Debug/net10.0/.NETCoreApp,Version=v10.0.AssemblyAttributes.cs +4 -0
  63. package/template/dotnet-scaffold/src/__SolutionName__.Infrastructure/obj/Debug/net10.0/__SolutionName__.Infrastructure.AssemblyInfo.cs +22 -0
  64. package/template/dotnet-scaffold/src/__SolutionName__.Infrastructure/obj/Debug/net10.0/__SolutionName__.Infrastructure.AssemblyInfoInputs.cache +1 -0
  65. package/template/dotnet-scaffold/src/__SolutionName__.Infrastructure/obj/Debug/net10.0/__SolutionName__.Infrastructure.GeneratedMSBuildEditorConfig.editorconfig +17 -0
  66. package/template/dotnet-scaffold/src/__SolutionName__.Infrastructure/obj/Debug/net10.0/__SolutionName__.Infrastructure.GlobalUsings.g.cs +8 -0
  67. package/template/dotnet-scaffold/src/__SolutionName__.Infrastructure/obj/Debug/net10.0/__SolutionName__.Infrastructure.assets.cache +0 -0
  68. package/template/dotnet-scaffold/src/__SolutionName__.Infrastructure/obj/Debug/net10.0/__SolutionName__.Infrastructure.csproj.AssemblyReference.cache +0 -0
  69. package/template/dotnet-scaffold/src/__SolutionName__.Infrastructure/obj/__SolutionName__.Infrastructure.csproj.nuget.dgspec.json +1047 -0
  70. package/template/dotnet-scaffold/src/__SolutionName__.Infrastructure/obj/__SolutionName__.Infrastructure.csproj.nuget.g.props +16 -0
  71. package/template/dotnet-scaffold/src/__SolutionName__.Infrastructure/obj/__SolutionName__.Infrastructure.csproj.nuget.g.targets +7 -0
  72. package/template/dotnet-scaffold/src/__SolutionName__.Infrastructure/obj/project.assets.json +858 -0
  73. package/template/dotnet-scaffold/src/__SolutionName__.Infrastructure/obj/project.nuget.cache +17 -0
  74. package/template/dotnet-scaffold/tests/__SolutionName__.Api.Tests/__SolutionName__.Api.Tests.csproj +31 -0
  75. package/template/dotnet-scaffold/tests/__SolutionName__.Api.Tests/bin/Debug/net10.0/.msCoverageSourceRootsMapping___SolutionName__.Api.Tests +0 -0
  76. package/template/dotnet-scaffold/tests/__SolutionName__.Api.Tests/obj/Debug/net10.0/.NETCoreApp,Version=v10.0.AssemblyAttributes.cs +4 -0
  77. package/template/dotnet-scaffold/tests/__SolutionName__.Api.Tests/obj/Debug/net10.0/__SolutionName__.Api.Tests.AssemblyInfo.cs +22 -0
  78. package/template/dotnet-scaffold/tests/__SolutionName__.Api.Tests/obj/Debug/net10.0/__SolutionName__.Api.Tests.AssemblyInfoInputs.cache +1 -0
  79. package/template/dotnet-scaffold/tests/__SolutionName__.Api.Tests/obj/Debug/net10.0/__SolutionName__.Api.Tests.GeneratedMSBuildEditorConfig.editorconfig +17 -0
  80. package/template/dotnet-scaffold/tests/__SolutionName__.Api.Tests/obj/Debug/net10.0/__SolutionName__.Api.Tests.GlobalUsings.g.cs +9 -0
  81. package/template/dotnet-scaffold/tests/__SolutionName__.Api.Tests/obj/Debug/net10.0/__SolutionName__.Api.Tests.assets.cache +0 -0
  82. package/template/dotnet-scaffold/tests/__SolutionName__.Api.Tests/obj/Debug/net10.0/__SolutionName__.Api.Tests.csproj.AssemblyReference.cache +0 -0
  83. package/template/dotnet-scaffold/tests/__SolutionName__.Api.Tests/obj/__SolutionName__.Api.Tests.csproj.nuget.dgspec.json +1908 -0
  84. package/template/dotnet-scaffold/tests/__SolutionName__.Api.Tests/obj/__SolutionName__.Api.Tests.csproj.nuget.g.props +27 -0
  85. package/template/dotnet-scaffold/tests/__SolutionName__.Api.Tests/obj/__SolutionName__.Api.Tests.csproj.nuget.g.targets +16 -0
  86. package/template/dotnet-scaffold/tests/__SolutionName__.Api.Tests/obj/project.assets.json +3283 -0
  87. package/template/dotnet-scaffold/tests/__SolutionName__.Api.Tests/obj/project.nuget.cache +60 -0
  88. package/template/dotnet-scaffold/tests/__SolutionName__.Application.Tests/__SolutionName__.Application.Tests.csproj +29 -0
  89. package/template/dotnet-scaffold/tests/__SolutionName__.Application.Tests/bin/Debug/net10.0/.msCoverageSourceRootsMapping___SolutionName__.Application.Tests +0 -0
  90. package/template/dotnet-scaffold/tests/__SolutionName__.Application.Tests/obj/Debug/net10.0/.NETCoreApp,Version=v10.0.AssemblyAttributes.cs +4 -0
  91. package/template/dotnet-scaffold/tests/__SolutionName__.Application.Tests/obj/Debug/net10.0/__SolutionName__.Application.Tests.AssemblyInfo.cs +22 -0
  92. package/template/dotnet-scaffold/tests/__SolutionName__.Application.Tests/obj/Debug/net10.0/__SolutionName__.Application.Tests.AssemblyInfoInputs.cache +1 -0
  93. package/template/dotnet-scaffold/tests/__SolutionName__.Application.Tests/obj/Debug/net10.0/__SolutionName__.Application.Tests.GeneratedMSBuildEditorConfig.editorconfig +17 -0
  94. package/template/dotnet-scaffold/tests/__SolutionName__.Application.Tests/obj/Debug/net10.0/__SolutionName__.Application.Tests.GlobalUsings.g.cs +9 -0
  95. package/template/dotnet-scaffold/tests/__SolutionName__.Application.Tests/obj/Debug/net10.0/__SolutionName__.Application.Tests.assets.cache +0 -0
  96. package/template/dotnet-scaffold/tests/__SolutionName__.Application.Tests/obj/Debug/net10.0/__SolutionName__.Application.Tests.csproj.AssemblyReference.cache +0 -0
  97. package/template/dotnet-scaffold/tests/__SolutionName__.Application.Tests/obj/__SolutionName__.Application.Tests.csproj.nuget.dgspec.json +1055 -0
  98. package/template/dotnet-scaffold/tests/__SolutionName__.Application.Tests/obj/__SolutionName__.Application.Tests.csproj.nuget.g.props +26 -0
  99. package/template/dotnet-scaffold/tests/__SolutionName__.Application.Tests/obj/__SolutionName__.Application.Tests.csproj.nuget.g.targets +11 -0
  100. package/template/dotnet-scaffold/tests/__SolutionName__.Application.Tests/obj/project.assets.json +1662 -0
  101. package/template/dotnet-scaffold/tests/__SolutionName__.Application.Tests/obj/project.nuget.cache +30 -0
  102. package/template/dotnet-scaffold/tests/__SolutionName__.Domain.Tests/__SolutionName__.Domain.Tests.csproj +29 -0
  103. package/template/dotnet-scaffold/tests/__SolutionName__.Domain.Tests/bin/Debug/net10.0/.msCoverageSourceRootsMapping___SolutionName__.Domain.Tests +0 -0
  104. package/template/dotnet-scaffold/tests/__SolutionName__.Domain.Tests/obj/Debug/net10.0/.NETCoreApp,Version=v10.0.AssemblyAttributes.cs +4 -0
  105. package/template/dotnet-scaffold/tests/__SolutionName__.Domain.Tests/obj/Debug/net10.0/__SolutionName__.Domain.Tests.AssemblyInfo.cs +22 -0
  106. package/template/dotnet-scaffold/tests/__SolutionName__.Domain.Tests/obj/Debug/net10.0/__SolutionName__.Domain.Tests.AssemblyInfoInputs.cache +1 -0
  107. package/template/dotnet-scaffold/tests/__SolutionName__.Domain.Tests/obj/Debug/net10.0/__SolutionName__.Domain.Tests.GeneratedMSBuildEditorConfig.editorconfig +17 -0
  108. package/template/dotnet-scaffold/tests/__SolutionName__.Domain.Tests/obj/Debug/net10.0/__SolutionName__.Domain.Tests.GlobalUsings.g.cs +9 -0
  109. package/template/dotnet-scaffold/tests/__SolutionName__.Domain.Tests/obj/Debug/net10.0/__SolutionName__.Domain.Tests.assets.cache +0 -0
  110. package/template/dotnet-scaffold/tests/__SolutionName__.Domain.Tests/obj/Debug/net10.0/__SolutionName__.Domain.Tests.csproj.AssemblyReference.cache +0 -0
  111. package/template/dotnet-scaffold/tests/__SolutionName__.Domain.Tests/obj/__SolutionName__.Domain.Tests.csproj.nuget.dgspec.json +712 -0
  112. package/template/dotnet-scaffold/tests/__SolutionName__.Domain.Tests/obj/__SolutionName__.Domain.Tests.csproj.nuget.g.props +26 -0
  113. package/template/dotnet-scaffold/tests/__SolutionName__.Domain.Tests/obj/__SolutionName__.Domain.Tests.csproj.nuget.g.targets +11 -0
  114. package/template/dotnet-scaffold/tests/__SolutionName__.Domain.Tests/obj/project.assets.json +1644 -0
  115. package/template/dotnet-scaffold/tests/__SolutionName__.Domain.Tests/obj/project.nuget.cache +30 -0
  116. package/template/dotnet-scaffold/tests/__SolutionName__.Infrastructure.Tests/__SolutionName__.Infrastructure.Tests.csproj +29 -0
  117. package/template/dotnet-scaffold/tests/__SolutionName__.Infrastructure.Tests/bin/Debug/net10.0/.msCoverageSourceRootsMapping___SolutionName__.Infrastructure.Tests +0 -0
  118. package/template/dotnet-scaffold/tests/__SolutionName__.Infrastructure.Tests/obj/Debug/net10.0/.NETCoreApp,Version=v10.0.AssemblyAttributes.cs +4 -0
  119. package/template/dotnet-scaffold/tests/__SolutionName__.Infrastructure.Tests/obj/Debug/net10.0/__SolutionName__.Infrastructure.Tests.AssemblyInfo.cs +22 -0
  120. package/template/dotnet-scaffold/tests/__SolutionName__.Infrastructure.Tests/obj/Debug/net10.0/__SolutionName__.Infrastructure.Tests.AssemblyInfoInputs.cache +1 -0
  121. package/template/dotnet-scaffold/tests/__SolutionName__.Infrastructure.Tests/obj/Debug/net10.0/__SolutionName__.Infrastructure.Tests.GeneratedMSBuildEditorConfig.editorconfig +17 -0
  122. package/template/dotnet-scaffold/tests/__SolutionName__.Infrastructure.Tests/obj/Debug/net10.0/__SolutionName__.Infrastructure.Tests.GlobalUsings.g.cs +9 -0
  123. package/template/dotnet-scaffold/tests/__SolutionName__.Infrastructure.Tests/obj/Debug/net10.0/__SolutionName__.Infrastructure.Tests.assets.cache +0 -0
  124. package/template/dotnet-scaffold/tests/__SolutionName__.Infrastructure.Tests/obj/Debug/net10.0/__SolutionName__.Infrastructure.Tests.csproj.AssemblyReference.cache +0 -0
  125. package/template/dotnet-scaffold/tests/__SolutionName__.Infrastructure.Tests/obj/__SolutionName__.Infrastructure.Tests.csproj.nuget.dgspec.json +1412 -0
  126. package/template/dotnet-scaffold/tests/__SolutionName__.Infrastructure.Tests/obj/__SolutionName__.Infrastructure.Tests.csproj.nuget.g.props +26 -0
  127. package/template/dotnet-scaffold/tests/__SolutionName__.Infrastructure.Tests/obj/__SolutionName__.Infrastructure.Tests.csproj.nuget.g.targets +13 -0
  128. package/template/dotnet-scaffold/tests/__SolutionName__.Infrastructure.Tests/obj/project.assets.json +2130 -0
  129. package/template/dotnet-scaffold/tests/__SolutionName__.Infrastructure.Tests/obj/project.nuget.cache +38 -0
@@ -0,0 +1,2130 @@
1
+ {
2
+ "version": 3,
3
+ "targets": {
4
+ "net10.0": {
5
+ "Castle.Core/5.1.1": {
6
+ "type": "package",
7
+ "dependencies": {
8
+ "System.Diagnostics.EventLog": "6.0.0"
9
+ },
10
+ "compile": {
11
+ "lib/net6.0/Castle.Core.dll": {
12
+ "related": ".xml"
13
+ }
14
+ },
15
+ "runtime": {
16
+ "lib/net6.0/Castle.Core.dll": {
17
+ "related": ".xml"
18
+ }
19
+ }
20
+ },
21
+ "DiffEngine/11.3.0": {
22
+ "type": "package",
23
+ "dependencies": {
24
+ "EmptyFiles": "4.4.0",
25
+ "System.Management": "6.0.1"
26
+ },
27
+ "compile": {
28
+ "lib/net7.0/DiffEngine.dll": {
29
+ "related": ".xml"
30
+ }
31
+ },
32
+ "runtime": {
33
+ "lib/net7.0/DiffEngine.dll": {
34
+ "related": ".xml"
35
+ }
36
+ }
37
+ },
38
+ "EmptyFiles/4.4.0": {
39
+ "type": "package",
40
+ "compile": {
41
+ "lib/net7.0/EmptyFiles.dll": {
42
+ "related": ".xml"
43
+ }
44
+ },
45
+ "runtime": {
46
+ "lib/net7.0/EmptyFiles.dll": {
47
+ "related": ".xml"
48
+ }
49
+ },
50
+ "build": {
51
+ "buildTransitive/EmptyFiles.targets": {}
52
+ }
53
+ },
54
+ "Microsoft.CodeCoverage/18.7.0": {
55
+ "type": "package",
56
+ "compile": {
57
+ "lib/net8.0/Microsoft.VisualStudio.CodeCoverage.Shim.dll": {}
58
+ },
59
+ "runtime": {
60
+ "lib/net8.0/Microsoft.VisualStudio.CodeCoverage.Shim.dll": {}
61
+ },
62
+ "build": {
63
+ "build/netstandard2.0/Microsoft.CodeCoverage.props": {},
64
+ "build/netstandard2.0/Microsoft.CodeCoverage.targets": {}
65
+ }
66
+ },
67
+ "Microsoft.Extensions.Configuration.Abstractions/10.0.0": {
68
+ "type": "package",
69
+ "dependencies": {
70
+ "Microsoft.Extensions.Primitives": "10.0.0"
71
+ },
72
+ "compile": {
73
+ "lib/net10.0/Microsoft.Extensions.Configuration.Abstractions.dll": {
74
+ "related": ".xml"
75
+ }
76
+ },
77
+ "runtime": {
78
+ "lib/net10.0/Microsoft.Extensions.Configuration.Abstractions.dll": {
79
+ "related": ".xml"
80
+ }
81
+ },
82
+ "build": {
83
+ "buildTransitive/net8.0/_._": {}
84
+ }
85
+ },
86
+ "Microsoft.Extensions.DependencyInjection.Abstractions/10.0.0": {
87
+ "type": "package",
88
+ "compile": {
89
+ "lib/net10.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {
90
+ "related": ".xml"
91
+ }
92
+ },
93
+ "runtime": {
94
+ "lib/net10.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {
95
+ "related": ".xml"
96
+ }
97
+ },
98
+ "build": {
99
+ "buildTransitive/net8.0/_._": {}
100
+ }
101
+ },
102
+ "Microsoft.Extensions.Diagnostics.Abstractions/10.0.0": {
103
+ "type": "package",
104
+ "dependencies": {
105
+ "Microsoft.Extensions.DependencyInjection.Abstractions": "10.0.0",
106
+ "Microsoft.Extensions.Options": "10.0.0"
107
+ },
108
+ "compile": {
109
+ "lib/net10.0/Microsoft.Extensions.Diagnostics.Abstractions.dll": {
110
+ "related": ".xml"
111
+ }
112
+ },
113
+ "runtime": {
114
+ "lib/net10.0/Microsoft.Extensions.Diagnostics.Abstractions.dll": {
115
+ "related": ".xml"
116
+ }
117
+ },
118
+ "build": {
119
+ "buildTransitive/net8.0/_._": {}
120
+ }
121
+ },
122
+ "Microsoft.Extensions.FileProviders.Abstractions/10.0.0": {
123
+ "type": "package",
124
+ "dependencies": {
125
+ "Microsoft.Extensions.Primitives": "10.0.0"
126
+ },
127
+ "compile": {
128
+ "lib/net10.0/Microsoft.Extensions.FileProviders.Abstractions.dll": {
129
+ "related": ".xml"
130
+ }
131
+ },
132
+ "runtime": {
133
+ "lib/net10.0/Microsoft.Extensions.FileProviders.Abstractions.dll": {
134
+ "related": ".xml"
135
+ }
136
+ },
137
+ "build": {
138
+ "buildTransitive/net8.0/_._": {}
139
+ }
140
+ },
141
+ "Microsoft.Extensions.Hosting.Abstractions/10.0.0": {
142
+ "type": "package",
143
+ "dependencies": {
144
+ "Microsoft.Extensions.Configuration.Abstractions": "10.0.0",
145
+ "Microsoft.Extensions.DependencyInjection.Abstractions": "10.0.0",
146
+ "Microsoft.Extensions.Diagnostics.Abstractions": "10.0.0",
147
+ "Microsoft.Extensions.FileProviders.Abstractions": "10.0.0",
148
+ "Microsoft.Extensions.Logging.Abstractions": "10.0.0"
149
+ },
150
+ "compile": {
151
+ "lib/net10.0/Microsoft.Extensions.Hosting.Abstractions.dll": {
152
+ "related": ".xml"
153
+ }
154
+ },
155
+ "runtime": {
156
+ "lib/net10.0/Microsoft.Extensions.Hosting.Abstractions.dll": {
157
+ "related": ".xml"
158
+ }
159
+ },
160
+ "build": {
161
+ "buildTransitive/net8.0/_._": {}
162
+ }
163
+ },
164
+ "Microsoft.Extensions.Logging.Abstractions/10.0.0": {
165
+ "type": "package",
166
+ "dependencies": {
167
+ "Microsoft.Extensions.DependencyInjection.Abstractions": "10.0.0"
168
+ },
169
+ "compile": {
170
+ "lib/net10.0/Microsoft.Extensions.Logging.Abstractions.dll": {
171
+ "related": ".xml"
172
+ }
173
+ },
174
+ "runtime": {
175
+ "lib/net10.0/Microsoft.Extensions.Logging.Abstractions.dll": {
176
+ "related": ".xml"
177
+ }
178
+ },
179
+ "build": {
180
+ "buildTransitive/net8.0/Microsoft.Extensions.Logging.Abstractions.targets": {}
181
+ }
182
+ },
183
+ "Microsoft.Extensions.Options/10.0.0": {
184
+ "type": "package",
185
+ "dependencies": {
186
+ "Microsoft.Extensions.DependencyInjection.Abstractions": "10.0.0",
187
+ "Microsoft.Extensions.Primitives": "10.0.0"
188
+ },
189
+ "compile": {
190
+ "lib/net10.0/Microsoft.Extensions.Options.dll": {
191
+ "related": ".xml"
192
+ }
193
+ },
194
+ "runtime": {
195
+ "lib/net10.0/Microsoft.Extensions.Options.dll": {
196
+ "related": ".xml"
197
+ }
198
+ },
199
+ "build": {
200
+ "buildTransitive/net8.0/Microsoft.Extensions.Options.targets": {}
201
+ }
202
+ },
203
+ "Microsoft.Extensions.Primitives/10.0.0": {
204
+ "type": "package",
205
+ "compile": {
206
+ "lib/net10.0/Microsoft.Extensions.Primitives.dll": {
207
+ "related": ".xml"
208
+ }
209
+ },
210
+ "runtime": {
211
+ "lib/net10.0/Microsoft.Extensions.Primitives.dll": {
212
+ "related": ".xml"
213
+ }
214
+ },
215
+ "build": {
216
+ "buildTransitive/net8.0/_._": {}
217
+ }
218
+ },
219
+ "Microsoft.NET.Test.Sdk/18.7.0": {
220
+ "type": "package",
221
+ "dependencies": {
222
+ "Microsoft.CodeCoverage": "18.7.0",
223
+ "Microsoft.TestPlatform.TestHost": "18.7.0"
224
+ },
225
+ "compile": {
226
+ "lib/net8.0/_._": {}
227
+ },
228
+ "runtime": {
229
+ "lib/net8.0/_._": {}
230
+ },
231
+ "build": {
232
+ "build/net8.0/Microsoft.NET.Test.Sdk.props": {},
233
+ "build/net8.0/Microsoft.NET.Test.Sdk.targets": {}
234
+ }
235
+ },
236
+ "Microsoft.TestPlatform.ObjectModel/18.7.0": {
237
+ "type": "package",
238
+ "compile": {
239
+ "lib/net8.0/Microsoft.TestPlatform.CoreUtilities.dll": {},
240
+ "lib/net8.0/Microsoft.TestPlatform.PlatformAbstractions.dll": {},
241
+ "lib/net8.0/Microsoft.VisualStudio.TestPlatform.ObjectModel.dll": {}
242
+ },
243
+ "runtime": {
244
+ "lib/net8.0/Microsoft.TestPlatform.CoreUtilities.dll": {},
245
+ "lib/net8.0/Microsoft.TestPlatform.PlatformAbstractions.dll": {},
246
+ "lib/net8.0/Microsoft.VisualStudio.TestPlatform.ObjectModel.dll": {}
247
+ },
248
+ "resource": {
249
+ "lib/net8.0/cs/Microsoft.TestPlatform.CoreUtilities.resources.dll": {
250
+ "locale": "cs"
251
+ },
252
+ "lib/net8.0/cs/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": {
253
+ "locale": "cs"
254
+ },
255
+ "lib/net8.0/de/Microsoft.TestPlatform.CoreUtilities.resources.dll": {
256
+ "locale": "de"
257
+ },
258
+ "lib/net8.0/de/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": {
259
+ "locale": "de"
260
+ },
261
+ "lib/net8.0/es/Microsoft.TestPlatform.CoreUtilities.resources.dll": {
262
+ "locale": "es"
263
+ },
264
+ "lib/net8.0/es/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": {
265
+ "locale": "es"
266
+ },
267
+ "lib/net8.0/fr/Microsoft.TestPlatform.CoreUtilities.resources.dll": {
268
+ "locale": "fr"
269
+ },
270
+ "lib/net8.0/fr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": {
271
+ "locale": "fr"
272
+ },
273
+ "lib/net8.0/it/Microsoft.TestPlatform.CoreUtilities.resources.dll": {
274
+ "locale": "it"
275
+ },
276
+ "lib/net8.0/it/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": {
277
+ "locale": "it"
278
+ },
279
+ "lib/net8.0/ja/Microsoft.TestPlatform.CoreUtilities.resources.dll": {
280
+ "locale": "ja"
281
+ },
282
+ "lib/net8.0/ja/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": {
283
+ "locale": "ja"
284
+ },
285
+ "lib/net8.0/ko/Microsoft.TestPlatform.CoreUtilities.resources.dll": {
286
+ "locale": "ko"
287
+ },
288
+ "lib/net8.0/ko/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": {
289
+ "locale": "ko"
290
+ },
291
+ "lib/net8.0/pl/Microsoft.TestPlatform.CoreUtilities.resources.dll": {
292
+ "locale": "pl"
293
+ },
294
+ "lib/net8.0/pl/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": {
295
+ "locale": "pl"
296
+ },
297
+ "lib/net8.0/pt-BR/Microsoft.TestPlatform.CoreUtilities.resources.dll": {
298
+ "locale": "pt-BR"
299
+ },
300
+ "lib/net8.0/pt-BR/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": {
301
+ "locale": "pt-BR"
302
+ },
303
+ "lib/net8.0/ru/Microsoft.TestPlatform.CoreUtilities.resources.dll": {
304
+ "locale": "ru"
305
+ },
306
+ "lib/net8.0/ru/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": {
307
+ "locale": "ru"
308
+ },
309
+ "lib/net8.0/tr/Microsoft.TestPlatform.CoreUtilities.resources.dll": {
310
+ "locale": "tr"
311
+ },
312
+ "lib/net8.0/tr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": {
313
+ "locale": "tr"
314
+ },
315
+ "lib/net8.0/zh-Hans/Microsoft.TestPlatform.CoreUtilities.resources.dll": {
316
+ "locale": "zh-Hans"
317
+ },
318
+ "lib/net8.0/zh-Hans/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": {
319
+ "locale": "zh-Hans"
320
+ },
321
+ "lib/net8.0/zh-Hant/Microsoft.TestPlatform.CoreUtilities.resources.dll": {
322
+ "locale": "zh-Hant"
323
+ },
324
+ "lib/net8.0/zh-Hant/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": {
325
+ "locale": "zh-Hant"
326
+ }
327
+ }
328
+ },
329
+ "Microsoft.TestPlatform.TestHost/18.7.0": {
330
+ "type": "package",
331
+ "dependencies": {
332
+ "Microsoft.TestPlatform.ObjectModel": "18.7.0",
333
+ "Newtonsoft.Json": "13.0.3"
334
+ },
335
+ "compile": {
336
+ "lib/net8.0/Microsoft.TestPlatform.CommunicationUtilities.dll": {},
337
+ "lib/net8.0/Microsoft.TestPlatform.CoreUtilities.dll": {},
338
+ "lib/net8.0/Microsoft.TestPlatform.CrossPlatEngine.dll": {},
339
+ "lib/net8.0/Microsoft.TestPlatform.PlatformAbstractions.dll": {},
340
+ "lib/net8.0/Microsoft.TestPlatform.Utilities.dll": {},
341
+ "lib/net8.0/Microsoft.VisualStudio.TestPlatform.Common.dll": {},
342
+ "lib/net8.0/Microsoft.VisualStudio.TestPlatform.ObjectModel.dll": {},
343
+ "lib/net8.0/testhost.dll": {
344
+ "related": ".deps.json"
345
+ }
346
+ },
347
+ "runtime": {
348
+ "lib/net8.0/Microsoft.TestPlatform.CommunicationUtilities.dll": {},
349
+ "lib/net8.0/Microsoft.TestPlatform.CoreUtilities.dll": {},
350
+ "lib/net8.0/Microsoft.TestPlatform.CrossPlatEngine.dll": {},
351
+ "lib/net8.0/Microsoft.TestPlatform.PlatformAbstractions.dll": {},
352
+ "lib/net8.0/Microsoft.TestPlatform.Utilities.dll": {},
353
+ "lib/net8.0/Microsoft.VisualStudio.TestPlatform.Common.dll": {},
354
+ "lib/net8.0/Microsoft.VisualStudio.TestPlatform.ObjectModel.dll": {},
355
+ "lib/net8.0/testhost.dll": {
356
+ "related": ".deps.json"
357
+ }
358
+ },
359
+ "resource": {
360
+ "lib/net8.0/cs/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": {
361
+ "locale": "cs"
362
+ },
363
+ "lib/net8.0/cs/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": {
364
+ "locale": "cs"
365
+ },
366
+ "lib/net8.0/cs/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": {
367
+ "locale": "cs"
368
+ },
369
+ "lib/net8.0/de/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": {
370
+ "locale": "de"
371
+ },
372
+ "lib/net8.0/de/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": {
373
+ "locale": "de"
374
+ },
375
+ "lib/net8.0/de/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": {
376
+ "locale": "de"
377
+ },
378
+ "lib/net8.0/es/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": {
379
+ "locale": "es"
380
+ },
381
+ "lib/net8.0/es/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": {
382
+ "locale": "es"
383
+ },
384
+ "lib/net8.0/es/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": {
385
+ "locale": "es"
386
+ },
387
+ "lib/net8.0/fr/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": {
388
+ "locale": "fr"
389
+ },
390
+ "lib/net8.0/fr/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": {
391
+ "locale": "fr"
392
+ },
393
+ "lib/net8.0/fr/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": {
394
+ "locale": "fr"
395
+ },
396
+ "lib/net8.0/it/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": {
397
+ "locale": "it"
398
+ },
399
+ "lib/net8.0/it/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": {
400
+ "locale": "it"
401
+ },
402
+ "lib/net8.0/it/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": {
403
+ "locale": "it"
404
+ },
405
+ "lib/net8.0/ja/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": {
406
+ "locale": "ja"
407
+ },
408
+ "lib/net8.0/ja/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": {
409
+ "locale": "ja"
410
+ },
411
+ "lib/net8.0/ja/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": {
412
+ "locale": "ja"
413
+ },
414
+ "lib/net8.0/ko/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": {
415
+ "locale": "ko"
416
+ },
417
+ "lib/net8.0/ko/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": {
418
+ "locale": "ko"
419
+ },
420
+ "lib/net8.0/ko/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": {
421
+ "locale": "ko"
422
+ },
423
+ "lib/net8.0/pl/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": {
424
+ "locale": "pl"
425
+ },
426
+ "lib/net8.0/pl/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": {
427
+ "locale": "pl"
428
+ },
429
+ "lib/net8.0/pl/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": {
430
+ "locale": "pl"
431
+ },
432
+ "lib/net8.0/pt-BR/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": {
433
+ "locale": "pt-BR"
434
+ },
435
+ "lib/net8.0/pt-BR/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": {
436
+ "locale": "pt-BR"
437
+ },
438
+ "lib/net8.0/pt-BR/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": {
439
+ "locale": "pt-BR"
440
+ },
441
+ "lib/net8.0/ru/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": {
442
+ "locale": "ru"
443
+ },
444
+ "lib/net8.0/ru/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": {
445
+ "locale": "ru"
446
+ },
447
+ "lib/net8.0/ru/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": {
448
+ "locale": "ru"
449
+ },
450
+ "lib/net8.0/tr/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": {
451
+ "locale": "tr"
452
+ },
453
+ "lib/net8.0/tr/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": {
454
+ "locale": "tr"
455
+ },
456
+ "lib/net8.0/tr/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": {
457
+ "locale": "tr"
458
+ },
459
+ "lib/net8.0/zh-Hans/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": {
460
+ "locale": "zh-Hans"
461
+ },
462
+ "lib/net8.0/zh-Hans/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": {
463
+ "locale": "zh-Hans"
464
+ },
465
+ "lib/net8.0/zh-Hans/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": {
466
+ "locale": "zh-Hans"
467
+ },
468
+ "lib/net8.0/zh-Hant/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": {
469
+ "locale": "zh-Hant"
470
+ },
471
+ "lib/net8.0/zh-Hant/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": {
472
+ "locale": "zh-Hant"
473
+ },
474
+ "lib/net8.0/zh-Hant/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": {
475
+ "locale": "zh-Hant"
476
+ }
477
+ },
478
+ "build": {
479
+ "build/net8.0/Microsoft.TestPlatform.TestHost.props": {},
480
+ "build/net8.0/Microsoft.TestPlatform.TestHost.targets": {}
481
+ }
482
+ },
483
+ "Newtonsoft.Json/13.0.3": {
484
+ "type": "package",
485
+ "compile": {
486
+ "lib/net6.0/Newtonsoft.Json.dll": {
487
+ "related": ".xml"
488
+ }
489
+ },
490
+ "runtime": {
491
+ "lib/net6.0/Newtonsoft.Json.dll": {
492
+ "related": ".xml"
493
+ }
494
+ }
495
+ },
496
+ "NSubstitute/5.3.0": {
497
+ "type": "package",
498
+ "dependencies": {
499
+ "Castle.Core": "5.1.1"
500
+ },
501
+ "compile": {
502
+ "lib/net6.0/NSubstitute.dll": {
503
+ "related": ".xml"
504
+ }
505
+ },
506
+ "runtime": {
507
+ "lib/net6.0/NSubstitute.dll": {
508
+ "related": ".xml"
509
+ }
510
+ }
511
+ },
512
+ "Shouldly/4.3.0": {
513
+ "type": "package",
514
+ "dependencies": {
515
+ "DiffEngine": "11.3.0",
516
+ "EmptyFiles": "4.4.0"
517
+ },
518
+ "compile": {
519
+ "lib/net9.0/Shouldly.dll": {
520
+ "related": ".xml"
521
+ }
522
+ },
523
+ "runtime": {
524
+ "lib/net9.0/Shouldly.dll": {
525
+ "related": ".xml"
526
+ }
527
+ },
528
+ "build": {
529
+ "buildTransitive/Shouldly.targets": {}
530
+ }
531
+ },
532
+ "System.CodeDom/6.0.0": {
533
+ "type": "package",
534
+ "compile": {
535
+ "lib/net6.0/System.CodeDom.dll": {
536
+ "related": ".xml"
537
+ }
538
+ },
539
+ "runtime": {
540
+ "lib/net6.0/System.CodeDom.dll": {
541
+ "related": ".xml"
542
+ }
543
+ },
544
+ "build": {
545
+ "buildTransitive/netcoreapp3.1/_._": {}
546
+ }
547
+ },
548
+ "System.Diagnostics.EventLog/6.0.0": {
549
+ "type": "package",
550
+ "compile": {
551
+ "lib/net6.0/System.Diagnostics.EventLog.dll": {
552
+ "related": ".xml"
553
+ }
554
+ },
555
+ "runtime": {
556
+ "lib/net6.0/System.Diagnostics.EventLog.dll": {
557
+ "related": ".xml"
558
+ }
559
+ },
560
+ "build": {
561
+ "buildTransitive/netcoreapp3.1/_._": {}
562
+ },
563
+ "runtimeTargets": {
564
+ "runtimes/win/lib/net6.0/System.Diagnostics.EventLog.Messages.dll": {
565
+ "assetType": "runtime",
566
+ "rid": "win"
567
+ },
568
+ "runtimes/win/lib/net6.0/System.Diagnostics.EventLog.dll": {
569
+ "assetType": "runtime",
570
+ "rid": "win"
571
+ }
572
+ }
573
+ },
574
+ "System.Management/6.0.1": {
575
+ "type": "package",
576
+ "dependencies": {
577
+ "System.CodeDom": "6.0.0"
578
+ },
579
+ "compile": {
580
+ "lib/net6.0/System.Management.dll": {
581
+ "related": ".xml"
582
+ }
583
+ },
584
+ "runtime": {
585
+ "lib/net6.0/System.Management.dll": {
586
+ "related": ".xml"
587
+ }
588
+ },
589
+ "build": {
590
+ "buildTransitive/netcoreapp3.1/_._": {}
591
+ },
592
+ "runtimeTargets": {
593
+ "runtimes/win/lib/net6.0/System.Management.dll": {
594
+ "assetType": "runtime",
595
+ "rid": "win"
596
+ }
597
+ }
598
+ },
599
+ "xunit/2.9.3": {
600
+ "type": "package",
601
+ "dependencies": {
602
+ "xunit.analyzers": "1.18.0",
603
+ "xunit.assert": "2.9.3",
604
+ "xunit.core": "[2.9.3]"
605
+ }
606
+ },
607
+ "xunit.abstractions/2.0.3": {
608
+ "type": "package",
609
+ "compile": {
610
+ "lib/netstandard2.0/xunit.abstractions.dll": {
611
+ "related": ".xml"
612
+ }
613
+ },
614
+ "runtime": {
615
+ "lib/netstandard2.0/xunit.abstractions.dll": {
616
+ "related": ".xml"
617
+ }
618
+ }
619
+ },
620
+ "xunit.analyzers/1.18.0": {
621
+ "type": "package"
622
+ },
623
+ "xunit.assert/2.9.3": {
624
+ "type": "package",
625
+ "compile": {
626
+ "lib/net6.0/xunit.assert.dll": {
627
+ "related": ".xml"
628
+ }
629
+ },
630
+ "runtime": {
631
+ "lib/net6.0/xunit.assert.dll": {
632
+ "related": ".xml"
633
+ }
634
+ }
635
+ },
636
+ "xunit.core/2.9.3": {
637
+ "type": "package",
638
+ "dependencies": {
639
+ "xunit.extensibility.core": "[2.9.3]",
640
+ "xunit.extensibility.execution": "[2.9.3]"
641
+ },
642
+ "build": {
643
+ "build/xunit.core.props": {},
644
+ "build/xunit.core.targets": {}
645
+ },
646
+ "buildMultiTargeting": {
647
+ "buildMultiTargeting/xunit.core.props": {},
648
+ "buildMultiTargeting/xunit.core.targets": {}
649
+ }
650
+ },
651
+ "xunit.extensibility.core/2.9.3": {
652
+ "type": "package",
653
+ "dependencies": {
654
+ "xunit.abstractions": "2.0.3"
655
+ },
656
+ "compile": {
657
+ "lib/netstandard1.1/xunit.core.dll": {
658
+ "related": ".xml"
659
+ }
660
+ },
661
+ "runtime": {
662
+ "lib/netstandard1.1/xunit.core.dll": {
663
+ "related": ".xml"
664
+ }
665
+ }
666
+ },
667
+ "xunit.extensibility.execution/2.9.3": {
668
+ "type": "package",
669
+ "dependencies": {
670
+ "xunit.extensibility.core": "[2.9.3]"
671
+ },
672
+ "compile": {
673
+ "lib/netstandard1.1/xunit.execution.dotnet.dll": {
674
+ "related": ".xml"
675
+ }
676
+ },
677
+ "runtime": {
678
+ "lib/netstandard1.1/xunit.execution.dotnet.dll": {
679
+ "related": ".xml"
680
+ }
681
+ }
682
+ },
683
+ "xunit.runner.visualstudio/3.1.5": {
684
+ "type": "package",
685
+ "compile": {
686
+ "lib/net8.0/_._": {}
687
+ },
688
+ "runtime": {
689
+ "lib/net8.0/_._": {}
690
+ },
691
+ "build": {
692
+ "build/net8.0/xunit.runner.visualstudio.props": {}
693
+ }
694
+ },
695
+ "__SolutionName__.Application/1.0.0": {
696
+ "type": "project",
697
+ "framework": ".NETCoreApp,Version=v10.0",
698
+ "dependencies": {
699
+ "__SolutionName__.Domain": "1.0.0"
700
+ },
701
+ "compile": {
702
+ "bin/placeholder/__SolutionName__.Application.dll": {}
703
+ },
704
+ "runtime": {
705
+ "bin/placeholder/__SolutionName__.Application.dll": {}
706
+ }
707
+ },
708
+ "__SolutionName__.Domain/1.0.0": {
709
+ "type": "project",
710
+ "framework": ".NETCoreApp,Version=v10.0",
711
+ "compile": {
712
+ "bin/placeholder/__SolutionName__.Domain.dll": {}
713
+ },
714
+ "runtime": {
715
+ "bin/placeholder/__SolutionName__.Domain.dll": {}
716
+ }
717
+ },
718
+ "__SolutionName__.Infrastructure/1.0.0": {
719
+ "type": "project",
720
+ "framework": ".NETCoreApp,Version=v10.0",
721
+ "dependencies": {
722
+ "Microsoft.Extensions.DependencyInjection.Abstractions": "10.0.0",
723
+ "Microsoft.Extensions.Hosting.Abstractions": "10.0.0",
724
+ "Microsoft.Extensions.Logging.Abstractions": "10.0.0",
725
+ "__SolutionName__.Application": "1.0.0"
726
+ },
727
+ "compile": {
728
+ "bin/placeholder/__SolutionName__.Infrastructure.dll": {}
729
+ },
730
+ "runtime": {
731
+ "bin/placeholder/__SolutionName__.Infrastructure.dll": {}
732
+ }
733
+ }
734
+ }
735
+ },
736
+ "libraries": {
737
+ "Castle.Core/5.1.1": {
738
+ "sha512": "rpYtIczkzGpf+EkZgDr9CClTdemhsrwA/W5hMoPjLkRFnXzH44zDLoovXeKtmxb1ykXK9aJVODSpiJml8CTw2g==",
739
+ "type": "package",
740
+ "path": "castle.core/5.1.1",
741
+ "files": [
742
+ ".nupkg.metadata",
743
+ ".signature.p7s",
744
+ "ASL - Apache Software Foundation License.txt",
745
+ "CHANGELOG.md",
746
+ "LICENSE",
747
+ "castle-logo.png",
748
+ "castle.core.5.1.1.nupkg.sha512",
749
+ "castle.core.nuspec",
750
+ "lib/net462/Castle.Core.dll",
751
+ "lib/net462/Castle.Core.xml",
752
+ "lib/net6.0/Castle.Core.dll",
753
+ "lib/net6.0/Castle.Core.xml",
754
+ "lib/netstandard2.0/Castle.Core.dll",
755
+ "lib/netstandard2.0/Castle.Core.xml",
756
+ "lib/netstandard2.1/Castle.Core.dll",
757
+ "lib/netstandard2.1/Castle.Core.xml",
758
+ "readme.txt"
759
+ ]
760
+ },
761
+ "DiffEngine/11.3.0": {
762
+ "sha512": "k0ZgZqd09jLZQjR8FyQbSQE86Q7QZnjEzq1LPHtj1R2AoWO8sjV5x+jlSisL7NZAbUOI4y+7Bog8gkr9WIRBGw==",
763
+ "type": "package",
764
+ "path": "diffengine/11.3.0",
765
+ "files": [
766
+ ".nupkg.metadata",
767
+ ".signature.p7s",
768
+ "diffengine.11.3.0.nupkg.sha512",
769
+ "diffengine.nuspec",
770
+ "icon.png",
771
+ "lib/net461/DiffEngine.dll",
772
+ "lib/net461/DiffEngine.xml",
773
+ "lib/net48/DiffEngine.dll",
774
+ "lib/net48/DiffEngine.xml",
775
+ "lib/net5.0/DiffEngine.dll",
776
+ "lib/net5.0/DiffEngine.xml",
777
+ "lib/net6.0/DiffEngine.dll",
778
+ "lib/net6.0/DiffEngine.xml",
779
+ "lib/net7.0/DiffEngine.dll",
780
+ "lib/net7.0/DiffEngine.xml",
781
+ "lib/netcoreapp2.0/DiffEngine.dll",
782
+ "lib/netcoreapp2.0/DiffEngine.xml",
783
+ "lib/netcoreapp2.1/DiffEngine.dll",
784
+ "lib/netcoreapp2.1/DiffEngine.xml",
785
+ "lib/netcoreapp3.0/DiffEngine.dll",
786
+ "lib/netcoreapp3.0/DiffEngine.xml",
787
+ "lib/netcoreapp3.1/DiffEngine.dll",
788
+ "lib/netcoreapp3.1/DiffEngine.xml",
789
+ "lib/netstandard2.0/DiffEngine.dll",
790
+ "lib/netstandard2.0/DiffEngine.xml",
791
+ "lib/netstandard2.1/DiffEngine.dll",
792
+ "lib/netstandard2.1/DiffEngine.xml"
793
+ ]
794
+ },
795
+ "EmptyFiles/4.4.0": {
796
+ "sha512": "gwJEfIGS7FhykvtZoscwXj/XwW+mJY6UbAZk+qtLKFUGWC95kfKXnj8VkxsZQnWBxJemM/q664rGLN5nf+OHZw==",
797
+ "type": "package",
798
+ "path": "emptyfiles/4.4.0",
799
+ "files": [
800
+ ".nupkg.metadata",
801
+ ".signature.p7s",
802
+ "EmptyFiles/archive/empty.7z",
803
+ "EmptyFiles/archive/empty.bz2",
804
+ "EmptyFiles/archive/empty.gz",
805
+ "EmptyFiles/archive/empty.tar",
806
+ "EmptyFiles/archive/empty.xz",
807
+ "EmptyFiles/archive/empty.zip",
808
+ "EmptyFiles/document/empty.docx",
809
+ "EmptyFiles/document/empty.odt",
810
+ "EmptyFiles/document/empty.pdf",
811
+ "EmptyFiles/document/empty.rtf",
812
+ "EmptyFiles/image/empty.avif",
813
+ "EmptyFiles/image/empty.bmp",
814
+ "EmptyFiles/image/empty.dds",
815
+ "EmptyFiles/image/empty.dib",
816
+ "EmptyFiles/image/empty.emf",
817
+ "EmptyFiles/image/empty.exif",
818
+ "EmptyFiles/image/empty.gif",
819
+ "EmptyFiles/image/empty.heic",
820
+ "EmptyFiles/image/empty.heif",
821
+ "EmptyFiles/image/empty.ico",
822
+ "EmptyFiles/image/empty.j2c",
823
+ "EmptyFiles/image/empty.jfif",
824
+ "EmptyFiles/image/empty.jp2",
825
+ "EmptyFiles/image/empty.jpc",
826
+ "EmptyFiles/image/empty.jpe",
827
+ "EmptyFiles/image/empty.jpg",
828
+ "EmptyFiles/image/empty.jxr",
829
+ "EmptyFiles/image/empty.pbm",
830
+ "EmptyFiles/image/empty.pcx",
831
+ "EmptyFiles/image/empty.pgm",
832
+ "EmptyFiles/image/empty.png",
833
+ "EmptyFiles/image/empty.ppm",
834
+ "EmptyFiles/image/empty.rle",
835
+ "EmptyFiles/image/empty.tga",
836
+ "EmptyFiles/image/empty.tif",
837
+ "EmptyFiles/image/empty.wdp",
838
+ "EmptyFiles/image/empty.webp",
839
+ "EmptyFiles/image/empty.wmp",
840
+ "EmptyFiles/sheet/empty.ods",
841
+ "EmptyFiles/sheet/empty.xlsx",
842
+ "EmptyFiles/slide/empty.odp",
843
+ "EmptyFiles/slide/empty.pptx",
844
+ "build/EmptyFiles.targets",
845
+ "buildTransitive/EmptyFiles.targets",
846
+ "emptyfiles.4.4.0.nupkg.sha512",
847
+ "emptyfiles.nuspec",
848
+ "icon.png",
849
+ "lib/net461/EmptyFiles.dll",
850
+ "lib/net461/EmptyFiles.xml",
851
+ "lib/net5.0/EmptyFiles.dll",
852
+ "lib/net5.0/EmptyFiles.xml",
853
+ "lib/net6.0/EmptyFiles.dll",
854
+ "lib/net6.0/EmptyFiles.xml",
855
+ "lib/net7.0/EmptyFiles.dll",
856
+ "lib/net7.0/EmptyFiles.xml",
857
+ "lib/netstandard2.0/EmptyFiles.dll",
858
+ "lib/netstandard2.0/EmptyFiles.xml",
859
+ "lib/netstandard2.1/EmptyFiles.dll",
860
+ "lib/netstandard2.1/EmptyFiles.xml"
861
+ ]
862
+ },
863
+ "Microsoft.CodeCoverage/18.7.0": {
864
+ "sha512": "+wFfx9s7D9wegM0RziXMj2kvYDT4qcqXXtyjiQwSZOGQ2wwcOAJQcD6eQXk02jt0MvRNawtp8TJxTrV+wD8X1g==",
865
+ "type": "package",
866
+ "path": "microsoft.codecoverage/18.7.0",
867
+ "files": [
868
+ ".nupkg.metadata",
869
+ ".signature.p7s",
870
+ "Icon.png",
871
+ "PACKAGE.md",
872
+ "README.md",
873
+ "ThirdPartyNotices.txt",
874
+ "build/netstandard2.0/CodeCoverage/CodeCoverage.config",
875
+ "build/netstandard2.0/CodeCoverage/CodeCoverage.exe",
876
+ "build/netstandard2.0/CodeCoverage/CodeCoverageMessages.dll",
877
+ "build/netstandard2.0/CodeCoverage/Cov_x86.config",
878
+ "build/netstandard2.0/CodeCoverage/amd64/CodeCoverage.exe",
879
+ "build/netstandard2.0/CodeCoverage/amd64/Cov_x64.config",
880
+ "build/netstandard2.0/CodeCoverage/amd64/covrun64.dll",
881
+ "build/netstandard2.0/CodeCoverage/amd64/msdia140.dll",
882
+ "build/netstandard2.0/CodeCoverage/arm64/Cov_arm64.config",
883
+ "build/netstandard2.0/CodeCoverage/arm64/covrunarm64.dll",
884
+ "build/netstandard2.0/CodeCoverage/arm64/msdia140.dll",
885
+ "build/netstandard2.0/CodeCoverage/coreclr/Microsoft.VisualStudio.CodeCoverage.Shim.dll",
886
+ "build/netstandard2.0/CodeCoverage/covrun32.dll",
887
+ "build/netstandard2.0/CodeCoverage/msdia140.dll",
888
+ "build/netstandard2.0/Microsoft.CodeCoverage.Core.dll",
889
+ "build/netstandard2.0/Microsoft.CodeCoverage.Instrumentation.Core.dll",
890
+ "build/netstandard2.0/Microsoft.CodeCoverage.Instrumentation.dll",
891
+ "build/netstandard2.0/Microsoft.CodeCoverage.Interprocess.dll",
892
+ "build/netstandard2.0/Microsoft.CodeCoverage.props",
893
+ "build/netstandard2.0/Microsoft.CodeCoverage.targets",
894
+ "build/netstandard2.0/Microsoft.DiaSymReader.dll",
895
+ "build/netstandard2.0/Microsoft.VisualStudio.TraceDataCollector.dll",
896
+ "build/netstandard2.0/Mono.Cecil.Pdb.dll",
897
+ "build/netstandard2.0/Mono.Cecil.Rocks.dll",
898
+ "build/netstandard2.0/Mono.Cecil.dll",
899
+ "build/netstandard2.0/System.Memory.dll",
900
+ "build/netstandard2.0/System.Text.Json.dll",
901
+ "build/netstandard2.0/ThirdPartyNotices.txt",
902
+ "build/netstandard2.0/alpine/x64/Cov_x64.config",
903
+ "build/netstandard2.0/alpine/x64/libCoverageInstrumentationMethod.so",
904
+ "build/netstandard2.0/alpine/x64/libInstrumentationEngine.so",
905
+ "build/netstandard2.0/arm64/MicrosoftInstrumentationEngine_arm64.dll",
906
+ "build/netstandard2.0/cs/Microsoft.CodeCoverage.Core.resources.dll",
907
+ "build/netstandard2.0/cs/Microsoft.VisualStudio.TraceDataCollector.resources.dll",
908
+ "build/netstandard2.0/de/Microsoft.CodeCoverage.Core.resources.dll",
909
+ "build/netstandard2.0/de/Microsoft.VisualStudio.TraceDataCollector.resources.dll",
910
+ "build/netstandard2.0/es/Microsoft.CodeCoverage.Core.resources.dll",
911
+ "build/netstandard2.0/es/Microsoft.VisualStudio.TraceDataCollector.resources.dll",
912
+ "build/netstandard2.0/fr/Microsoft.CodeCoverage.Core.resources.dll",
913
+ "build/netstandard2.0/fr/Microsoft.VisualStudio.TraceDataCollector.resources.dll",
914
+ "build/netstandard2.0/it/Microsoft.CodeCoverage.Core.resources.dll",
915
+ "build/netstandard2.0/it/Microsoft.VisualStudio.TraceDataCollector.resources.dll",
916
+ "build/netstandard2.0/ja/Microsoft.CodeCoverage.Core.resources.dll",
917
+ "build/netstandard2.0/ja/Microsoft.VisualStudio.TraceDataCollector.resources.dll",
918
+ "build/netstandard2.0/ko/Microsoft.CodeCoverage.Core.resources.dll",
919
+ "build/netstandard2.0/ko/Microsoft.VisualStudio.TraceDataCollector.resources.dll",
920
+ "build/netstandard2.0/macos/x64/Cov_x64.config",
921
+ "build/netstandard2.0/macos/x64/libCoverageInstrumentationMethod.dylib",
922
+ "build/netstandard2.0/macos/x64/libInstrumentationEngine.dylib",
923
+ "build/netstandard2.0/pl/Microsoft.CodeCoverage.Core.resources.dll",
924
+ "build/netstandard2.0/pl/Microsoft.VisualStudio.TraceDataCollector.resources.dll",
925
+ "build/netstandard2.0/pt-BR/Microsoft.CodeCoverage.Core.resources.dll",
926
+ "build/netstandard2.0/pt-BR/Microsoft.VisualStudio.TraceDataCollector.resources.dll",
927
+ "build/netstandard2.0/ru/Microsoft.CodeCoverage.Core.resources.dll",
928
+ "build/netstandard2.0/ru/Microsoft.VisualStudio.TraceDataCollector.resources.dll",
929
+ "build/netstandard2.0/tr/Microsoft.CodeCoverage.Core.resources.dll",
930
+ "build/netstandard2.0/tr/Microsoft.VisualStudio.TraceDataCollector.resources.dll",
931
+ "build/netstandard2.0/ubuntu/x64/Cov_x64.config",
932
+ "build/netstandard2.0/ubuntu/x64/libCoverageInstrumentationMethod.so",
933
+ "build/netstandard2.0/ubuntu/x64/libInstrumentationEngine.so",
934
+ "build/netstandard2.0/x64/MicrosoftInstrumentationEngine_x64.dll",
935
+ "build/netstandard2.0/x86/MicrosoftInstrumentationEngine_x86.dll",
936
+ "build/netstandard2.0/zh-Hans/Microsoft.CodeCoverage.Core.resources.dll",
937
+ "build/netstandard2.0/zh-Hans/Microsoft.VisualStudio.TraceDataCollector.resources.dll",
938
+ "build/netstandard2.0/zh-Hant/Microsoft.CodeCoverage.Core.resources.dll",
939
+ "build/netstandard2.0/zh-Hant/Microsoft.VisualStudio.TraceDataCollector.resources.dll",
940
+ "lib/net462/Microsoft.VisualStudio.CodeCoverage.Shim.dll",
941
+ "lib/net8.0/Microsoft.VisualStudio.CodeCoverage.Shim.dll",
942
+ "microsoft.codecoverage.18.7.0.nupkg.sha512",
943
+ "microsoft.codecoverage.nuspec"
944
+ ]
945
+ },
946
+ "Microsoft.Extensions.Configuration.Abstractions/10.0.0": {
947
+ "sha512": "d2kDKnCsJvY7mBVhcjPSp9BkJk48DsaHPg5u+Oy4f8XaOqnEedRy/USyvnpHL92wpJ6DrTPy7htppUUzskbCXQ==",
948
+ "type": "package",
949
+ "path": "microsoft.extensions.configuration.abstractions/10.0.0",
950
+ "files": [
951
+ ".nupkg.metadata",
952
+ ".signature.p7s",
953
+ "Icon.png",
954
+ "PACKAGE.md",
955
+ "THIRD-PARTY-NOTICES.TXT",
956
+ "buildTransitive/net461/Microsoft.Extensions.Configuration.Abstractions.targets",
957
+ "buildTransitive/net462/_._",
958
+ "buildTransitive/net8.0/_._",
959
+ "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Configuration.Abstractions.targets",
960
+ "lib/net10.0/Microsoft.Extensions.Configuration.Abstractions.dll",
961
+ "lib/net10.0/Microsoft.Extensions.Configuration.Abstractions.xml",
962
+ "lib/net462/Microsoft.Extensions.Configuration.Abstractions.dll",
963
+ "lib/net462/Microsoft.Extensions.Configuration.Abstractions.xml",
964
+ "lib/net8.0/Microsoft.Extensions.Configuration.Abstractions.dll",
965
+ "lib/net8.0/Microsoft.Extensions.Configuration.Abstractions.xml",
966
+ "lib/net9.0/Microsoft.Extensions.Configuration.Abstractions.dll",
967
+ "lib/net9.0/Microsoft.Extensions.Configuration.Abstractions.xml",
968
+ "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.dll",
969
+ "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.xml",
970
+ "microsoft.extensions.configuration.abstractions.10.0.0.nupkg.sha512",
971
+ "microsoft.extensions.configuration.abstractions.nuspec",
972
+ "useSharedDesignerContext.txt"
973
+ ]
974
+ },
975
+ "Microsoft.Extensions.DependencyInjection.Abstractions/10.0.0": {
976
+ "sha512": "L3AdmZ1WOK4XXT5YFPEwyt0ep6l8lGIPs7F5OOBZc77Zqeo01Of7XXICy47628sdVl0v/owxYJTe86DTgFwKCA==",
977
+ "type": "package",
978
+ "path": "microsoft.extensions.dependencyinjection.abstractions/10.0.0",
979
+ "files": [
980
+ ".nupkg.metadata",
981
+ ".signature.p7s",
982
+ "Icon.png",
983
+ "PACKAGE.md",
984
+ "THIRD-PARTY-NOTICES.TXT",
985
+ "buildTransitive/net461/Microsoft.Extensions.DependencyInjection.Abstractions.targets",
986
+ "buildTransitive/net462/_._",
987
+ "buildTransitive/net8.0/_._",
988
+ "buildTransitive/netcoreapp2.0/Microsoft.Extensions.DependencyInjection.Abstractions.targets",
989
+ "lib/net10.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll",
990
+ "lib/net10.0/Microsoft.Extensions.DependencyInjection.Abstractions.xml",
991
+ "lib/net462/Microsoft.Extensions.DependencyInjection.Abstractions.dll",
992
+ "lib/net462/Microsoft.Extensions.DependencyInjection.Abstractions.xml",
993
+ "lib/net8.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll",
994
+ "lib/net8.0/Microsoft.Extensions.DependencyInjection.Abstractions.xml",
995
+ "lib/net9.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll",
996
+ "lib/net9.0/Microsoft.Extensions.DependencyInjection.Abstractions.xml",
997
+ "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll",
998
+ "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.xml",
999
+ "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.Abstractions.dll",
1000
+ "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.Abstractions.xml",
1001
+ "microsoft.extensions.dependencyinjection.abstractions.10.0.0.nupkg.sha512",
1002
+ "microsoft.extensions.dependencyinjection.abstractions.nuspec",
1003
+ "useSharedDesignerContext.txt"
1004
+ ]
1005
+ },
1006
+ "Microsoft.Extensions.Diagnostics.Abstractions/10.0.0": {
1007
+ "sha512": "SfK89ytD61S7DgzorFljSkUeluC1ncn6dtZgwc0ot39f/BEYWBl5jpgvodxduoYAs1d9HG8faCDRZxE95UMo2A==",
1008
+ "type": "package",
1009
+ "path": "microsoft.extensions.diagnostics.abstractions/10.0.0",
1010
+ "files": [
1011
+ ".nupkg.metadata",
1012
+ ".signature.p7s",
1013
+ "Icon.png",
1014
+ "THIRD-PARTY-NOTICES.TXT",
1015
+ "buildTransitive/net461/Microsoft.Extensions.Diagnostics.Abstractions.targets",
1016
+ "buildTransitive/net462/_._",
1017
+ "buildTransitive/net8.0/_._",
1018
+ "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Diagnostics.Abstractions.targets",
1019
+ "lib/net10.0/Microsoft.Extensions.Diagnostics.Abstractions.dll",
1020
+ "lib/net10.0/Microsoft.Extensions.Diagnostics.Abstractions.xml",
1021
+ "lib/net462/Microsoft.Extensions.Diagnostics.Abstractions.dll",
1022
+ "lib/net462/Microsoft.Extensions.Diagnostics.Abstractions.xml",
1023
+ "lib/net8.0/Microsoft.Extensions.Diagnostics.Abstractions.dll",
1024
+ "lib/net8.0/Microsoft.Extensions.Diagnostics.Abstractions.xml",
1025
+ "lib/net9.0/Microsoft.Extensions.Diagnostics.Abstractions.dll",
1026
+ "lib/net9.0/Microsoft.Extensions.Diagnostics.Abstractions.xml",
1027
+ "lib/netstandard2.0/Microsoft.Extensions.Diagnostics.Abstractions.dll",
1028
+ "lib/netstandard2.0/Microsoft.Extensions.Diagnostics.Abstractions.xml",
1029
+ "microsoft.extensions.diagnostics.abstractions.10.0.0.nupkg.sha512",
1030
+ "microsoft.extensions.diagnostics.abstractions.nuspec",
1031
+ "useSharedDesignerContext.txt"
1032
+ ]
1033
+ },
1034
+ "Microsoft.Extensions.FileProviders.Abstractions/10.0.0": {
1035
+ "sha512": "/ppSdehKk3fuXjlqCDgSOtjRK/pSHU8eWgzSHfHdwVm5BP4Dgejehkw+PtxKG2j98qTDEHDst2Y99aNsmJldmw==",
1036
+ "type": "package",
1037
+ "path": "microsoft.extensions.fileproviders.abstractions/10.0.0",
1038
+ "files": [
1039
+ ".nupkg.metadata",
1040
+ ".signature.p7s",
1041
+ "Icon.png",
1042
+ "PACKAGE.md",
1043
+ "THIRD-PARTY-NOTICES.TXT",
1044
+ "buildTransitive/net461/Microsoft.Extensions.FileProviders.Abstractions.targets",
1045
+ "buildTransitive/net462/_._",
1046
+ "buildTransitive/net8.0/_._",
1047
+ "buildTransitive/netcoreapp2.0/Microsoft.Extensions.FileProviders.Abstractions.targets",
1048
+ "lib/net10.0/Microsoft.Extensions.FileProviders.Abstractions.dll",
1049
+ "lib/net10.0/Microsoft.Extensions.FileProviders.Abstractions.xml",
1050
+ "lib/net462/Microsoft.Extensions.FileProviders.Abstractions.dll",
1051
+ "lib/net462/Microsoft.Extensions.FileProviders.Abstractions.xml",
1052
+ "lib/net8.0/Microsoft.Extensions.FileProviders.Abstractions.dll",
1053
+ "lib/net8.0/Microsoft.Extensions.FileProviders.Abstractions.xml",
1054
+ "lib/net9.0/Microsoft.Extensions.FileProviders.Abstractions.dll",
1055
+ "lib/net9.0/Microsoft.Extensions.FileProviders.Abstractions.xml",
1056
+ "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Abstractions.dll",
1057
+ "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Abstractions.xml",
1058
+ "microsoft.extensions.fileproviders.abstractions.10.0.0.nupkg.sha512",
1059
+ "microsoft.extensions.fileproviders.abstractions.nuspec",
1060
+ "useSharedDesignerContext.txt"
1061
+ ]
1062
+ },
1063
+ "Microsoft.Extensions.Hosting.Abstractions/10.0.0": {
1064
+ "sha512": "KrN6TGFwCwqOkLLk/idW/XtDQh+8In+CL9T4M1Dx+5ScsjTq4TlVbal8q532m82UYrMr6RiQJF2HvYCN0QwVsA==",
1065
+ "type": "package",
1066
+ "path": "microsoft.extensions.hosting.abstractions/10.0.0",
1067
+ "files": [
1068
+ ".nupkg.metadata",
1069
+ ".signature.p7s",
1070
+ "Icon.png",
1071
+ "PACKAGE.md",
1072
+ "THIRD-PARTY-NOTICES.TXT",
1073
+ "buildTransitive/net461/Microsoft.Extensions.Hosting.Abstractions.targets",
1074
+ "buildTransitive/net462/_._",
1075
+ "buildTransitive/net8.0/_._",
1076
+ "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Hosting.Abstractions.targets",
1077
+ "lib/net10.0/Microsoft.Extensions.Hosting.Abstractions.dll",
1078
+ "lib/net10.0/Microsoft.Extensions.Hosting.Abstractions.xml",
1079
+ "lib/net462/Microsoft.Extensions.Hosting.Abstractions.dll",
1080
+ "lib/net462/Microsoft.Extensions.Hosting.Abstractions.xml",
1081
+ "lib/net8.0/Microsoft.Extensions.Hosting.Abstractions.dll",
1082
+ "lib/net8.0/Microsoft.Extensions.Hosting.Abstractions.xml",
1083
+ "lib/net9.0/Microsoft.Extensions.Hosting.Abstractions.dll",
1084
+ "lib/net9.0/Microsoft.Extensions.Hosting.Abstractions.xml",
1085
+ "lib/netstandard2.0/Microsoft.Extensions.Hosting.Abstractions.dll",
1086
+ "lib/netstandard2.0/Microsoft.Extensions.Hosting.Abstractions.xml",
1087
+ "lib/netstandard2.1/Microsoft.Extensions.Hosting.Abstractions.dll",
1088
+ "lib/netstandard2.1/Microsoft.Extensions.Hosting.Abstractions.xml",
1089
+ "microsoft.extensions.hosting.abstractions.10.0.0.nupkg.sha512",
1090
+ "microsoft.extensions.hosting.abstractions.nuspec",
1091
+ "useSharedDesignerContext.txt"
1092
+ ]
1093
+ },
1094
+ "Microsoft.Extensions.Logging.Abstractions/10.0.0": {
1095
+ "sha512": "FU/IfjDfwaMuKr414SSQNTIti/69bHEMb+QKrskRb26oVqpx3lNFXMjs/RC9ZUuhBhcwDM2BwOgoMw+PZ+beqQ==",
1096
+ "type": "package",
1097
+ "path": "microsoft.extensions.logging.abstractions/10.0.0",
1098
+ "files": [
1099
+ ".nupkg.metadata",
1100
+ ".signature.p7s",
1101
+ "Icon.png",
1102
+ "PACKAGE.md",
1103
+ "THIRD-PARTY-NOTICES.TXT",
1104
+ "analyzers/dotnet/roslyn3.11/cs/Microsoft.Extensions.Logging.Generators.dll",
1105
+ "analyzers/dotnet/roslyn3.11/cs/cs/Microsoft.Extensions.Logging.Generators.resources.dll",
1106
+ "analyzers/dotnet/roslyn3.11/cs/de/Microsoft.Extensions.Logging.Generators.resources.dll",
1107
+ "analyzers/dotnet/roslyn3.11/cs/es/Microsoft.Extensions.Logging.Generators.resources.dll",
1108
+ "analyzers/dotnet/roslyn3.11/cs/fr/Microsoft.Extensions.Logging.Generators.resources.dll",
1109
+ "analyzers/dotnet/roslyn3.11/cs/it/Microsoft.Extensions.Logging.Generators.resources.dll",
1110
+ "analyzers/dotnet/roslyn3.11/cs/ja/Microsoft.Extensions.Logging.Generators.resources.dll",
1111
+ "analyzers/dotnet/roslyn3.11/cs/ko/Microsoft.Extensions.Logging.Generators.resources.dll",
1112
+ "analyzers/dotnet/roslyn3.11/cs/pl/Microsoft.Extensions.Logging.Generators.resources.dll",
1113
+ "analyzers/dotnet/roslyn3.11/cs/pt-BR/Microsoft.Extensions.Logging.Generators.resources.dll",
1114
+ "analyzers/dotnet/roslyn3.11/cs/ru/Microsoft.Extensions.Logging.Generators.resources.dll",
1115
+ "analyzers/dotnet/roslyn3.11/cs/tr/Microsoft.Extensions.Logging.Generators.resources.dll",
1116
+ "analyzers/dotnet/roslyn3.11/cs/zh-Hans/Microsoft.Extensions.Logging.Generators.resources.dll",
1117
+ "analyzers/dotnet/roslyn3.11/cs/zh-Hant/Microsoft.Extensions.Logging.Generators.resources.dll",
1118
+ "analyzers/dotnet/roslyn4.0/cs/Microsoft.Extensions.Logging.Generators.dll",
1119
+ "analyzers/dotnet/roslyn4.0/cs/cs/Microsoft.Extensions.Logging.Generators.resources.dll",
1120
+ "analyzers/dotnet/roslyn4.0/cs/de/Microsoft.Extensions.Logging.Generators.resources.dll",
1121
+ "analyzers/dotnet/roslyn4.0/cs/es/Microsoft.Extensions.Logging.Generators.resources.dll",
1122
+ "analyzers/dotnet/roslyn4.0/cs/fr/Microsoft.Extensions.Logging.Generators.resources.dll",
1123
+ "analyzers/dotnet/roslyn4.0/cs/it/Microsoft.Extensions.Logging.Generators.resources.dll",
1124
+ "analyzers/dotnet/roslyn4.0/cs/ja/Microsoft.Extensions.Logging.Generators.resources.dll",
1125
+ "analyzers/dotnet/roslyn4.0/cs/ko/Microsoft.Extensions.Logging.Generators.resources.dll",
1126
+ "analyzers/dotnet/roslyn4.0/cs/pl/Microsoft.Extensions.Logging.Generators.resources.dll",
1127
+ "analyzers/dotnet/roslyn4.0/cs/pt-BR/Microsoft.Extensions.Logging.Generators.resources.dll",
1128
+ "analyzers/dotnet/roslyn4.0/cs/ru/Microsoft.Extensions.Logging.Generators.resources.dll",
1129
+ "analyzers/dotnet/roslyn4.0/cs/tr/Microsoft.Extensions.Logging.Generators.resources.dll",
1130
+ "analyzers/dotnet/roslyn4.0/cs/zh-Hans/Microsoft.Extensions.Logging.Generators.resources.dll",
1131
+ "analyzers/dotnet/roslyn4.0/cs/zh-Hant/Microsoft.Extensions.Logging.Generators.resources.dll",
1132
+ "analyzers/dotnet/roslyn4.4/cs/Microsoft.Extensions.Logging.Generators.dll",
1133
+ "analyzers/dotnet/roslyn4.4/cs/cs/Microsoft.Extensions.Logging.Generators.resources.dll",
1134
+ "analyzers/dotnet/roslyn4.4/cs/de/Microsoft.Extensions.Logging.Generators.resources.dll",
1135
+ "analyzers/dotnet/roslyn4.4/cs/es/Microsoft.Extensions.Logging.Generators.resources.dll",
1136
+ "analyzers/dotnet/roslyn4.4/cs/fr/Microsoft.Extensions.Logging.Generators.resources.dll",
1137
+ "analyzers/dotnet/roslyn4.4/cs/it/Microsoft.Extensions.Logging.Generators.resources.dll",
1138
+ "analyzers/dotnet/roslyn4.4/cs/ja/Microsoft.Extensions.Logging.Generators.resources.dll",
1139
+ "analyzers/dotnet/roslyn4.4/cs/ko/Microsoft.Extensions.Logging.Generators.resources.dll",
1140
+ "analyzers/dotnet/roslyn4.4/cs/pl/Microsoft.Extensions.Logging.Generators.resources.dll",
1141
+ "analyzers/dotnet/roslyn4.4/cs/pt-BR/Microsoft.Extensions.Logging.Generators.resources.dll",
1142
+ "analyzers/dotnet/roslyn4.4/cs/ru/Microsoft.Extensions.Logging.Generators.resources.dll",
1143
+ "analyzers/dotnet/roslyn4.4/cs/tr/Microsoft.Extensions.Logging.Generators.resources.dll",
1144
+ "analyzers/dotnet/roslyn4.4/cs/zh-Hans/Microsoft.Extensions.Logging.Generators.resources.dll",
1145
+ "analyzers/dotnet/roslyn4.4/cs/zh-Hant/Microsoft.Extensions.Logging.Generators.resources.dll",
1146
+ "buildTransitive/net461/Microsoft.Extensions.Logging.Abstractions.targets",
1147
+ "buildTransitive/net462/Microsoft.Extensions.Logging.Abstractions.targets",
1148
+ "buildTransitive/net8.0/Microsoft.Extensions.Logging.Abstractions.targets",
1149
+ "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Logging.Abstractions.targets",
1150
+ "buildTransitive/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.targets",
1151
+ "lib/net10.0/Microsoft.Extensions.Logging.Abstractions.dll",
1152
+ "lib/net10.0/Microsoft.Extensions.Logging.Abstractions.xml",
1153
+ "lib/net462/Microsoft.Extensions.Logging.Abstractions.dll",
1154
+ "lib/net462/Microsoft.Extensions.Logging.Abstractions.xml",
1155
+ "lib/net8.0/Microsoft.Extensions.Logging.Abstractions.dll",
1156
+ "lib/net8.0/Microsoft.Extensions.Logging.Abstractions.xml",
1157
+ "lib/net9.0/Microsoft.Extensions.Logging.Abstractions.dll",
1158
+ "lib/net9.0/Microsoft.Extensions.Logging.Abstractions.xml",
1159
+ "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.dll",
1160
+ "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.xml",
1161
+ "microsoft.extensions.logging.abstractions.10.0.0.nupkg.sha512",
1162
+ "microsoft.extensions.logging.abstractions.nuspec",
1163
+ "useSharedDesignerContext.txt"
1164
+ ]
1165
+ },
1166
+ "Microsoft.Extensions.Options/10.0.0": {
1167
+ "sha512": "8oCAgXOow5XDrY9HaXX1QmH3ORsyZO/ANVHBlhLyCeWTH5Sg4UuqZeOTWJi6484M+LqSx0RqQXDJtdYy2BNiLQ==",
1168
+ "type": "package",
1169
+ "path": "microsoft.extensions.options/10.0.0",
1170
+ "files": [
1171
+ ".nupkg.metadata",
1172
+ ".signature.p7s",
1173
+ "Icon.png",
1174
+ "PACKAGE.md",
1175
+ "THIRD-PARTY-NOTICES.TXT",
1176
+ "analyzers/dotnet/roslyn4.4/cs/Microsoft.Extensions.Options.SourceGeneration.dll",
1177
+ "analyzers/dotnet/roslyn4.4/cs/cs/Microsoft.Extensions.Options.SourceGeneration.resources.dll",
1178
+ "analyzers/dotnet/roslyn4.4/cs/de/Microsoft.Extensions.Options.SourceGeneration.resources.dll",
1179
+ "analyzers/dotnet/roslyn4.4/cs/es/Microsoft.Extensions.Options.SourceGeneration.resources.dll",
1180
+ "analyzers/dotnet/roslyn4.4/cs/fr/Microsoft.Extensions.Options.SourceGeneration.resources.dll",
1181
+ "analyzers/dotnet/roslyn4.4/cs/it/Microsoft.Extensions.Options.SourceGeneration.resources.dll",
1182
+ "analyzers/dotnet/roslyn4.4/cs/ja/Microsoft.Extensions.Options.SourceGeneration.resources.dll",
1183
+ "analyzers/dotnet/roslyn4.4/cs/ko/Microsoft.Extensions.Options.SourceGeneration.resources.dll",
1184
+ "analyzers/dotnet/roslyn4.4/cs/pl/Microsoft.Extensions.Options.SourceGeneration.resources.dll",
1185
+ "analyzers/dotnet/roslyn4.4/cs/pt-BR/Microsoft.Extensions.Options.SourceGeneration.resources.dll",
1186
+ "analyzers/dotnet/roslyn4.4/cs/ru/Microsoft.Extensions.Options.SourceGeneration.resources.dll",
1187
+ "analyzers/dotnet/roslyn4.4/cs/tr/Microsoft.Extensions.Options.SourceGeneration.resources.dll",
1188
+ "analyzers/dotnet/roslyn4.4/cs/zh-Hans/Microsoft.Extensions.Options.SourceGeneration.resources.dll",
1189
+ "analyzers/dotnet/roslyn4.4/cs/zh-Hant/Microsoft.Extensions.Options.SourceGeneration.resources.dll",
1190
+ "buildTransitive/net461/Microsoft.Extensions.Options.targets",
1191
+ "buildTransitive/net462/Microsoft.Extensions.Options.targets",
1192
+ "buildTransitive/net8.0/Microsoft.Extensions.Options.targets",
1193
+ "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Options.targets",
1194
+ "buildTransitive/netstandard2.0/Microsoft.Extensions.Options.targets",
1195
+ "lib/net10.0/Microsoft.Extensions.Options.dll",
1196
+ "lib/net10.0/Microsoft.Extensions.Options.xml",
1197
+ "lib/net462/Microsoft.Extensions.Options.dll",
1198
+ "lib/net462/Microsoft.Extensions.Options.xml",
1199
+ "lib/net8.0/Microsoft.Extensions.Options.dll",
1200
+ "lib/net8.0/Microsoft.Extensions.Options.xml",
1201
+ "lib/net9.0/Microsoft.Extensions.Options.dll",
1202
+ "lib/net9.0/Microsoft.Extensions.Options.xml",
1203
+ "lib/netstandard2.0/Microsoft.Extensions.Options.dll",
1204
+ "lib/netstandard2.0/Microsoft.Extensions.Options.xml",
1205
+ "lib/netstandard2.1/Microsoft.Extensions.Options.dll",
1206
+ "lib/netstandard2.1/Microsoft.Extensions.Options.xml",
1207
+ "microsoft.extensions.options.10.0.0.nupkg.sha512",
1208
+ "microsoft.extensions.options.nuspec",
1209
+ "useSharedDesignerContext.txt"
1210
+ ]
1211
+ },
1212
+ "Microsoft.Extensions.Primitives/10.0.0": {
1213
+ "sha512": "inRnbpCS0nwO/RuoZIAqxQUuyjaknOOnCEZB55KSMMjRhl0RQDttSmLSGsUJN3RQ3ocf5NDLFd2mOQViHqMK5w==",
1214
+ "type": "package",
1215
+ "path": "microsoft.extensions.primitives/10.0.0",
1216
+ "files": [
1217
+ ".nupkg.metadata",
1218
+ ".signature.p7s",
1219
+ "Icon.png",
1220
+ "PACKAGE.md",
1221
+ "THIRD-PARTY-NOTICES.TXT",
1222
+ "buildTransitive/net461/Microsoft.Extensions.Primitives.targets",
1223
+ "buildTransitive/net462/_._",
1224
+ "buildTransitive/net8.0/_._",
1225
+ "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Primitives.targets",
1226
+ "lib/net10.0/Microsoft.Extensions.Primitives.dll",
1227
+ "lib/net10.0/Microsoft.Extensions.Primitives.xml",
1228
+ "lib/net462/Microsoft.Extensions.Primitives.dll",
1229
+ "lib/net462/Microsoft.Extensions.Primitives.xml",
1230
+ "lib/net8.0/Microsoft.Extensions.Primitives.dll",
1231
+ "lib/net8.0/Microsoft.Extensions.Primitives.xml",
1232
+ "lib/net9.0/Microsoft.Extensions.Primitives.dll",
1233
+ "lib/net9.0/Microsoft.Extensions.Primitives.xml",
1234
+ "lib/netstandard2.0/Microsoft.Extensions.Primitives.dll",
1235
+ "lib/netstandard2.0/Microsoft.Extensions.Primitives.xml",
1236
+ "microsoft.extensions.primitives.10.0.0.nupkg.sha512",
1237
+ "microsoft.extensions.primitives.nuspec",
1238
+ "useSharedDesignerContext.txt"
1239
+ ]
1240
+ },
1241
+ "Microsoft.NET.Test.Sdk/18.7.0": {
1242
+ "sha512": "49xH9j4UzCh2hMohJp53g3wUTvyycECw7CtVht4gfCz5ykudB1uBcF6D0TtgJPjCtP76UPW53bQElKdCeX+dUg==",
1243
+ "type": "package",
1244
+ "path": "microsoft.net.test.sdk/18.7.0",
1245
+ "files": [
1246
+ ".nupkg.metadata",
1247
+ ".signature.p7s",
1248
+ "Icon.png",
1249
+ "README.md",
1250
+ "build/net462/Microsoft.NET.Test.Sdk.props",
1251
+ "build/net462/Microsoft.NET.Test.Sdk.targets",
1252
+ "build/net8.0/Microsoft.NET.Test.Sdk.Program.cs",
1253
+ "build/net8.0/Microsoft.NET.Test.Sdk.Program.fs",
1254
+ "build/net8.0/Microsoft.NET.Test.Sdk.Program.vb",
1255
+ "build/net8.0/Microsoft.NET.Test.Sdk.props",
1256
+ "build/net8.0/Microsoft.NET.Test.Sdk.targets",
1257
+ "build/netcoreapp2.0/Microsoft.NET.Test.Sdk.props",
1258
+ "build/netcoreapp2.0/Microsoft.NET.Test.Sdk.targets",
1259
+ "build/netstandard2.0/Microsoft.NET.Test.Sdk.props",
1260
+ "build/netstandard2.0/Microsoft.NET.Test.Sdk.targets",
1261
+ "buildMultiTargeting/net462/Microsoft.NET.Test.Sdk.props",
1262
+ "buildMultiTargeting/net8.0/Microsoft.NET.Test.Sdk.props",
1263
+ "buildMultiTargeting/netcoreapp2.0/Microsoft.NET.Test.Sdk.props",
1264
+ "buildMultiTargeting/netcoreapp2.0/Microsoft.NET.Test.Sdk.targets",
1265
+ "buildMultiTargeting/netstandard2.0/Microsoft.NET.Test.Sdk.props",
1266
+ "buildMultiTargeting/netstandard2.0/Microsoft.NET.Test.Sdk.targets",
1267
+ "lib/native/_._",
1268
+ "lib/net462/_._",
1269
+ "lib/net8.0/_._",
1270
+ "microsoft.net.test.sdk.18.7.0.nupkg.sha512",
1271
+ "microsoft.net.test.sdk.nuspec"
1272
+ ]
1273
+ },
1274
+ "Microsoft.TestPlatform.ObjectModel/18.7.0": {
1275
+ "sha512": "6rmgU4q3/WOpOPcncI0YW0Q/QpcQtwR2TTEXDR5+4TfSimPBAk6Z/BgKLeGgp1SOun0ROVUCCafXhRLwsHaPpA==",
1276
+ "type": "package",
1277
+ "path": "microsoft.testplatform.objectmodel/18.7.0",
1278
+ "files": [
1279
+ ".nupkg.metadata",
1280
+ ".signature.p7s",
1281
+ "Icon.png",
1282
+ "README.md",
1283
+ "lib/net462/Microsoft.TestPlatform.CoreUtilities.dll",
1284
+ "lib/net462/Microsoft.TestPlatform.PlatformAbstractions.dll",
1285
+ "lib/net462/Microsoft.VisualStudio.TestPlatform.ObjectModel.dll",
1286
+ "lib/net462/cs/Microsoft.TestPlatform.CoreUtilities.resources.dll",
1287
+ "lib/net462/cs/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
1288
+ "lib/net462/de/Microsoft.TestPlatform.CoreUtilities.resources.dll",
1289
+ "lib/net462/de/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
1290
+ "lib/net462/es/Microsoft.TestPlatform.CoreUtilities.resources.dll",
1291
+ "lib/net462/es/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
1292
+ "lib/net462/fr/Microsoft.TestPlatform.CoreUtilities.resources.dll",
1293
+ "lib/net462/fr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
1294
+ "lib/net462/it/Microsoft.TestPlatform.CoreUtilities.resources.dll",
1295
+ "lib/net462/it/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
1296
+ "lib/net462/ja/Microsoft.TestPlatform.CoreUtilities.resources.dll",
1297
+ "lib/net462/ja/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
1298
+ "lib/net462/ko/Microsoft.TestPlatform.CoreUtilities.resources.dll",
1299
+ "lib/net462/ko/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
1300
+ "lib/net462/pl/Microsoft.TestPlatform.CoreUtilities.resources.dll",
1301
+ "lib/net462/pl/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
1302
+ "lib/net462/pt-BR/Microsoft.TestPlatform.CoreUtilities.resources.dll",
1303
+ "lib/net462/pt-BR/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
1304
+ "lib/net462/ru/Microsoft.TestPlatform.CoreUtilities.resources.dll",
1305
+ "lib/net462/ru/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
1306
+ "lib/net462/tr/Microsoft.TestPlatform.CoreUtilities.resources.dll",
1307
+ "lib/net462/tr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
1308
+ "lib/net462/zh-Hans/Microsoft.TestPlatform.CoreUtilities.resources.dll",
1309
+ "lib/net462/zh-Hans/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
1310
+ "lib/net462/zh-Hant/Microsoft.TestPlatform.CoreUtilities.resources.dll",
1311
+ "lib/net462/zh-Hant/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
1312
+ "lib/net8.0/Microsoft.TestPlatform.CoreUtilities.dll",
1313
+ "lib/net8.0/Microsoft.TestPlatform.PlatformAbstractions.dll",
1314
+ "lib/net8.0/Microsoft.VisualStudio.TestPlatform.ObjectModel.dll",
1315
+ "lib/net8.0/cs/Microsoft.TestPlatform.CoreUtilities.resources.dll",
1316
+ "lib/net8.0/cs/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
1317
+ "lib/net8.0/de/Microsoft.TestPlatform.CoreUtilities.resources.dll",
1318
+ "lib/net8.0/de/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
1319
+ "lib/net8.0/es/Microsoft.TestPlatform.CoreUtilities.resources.dll",
1320
+ "lib/net8.0/es/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
1321
+ "lib/net8.0/fr/Microsoft.TestPlatform.CoreUtilities.resources.dll",
1322
+ "lib/net8.0/fr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
1323
+ "lib/net8.0/it/Microsoft.TestPlatform.CoreUtilities.resources.dll",
1324
+ "lib/net8.0/it/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
1325
+ "lib/net8.0/ja/Microsoft.TestPlatform.CoreUtilities.resources.dll",
1326
+ "lib/net8.0/ja/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
1327
+ "lib/net8.0/ko/Microsoft.TestPlatform.CoreUtilities.resources.dll",
1328
+ "lib/net8.0/ko/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
1329
+ "lib/net8.0/pl/Microsoft.TestPlatform.CoreUtilities.resources.dll",
1330
+ "lib/net8.0/pl/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
1331
+ "lib/net8.0/pt-BR/Microsoft.TestPlatform.CoreUtilities.resources.dll",
1332
+ "lib/net8.0/pt-BR/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
1333
+ "lib/net8.0/ru/Microsoft.TestPlatform.CoreUtilities.resources.dll",
1334
+ "lib/net8.0/ru/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
1335
+ "lib/net8.0/tr/Microsoft.TestPlatform.CoreUtilities.resources.dll",
1336
+ "lib/net8.0/tr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
1337
+ "lib/net8.0/zh-Hans/Microsoft.TestPlatform.CoreUtilities.resources.dll",
1338
+ "lib/net8.0/zh-Hans/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
1339
+ "lib/net8.0/zh-Hant/Microsoft.TestPlatform.CoreUtilities.resources.dll",
1340
+ "lib/net8.0/zh-Hant/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
1341
+ "lib/netstandard2.0/Microsoft.TestPlatform.CoreUtilities.dll",
1342
+ "lib/netstandard2.0/Microsoft.TestPlatform.PlatformAbstractions.dll",
1343
+ "lib/netstandard2.0/Microsoft.VisualStudio.TestPlatform.ObjectModel.dll",
1344
+ "lib/netstandard2.0/cs/Microsoft.TestPlatform.CoreUtilities.resources.dll",
1345
+ "lib/netstandard2.0/cs/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
1346
+ "lib/netstandard2.0/de/Microsoft.TestPlatform.CoreUtilities.resources.dll",
1347
+ "lib/netstandard2.0/de/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
1348
+ "lib/netstandard2.0/es/Microsoft.TestPlatform.CoreUtilities.resources.dll",
1349
+ "lib/netstandard2.0/es/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
1350
+ "lib/netstandard2.0/fr/Microsoft.TestPlatform.CoreUtilities.resources.dll",
1351
+ "lib/netstandard2.0/fr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
1352
+ "lib/netstandard2.0/it/Microsoft.TestPlatform.CoreUtilities.resources.dll",
1353
+ "lib/netstandard2.0/it/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
1354
+ "lib/netstandard2.0/ja/Microsoft.TestPlatform.CoreUtilities.resources.dll",
1355
+ "lib/netstandard2.0/ja/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
1356
+ "lib/netstandard2.0/ko/Microsoft.TestPlatform.CoreUtilities.resources.dll",
1357
+ "lib/netstandard2.0/ko/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
1358
+ "lib/netstandard2.0/pl/Microsoft.TestPlatform.CoreUtilities.resources.dll",
1359
+ "lib/netstandard2.0/pl/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
1360
+ "lib/netstandard2.0/pt-BR/Microsoft.TestPlatform.CoreUtilities.resources.dll",
1361
+ "lib/netstandard2.0/pt-BR/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
1362
+ "lib/netstandard2.0/ru/Microsoft.TestPlatform.CoreUtilities.resources.dll",
1363
+ "lib/netstandard2.0/ru/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
1364
+ "lib/netstandard2.0/tr/Microsoft.TestPlatform.CoreUtilities.resources.dll",
1365
+ "lib/netstandard2.0/tr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
1366
+ "lib/netstandard2.0/zh-Hans/Microsoft.TestPlatform.CoreUtilities.resources.dll",
1367
+ "lib/netstandard2.0/zh-Hans/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
1368
+ "lib/netstandard2.0/zh-Hant/Microsoft.TestPlatform.CoreUtilities.resources.dll",
1369
+ "lib/netstandard2.0/zh-Hant/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
1370
+ "microsoft.testplatform.objectmodel.18.7.0.nupkg.sha512",
1371
+ "microsoft.testplatform.objectmodel.nuspec"
1372
+ ]
1373
+ },
1374
+ "Microsoft.TestPlatform.TestHost/18.7.0": {
1375
+ "sha512": "kYwfmebCs8992zaxEDkvG7S+YEouTeKfYVKUFEkwh1W2dIoOaevBt80XSKVXCUFEhusjOIm1sFfHBnoJgygrRA==",
1376
+ "type": "package",
1377
+ "path": "microsoft.testplatform.testhost/18.7.0",
1378
+ "files": [
1379
+ ".nupkg.metadata",
1380
+ ".signature.p7s",
1381
+ "Icon.png",
1382
+ "README.md",
1383
+ "ThirdPartyNotices.txt",
1384
+ "build/net8.0/Microsoft.TestPlatform.TestHost.props",
1385
+ "build/net8.0/Microsoft.TestPlatform.TestHost.targets",
1386
+ "build/net8.0/x64/testhost.dll",
1387
+ "build/net8.0/x64/testhost.exe",
1388
+ "build/net8.0/x86/testhost.x86.dll",
1389
+ "build/net8.0/x86/testhost.x86.exe",
1390
+ "lib/net462/_._",
1391
+ "lib/net8.0/Microsoft.TestPlatform.CommunicationUtilities.dll",
1392
+ "lib/net8.0/Microsoft.TestPlatform.CoreUtilities.dll",
1393
+ "lib/net8.0/Microsoft.TestPlatform.CrossPlatEngine.dll",
1394
+ "lib/net8.0/Microsoft.TestPlatform.PlatformAbstractions.dll",
1395
+ "lib/net8.0/Microsoft.TestPlatform.Utilities.dll",
1396
+ "lib/net8.0/Microsoft.VisualStudio.TestPlatform.Common.dll",
1397
+ "lib/net8.0/Microsoft.VisualStudio.TestPlatform.ObjectModel.dll",
1398
+ "lib/net8.0/arm64/msdia140.dll",
1399
+ "lib/net8.0/cs/Microsoft.TestPlatform.CommunicationUtilities.resources.dll",
1400
+ "lib/net8.0/cs/Microsoft.TestPlatform.CrossPlatEngine.resources.dll",
1401
+ "lib/net8.0/cs/Microsoft.VisualStudio.TestPlatform.Common.resources.dll",
1402
+ "lib/net8.0/de/Microsoft.TestPlatform.CommunicationUtilities.resources.dll",
1403
+ "lib/net8.0/de/Microsoft.TestPlatform.CrossPlatEngine.resources.dll",
1404
+ "lib/net8.0/de/Microsoft.VisualStudio.TestPlatform.Common.resources.dll",
1405
+ "lib/net8.0/es/Microsoft.TestPlatform.CommunicationUtilities.resources.dll",
1406
+ "lib/net8.0/es/Microsoft.TestPlatform.CrossPlatEngine.resources.dll",
1407
+ "lib/net8.0/es/Microsoft.VisualStudio.TestPlatform.Common.resources.dll",
1408
+ "lib/net8.0/fr/Microsoft.TestPlatform.CommunicationUtilities.resources.dll",
1409
+ "lib/net8.0/fr/Microsoft.TestPlatform.CrossPlatEngine.resources.dll",
1410
+ "lib/net8.0/fr/Microsoft.VisualStudio.TestPlatform.Common.resources.dll",
1411
+ "lib/net8.0/it/Microsoft.TestPlatform.CommunicationUtilities.resources.dll",
1412
+ "lib/net8.0/it/Microsoft.TestPlatform.CrossPlatEngine.resources.dll",
1413
+ "lib/net8.0/it/Microsoft.VisualStudio.TestPlatform.Common.resources.dll",
1414
+ "lib/net8.0/ja/Microsoft.TestPlatform.CommunicationUtilities.resources.dll",
1415
+ "lib/net8.0/ja/Microsoft.TestPlatform.CrossPlatEngine.resources.dll",
1416
+ "lib/net8.0/ja/Microsoft.VisualStudio.TestPlatform.Common.resources.dll",
1417
+ "lib/net8.0/ko/Microsoft.TestPlatform.CommunicationUtilities.resources.dll",
1418
+ "lib/net8.0/ko/Microsoft.TestPlatform.CrossPlatEngine.resources.dll",
1419
+ "lib/net8.0/ko/Microsoft.VisualStudio.TestPlatform.Common.resources.dll",
1420
+ "lib/net8.0/pl/Microsoft.TestPlatform.CommunicationUtilities.resources.dll",
1421
+ "lib/net8.0/pl/Microsoft.TestPlatform.CrossPlatEngine.resources.dll",
1422
+ "lib/net8.0/pl/Microsoft.VisualStudio.TestPlatform.Common.resources.dll",
1423
+ "lib/net8.0/pt-BR/Microsoft.TestPlatform.CommunicationUtilities.resources.dll",
1424
+ "lib/net8.0/pt-BR/Microsoft.TestPlatform.CrossPlatEngine.resources.dll",
1425
+ "lib/net8.0/pt-BR/Microsoft.VisualStudio.TestPlatform.Common.resources.dll",
1426
+ "lib/net8.0/ru/Microsoft.TestPlatform.CommunicationUtilities.resources.dll",
1427
+ "lib/net8.0/ru/Microsoft.TestPlatform.CrossPlatEngine.resources.dll",
1428
+ "lib/net8.0/ru/Microsoft.VisualStudio.TestPlatform.Common.resources.dll",
1429
+ "lib/net8.0/testhost.deps.json",
1430
+ "lib/net8.0/testhost.dll",
1431
+ "lib/net8.0/tr/Microsoft.TestPlatform.CommunicationUtilities.resources.dll",
1432
+ "lib/net8.0/tr/Microsoft.TestPlatform.CrossPlatEngine.resources.dll",
1433
+ "lib/net8.0/tr/Microsoft.VisualStudio.TestPlatform.Common.resources.dll",
1434
+ "lib/net8.0/x64/msdia140.dll",
1435
+ "lib/net8.0/x86/msdia140.dll",
1436
+ "lib/net8.0/zh-Hans/Microsoft.TestPlatform.CommunicationUtilities.resources.dll",
1437
+ "lib/net8.0/zh-Hans/Microsoft.TestPlatform.CrossPlatEngine.resources.dll",
1438
+ "lib/net8.0/zh-Hans/Microsoft.VisualStudio.TestPlatform.Common.resources.dll",
1439
+ "lib/net8.0/zh-Hant/Microsoft.TestPlatform.CommunicationUtilities.resources.dll",
1440
+ "lib/net8.0/zh-Hant/Microsoft.TestPlatform.CrossPlatEngine.resources.dll",
1441
+ "lib/net8.0/zh-Hant/Microsoft.VisualStudio.TestPlatform.Common.resources.dll",
1442
+ "microsoft.testplatform.testhost.18.7.0.nupkg.sha512",
1443
+ "microsoft.testplatform.testhost.nuspec"
1444
+ ]
1445
+ },
1446
+ "Newtonsoft.Json/13.0.3": {
1447
+ "sha512": "HrC5BXdl00IP9zeV+0Z848QWPAoCr9P3bDEZguI+gkLcBKAOxix/tLEAAHC+UvDNPv4a2d18lOReHMOagPa+zQ==",
1448
+ "type": "package",
1449
+ "path": "newtonsoft.json/13.0.3",
1450
+ "files": [
1451
+ ".nupkg.metadata",
1452
+ ".signature.p7s",
1453
+ "LICENSE.md",
1454
+ "README.md",
1455
+ "lib/net20/Newtonsoft.Json.dll",
1456
+ "lib/net20/Newtonsoft.Json.xml",
1457
+ "lib/net35/Newtonsoft.Json.dll",
1458
+ "lib/net35/Newtonsoft.Json.xml",
1459
+ "lib/net40/Newtonsoft.Json.dll",
1460
+ "lib/net40/Newtonsoft.Json.xml",
1461
+ "lib/net45/Newtonsoft.Json.dll",
1462
+ "lib/net45/Newtonsoft.Json.xml",
1463
+ "lib/net6.0/Newtonsoft.Json.dll",
1464
+ "lib/net6.0/Newtonsoft.Json.xml",
1465
+ "lib/netstandard1.0/Newtonsoft.Json.dll",
1466
+ "lib/netstandard1.0/Newtonsoft.Json.xml",
1467
+ "lib/netstandard1.3/Newtonsoft.Json.dll",
1468
+ "lib/netstandard1.3/Newtonsoft.Json.xml",
1469
+ "lib/netstandard2.0/Newtonsoft.Json.dll",
1470
+ "lib/netstandard2.0/Newtonsoft.Json.xml",
1471
+ "newtonsoft.json.13.0.3.nupkg.sha512",
1472
+ "newtonsoft.json.nuspec",
1473
+ "packageIcon.png"
1474
+ ]
1475
+ },
1476
+ "NSubstitute/5.3.0": {
1477
+ "sha512": "lJ47Cps5Qzr86N99lcwd+OUvQma7+fBgr8+Mn+aOC0WrlqMNkdivaYD9IvnZ5Mqo6Ky3LS7ZI+tUq1/s9ERd0Q==",
1478
+ "type": "package",
1479
+ "path": "nsubstitute/5.3.0",
1480
+ "files": [
1481
+ ".nupkg.metadata",
1482
+ ".signature.p7s",
1483
+ "icon.png",
1484
+ "lib/net462/NSubstitute.dll",
1485
+ "lib/net462/NSubstitute.xml",
1486
+ "lib/net6.0/NSubstitute.dll",
1487
+ "lib/net6.0/NSubstitute.xml",
1488
+ "lib/netstandard2.0/NSubstitute.dll",
1489
+ "lib/netstandard2.0/NSubstitute.xml",
1490
+ "nsubstitute.5.3.0.nupkg.sha512",
1491
+ "nsubstitute.nuspec"
1492
+ ]
1493
+ },
1494
+ "Shouldly/4.3.0": {
1495
+ "sha512": "sDetrWXrl6YXZ4HeLsdBoNk3uIa7K+V4uvIJ+cqdRa5DrFxeTED7VkjoxCuU1kJWpUuBDZz2QXFzSxBtVXLwRQ==",
1496
+ "type": "package",
1497
+ "path": "shouldly/4.3.0",
1498
+ "files": [
1499
+ ".nupkg.metadata",
1500
+ ".signature.p7s",
1501
+ "assets/logo_128x128.png",
1502
+ "buildTransitive/Shouldly.targets",
1503
+ "lib/net8.0/Shouldly.dll",
1504
+ "lib/net8.0/Shouldly.xml",
1505
+ "lib/net9.0/Shouldly.dll",
1506
+ "lib/net9.0/Shouldly.xml",
1507
+ "lib/netstandard2.0/Shouldly.dll",
1508
+ "lib/netstandard2.0/Shouldly.xml",
1509
+ "shouldly.4.3.0.nupkg.sha512",
1510
+ "shouldly.nuspec"
1511
+ ]
1512
+ },
1513
+ "System.CodeDom/6.0.0": {
1514
+ "sha512": "CPc6tWO1LAer3IzfZufDBRL+UZQcj5uS207NHALQzP84Vp/z6wF0Aa0YZImOQY8iStY0A2zI/e3ihKNPfUm8XA==",
1515
+ "type": "package",
1516
+ "path": "system.codedom/6.0.0",
1517
+ "files": [
1518
+ ".nupkg.metadata",
1519
+ ".signature.p7s",
1520
+ "Icon.png",
1521
+ "LICENSE.TXT",
1522
+ "THIRD-PARTY-NOTICES.TXT",
1523
+ "buildTransitive/netcoreapp2.0/System.CodeDom.targets",
1524
+ "buildTransitive/netcoreapp3.1/_._",
1525
+ "lib/net461/System.CodeDom.dll",
1526
+ "lib/net461/System.CodeDom.xml",
1527
+ "lib/net6.0/System.CodeDom.dll",
1528
+ "lib/net6.0/System.CodeDom.xml",
1529
+ "lib/netstandard2.0/System.CodeDom.dll",
1530
+ "lib/netstandard2.0/System.CodeDom.xml",
1531
+ "system.codedom.6.0.0.nupkg.sha512",
1532
+ "system.codedom.nuspec",
1533
+ "useSharedDesignerContext.txt"
1534
+ ]
1535
+ },
1536
+ "System.Diagnostics.EventLog/6.0.0": {
1537
+ "sha512": "lcyUiXTsETK2ALsZrX+nWuHSIQeazhqPphLfaRxzdGaG93+0kELqpgEHtwWOlQe7+jSFnKwaCAgL4kjeZCQJnw==",
1538
+ "type": "package",
1539
+ "path": "system.diagnostics.eventlog/6.0.0",
1540
+ "files": [
1541
+ ".nupkg.metadata",
1542
+ ".signature.p7s",
1543
+ "Icon.png",
1544
+ "LICENSE.TXT",
1545
+ "THIRD-PARTY-NOTICES.TXT",
1546
+ "buildTransitive/netcoreapp2.0/System.Diagnostics.EventLog.targets",
1547
+ "buildTransitive/netcoreapp3.1/_._",
1548
+ "lib/net461/System.Diagnostics.EventLog.dll",
1549
+ "lib/net461/System.Diagnostics.EventLog.xml",
1550
+ "lib/net6.0/System.Diagnostics.EventLog.dll",
1551
+ "lib/net6.0/System.Diagnostics.EventLog.xml",
1552
+ "lib/netcoreapp3.1/System.Diagnostics.EventLog.dll",
1553
+ "lib/netcoreapp3.1/System.Diagnostics.EventLog.xml",
1554
+ "lib/netstandard2.0/System.Diagnostics.EventLog.dll",
1555
+ "lib/netstandard2.0/System.Diagnostics.EventLog.xml",
1556
+ "runtimes/win/lib/net6.0/System.Diagnostics.EventLog.Messages.dll",
1557
+ "runtimes/win/lib/net6.0/System.Diagnostics.EventLog.dll",
1558
+ "runtimes/win/lib/net6.0/System.Diagnostics.EventLog.xml",
1559
+ "runtimes/win/lib/netcoreapp3.1/System.Diagnostics.EventLog.Messages.dll",
1560
+ "runtimes/win/lib/netcoreapp3.1/System.Diagnostics.EventLog.dll",
1561
+ "runtimes/win/lib/netcoreapp3.1/System.Diagnostics.EventLog.xml",
1562
+ "system.diagnostics.eventlog.6.0.0.nupkg.sha512",
1563
+ "system.diagnostics.eventlog.nuspec",
1564
+ "useSharedDesignerContext.txt"
1565
+ ]
1566
+ },
1567
+ "System.Management/6.0.1": {
1568
+ "sha512": "10J1D0h/lioojphfJ4Fuh5ZUThT/xOVHdV9roGBittKKNP2PMjrvibEdbVTGZcPra1399Ja3tqIJLyQrc5Wmhg==",
1569
+ "type": "package",
1570
+ "path": "system.management/6.0.1",
1571
+ "files": [
1572
+ ".nupkg.metadata",
1573
+ ".signature.p7s",
1574
+ "Icon.png",
1575
+ "LICENSE.TXT",
1576
+ "THIRD-PARTY-NOTICES.TXT",
1577
+ "buildTransitive/netcoreapp2.0/System.Management.targets",
1578
+ "buildTransitive/netcoreapp3.1/_._",
1579
+ "lib/net461/_._",
1580
+ "lib/net6.0/System.Management.dll",
1581
+ "lib/net6.0/System.Management.xml",
1582
+ "lib/netcoreapp3.1/System.Management.dll",
1583
+ "lib/netcoreapp3.1/System.Management.xml",
1584
+ "lib/netstandard2.0/System.Management.dll",
1585
+ "lib/netstandard2.0/System.Management.xml",
1586
+ "runtimes/win/lib/net6.0/System.Management.dll",
1587
+ "runtimes/win/lib/net6.0/System.Management.xml",
1588
+ "runtimes/win/lib/netcoreapp3.1/System.Management.dll",
1589
+ "runtimes/win/lib/netcoreapp3.1/System.Management.xml",
1590
+ "system.management.6.0.1.nupkg.sha512",
1591
+ "system.management.nuspec",
1592
+ "useSharedDesignerContext.txt"
1593
+ ]
1594
+ },
1595
+ "xunit/2.9.3": {
1596
+ "sha512": "TlXQBinK35LpOPKHAqbLY4xlEen9TBafjs0V5KnA4wZsoQLQJiirCR4CbIXvOH8NzkW4YeJKP5P/Bnrodm0h9Q==",
1597
+ "type": "package",
1598
+ "path": "xunit/2.9.3",
1599
+ "files": [
1600
+ ".nupkg.metadata",
1601
+ ".signature.p7s",
1602
+ "_content/README.md",
1603
+ "_content/logo-128-transparent.png",
1604
+ "xunit.2.9.3.nupkg.sha512",
1605
+ "xunit.nuspec"
1606
+ ]
1607
+ },
1608
+ "xunit.abstractions/2.0.3": {
1609
+ "sha512": "pot1I4YOxlWjIb5jmwvvQNbTrZ3lJQ+jUGkGjWE3hEFM0l5gOnBWS+H3qsex68s5cO52g+44vpGzhAt+42vwKg==",
1610
+ "type": "package",
1611
+ "path": "xunit.abstractions/2.0.3",
1612
+ "files": [
1613
+ ".nupkg.metadata",
1614
+ ".signature.p7s",
1615
+ "lib/net35/xunit.abstractions.dll",
1616
+ "lib/net35/xunit.abstractions.xml",
1617
+ "lib/netstandard1.0/xunit.abstractions.dll",
1618
+ "lib/netstandard1.0/xunit.abstractions.xml",
1619
+ "lib/netstandard2.0/xunit.abstractions.dll",
1620
+ "lib/netstandard2.0/xunit.abstractions.xml",
1621
+ "xunit.abstractions.2.0.3.nupkg.sha512",
1622
+ "xunit.abstractions.nuspec"
1623
+ ]
1624
+ },
1625
+ "xunit.analyzers/1.18.0": {
1626
+ "sha512": "OtFMHN8yqIcYP9wcVIgJrq01AfTxijjAqVDy/WeQVSyrDC1RzBWeQPztL49DN2syXRah8TYnfvk035s7L95EZQ==",
1627
+ "type": "package",
1628
+ "path": "xunit.analyzers/1.18.0",
1629
+ "hasTools": true,
1630
+ "files": [
1631
+ ".nupkg.metadata",
1632
+ ".signature.p7s",
1633
+ "_content/README.md",
1634
+ "_content/logo-128-transparent.png",
1635
+ "analyzers/dotnet/cs/xunit.analyzers.dll",
1636
+ "analyzers/dotnet/cs/xunit.analyzers.fixes.dll",
1637
+ "tools/install.ps1",
1638
+ "tools/uninstall.ps1",
1639
+ "xunit.analyzers.1.18.0.nupkg.sha512",
1640
+ "xunit.analyzers.nuspec"
1641
+ ]
1642
+ },
1643
+ "xunit.assert/2.9.3": {
1644
+ "sha512": "/Kq28fCE7MjOV42YLVRAJzRF0WmEqsmflm0cfpMjGtzQ2lR5mYVj1/i0Y8uDAOLczkL3/jArrwehfMD0YogMAA==",
1645
+ "type": "package",
1646
+ "path": "xunit.assert/2.9.3",
1647
+ "files": [
1648
+ ".nupkg.metadata",
1649
+ ".signature.p7s",
1650
+ "_content/README.md",
1651
+ "_content/logo-128-transparent.png",
1652
+ "lib/net6.0/xunit.assert.dll",
1653
+ "lib/net6.0/xunit.assert.xml",
1654
+ "lib/netstandard1.1/xunit.assert.dll",
1655
+ "lib/netstandard1.1/xunit.assert.xml",
1656
+ "xunit.assert.2.9.3.nupkg.sha512",
1657
+ "xunit.assert.nuspec"
1658
+ ]
1659
+ },
1660
+ "xunit.core/2.9.3": {
1661
+ "sha512": "BiAEvqGvyme19wE0wTKdADH+NloYqikiU0mcnmiNyXaF9HyHmE6sr/3DC5vnBkgsWaE6yPyWszKSPSApWdRVeQ==",
1662
+ "type": "package",
1663
+ "path": "xunit.core/2.9.3",
1664
+ "files": [
1665
+ ".nupkg.metadata",
1666
+ ".signature.p7s",
1667
+ "_content/README.md",
1668
+ "_content/logo-128-transparent.png",
1669
+ "build/xunit.core.props",
1670
+ "build/xunit.core.targets",
1671
+ "buildMultiTargeting/xunit.core.props",
1672
+ "buildMultiTargeting/xunit.core.targets",
1673
+ "xunit.core.2.9.3.nupkg.sha512",
1674
+ "xunit.core.nuspec"
1675
+ ]
1676
+ },
1677
+ "xunit.extensibility.core/2.9.3": {
1678
+ "sha512": "kf3si0YTn2a8J8eZNb+zFpwfoyvIrQ7ivNk5ZYA5yuYk1bEtMe4DxJ2CF/qsRgmEnDr7MnW1mxylBaHTZ4qErA==",
1679
+ "type": "package",
1680
+ "path": "xunit.extensibility.core/2.9.3",
1681
+ "files": [
1682
+ ".nupkg.metadata",
1683
+ ".signature.p7s",
1684
+ "_content/README.md",
1685
+ "_content/logo-128-transparent.png",
1686
+ "lib/net452/xunit.core.dll",
1687
+ "lib/net452/xunit.core.dll.tdnet",
1688
+ "lib/net452/xunit.core.xml",
1689
+ "lib/net452/xunit.runner.tdnet.dll",
1690
+ "lib/net452/xunit.runner.utility.net452.dll",
1691
+ "lib/netstandard1.1/xunit.core.dll",
1692
+ "lib/netstandard1.1/xunit.core.xml",
1693
+ "xunit.extensibility.core.2.9.3.nupkg.sha512",
1694
+ "xunit.extensibility.core.nuspec"
1695
+ ]
1696
+ },
1697
+ "xunit.extensibility.execution/2.9.3": {
1698
+ "sha512": "yMb6vMESlSrE3Wfj7V6cjQ3S4TXdXpRqYeNEI3zsX31uTsGMJjEw6oD5F5u1cHnMptjhEECnmZSsPxB6ChZHDQ==",
1699
+ "type": "package",
1700
+ "path": "xunit.extensibility.execution/2.9.3",
1701
+ "files": [
1702
+ ".nupkg.metadata",
1703
+ ".signature.p7s",
1704
+ "_content/README.md",
1705
+ "_content/logo-128-transparent.png",
1706
+ "lib/net452/xunit.execution.desktop.dll",
1707
+ "lib/net452/xunit.execution.desktop.xml",
1708
+ "lib/netstandard1.1/xunit.execution.dotnet.dll",
1709
+ "lib/netstandard1.1/xunit.execution.dotnet.xml",
1710
+ "xunit.extensibility.execution.2.9.3.nupkg.sha512",
1711
+ "xunit.extensibility.execution.nuspec"
1712
+ ]
1713
+ },
1714
+ "xunit.runner.visualstudio/3.1.5": {
1715
+ "sha512": "tKi7dSTwP4m5m9eXPM2Ime4Kn7xNf4x4zT9sdLO/G4hZVnQCRiMTWoSZqI/pYTVeI27oPPqHBKYI/DjJ9GsYgA==",
1716
+ "type": "package",
1717
+ "path": "xunit.runner.visualstudio/3.1.5",
1718
+ "files": [
1719
+ ".nupkg.metadata",
1720
+ ".signature.p7s",
1721
+ "_content/README.md",
1722
+ "_content/logo-128-transparent.png",
1723
+ "build/net472/xunit.abstractions.dll",
1724
+ "build/net472/xunit.runner.visualstudio.props",
1725
+ "build/net472/xunit.runner.visualstudio.testadapter.dll",
1726
+ "build/net8.0/xunit.abstractions.dll",
1727
+ "build/net8.0/xunit.runner.visualstudio.props",
1728
+ "build/net8.0/xunit.runner.visualstudio.testadapter.dll",
1729
+ "lib/net472/_._",
1730
+ "lib/net8.0/_._",
1731
+ "xunit.runner.visualstudio.3.1.5.nupkg.sha512",
1732
+ "xunit.runner.visualstudio.nuspec"
1733
+ ]
1734
+ },
1735
+ "__SolutionName__.Application/1.0.0": {
1736
+ "type": "project",
1737
+ "path": "../../src/__SolutionName__.Application/__SolutionName__.Application.csproj",
1738
+ "msbuildProject": "../../src/__SolutionName__.Application/__SolutionName__.Application.csproj"
1739
+ },
1740
+ "__SolutionName__.Domain/1.0.0": {
1741
+ "type": "project",
1742
+ "path": "../../src/__SolutionName__.Domain/__SolutionName__.Domain.csproj",
1743
+ "msbuildProject": "../../src/__SolutionName__.Domain/__SolutionName__.Domain.csproj"
1744
+ },
1745
+ "__SolutionName__.Infrastructure/1.0.0": {
1746
+ "type": "project",
1747
+ "path": "../../src/__SolutionName__.Infrastructure/__SolutionName__.Infrastructure.csproj",
1748
+ "msbuildProject": "../../src/__SolutionName__.Infrastructure/__SolutionName__.Infrastructure.csproj"
1749
+ }
1750
+ },
1751
+ "projectFileDependencyGroups": {
1752
+ "net10.0": [
1753
+ "Microsoft.NET.Test.Sdk >= 18.7.0",
1754
+ "NSubstitute >= 5.3.0",
1755
+ "Shouldly >= 4.3.0",
1756
+ "__SolutionName__.Infrastructure >= 1.0.0",
1757
+ "xunit >= 2.9.3",
1758
+ "xunit.runner.visualstudio >= 3.1.5"
1759
+ ]
1760
+ },
1761
+ "packageFolders": {
1762
+ "C:\\Users\\phuc.pham\\.nuget\\packages\\": {},
1763
+ "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages": {}
1764
+ },
1765
+ "project": {
1766
+ "version": "1.0.0",
1767
+ "restore": {
1768
+ "projectUniqueName": "C:\\Projects2\\Personal\\musketeer\\template\\dotnet-scaffold\\tests\\__SolutionName__.Infrastructure.Tests\\__SolutionName__.Infrastructure.Tests.csproj",
1769
+ "projectName": "__SolutionName__.Infrastructure.Tests",
1770
+ "projectPath": "C:\\Projects2\\Personal\\musketeer\\template\\dotnet-scaffold\\tests\\__SolutionName__.Infrastructure.Tests\\__SolutionName__.Infrastructure.Tests.csproj",
1771
+ "packagesPath": "C:\\Users\\phuc.pham\\.nuget\\packages\\",
1772
+ "outputPath": "C:\\Projects2\\Personal\\musketeer\\template\\dotnet-scaffold\\tests\\__SolutionName__.Infrastructure.Tests\\obj\\",
1773
+ "projectStyle": "PackageReference",
1774
+ "fallbackFolders": [
1775
+ "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages"
1776
+ ],
1777
+ "configFilePaths": [
1778
+ "C:\\Users\\phuc.pham\\AppData\\Roaming\\NuGet\\NuGet.Config",
1779
+ "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config",
1780
+ "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config"
1781
+ ],
1782
+ "originalTargetFrameworks": [
1783
+ "net10.0"
1784
+ ],
1785
+ "sources": {
1786
+ "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {},
1787
+ "https://api.nuget.org/v3/index.json": {}
1788
+ },
1789
+ "frameworks": {
1790
+ "net10.0": {
1791
+ "targetAlias": "net10.0",
1792
+ "projectReferences": {
1793
+ "C:\\Projects2\\Personal\\musketeer\\template\\dotnet-scaffold\\src\\__SolutionName__.Infrastructure\\__SolutionName__.Infrastructure.csproj": {
1794
+ "projectPath": "C:\\Projects2\\Personal\\musketeer\\template\\dotnet-scaffold\\src\\__SolutionName__.Infrastructure\\__SolutionName__.Infrastructure.csproj"
1795
+ }
1796
+ }
1797
+ }
1798
+ },
1799
+ "warningProperties": {
1800
+ "warnAsError": [
1801
+ "NU1605"
1802
+ ]
1803
+ },
1804
+ "restoreAuditProperties": {
1805
+ "enableAudit": "true",
1806
+ "auditLevel": "low",
1807
+ "auditMode": "all"
1808
+ },
1809
+ "SdkAnalysisLevel": "10.0.200"
1810
+ },
1811
+ "frameworks": {
1812
+ "net10.0": {
1813
+ "targetAlias": "net10.0",
1814
+ "dependencies": {
1815
+ "Microsoft.NET.Test.Sdk": {
1816
+ "target": "Package",
1817
+ "version": "[18.7.0, )"
1818
+ },
1819
+ "NSubstitute": {
1820
+ "target": "Package",
1821
+ "version": "[5.3.0, )"
1822
+ },
1823
+ "Shouldly": {
1824
+ "target": "Package",
1825
+ "version": "[4.3.0, )"
1826
+ },
1827
+ "xunit": {
1828
+ "target": "Package",
1829
+ "version": "[2.9.3, )"
1830
+ },
1831
+ "xunit.runner.visualstudio": {
1832
+ "target": "Package",
1833
+ "version": "[3.1.5, )"
1834
+ }
1835
+ },
1836
+ "imports": [
1837
+ "net461",
1838
+ "net462",
1839
+ "net47",
1840
+ "net471",
1841
+ "net472",
1842
+ "net48",
1843
+ "net481"
1844
+ ],
1845
+ "assetTargetFallback": true,
1846
+ "warn": true,
1847
+ "frameworkReferences": {
1848
+ "Microsoft.NETCore.App": {
1849
+ "privateAssets": "all"
1850
+ }
1851
+ },
1852
+ "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\10.0.204/PortableRuntimeIdentifierGraph.json",
1853
+ "packagesToPrune": {
1854
+ "Microsoft.CSharp": "(,4.7.32767]",
1855
+ "Microsoft.VisualBasic": "(,10.4.32767]",
1856
+ "Microsoft.Win32.Primitives": "(,4.3.32767]",
1857
+ "Microsoft.Win32.Registry": "(,5.0.32767]",
1858
+ "runtime.any.System.Collections": "(,4.3.32767]",
1859
+ "runtime.any.System.Diagnostics.Tools": "(,4.3.32767]",
1860
+ "runtime.any.System.Diagnostics.Tracing": "(,4.3.32767]",
1861
+ "runtime.any.System.Globalization": "(,4.3.32767]",
1862
+ "runtime.any.System.Globalization.Calendars": "(,4.3.32767]",
1863
+ "runtime.any.System.IO": "(,4.3.32767]",
1864
+ "runtime.any.System.Reflection": "(,4.3.32767]",
1865
+ "runtime.any.System.Reflection.Extensions": "(,4.3.32767]",
1866
+ "runtime.any.System.Reflection.Primitives": "(,4.3.32767]",
1867
+ "runtime.any.System.Resources.ResourceManager": "(,4.3.32767]",
1868
+ "runtime.any.System.Runtime": "(,4.3.32767]",
1869
+ "runtime.any.System.Runtime.Handles": "(,4.3.32767]",
1870
+ "runtime.any.System.Runtime.InteropServices": "(,4.3.32767]",
1871
+ "runtime.any.System.Text.Encoding": "(,4.3.32767]",
1872
+ "runtime.any.System.Text.Encoding.Extensions": "(,4.3.32767]",
1873
+ "runtime.any.System.Threading.Tasks": "(,4.3.32767]",
1874
+ "runtime.any.System.Threading.Timer": "(,4.3.32767]",
1875
+ "runtime.aot.System.Collections": "(,4.3.32767]",
1876
+ "runtime.aot.System.Diagnostics.Tools": "(,4.3.32767]",
1877
+ "runtime.aot.System.Diagnostics.Tracing": "(,4.3.32767]",
1878
+ "runtime.aot.System.Globalization": "(,4.3.32767]",
1879
+ "runtime.aot.System.Globalization.Calendars": "(,4.3.32767]",
1880
+ "runtime.aot.System.IO": "(,4.3.32767]",
1881
+ "runtime.aot.System.Reflection": "(,4.3.32767]",
1882
+ "runtime.aot.System.Reflection.Extensions": "(,4.3.32767]",
1883
+ "runtime.aot.System.Reflection.Primitives": "(,4.3.32767]",
1884
+ "runtime.aot.System.Resources.ResourceManager": "(,4.3.32767]",
1885
+ "runtime.aot.System.Runtime": "(,4.3.32767]",
1886
+ "runtime.aot.System.Runtime.Handles": "(,4.3.32767]",
1887
+ "runtime.aot.System.Runtime.InteropServices": "(,4.3.32767]",
1888
+ "runtime.aot.System.Text.Encoding": "(,4.3.32767]",
1889
+ "runtime.aot.System.Text.Encoding.Extensions": "(,4.3.32767]",
1890
+ "runtime.aot.System.Threading.Tasks": "(,4.3.32767]",
1891
+ "runtime.aot.System.Threading.Timer": "(,4.3.32767]",
1892
+ "runtime.debian.8-x64.runtime.native.System": "(,4.3.32767]",
1893
+ "runtime.debian.8-x64.runtime.native.System.IO.Compression": "(,4.3.32767]",
1894
+ "runtime.debian.8-x64.runtime.native.System.Net.Http": "(,4.3.32767]",
1895
+ "runtime.debian.8-x64.runtime.native.System.Net.Security": "(,4.3.32767]",
1896
+ "runtime.debian.8-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]",
1897
+ "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]",
1898
+ "runtime.debian.9-x64.runtime.native.System": "(,4.3.32767]",
1899
+ "runtime.debian.9-x64.runtime.native.System.IO.Compression": "(,4.3.32767]",
1900
+ "runtime.debian.9-x64.runtime.native.System.Net.Http": "(,4.3.32767]",
1901
+ "runtime.debian.9-x64.runtime.native.System.Net.Security": "(,4.3.32767]",
1902
+ "runtime.fedora.23-x64.runtime.native.System": "(,4.3.32767]",
1903
+ "runtime.fedora.23-x64.runtime.native.System.IO.Compression": "(,4.3.32767]",
1904
+ "runtime.fedora.23-x64.runtime.native.System.Net.Http": "(,4.3.32767]",
1905
+ "runtime.fedora.23-x64.runtime.native.System.Net.Security": "(,4.3.32767]",
1906
+ "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]",
1907
+ "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]",
1908
+ "runtime.fedora.24-x64.runtime.native.System": "(,4.3.32767]",
1909
+ "runtime.fedora.24-x64.runtime.native.System.IO.Compression": "(,4.3.32767]",
1910
+ "runtime.fedora.24-x64.runtime.native.System.Net.Http": "(,4.3.32767]",
1911
+ "runtime.fedora.24-x64.runtime.native.System.Net.Security": "(,4.3.32767]",
1912
+ "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]",
1913
+ "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]",
1914
+ "runtime.fedora.27-x64.runtime.native.System": "(,4.3.32767]",
1915
+ "runtime.fedora.27-x64.runtime.native.System.IO.Compression": "(,4.3.32767]",
1916
+ "runtime.fedora.27-x64.runtime.native.System.Net.Http": "(,4.3.32767]",
1917
+ "runtime.fedora.27-x64.runtime.native.System.Net.Security": "(,4.3.32767]",
1918
+ "runtime.fedora.28-x64.runtime.native.System": "(,4.3.32767]",
1919
+ "runtime.fedora.28-x64.runtime.native.System.IO.Compression": "(,4.3.32767]",
1920
+ "runtime.fedora.28-x64.runtime.native.System.Net.Http": "(,4.3.32767]",
1921
+ "runtime.fedora.28-x64.runtime.native.System.Net.Security": "(,4.3.32767]",
1922
+ "runtime.opensuse.13.2-x64.runtime.native.System": "(,4.3.32767]",
1923
+ "runtime.opensuse.13.2-x64.runtime.native.System.IO.Compression": "(,4.3.32767]",
1924
+ "runtime.opensuse.13.2-x64.runtime.native.System.Net.Http": "(,4.3.32767]",
1925
+ "runtime.opensuse.13.2-x64.runtime.native.System.Net.Security": "(,4.3.32767]",
1926
+ "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]",
1927
+ "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]",
1928
+ "runtime.opensuse.42.1-x64.runtime.native.System": "(,4.3.32767]",
1929
+ "runtime.opensuse.42.1-x64.runtime.native.System.IO.Compression": "(,4.3.32767]",
1930
+ "runtime.opensuse.42.1-x64.runtime.native.System.Net.Http": "(,4.3.32767]",
1931
+ "runtime.opensuse.42.1-x64.runtime.native.System.Net.Security": "(,4.3.32767]",
1932
+ "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]",
1933
+ "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]",
1934
+ "runtime.opensuse.42.3-x64.runtime.native.System": "(,4.3.32767]",
1935
+ "runtime.opensuse.42.3-x64.runtime.native.System.IO.Compression": "(,4.3.32767]",
1936
+ "runtime.opensuse.42.3-x64.runtime.native.System.Net.Http": "(,4.3.32767]",
1937
+ "runtime.opensuse.42.3-x64.runtime.native.System.Net.Security": "(,4.3.32767]",
1938
+ "runtime.osx.10.10-x64.runtime.native.System": "(,4.3.32767]",
1939
+ "runtime.osx.10.10-x64.runtime.native.System.IO.Compression": "(,4.3.32767]",
1940
+ "runtime.osx.10.10-x64.runtime.native.System.Net.Http": "(,4.3.32767]",
1941
+ "runtime.osx.10.10-x64.runtime.native.System.Net.Security": "(,4.3.32767]",
1942
+ "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]",
1943
+ "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple": "(,4.3.32767]",
1944
+ "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]",
1945
+ "runtime.rhel.7-x64.runtime.native.System": "(,4.3.32767]",
1946
+ "runtime.rhel.7-x64.runtime.native.System.IO.Compression": "(,4.3.32767]",
1947
+ "runtime.rhel.7-x64.runtime.native.System.Net.Http": "(,4.3.32767]",
1948
+ "runtime.rhel.7-x64.runtime.native.System.Net.Security": "(,4.3.32767]",
1949
+ "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]",
1950
+ "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]",
1951
+ "runtime.ubuntu.14.04-x64.runtime.native.System": "(,4.3.32767]",
1952
+ "runtime.ubuntu.14.04-x64.runtime.native.System.IO.Compression": "(,4.3.32767]",
1953
+ "runtime.ubuntu.14.04-x64.runtime.native.System.Net.Http": "(,4.3.32767]",
1954
+ "runtime.ubuntu.14.04-x64.runtime.native.System.Net.Security": "(,4.3.32767]",
1955
+ "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]",
1956
+ "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]",
1957
+ "runtime.ubuntu.16.04-x64.runtime.native.System": "(,4.3.32767]",
1958
+ "runtime.ubuntu.16.04-x64.runtime.native.System.IO.Compression": "(,4.3.32767]",
1959
+ "runtime.ubuntu.16.04-x64.runtime.native.System.Net.Http": "(,4.3.32767]",
1960
+ "runtime.ubuntu.16.04-x64.runtime.native.System.Net.Security": "(,4.3.32767]",
1961
+ "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]",
1962
+ "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]",
1963
+ "runtime.ubuntu.16.10-x64.runtime.native.System": "(,4.3.32767]",
1964
+ "runtime.ubuntu.16.10-x64.runtime.native.System.IO.Compression": "(,4.3.32767]",
1965
+ "runtime.ubuntu.16.10-x64.runtime.native.System.Net.Http": "(,4.3.32767]",
1966
+ "runtime.ubuntu.16.10-x64.runtime.native.System.Net.Security": "(,4.3.32767]",
1967
+ "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]",
1968
+ "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]",
1969
+ "runtime.ubuntu.18.04-x64.runtime.native.System": "(,4.3.32767]",
1970
+ "runtime.ubuntu.18.04-x64.runtime.native.System.IO.Compression": "(,4.3.32767]",
1971
+ "runtime.ubuntu.18.04-x64.runtime.native.System.Net.Http": "(,4.3.32767]",
1972
+ "runtime.ubuntu.18.04-x64.runtime.native.System.Net.Security": "(,4.3.32767]",
1973
+ "runtime.unix.Microsoft.Win32.Primitives": "(,4.3.32767]",
1974
+ "runtime.unix.System.Console": "(,4.3.32767]",
1975
+ "runtime.unix.System.Diagnostics.Debug": "(,4.3.32767]",
1976
+ "runtime.unix.System.IO.FileSystem": "(,4.3.32767]",
1977
+ "runtime.unix.System.Net.Primitives": "(,4.3.32767]",
1978
+ "runtime.unix.System.Net.Sockets": "(,4.3.32767]",
1979
+ "runtime.unix.System.Private.Uri": "(,4.3.32767]",
1980
+ "runtime.unix.System.Runtime.Extensions": "(,4.3.32767]",
1981
+ "runtime.win.Microsoft.Win32.Primitives": "(,4.3.32767]",
1982
+ "runtime.win.System.Console": "(,4.3.32767]",
1983
+ "runtime.win.System.Diagnostics.Debug": "(,4.3.32767]",
1984
+ "runtime.win.System.IO.FileSystem": "(,4.3.32767]",
1985
+ "runtime.win.System.Net.Primitives": "(,4.3.32767]",
1986
+ "runtime.win.System.Net.Sockets": "(,4.3.32767]",
1987
+ "runtime.win.System.Runtime.Extensions": "(,4.3.32767]",
1988
+ "runtime.win10-arm-aot.runtime.native.System.IO.Compression": "(,4.0.32767]",
1989
+ "runtime.win10-arm64.runtime.native.System.IO.Compression": "(,4.3.32767]",
1990
+ "runtime.win10-x64-aot.runtime.native.System.IO.Compression": "(,4.0.32767]",
1991
+ "runtime.win10-x86-aot.runtime.native.System.IO.Compression": "(,4.0.32767]",
1992
+ "runtime.win7-x64.runtime.native.System.IO.Compression": "(,4.3.32767]",
1993
+ "runtime.win7-x86.runtime.native.System.IO.Compression": "(,4.3.32767]",
1994
+ "runtime.win7.System.Private.Uri": "(,4.3.32767]",
1995
+ "runtime.win8-arm.runtime.native.System.IO.Compression": "(,4.3.32767]",
1996
+ "System.AppContext": "(,4.3.32767]",
1997
+ "System.Buffers": "(,5.0.32767]",
1998
+ "System.Collections": "(,4.3.32767]",
1999
+ "System.Collections.Concurrent": "(,4.3.32767]",
2000
+ "System.Collections.Immutable": "(,10.0.32767]",
2001
+ "System.Collections.NonGeneric": "(,4.3.32767]",
2002
+ "System.Collections.Specialized": "(,4.3.32767]",
2003
+ "System.ComponentModel": "(,4.3.32767]",
2004
+ "System.ComponentModel.Annotations": "(,4.3.32767]",
2005
+ "System.ComponentModel.EventBasedAsync": "(,4.3.32767]",
2006
+ "System.ComponentModel.Primitives": "(,4.3.32767]",
2007
+ "System.ComponentModel.TypeConverter": "(,4.3.32767]",
2008
+ "System.Console": "(,4.3.32767]",
2009
+ "System.Data.Common": "(,4.3.32767]",
2010
+ "System.Data.DataSetExtensions": "(,4.4.32767]",
2011
+ "System.Diagnostics.Contracts": "(,4.3.32767]",
2012
+ "System.Diagnostics.Debug": "(,4.3.32767]",
2013
+ "System.Diagnostics.DiagnosticSource": "(,10.0.32767]",
2014
+ "System.Diagnostics.FileVersionInfo": "(,4.3.32767]",
2015
+ "System.Diagnostics.Process": "(,4.3.32767]",
2016
+ "System.Diagnostics.StackTrace": "(,4.3.32767]",
2017
+ "System.Diagnostics.TextWriterTraceListener": "(,4.3.32767]",
2018
+ "System.Diagnostics.Tools": "(,4.3.32767]",
2019
+ "System.Diagnostics.TraceSource": "(,4.3.32767]",
2020
+ "System.Diagnostics.Tracing": "(,4.3.32767]",
2021
+ "System.Drawing.Primitives": "(,4.3.32767]",
2022
+ "System.Dynamic.Runtime": "(,4.3.32767]",
2023
+ "System.Formats.Asn1": "(,10.0.32767]",
2024
+ "System.Formats.Tar": "(,10.0.32767]",
2025
+ "System.Globalization": "(,4.3.32767]",
2026
+ "System.Globalization.Calendars": "(,4.3.32767]",
2027
+ "System.Globalization.Extensions": "(,4.3.32767]",
2028
+ "System.IO": "(,4.3.32767]",
2029
+ "System.IO.Compression": "(,4.3.32767]",
2030
+ "System.IO.Compression.ZipFile": "(,4.3.32767]",
2031
+ "System.IO.FileSystem": "(,4.3.32767]",
2032
+ "System.IO.FileSystem.AccessControl": "(,4.4.32767]",
2033
+ "System.IO.FileSystem.DriveInfo": "(,4.3.32767]",
2034
+ "System.IO.FileSystem.Primitives": "(,4.3.32767]",
2035
+ "System.IO.FileSystem.Watcher": "(,4.3.32767]",
2036
+ "System.IO.IsolatedStorage": "(,4.3.32767]",
2037
+ "System.IO.MemoryMappedFiles": "(,4.3.32767]",
2038
+ "System.IO.Pipelines": "(,10.0.32767]",
2039
+ "System.IO.Pipes": "(,4.3.32767]",
2040
+ "System.IO.Pipes.AccessControl": "(,5.0.32767]",
2041
+ "System.IO.UnmanagedMemoryStream": "(,4.3.32767]",
2042
+ "System.Linq": "(,4.3.32767]",
2043
+ "System.Linq.AsyncEnumerable": "(,10.0.32767]",
2044
+ "System.Linq.Expressions": "(,4.3.32767]",
2045
+ "System.Linq.Parallel": "(,4.3.32767]",
2046
+ "System.Linq.Queryable": "(,4.3.32767]",
2047
+ "System.Memory": "(,5.0.32767]",
2048
+ "System.Net.Http": "(,4.3.32767]",
2049
+ "System.Net.Http.Json": "(,10.0.32767]",
2050
+ "System.Net.NameResolution": "(,4.3.32767]",
2051
+ "System.Net.NetworkInformation": "(,4.3.32767]",
2052
+ "System.Net.Ping": "(,4.3.32767]",
2053
+ "System.Net.Primitives": "(,4.3.32767]",
2054
+ "System.Net.Requests": "(,4.3.32767]",
2055
+ "System.Net.Security": "(,4.3.32767]",
2056
+ "System.Net.ServerSentEvents": "(,10.0.32767]",
2057
+ "System.Net.Sockets": "(,4.3.32767]",
2058
+ "System.Net.WebHeaderCollection": "(,4.3.32767]",
2059
+ "System.Net.WebSockets": "(,4.3.32767]",
2060
+ "System.Net.WebSockets.Client": "(,4.3.32767]",
2061
+ "System.Numerics.Vectors": "(,5.0.32767]",
2062
+ "System.ObjectModel": "(,4.3.32767]",
2063
+ "System.Private.DataContractSerialization": "(,4.3.32767]",
2064
+ "System.Private.Uri": "(,4.3.32767]",
2065
+ "System.Reflection": "(,4.3.32767]",
2066
+ "System.Reflection.DispatchProxy": "(,6.0.32767]",
2067
+ "System.Reflection.Emit": "(,4.7.32767]",
2068
+ "System.Reflection.Emit.ILGeneration": "(,4.7.32767]",
2069
+ "System.Reflection.Emit.Lightweight": "(,4.7.32767]",
2070
+ "System.Reflection.Extensions": "(,4.3.32767]",
2071
+ "System.Reflection.Metadata": "(,10.0.32767]",
2072
+ "System.Reflection.Primitives": "(,4.3.32767]",
2073
+ "System.Reflection.TypeExtensions": "(,4.3.32767]",
2074
+ "System.Resources.Reader": "(,4.3.32767]",
2075
+ "System.Resources.ResourceManager": "(,4.3.32767]",
2076
+ "System.Resources.Writer": "(,4.3.32767]",
2077
+ "System.Runtime": "(,4.3.32767]",
2078
+ "System.Runtime.CompilerServices.Unsafe": "(,7.0.32767]",
2079
+ "System.Runtime.CompilerServices.VisualC": "(,4.3.32767]",
2080
+ "System.Runtime.Extensions": "(,4.3.32767]",
2081
+ "System.Runtime.Handles": "(,4.3.32767]",
2082
+ "System.Runtime.InteropServices": "(,4.3.32767]",
2083
+ "System.Runtime.InteropServices.RuntimeInformation": "(,4.3.32767]",
2084
+ "System.Runtime.Loader": "(,4.3.32767]",
2085
+ "System.Runtime.Numerics": "(,4.3.32767]",
2086
+ "System.Runtime.Serialization.Formatters": "(,4.3.32767]",
2087
+ "System.Runtime.Serialization.Json": "(,4.3.32767]",
2088
+ "System.Runtime.Serialization.Primitives": "(,4.3.32767]",
2089
+ "System.Runtime.Serialization.Xml": "(,4.3.32767]",
2090
+ "System.Security.AccessControl": "(,6.0.32767]",
2091
+ "System.Security.Claims": "(,4.3.32767]",
2092
+ "System.Security.Cryptography.Algorithms": "(,4.3.32767]",
2093
+ "System.Security.Cryptography.Cng": "(,5.0.32767]",
2094
+ "System.Security.Cryptography.Csp": "(,4.3.32767]",
2095
+ "System.Security.Cryptography.Encoding": "(,4.3.32767]",
2096
+ "System.Security.Cryptography.OpenSsl": "(,5.0.32767]",
2097
+ "System.Security.Cryptography.Primitives": "(,4.3.32767]",
2098
+ "System.Security.Cryptography.X509Certificates": "(,4.3.32767]",
2099
+ "System.Security.Principal": "(,4.3.32767]",
2100
+ "System.Security.Principal.Windows": "(,5.0.32767]",
2101
+ "System.Security.SecureString": "(,4.3.32767]",
2102
+ "System.Text.Encoding": "(,4.3.32767]",
2103
+ "System.Text.Encoding.CodePages": "(,10.0.32767]",
2104
+ "System.Text.Encoding.Extensions": "(,4.3.32767]",
2105
+ "System.Text.Encodings.Web": "(,10.0.32767]",
2106
+ "System.Text.Json": "(,10.0.32767]",
2107
+ "System.Text.RegularExpressions": "(,4.3.32767]",
2108
+ "System.Threading": "(,4.3.32767]",
2109
+ "System.Threading.AccessControl": "(,10.0.32767]",
2110
+ "System.Threading.Channels": "(,10.0.32767]",
2111
+ "System.Threading.Overlapped": "(,4.3.32767]",
2112
+ "System.Threading.Tasks": "(,4.3.32767]",
2113
+ "System.Threading.Tasks.Dataflow": "(,10.0.32767]",
2114
+ "System.Threading.Tasks.Extensions": "(,5.0.32767]",
2115
+ "System.Threading.Tasks.Parallel": "(,4.3.32767]",
2116
+ "System.Threading.Thread": "(,4.3.32767]",
2117
+ "System.Threading.ThreadPool": "(,4.3.32767]",
2118
+ "System.Threading.Timer": "(,4.3.32767]",
2119
+ "System.ValueTuple": "(,4.5.32767]",
2120
+ "System.Xml.ReaderWriter": "(,4.3.32767]",
2121
+ "System.Xml.XDocument": "(,4.3.32767]",
2122
+ "System.Xml.XmlDocument": "(,4.3.32767]",
2123
+ "System.Xml.XmlSerializer": "(,4.3.32767]",
2124
+ "System.Xml.XPath": "(,4.3.32767]",
2125
+ "System.Xml.XPath.XDocument": "(,5.0.32767]"
2126
+ }
2127
+ }
2128
+ }
2129
+ }
2130
+ }