@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,1536 @@
1
+ {
2
+ "format": 1,
3
+ "restore": {
4
+ "C:\\Projects2\\Personal\\musketeer\\template\\dotnet-scaffold\\src\\__SolutionName__.Api\\__SolutionName__.Api.csproj": {}
5
+ },
6
+ "projects": {
7
+ "C:\\Projects2\\Personal\\musketeer\\template\\dotnet-scaffold\\src\\__SolutionName__.Api\\__SolutionName__.Api.csproj": {
8
+ "version": "1.0.0",
9
+ "restore": {
10
+ "projectUniqueName": "C:\\Projects2\\Personal\\musketeer\\template\\dotnet-scaffold\\src\\__SolutionName__.Api\\__SolutionName__.Api.csproj",
11
+ "projectName": "__SolutionName__.Api",
12
+ "projectPath": "C:\\Projects2\\Personal\\musketeer\\template\\dotnet-scaffold\\src\\__SolutionName__.Api\\__SolutionName__.Api.csproj",
13
+ "packagesPath": "C:\\Users\\phuc.pham\\.nuget\\packages\\",
14
+ "outputPath": "C:\\Projects2\\Personal\\musketeer\\template\\dotnet-scaffold\\src\\__SolutionName__.Api\\obj\\",
15
+ "projectStyle": "PackageReference",
16
+ "fallbackFolders": [
17
+ "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages"
18
+ ],
19
+ "configFilePaths": [
20
+ "C:\\Users\\phuc.pham\\AppData\\Roaming\\NuGet\\NuGet.Config",
21
+ "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config",
22
+ "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config"
23
+ ],
24
+ "originalTargetFrameworks": [
25
+ "net10.0"
26
+ ],
27
+ "sources": {
28
+ "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {},
29
+ "https://api.nuget.org/v3/index.json": {}
30
+ },
31
+ "frameworks": {
32
+ "net10.0": {
33
+ "targetAlias": "net10.0",
34
+ "projectReferences": {
35
+ "C:\\Projects2\\Personal\\musketeer\\template\\dotnet-scaffold\\src\\__SolutionName__.Application\\__SolutionName__.Application.csproj": {
36
+ "projectPath": "C:\\Projects2\\Personal\\musketeer\\template\\dotnet-scaffold\\src\\__SolutionName__.Application\\__SolutionName__.Application.csproj"
37
+ },
38
+ "C:\\Projects2\\Personal\\musketeer\\template\\dotnet-scaffold\\src\\__SolutionName__.Infrastructure\\__SolutionName__.Infrastructure.csproj": {
39
+ "projectPath": "C:\\Projects2\\Personal\\musketeer\\template\\dotnet-scaffold\\src\\__SolutionName__.Infrastructure\\__SolutionName__.Infrastructure.csproj"
40
+ }
41
+ }
42
+ }
43
+ },
44
+ "warningProperties": {
45
+ "warnAsError": [
46
+ "NU1605"
47
+ ]
48
+ },
49
+ "restoreAuditProperties": {
50
+ "enableAudit": "true",
51
+ "auditLevel": "low",
52
+ "auditMode": "all"
53
+ },
54
+ "SdkAnalysisLevel": "10.0.200"
55
+ },
56
+ "frameworks": {
57
+ "net10.0": {
58
+ "targetAlias": "net10.0",
59
+ "imports": [
60
+ "net461",
61
+ "net462",
62
+ "net47",
63
+ "net471",
64
+ "net472",
65
+ "net48",
66
+ "net481"
67
+ ],
68
+ "assetTargetFallback": true,
69
+ "warn": true,
70
+ "frameworkReferences": {
71
+ "Microsoft.AspNetCore.App": {
72
+ "privateAssets": "none"
73
+ },
74
+ "Microsoft.NETCore.App": {
75
+ "privateAssets": "all"
76
+ }
77
+ },
78
+ "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\10.0.204/PortableRuntimeIdentifierGraph.json",
79
+ "packagesToPrune": {
80
+ "Microsoft.AspNetCore": "(,10.0.32767]",
81
+ "Microsoft.AspNetCore.Antiforgery": "(,10.0.32767]",
82
+ "Microsoft.AspNetCore.App": "(,10.0.32767]",
83
+ "Microsoft.AspNetCore.Authentication": "(,10.0.32767]",
84
+ "Microsoft.AspNetCore.Authentication.Abstractions": "(,10.0.32767]",
85
+ "Microsoft.AspNetCore.Authentication.BearerToken": "(,10.0.32767]",
86
+ "Microsoft.AspNetCore.Authentication.Cookies": "(,10.0.32767]",
87
+ "Microsoft.AspNetCore.Authentication.Core": "(,10.0.32767]",
88
+ "Microsoft.AspNetCore.Authentication.OAuth": "(,10.0.32767]",
89
+ "Microsoft.AspNetCore.Authorization": "(,10.0.32767]",
90
+ "Microsoft.AspNetCore.Authorization.Policy": "(,10.0.32767]",
91
+ "Microsoft.AspNetCore.Components": "(,10.0.32767]",
92
+ "Microsoft.AspNetCore.Components.Authorization": "(,10.0.32767]",
93
+ "Microsoft.AspNetCore.Components.Endpoints": "(,10.0.32767]",
94
+ "Microsoft.AspNetCore.Components.Forms": "(,10.0.32767]",
95
+ "Microsoft.AspNetCore.Components.Server": "(,10.0.32767]",
96
+ "Microsoft.AspNetCore.Components.Web": "(,10.0.32767]",
97
+ "Microsoft.AspNetCore.Connections.Abstractions": "(,10.0.32767]",
98
+ "Microsoft.AspNetCore.CookiePolicy": "(,10.0.32767]",
99
+ "Microsoft.AspNetCore.Cors": "(,10.0.32767]",
100
+ "Microsoft.AspNetCore.Cryptography.Internal": "(,10.0.32767]",
101
+ "Microsoft.AspNetCore.Cryptography.KeyDerivation": "(,10.0.32767]",
102
+ "Microsoft.AspNetCore.DataProtection": "(,10.0.32767]",
103
+ "Microsoft.AspNetCore.DataProtection.Abstractions": "(,10.0.32767]",
104
+ "Microsoft.AspNetCore.DataProtection.Extensions": "(,10.0.32767]",
105
+ "Microsoft.AspNetCore.Diagnostics": "(,10.0.32767]",
106
+ "Microsoft.AspNetCore.Diagnostics.Abstractions": "(,10.0.32767]",
107
+ "Microsoft.AspNetCore.Diagnostics.HealthChecks": "(,10.0.32767]",
108
+ "Microsoft.AspNetCore.HostFiltering": "(,10.0.32767]",
109
+ "Microsoft.AspNetCore.Hosting": "(,10.0.32767]",
110
+ "Microsoft.AspNetCore.Hosting.Abstractions": "(,10.0.32767]",
111
+ "Microsoft.AspNetCore.Hosting.Server.Abstractions": "(,10.0.32767]",
112
+ "Microsoft.AspNetCore.Html.Abstractions": "(,10.0.32767]",
113
+ "Microsoft.AspNetCore.Http": "(,10.0.32767]",
114
+ "Microsoft.AspNetCore.Http.Abstractions": "(,10.0.32767]",
115
+ "Microsoft.AspNetCore.Http.Connections": "(,10.0.32767]",
116
+ "Microsoft.AspNetCore.Http.Connections.Common": "(,10.0.32767]",
117
+ "Microsoft.AspNetCore.Http.Extensions": "(,10.0.32767]",
118
+ "Microsoft.AspNetCore.Http.Features": "(,10.0.32767]",
119
+ "Microsoft.AspNetCore.Http.Results": "(,10.0.32767]",
120
+ "Microsoft.AspNetCore.HttpLogging": "(,10.0.32767]",
121
+ "Microsoft.AspNetCore.HttpOverrides": "(,10.0.32767]",
122
+ "Microsoft.AspNetCore.HttpsPolicy": "(,10.0.32767]",
123
+ "Microsoft.AspNetCore.Identity": "(,10.0.32767]",
124
+ "Microsoft.AspNetCore.Localization": "(,10.0.32767]",
125
+ "Microsoft.AspNetCore.Localization.Routing": "(,10.0.32767]",
126
+ "Microsoft.AspNetCore.Metadata": "(,10.0.32767]",
127
+ "Microsoft.AspNetCore.Mvc": "(,10.0.32767]",
128
+ "Microsoft.AspNetCore.Mvc.Abstractions": "(,10.0.32767]",
129
+ "Microsoft.AspNetCore.Mvc.ApiExplorer": "(,10.0.32767]",
130
+ "Microsoft.AspNetCore.Mvc.Core": "(,10.0.32767]",
131
+ "Microsoft.AspNetCore.Mvc.Cors": "(,10.0.32767]",
132
+ "Microsoft.AspNetCore.Mvc.DataAnnotations": "(,10.0.32767]",
133
+ "Microsoft.AspNetCore.Mvc.Formatters.Json": "(,10.0.32767]",
134
+ "Microsoft.AspNetCore.Mvc.Formatters.Xml": "(,10.0.32767]",
135
+ "Microsoft.AspNetCore.Mvc.Localization": "(,10.0.32767]",
136
+ "Microsoft.AspNetCore.Mvc.Razor": "(,10.0.32767]",
137
+ "Microsoft.AspNetCore.Mvc.RazorPages": "(,10.0.32767]",
138
+ "Microsoft.AspNetCore.Mvc.TagHelpers": "(,10.0.32767]",
139
+ "Microsoft.AspNetCore.Mvc.ViewFeatures": "(,10.0.32767]",
140
+ "Microsoft.AspNetCore.OutputCaching": "(,10.0.32767]",
141
+ "Microsoft.AspNetCore.RateLimiting": "(,10.0.32767]",
142
+ "Microsoft.AspNetCore.Razor": "(,10.0.32767]",
143
+ "Microsoft.AspNetCore.Razor.Runtime": "(,10.0.32767]",
144
+ "Microsoft.AspNetCore.RequestDecompression": "(,10.0.32767]",
145
+ "Microsoft.AspNetCore.ResponseCaching": "(,10.0.32767]",
146
+ "Microsoft.AspNetCore.ResponseCaching.Abstractions": "(,10.0.32767]",
147
+ "Microsoft.AspNetCore.ResponseCompression": "(,10.0.32767]",
148
+ "Microsoft.AspNetCore.Rewrite": "(,10.0.32767]",
149
+ "Microsoft.AspNetCore.Routing": "(,10.0.32767]",
150
+ "Microsoft.AspNetCore.Routing.Abstractions": "(,10.0.32767]",
151
+ "Microsoft.AspNetCore.Server.HttpSys": "(,10.0.32767]",
152
+ "Microsoft.AspNetCore.Server.IIS": "(,10.0.32767]",
153
+ "Microsoft.AspNetCore.Server.IISIntegration": "(,10.0.32767]",
154
+ "Microsoft.AspNetCore.Server.Kestrel": "(,10.0.32767]",
155
+ "Microsoft.AspNetCore.Server.Kestrel.Core": "(,10.0.32767]",
156
+ "Microsoft.AspNetCore.Server.Kestrel.Transport.NamedPipes": "(,10.0.32767]",
157
+ "Microsoft.AspNetCore.Server.Kestrel.Transport.Quic": "(,10.0.32767]",
158
+ "Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets": "(,10.0.32767]",
159
+ "Microsoft.AspNetCore.Session": "(,10.0.32767]",
160
+ "Microsoft.AspNetCore.SignalR": "(,10.0.32767]",
161
+ "Microsoft.AspNetCore.SignalR.Common": "(,10.0.32767]",
162
+ "Microsoft.AspNetCore.SignalR.Core": "(,10.0.32767]",
163
+ "Microsoft.AspNetCore.SignalR.Protocols.Json": "(,10.0.32767]",
164
+ "Microsoft.AspNetCore.StaticAssets": "(,10.0.32767]",
165
+ "Microsoft.AspNetCore.StaticFiles": "(,10.0.32767]",
166
+ "Microsoft.AspNetCore.WebSockets": "(,10.0.32767]",
167
+ "Microsoft.AspNetCore.WebUtilities": "(,10.0.32767]",
168
+ "Microsoft.CSharp": "(,4.7.32767]",
169
+ "Microsoft.Extensions.Caching.Abstractions": "(,10.0.32767]",
170
+ "Microsoft.Extensions.Caching.Memory": "(,10.0.32767]",
171
+ "Microsoft.Extensions.Configuration": "(,10.0.32767]",
172
+ "Microsoft.Extensions.Configuration.Abstractions": "(,10.0.32767]",
173
+ "Microsoft.Extensions.Configuration.Binder": "(,10.0.32767]",
174
+ "Microsoft.Extensions.Configuration.CommandLine": "(,10.0.32767]",
175
+ "Microsoft.Extensions.Configuration.EnvironmentVariables": "(,10.0.32767]",
176
+ "Microsoft.Extensions.Configuration.FileExtensions": "(,10.0.32767]",
177
+ "Microsoft.Extensions.Configuration.Ini": "(,10.0.32767]",
178
+ "Microsoft.Extensions.Configuration.Json": "(,10.0.32767]",
179
+ "Microsoft.Extensions.Configuration.KeyPerFile": "(,10.0.32767]",
180
+ "Microsoft.Extensions.Configuration.UserSecrets": "(,10.0.32767]",
181
+ "Microsoft.Extensions.Configuration.Xml": "(,10.0.32767]",
182
+ "Microsoft.Extensions.DependencyInjection": "(,10.0.32767]",
183
+ "Microsoft.Extensions.DependencyInjection.Abstractions": "(,10.0.32767]",
184
+ "Microsoft.Extensions.Diagnostics": "(,10.0.32767]",
185
+ "Microsoft.Extensions.Diagnostics.Abstractions": "(,10.0.32767]",
186
+ "Microsoft.Extensions.Diagnostics.HealthChecks": "(,10.0.32767]",
187
+ "Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions": "(,10.0.32767]",
188
+ "Microsoft.Extensions.Features": "(,10.0.32767]",
189
+ "Microsoft.Extensions.FileProviders.Abstractions": "(,10.0.32767]",
190
+ "Microsoft.Extensions.FileProviders.Composite": "(,10.0.32767]",
191
+ "Microsoft.Extensions.FileProviders.Physical": "(,10.0.32767]",
192
+ "Microsoft.Extensions.FileSystemGlobbing": "(,10.0.32767]",
193
+ "Microsoft.Extensions.Hosting": "(,10.0.32767]",
194
+ "Microsoft.Extensions.Hosting.Abstractions": "(,10.0.32767]",
195
+ "Microsoft.Extensions.Http": "(,10.0.32767]",
196
+ "Microsoft.Extensions.Identity.Core": "(,10.0.32767]",
197
+ "Microsoft.Extensions.Identity.Stores": "(,10.0.32767]",
198
+ "Microsoft.Extensions.Localization": "(,10.0.32767]",
199
+ "Microsoft.Extensions.Localization.Abstractions": "(,10.0.32767]",
200
+ "Microsoft.Extensions.Logging": "(,10.0.32767]",
201
+ "Microsoft.Extensions.Logging.Abstractions": "(,10.0.32767]",
202
+ "Microsoft.Extensions.Logging.Configuration": "(,10.0.32767]",
203
+ "Microsoft.Extensions.Logging.Console": "(,10.0.32767]",
204
+ "Microsoft.Extensions.Logging.Debug": "(,10.0.32767]",
205
+ "Microsoft.Extensions.Logging.EventLog": "(,10.0.32767]",
206
+ "Microsoft.Extensions.Logging.EventSource": "(,10.0.32767]",
207
+ "Microsoft.Extensions.Logging.TraceSource": "(,10.0.32767]",
208
+ "Microsoft.Extensions.ObjectPool": "(,10.0.32767]",
209
+ "Microsoft.Extensions.Options": "(,10.0.32767]",
210
+ "Microsoft.Extensions.Options.ConfigurationExtensions": "(,10.0.32767]",
211
+ "Microsoft.Extensions.Options.DataAnnotations": "(,10.0.32767]",
212
+ "Microsoft.Extensions.Primitives": "(,10.0.32767]",
213
+ "Microsoft.Extensions.Validation": "(,10.0.32767]",
214
+ "Microsoft.Extensions.WebEncoders": "(,10.0.32767]",
215
+ "Microsoft.JSInterop": "(,10.0.32767]",
216
+ "Microsoft.Net.Http.Headers": "(,10.0.32767]",
217
+ "Microsoft.VisualBasic": "(,10.4.32767]",
218
+ "Microsoft.Win32.Primitives": "(,4.3.32767]",
219
+ "Microsoft.Win32.Registry": "(,5.0.32767]",
220
+ "runtime.any.System.Collections": "(,4.3.32767]",
221
+ "runtime.any.System.Diagnostics.Tools": "(,4.3.32767]",
222
+ "runtime.any.System.Diagnostics.Tracing": "(,4.3.32767]",
223
+ "runtime.any.System.Globalization": "(,4.3.32767]",
224
+ "runtime.any.System.Globalization.Calendars": "(,4.3.32767]",
225
+ "runtime.any.System.IO": "(,4.3.32767]",
226
+ "runtime.any.System.Reflection": "(,4.3.32767]",
227
+ "runtime.any.System.Reflection.Extensions": "(,4.3.32767]",
228
+ "runtime.any.System.Reflection.Primitives": "(,4.3.32767]",
229
+ "runtime.any.System.Resources.ResourceManager": "(,4.3.32767]",
230
+ "runtime.any.System.Runtime": "(,4.3.32767]",
231
+ "runtime.any.System.Runtime.Handles": "(,4.3.32767]",
232
+ "runtime.any.System.Runtime.InteropServices": "(,4.3.32767]",
233
+ "runtime.any.System.Text.Encoding": "(,4.3.32767]",
234
+ "runtime.any.System.Text.Encoding.Extensions": "(,4.3.32767]",
235
+ "runtime.any.System.Threading.Tasks": "(,4.3.32767]",
236
+ "runtime.any.System.Threading.Timer": "(,4.3.32767]",
237
+ "runtime.aot.System.Collections": "(,4.3.32767]",
238
+ "runtime.aot.System.Diagnostics.Tools": "(,4.3.32767]",
239
+ "runtime.aot.System.Diagnostics.Tracing": "(,4.3.32767]",
240
+ "runtime.aot.System.Globalization": "(,4.3.32767]",
241
+ "runtime.aot.System.Globalization.Calendars": "(,4.3.32767]",
242
+ "runtime.aot.System.IO": "(,4.3.32767]",
243
+ "runtime.aot.System.Reflection": "(,4.3.32767]",
244
+ "runtime.aot.System.Reflection.Extensions": "(,4.3.32767]",
245
+ "runtime.aot.System.Reflection.Primitives": "(,4.3.32767]",
246
+ "runtime.aot.System.Resources.ResourceManager": "(,4.3.32767]",
247
+ "runtime.aot.System.Runtime": "(,4.3.32767]",
248
+ "runtime.aot.System.Runtime.Handles": "(,4.3.32767]",
249
+ "runtime.aot.System.Runtime.InteropServices": "(,4.3.32767]",
250
+ "runtime.aot.System.Text.Encoding": "(,4.3.32767]",
251
+ "runtime.aot.System.Text.Encoding.Extensions": "(,4.3.32767]",
252
+ "runtime.aot.System.Threading.Tasks": "(,4.3.32767]",
253
+ "runtime.aot.System.Threading.Timer": "(,4.3.32767]",
254
+ "runtime.debian.8-x64.runtime.native.System": "(,4.3.32767]",
255
+ "runtime.debian.8-x64.runtime.native.System.IO.Compression": "(,4.3.32767]",
256
+ "runtime.debian.8-x64.runtime.native.System.Net.Http": "(,4.3.32767]",
257
+ "runtime.debian.8-x64.runtime.native.System.Net.Security": "(,4.3.32767]",
258
+ "runtime.debian.8-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]",
259
+ "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]",
260
+ "runtime.debian.9-x64.runtime.native.System": "(,4.3.32767]",
261
+ "runtime.debian.9-x64.runtime.native.System.IO.Compression": "(,4.3.32767]",
262
+ "runtime.debian.9-x64.runtime.native.System.Net.Http": "(,4.3.32767]",
263
+ "runtime.debian.9-x64.runtime.native.System.Net.Security": "(,4.3.32767]",
264
+ "runtime.fedora.23-x64.runtime.native.System": "(,4.3.32767]",
265
+ "runtime.fedora.23-x64.runtime.native.System.IO.Compression": "(,4.3.32767]",
266
+ "runtime.fedora.23-x64.runtime.native.System.Net.Http": "(,4.3.32767]",
267
+ "runtime.fedora.23-x64.runtime.native.System.Net.Security": "(,4.3.32767]",
268
+ "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]",
269
+ "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]",
270
+ "runtime.fedora.24-x64.runtime.native.System": "(,4.3.32767]",
271
+ "runtime.fedora.24-x64.runtime.native.System.IO.Compression": "(,4.3.32767]",
272
+ "runtime.fedora.24-x64.runtime.native.System.Net.Http": "(,4.3.32767]",
273
+ "runtime.fedora.24-x64.runtime.native.System.Net.Security": "(,4.3.32767]",
274
+ "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]",
275
+ "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]",
276
+ "runtime.fedora.27-x64.runtime.native.System": "(,4.3.32767]",
277
+ "runtime.fedora.27-x64.runtime.native.System.IO.Compression": "(,4.3.32767]",
278
+ "runtime.fedora.27-x64.runtime.native.System.Net.Http": "(,4.3.32767]",
279
+ "runtime.fedora.27-x64.runtime.native.System.Net.Security": "(,4.3.32767]",
280
+ "runtime.fedora.28-x64.runtime.native.System": "(,4.3.32767]",
281
+ "runtime.fedora.28-x64.runtime.native.System.IO.Compression": "(,4.3.32767]",
282
+ "runtime.fedora.28-x64.runtime.native.System.Net.Http": "(,4.3.32767]",
283
+ "runtime.fedora.28-x64.runtime.native.System.Net.Security": "(,4.3.32767]",
284
+ "runtime.opensuse.13.2-x64.runtime.native.System": "(,4.3.32767]",
285
+ "runtime.opensuse.13.2-x64.runtime.native.System.IO.Compression": "(,4.3.32767]",
286
+ "runtime.opensuse.13.2-x64.runtime.native.System.Net.Http": "(,4.3.32767]",
287
+ "runtime.opensuse.13.2-x64.runtime.native.System.Net.Security": "(,4.3.32767]",
288
+ "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]",
289
+ "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]",
290
+ "runtime.opensuse.42.1-x64.runtime.native.System": "(,4.3.32767]",
291
+ "runtime.opensuse.42.1-x64.runtime.native.System.IO.Compression": "(,4.3.32767]",
292
+ "runtime.opensuse.42.1-x64.runtime.native.System.Net.Http": "(,4.3.32767]",
293
+ "runtime.opensuse.42.1-x64.runtime.native.System.Net.Security": "(,4.3.32767]",
294
+ "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]",
295
+ "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]",
296
+ "runtime.opensuse.42.3-x64.runtime.native.System": "(,4.3.32767]",
297
+ "runtime.opensuse.42.3-x64.runtime.native.System.IO.Compression": "(,4.3.32767]",
298
+ "runtime.opensuse.42.3-x64.runtime.native.System.Net.Http": "(,4.3.32767]",
299
+ "runtime.opensuse.42.3-x64.runtime.native.System.Net.Security": "(,4.3.32767]",
300
+ "runtime.osx.10.10-x64.runtime.native.System": "(,4.3.32767]",
301
+ "runtime.osx.10.10-x64.runtime.native.System.IO.Compression": "(,4.3.32767]",
302
+ "runtime.osx.10.10-x64.runtime.native.System.Net.Http": "(,4.3.32767]",
303
+ "runtime.osx.10.10-x64.runtime.native.System.Net.Security": "(,4.3.32767]",
304
+ "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]",
305
+ "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple": "(,4.3.32767]",
306
+ "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]",
307
+ "runtime.rhel.7-x64.runtime.native.System": "(,4.3.32767]",
308
+ "runtime.rhel.7-x64.runtime.native.System.IO.Compression": "(,4.3.32767]",
309
+ "runtime.rhel.7-x64.runtime.native.System.Net.Http": "(,4.3.32767]",
310
+ "runtime.rhel.7-x64.runtime.native.System.Net.Security": "(,4.3.32767]",
311
+ "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]",
312
+ "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]",
313
+ "runtime.ubuntu.14.04-x64.runtime.native.System": "(,4.3.32767]",
314
+ "runtime.ubuntu.14.04-x64.runtime.native.System.IO.Compression": "(,4.3.32767]",
315
+ "runtime.ubuntu.14.04-x64.runtime.native.System.Net.Http": "(,4.3.32767]",
316
+ "runtime.ubuntu.14.04-x64.runtime.native.System.Net.Security": "(,4.3.32767]",
317
+ "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]",
318
+ "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]",
319
+ "runtime.ubuntu.16.04-x64.runtime.native.System": "(,4.3.32767]",
320
+ "runtime.ubuntu.16.04-x64.runtime.native.System.IO.Compression": "(,4.3.32767]",
321
+ "runtime.ubuntu.16.04-x64.runtime.native.System.Net.Http": "(,4.3.32767]",
322
+ "runtime.ubuntu.16.04-x64.runtime.native.System.Net.Security": "(,4.3.32767]",
323
+ "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]",
324
+ "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]",
325
+ "runtime.ubuntu.16.10-x64.runtime.native.System": "(,4.3.32767]",
326
+ "runtime.ubuntu.16.10-x64.runtime.native.System.IO.Compression": "(,4.3.32767]",
327
+ "runtime.ubuntu.16.10-x64.runtime.native.System.Net.Http": "(,4.3.32767]",
328
+ "runtime.ubuntu.16.10-x64.runtime.native.System.Net.Security": "(,4.3.32767]",
329
+ "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]",
330
+ "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]",
331
+ "runtime.ubuntu.18.04-x64.runtime.native.System": "(,4.3.32767]",
332
+ "runtime.ubuntu.18.04-x64.runtime.native.System.IO.Compression": "(,4.3.32767]",
333
+ "runtime.ubuntu.18.04-x64.runtime.native.System.Net.Http": "(,4.3.32767]",
334
+ "runtime.ubuntu.18.04-x64.runtime.native.System.Net.Security": "(,4.3.32767]",
335
+ "runtime.unix.Microsoft.Win32.Primitives": "(,4.3.32767]",
336
+ "runtime.unix.System.Console": "(,4.3.32767]",
337
+ "runtime.unix.System.Diagnostics.Debug": "(,4.3.32767]",
338
+ "runtime.unix.System.IO.FileSystem": "(,4.3.32767]",
339
+ "runtime.unix.System.Net.Primitives": "(,4.3.32767]",
340
+ "runtime.unix.System.Net.Sockets": "(,4.3.32767]",
341
+ "runtime.unix.System.Private.Uri": "(,4.3.32767]",
342
+ "runtime.unix.System.Runtime.Extensions": "(,4.3.32767]",
343
+ "runtime.win.Microsoft.Win32.Primitives": "(,4.3.32767]",
344
+ "runtime.win.System.Console": "(,4.3.32767]",
345
+ "runtime.win.System.Diagnostics.Debug": "(,4.3.32767]",
346
+ "runtime.win.System.IO.FileSystem": "(,4.3.32767]",
347
+ "runtime.win.System.Net.Primitives": "(,4.3.32767]",
348
+ "runtime.win.System.Net.Sockets": "(,4.3.32767]",
349
+ "runtime.win.System.Runtime.Extensions": "(,4.3.32767]",
350
+ "runtime.win10-arm-aot.runtime.native.System.IO.Compression": "(,4.0.32767]",
351
+ "runtime.win10-arm64.runtime.native.System.IO.Compression": "(,4.3.32767]",
352
+ "runtime.win10-x64-aot.runtime.native.System.IO.Compression": "(,4.0.32767]",
353
+ "runtime.win10-x86-aot.runtime.native.System.IO.Compression": "(,4.0.32767]",
354
+ "runtime.win7-x64.runtime.native.System.IO.Compression": "(,4.3.32767]",
355
+ "runtime.win7-x86.runtime.native.System.IO.Compression": "(,4.3.32767]",
356
+ "runtime.win7.System.Private.Uri": "(,4.3.32767]",
357
+ "runtime.win8-arm.runtime.native.System.IO.Compression": "(,4.3.32767]",
358
+ "System.AppContext": "(,4.3.32767]",
359
+ "System.Buffers": "(,5.0.32767]",
360
+ "System.Collections": "(,4.3.32767]",
361
+ "System.Collections.Concurrent": "(,4.3.32767]",
362
+ "System.Collections.Immutable": "(,10.0.32767]",
363
+ "System.Collections.NonGeneric": "(,4.3.32767]",
364
+ "System.Collections.Specialized": "(,4.3.32767]",
365
+ "System.ComponentModel": "(,4.3.32767]",
366
+ "System.ComponentModel.Annotations": "(,4.3.32767]",
367
+ "System.ComponentModel.EventBasedAsync": "(,4.3.32767]",
368
+ "System.ComponentModel.Primitives": "(,4.3.32767]",
369
+ "System.ComponentModel.TypeConverter": "(,4.3.32767]",
370
+ "System.Console": "(,4.3.32767]",
371
+ "System.Data.Common": "(,4.3.32767]",
372
+ "System.Data.DataSetExtensions": "(,4.4.32767]",
373
+ "System.Diagnostics.Contracts": "(,4.3.32767]",
374
+ "System.Diagnostics.Debug": "(,4.3.32767]",
375
+ "System.Diagnostics.DiagnosticSource": "(,10.0.32767]",
376
+ "System.Diagnostics.EventLog": "(,10.0.32767]",
377
+ "System.Diagnostics.FileVersionInfo": "(,4.3.32767]",
378
+ "System.Diagnostics.Process": "(,4.3.32767]",
379
+ "System.Diagnostics.StackTrace": "(,4.3.32767]",
380
+ "System.Diagnostics.TextWriterTraceListener": "(,4.3.32767]",
381
+ "System.Diagnostics.Tools": "(,4.3.32767]",
382
+ "System.Diagnostics.TraceSource": "(,4.3.32767]",
383
+ "System.Diagnostics.Tracing": "(,4.3.32767]",
384
+ "System.Drawing.Primitives": "(,4.3.32767]",
385
+ "System.Dynamic.Runtime": "(,4.3.32767]",
386
+ "System.Formats.Asn1": "(,10.0.32767]",
387
+ "System.Formats.Cbor": "(,10.0.32767]",
388
+ "System.Formats.Tar": "(,10.0.32767]",
389
+ "System.Globalization": "(,4.3.32767]",
390
+ "System.Globalization.Calendars": "(,4.3.32767]",
391
+ "System.Globalization.Extensions": "(,4.3.32767]",
392
+ "System.IO": "(,4.3.32767]",
393
+ "System.IO.Compression": "(,4.3.32767]",
394
+ "System.IO.Compression.ZipFile": "(,4.3.32767]",
395
+ "System.IO.FileSystem": "(,4.3.32767]",
396
+ "System.IO.FileSystem.AccessControl": "(,4.4.32767]",
397
+ "System.IO.FileSystem.DriveInfo": "(,4.3.32767]",
398
+ "System.IO.FileSystem.Primitives": "(,4.3.32767]",
399
+ "System.IO.FileSystem.Watcher": "(,4.3.32767]",
400
+ "System.IO.IsolatedStorage": "(,4.3.32767]",
401
+ "System.IO.MemoryMappedFiles": "(,4.3.32767]",
402
+ "System.IO.Pipelines": "(,10.0.32767]",
403
+ "System.IO.Pipes": "(,4.3.32767]",
404
+ "System.IO.Pipes.AccessControl": "(,5.0.32767]",
405
+ "System.IO.UnmanagedMemoryStream": "(,4.3.32767]",
406
+ "System.Linq": "(,4.3.32767]",
407
+ "System.Linq.AsyncEnumerable": "(,10.0.32767]",
408
+ "System.Linq.Expressions": "(,4.3.32767]",
409
+ "System.Linq.Parallel": "(,4.3.32767]",
410
+ "System.Linq.Queryable": "(,4.3.32767]",
411
+ "System.Memory": "(,5.0.32767]",
412
+ "System.Net.Http": "(,4.3.32767]",
413
+ "System.Net.Http.Json": "(,10.0.32767]",
414
+ "System.Net.NameResolution": "(,4.3.32767]",
415
+ "System.Net.NetworkInformation": "(,4.3.32767]",
416
+ "System.Net.Ping": "(,4.3.32767]",
417
+ "System.Net.Primitives": "(,4.3.32767]",
418
+ "System.Net.Requests": "(,4.3.32767]",
419
+ "System.Net.Security": "(,4.3.32767]",
420
+ "System.Net.ServerSentEvents": "(,10.0.32767]",
421
+ "System.Net.Sockets": "(,4.3.32767]",
422
+ "System.Net.WebHeaderCollection": "(,4.3.32767]",
423
+ "System.Net.WebSockets": "(,4.3.32767]",
424
+ "System.Net.WebSockets.Client": "(,4.3.32767]",
425
+ "System.Numerics.Vectors": "(,5.0.32767]",
426
+ "System.ObjectModel": "(,4.3.32767]",
427
+ "System.Private.DataContractSerialization": "(,4.3.32767]",
428
+ "System.Private.Uri": "(,4.3.32767]",
429
+ "System.Reflection": "(,4.3.32767]",
430
+ "System.Reflection.DispatchProxy": "(,6.0.32767]",
431
+ "System.Reflection.Emit": "(,4.7.32767]",
432
+ "System.Reflection.Emit.ILGeneration": "(,4.7.32767]",
433
+ "System.Reflection.Emit.Lightweight": "(,4.7.32767]",
434
+ "System.Reflection.Extensions": "(,4.3.32767]",
435
+ "System.Reflection.Metadata": "(,10.0.32767]",
436
+ "System.Reflection.Primitives": "(,4.3.32767]",
437
+ "System.Reflection.TypeExtensions": "(,4.3.32767]",
438
+ "System.Resources.Reader": "(,4.3.32767]",
439
+ "System.Resources.ResourceManager": "(,4.3.32767]",
440
+ "System.Resources.Writer": "(,4.3.32767]",
441
+ "System.Runtime": "(,4.3.32767]",
442
+ "System.Runtime.CompilerServices.Unsafe": "(,7.0.32767]",
443
+ "System.Runtime.CompilerServices.VisualC": "(,4.3.32767]",
444
+ "System.Runtime.Extensions": "(,4.3.32767]",
445
+ "System.Runtime.Handles": "(,4.3.32767]",
446
+ "System.Runtime.InteropServices": "(,4.3.32767]",
447
+ "System.Runtime.InteropServices.RuntimeInformation": "(,4.3.32767]",
448
+ "System.Runtime.Loader": "(,4.3.32767]",
449
+ "System.Runtime.Numerics": "(,4.3.32767]",
450
+ "System.Runtime.Serialization.Formatters": "(,4.3.32767]",
451
+ "System.Runtime.Serialization.Json": "(,4.3.32767]",
452
+ "System.Runtime.Serialization.Primitives": "(,4.3.32767]",
453
+ "System.Runtime.Serialization.Xml": "(,4.3.32767]",
454
+ "System.Security.AccessControl": "(,6.0.32767]",
455
+ "System.Security.Claims": "(,4.3.32767]",
456
+ "System.Security.Cryptography.Algorithms": "(,4.3.32767]",
457
+ "System.Security.Cryptography.Cng": "(,5.0.32767]",
458
+ "System.Security.Cryptography.Csp": "(,4.3.32767]",
459
+ "System.Security.Cryptography.Encoding": "(,4.3.32767]",
460
+ "System.Security.Cryptography.OpenSsl": "(,5.0.32767]",
461
+ "System.Security.Cryptography.Primitives": "(,4.3.32767]",
462
+ "System.Security.Cryptography.X509Certificates": "(,4.3.32767]",
463
+ "System.Security.Cryptography.Xml": "(,10.0.32767]",
464
+ "System.Security.Principal": "(,4.3.32767]",
465
+ "System.Security.Principal.Windows": "(,5.0.32767]",
466
+ "System.Security.SecureString": "(,4.3.32767]",
467
+ "System.Text.Encoding": "(,4.3.32767]",
468
+ "System.Text.Encoding.CodePages": "(,10.0.32767]",
469
+ "System.Text.Encoding.Extensions": "(,4.3.32767]",
470
+ "System.Text.Encodings.Web": "(,10.0.32767]",
471
+ "System.Text.Json": "(,10.0.32767]",
472
+ "System.Text.RegularExpressions": "(,4.3.32767]",
473
+ "System.Threading": "(,4.3.32767]",
474
+ "System.Threading.AccessControl": "(,10.0.32767]",
475
+ "System.Threading.Channels": "(,10.0.32767]",
476
+ "System.Threading.Overlapped": "(,4.3.32767]",
477
+ "System.Threading.RateLimiting": "(,10.0.32767]",
478
+ "System.Threading.Tasks": "(,4.3.32767]",
479
+ "System.Threading.Tasks.Dataflow": "(,10.0.32767]",
480
+ "System.Threading.Tasks.Extensions": "(,5.0.32767]",
481
+ "System.Threading.Tasks.Parallel": "(,4.3.32767]",
482
+ "System.Threading.Thread": "(,4.3.32767]",
483
+ "System.Threading.ThreadPool": "(,4.3.32767]",
484
+ "System.Threading.Timer": "(,4.3.32767]",
485
+ "System.ValueTuple": "(,4.5.32767]",
486
+ "System.Xml.ReaderWriter": "(,4.3.32767]",
487
+ "System.Xml.XDocument": "(,4.3.32767]",
488
+ "System.Xml.XmlDocument": "(,4.3.32767]",
489
+ "System.Xml.XmlSerializer": "(,4.3.32767]",
490
+ "System.Xml.XPath": "(,4.3.32767]",
491
+ "System.Xml.XPath.XDocument": "(,5.0.32767]"
492
+ }
493
+ }
494
+ }
495
+ },
496
+ "C:\\Projects2\\Personal\\musketeer\\template\\dotnet-scaffold\\src\\__SolutionName__.Application\\__SolutionName__.Application.csproj": {
497
+ "version": "1.0.0",
498
+ "restore": {
499
+ "projectUniqueName": "C:\\Projects2\\Personal\\musketeer\\template\\dotnet-scaffold\\src\\__SolutionName__.Application\\__SolutionName__.Application.csproj",
500
+ "projectName": "__SolutionName__.Application",
501
+ "projectPath": "C:\\Projects2\\Personal\\musketeer\\template\\dotnet-scaffold\\src\\__SolutionName__.Application\\__SolutionName__.Application.csproj",
502
+ "packagesPath": "C:\\Users\\phuc.pham\\.nuget\\packages\\",
503
+ "outputPath": "C:\\Projects2\\Personal\\musketeer\\template\\dotnet-scaffold\\src\\__SolutionName__.Application\\obj\\",
504
+ "projectStyle": "PackageReference",
505
+ "fallbackFolders": [
506
+ "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages"
507
+ ],
508
+ "configFilePaths": [
509
+ "C:\\Users\\phuc.pham\\AppData\\Roaming\\NuGet\\NuGet.Config",
510
+ "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config",
511
+ "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config"
512
+ ],
513
+ "originalTargetFrameworks": [
514
+ "net10.0"
515
+ ],
516
+ "sources": {
517
+ "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {},
518
+ "https://api.nuget.org/v3/index.json": {}
519
+ },
520
+ "frameworks": {
521
+ "net10.0": {
522
+ "targetAlias": "net10.0",
523
+ "projectReferences": {
524
+ "C:\\Projects2\\Personal\\musketeer\\template\\dotnet-scaffold\\src\\__SolutionName__.Domain\\__SolutionName__.Domain.csproj": {
525
+ "projectPath": "C:\\Projects2\\Personal\\musketeer\\template\\dotnet-scaffold\\src\\__SolutionName__.Domain\\__SolutionName__.Domain.csproj"
526
+ }
527
+ }
528
+ }
529
+ },
530
+ "warningProperties": {
531
+ "warnAsError": [
532
+ "NU1605"
533
+ ]
534
+ },
535
+ "restoreAuditProperties": {
536
+ "enableAudit": "true",
537
+ "auditLevel": "low",
538
+ "auditMode": "all"
539
+ },
540
+ "SdkAnalysisLevel": "10.0.200"
541
+ },
542
+ "frameworks": {
543
+ "net10.0": {
544
+ "targetAlias": "net10.0",
545
+ "imports": [
546
+ "net461",
547
+ "net462",
548
+ "net47",
549
+ "net471",
550
+ "net472",
551
+ "net48",
552
+ "net481"
553
+ ],
554
+ "assetTargetFallback": true,
555
+ "warn": true,
556
+ "frameworkReferences": {
557
+ "Microsoft.NETCore.App": {
558
+ "privateAssets": "all"
559
+ }
560
+ },
561
+ "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\10.0.204/PortableRuntimeIdentifierGraph.json",
562
+ "packagesToPrune": {
563
+ "Microsoft.CSharp": "(,4.7.32767]",
564
+ "Microsoft.VisualBasic": "(,10.4.32767]",
565
+ "Microsoft.Win32.Primitives": "(,4.3.32767]",
566
+ "Microsoft.Win32.Registry": "(,5.0.32767]",
567
+ "runtime.any.System.Collections": "(,4.3.32767]",
568
+ "runtime.any.System.Diagnostics.Tools": "(,4.3.32767]",
569
+ "runtime.any.System.Diagnostics.Tracing": "(,4.3.32767]",
570
+ "runtime.any.System.Globalization": "(,4.3.32767]",
571
+ "runtime.any.System.Globalization.Calendars": "(,4.3.32767]",
572
+ "runtime.any.System.IO": "(,4.3.32767]",
573
+ "runtime.any.System.Reflection": "(,4.3.32767]",
574
+ "runtime.any.System.Reflection.Extensions": "(,4.3.32767]",
575
+ "runtime.any.System.Reflection.Primitives": "(,4.3.32767]",
576
+ "runtime.any.System.Resources.ResourceManager": "(,4.3.32767]",
577
+ "runtime.any.System.Runtime": "(,4.3.32767]",
578
+ "runtime.any.System.Runtime.Handles": "(,4.3.32767]",
579
+ "runtime.any.System.Runtime.InteropServices": "(,4.3.32767]",
580
+ "runtime.any.System.Text.Encoding": "(,4.3.32767]",
581
+ "runtime.any.System.Text.Encoding.Extensions": "(,4.3.32767]",
582
+ "runtime.any.System.Threading.Tasks": "(,4.3.32767]",
583
+ "runtime.any.System.Threading.Timer": "(,4.3.32767]",
584
+ "runtime.aot.System.Collections": "(,4.3.32767]",
585
+ "runtime.aot.System.Diagnostics.Tools": "(,4.3.32767]",
586
+ "runtime.aot.System.Diagnostics.Tracing": "(,4.3.32767]",
587
+ "runtime.aot.System.Globalization": "(,4.3.32767]",
588
+ "runtime.aot.System.Globalization.Calendars": "(,4.3.32767]",
589
+ "runtime.aot.System.IO": "(,4.3.32767]",
590
+ "runtime.aot.System.Reflection": "(,4.3.32767]",
591
+ "runtime.aot.System.Reflection.Extensions": "(,4.3.32767]",
592
+ "runtime.aot.System.Reflection.Primitives": "(,4.3.32767]",
593
+ "runtime.aot.System.Resources.ResourceManager": "(,4.3.32767]",
594
+ "runtime.aot.System.Runtime": "(,4.3.32767]",
595
+ "runtime.aot.System.Runtime.Handles": "(,4.3.32767]",
596
+ "runtime.aot.System.Runtime.InteropServices": "(,4.3.32767]",
597
+ "runtime.aot.System.Text.Encoding": "(,4.3.32767]",
598
+ "runtime.aot.System.Text.Encoding.Extensions": "(,4.3.32767]",
599
+ "runtime.aot.System.Threading.Tasks": "(,4.3.32767]",
600
+ "runtime.aot.System.Threading.Timer": "(,4.3.32767]",
601
+ "runtime.debian.8-x64.runtime.native.System": "(,4.3.32767]",
602
+ "runtime.debian.8-x64.runtime.native.System.IO.Compression": "(,4.3.32767]",
603
+ "runtime.debian.8-x64.runtime.native.System.Net.Http": "(,4.3.32767]",
604
+ "runtime.debian.8-x64.runtime.native.System.Net.Security": "(,4.3.32767]",
605
+ "runtime.debian.8-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]",
606
+ "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]",
607
+ "runtime.debian.9-x64.runtime.native.System": "(,4.3.32767]",
608
+ "runtime.debian.9-x64.runtime.native.System.IO.Compression": "(,4.3.32767]",
609
+ "runtime.debian.9-x64.runtime.native.System.Net.Http": "(,4.3.32767]",
610
+ "runtime.debian.9-x64.runtime.native.System.Net.Security": "(,4.3.32767]",
611
+ "runtime.fedora.23-x64.runtime.native.System": "(,4.3.32767]",
612
+ "runtime.fedora.23-x64.runtime.native.System.IO.Compression": "(,4.3.32767]",
613
+ "runtime.fedora.23-x64.runtime.native.System.Net.Http": "(,4.3.32767]",
614
+ "runtime.fedora.23-x64.runtime.native.System.Net.Security": "(,4.3.32767]",
615
+ "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]",
616
+ "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]",
617
+ "runtime.fedora.24-x64.runtime.native.System": "(,4.3.32767]",
618
+ "runtime.fedora.24-x64.runtime.native.System.IO.Compression": "(,4.3.32767]",
619
+ "runtime.fedora.24-x64.runtime.native.System.Net.Http": "(,4.3.32767]",
620
+ "runtime.fedora.24-x64.runtime.native.System.Net.Security": "(,4.3.32767]",
621
+ "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]",
622
+ "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]",
623
+ "runtime.fedora.27-x64.runtime.native.System": "(,4.3.32767]",
624
+ "runtime.fedora.27-x64.runtime.native.System.IO.Compression": "(,4.3.32767]",
625
+ "runtime.fedora.27-x64.runtime.native.System.Net.Http": "(,4.3.32767]",
626
+ "runtime.fedora.27-x64.runtime.native.System.Net.Security": "(,4.3.32767]",
627
+ "runtime.fedora.28-x64.runtime.native.System": "(,4.3.32767]",
628
+ "runtime.fedora.28-x64.runtime.native.System.IO.Compression": "(,4.3.32767]",
629
+ "runtime.fedora.28-x64.runtime.native.System.Net.Http": "(,4.3.32767]",
630
+ "runtime.fedora.28-x64.runtime.native.System.Net.Security": "(,4.3.32767]",
631
+ "runtime.opensuse.13.2-x64.runtime.native.System": "(,4.3.32767]",
632
+ "runtime.opensuse.13.2-x64.runtime.native.System.IO.Compression": "(,4.3.32767]",
633
+ "runtime.opensuse.13.2-x64.runtime.native.System.Net.Http": "(,4.3.32767]",
634
+ "runtime.opensuse.13.2-x64.runtime.native.System.Net.Security": "(,4.3.32767]",
635
+ "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]",
636
+ "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]",
637
+ "runtime.opensuse.42.1-x64.runtime.native.System": "(,4.3.32767]",
638
+ "runtime.opensuse.42.1-x64.runtime.native.System.IO.Compression": "(,4.3.32767]",
639
+ "runtime.opensuse.42.1-x64.runtime.native.System.Net.Http": "(,4.3.32767]",
640
+ "runtime.opensuse.42.1-x64.runtime.native.System.Net.Security": "(,4.3.32767]",
641
+ "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]",
642
+ "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]",
643
+ "runtime.opensuse.42.3-x64.runtime.native.System": "(,4.3.32767]",
644
+ "runtime.opensuse.42.3-x64.runtime.native.System.IO.Compression": "(,4.3.32767]",
645
+ "runtime.opensuse.42.3-x64.runtime.native.System.Net.Http": "(,4.3.32767]",
646
+ "runtime.opensuse.42.3-x64.runtime.native.System.Net.Security": "(,4.3.32767]",
647
+ "runtime.osx.10.10-x64.runtime.native.System": "(,4.3.32767]",
648
+ "runtime.osx.10.10-x64.runtime.native.System.IO.Compression": "(,4.3.32767]",
649
+ "runtime.osx.10.10-x64.runtime.native.System.Net.Http": "(,4.3.32767]",
650
+ "runtime.osx.10.10-x64.runtime.native.System.Net.Security": "(,4.3.32767]",
651
+ "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]",
652
+ "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple": "(,4.3.32767]",
653
+ "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]",
654
+ "runtime.rhel.7-x64.runtime.native.System": "(,4.3.32767]",
655
+ "runtime.rhel.7-x64.runtime.native.System.IO.Compression": "(,4.3.32767]",
656
+ "runtime.rhel.7-x64.runtime.native.System.Net.Http": "(,4.3.32767]",
657
+ "runtime.rhel.7-x64.runtime.native.System.Net.Security": "(,4.3.32767]",
658
+ "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]",
659
+ "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]",
660
+ "runtime.ubuntu.14.04-x64.runtime.native.System": "(,4.3.32767]",
661
+ "runtime.ubuntu.14.04-x64.runtime.native.System.IO.Compression": "(,4.3.32767]",
662
+ "runtime.ubuntu.14.04-x64.runtime.native.System.Net.Http": "(,4.3.32767]",
663
+ "runtime.ubuntu.14.04-x64.runtime.native.System.Net.Security": "(,4.3.32767]",
664
+ "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]",
665
+ "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]",
666
+ "runtime.ubuntu.16.04-x64.runtime.native.System": "(,4.3.32767]",
667
+ "runtime.ubuntu.16.04-x64.runtime.native.System.IO.Compression": "(,4.3.32767]",
668
+ "runtime.ubuntu.16.04-x64.runtime.native.System.Net.Http": "(,4.3.32767]",
669
+ "runtime.ubuntu.16.04-x64.runtime.native.System.Net.Security": "(,4.3.32767]",
670
+ "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]",
671
+ "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]",
672
+ "runtime.ubuntu.16.10-x64.runtime.native.System": "(,4.3.32767]",
673
+ "runtime.ubuntu.16.10-x64.runtime.native.System.IO.Compression": "(,4.3.32767]",
674
+ "runtime.ubuntu.16.10-x64.runtime.native.System.Net.Http": "(,4.3.32767]",
675
+ "runtime.ubuntu.16.10-x64.runtime.native.System.Net.Security": "(,4.3.32767]",
676
+ "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]",
677
+ "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]",
678
+ "runtime.ubuntu.18.04-x64.runtime.native.System": "(,4.3.32767]",
679
+ "runtime.ubuntu.18.04-x64.runtime.native.System.IO.Compression": "(,4.3.32767]",
680
+ "runtime.ubuntu.18.04-x64.runtime.native.System.Net.Http": "(,4.3.32767]",
681
+ "runtime.ubuntu.18.04-x64.runtime.native.System.Net.Security": "(,4.3.32767]",
682
+ "runtime.unix.Microsoft.Win32.Primitives": "(,4.3.32767]",
683
+ "runtime.unix.System.Console": "(,4.3.32767]",
684
+ "runtime.unix.System.Diagnostics.Debug": "(,4.3.32767]",
685
+ "runtime.unix.System.IO.FileSystem": "(,4.3.32767]",
686
+ "runtime.unix.System.Net.Primitives": "(,4.3.32767]",
687
+ "runtime.unix.System.Net.Sockets": "(,4.3.32767]",
688
+ "runtime.unix.System.Private.Uri": "(,4.3.32767]",
689
+ "runtime.unix.System.Runtime.Extensions": "(,4.3.32767]",
690
+ "runtime.win.Microsoft.Win32.Primitives": "(,4.3.32767]",
691
+ "runtime.win.System.Console": "(,4.3.32767]",
692
+ "runtime.win.System.Diagnostics.Debug": "(,4.3.32767]",
693
+ "runtime.win.System.IO.FileSystem": "(,4.3.32767]",
694
+ "runtime.win.System.Net.Primitives": "(,4.3.32767]",
695
+ "runtime.win.System.Net.Sockets": "(,4.3.32767]",
696
+ "runtime.win.System.Runtime.Extensions": "(,4.3.32767]",
697
+ "runtime.win10-arm-aot.runtime.native.System.IO.Compression": "(,4.0.32767]",
698
+ "runtime.win10-arm64.runtime.native.System.IO.Compression": "(,4.3.32767]",
699
+ "runtime.win10-x64-aot.runtime.native.System.IO.Compression": "(,4.0.32767]",
700
+ "runtime.win10-x86-aot.runtime.native.System.IO.Compression": "(,4.0.32767]",
701
+ "runtime.win7-x64.runtime.native.System.IO.Compression": "(,4.3.32767]",
702
+ "runtime.win7-x86.runtime.native.System.IO.Compression": "(,4.3.32767]",
703
+ "runtime.win7.System.Private.Uri": "(,4.3.32767]",
704
+ "runtime.win8-arm.runtime.native.System.IO.Compression": "(,4.3.32767]",
705
+ "System.AppContext": "(,4.3.32767]",
706
+ "System.Buffers": "(,5.0.32767]",
707
+ "System.Collections": "(,4.3.32767]",
708
+ "System.Collections.Concurrent": "(,4.3.32767]",
709
+ "System.Collections.Immutable": "(,10.0.32767]",
710
+ "System.Collections.NonGeneric": "(,4.3.32767]",
711
+ "System.Collections.Specialized": "(,4.3.32767]",
712
+ "System.ComponentModel": "(,4.3.32767]",
713
+ "System.ComponentModel.Annotations": "(,4.3.32767]",
714
+ "System.ComponentModel.EventBasedAsync": "(,4.3.32767]",
715
+ "System.ComponentModel.Primitives": "(,4.3.32767]",
716
+ "System.ComponentModel.TypeConverter": "(,4.3.32767]",
717
+ "System.Console": "(,4.3.32767]",
718
+ "System.Data.Common": "(,4.3.32767]",
719
+ "System.Data.DataSetExtensions": "(,4.4.32767]",
720
+ "System.Diagnostics.Contracts": "(,4.3.32767]",
721
+ "System.Diagnostics.Debug": "(,4.3.32767]",
722
+ "System.Diagnostics.DiagnosticSource": "(,10.0.32767]",
723
+ "System.Diagnostics.FileVersionInfo": "(,4.3.32767]",
724
+ "System.Diagnostics.Process": "(,4.3.32767]",
725
+ "System.Diagnostics.StackTrace": "(,4.3.32767]",
726
+ "System.Diagnostics.TextWriterTraceListener": "(,4.3.32767]",
727
+ "System.Diagnostics.Tools": "(,4.3.32767]",
728
+ "System.Diagnostics.TraceSource": "(,4.3.32767]",
729
+ "System.Diagnostics.Tracing": "(,4.3.32767]",
730
+ "System.Drawing.Primitives": "(,4.3.32767]",
731
+ "System.Dynamic.Runtime": "(,4.3.32767]",
732
+ "System.Formats.Asn1": "(,10.0.32767]",
733
+ "System.Formats.Tar": "(,10.0.32767]",
734
+ "System.Globalization": "(,4.3.32767]",
735
+ "System.Globalization.Calendars": "(,4.3.32767]",
736
+ "System.Globalization.Extensions": "(,4.3.32767]",
737
+ "System.IO": "(,4.3.32767]",
738
+ "System.IO.Compression": "(,4.3.32767]",
739
+ "System.IO.Compression.ZipFile": "(,4.3.32767]",
740
+ "System.IO.FileSystem": "(,4.3.32767]",
741
+ "System.IO.FileSystem.AccessControl": "(,4.4.32767]",
742
+ "System.IO.FileSystem.DriveInfo": "(,4.3.32767]",
743
+ "System.IO.FileSystem.Primitives": "(,4.3.32767]",
744
+ "System.IO.FileSystem.Watcher": "(,4.3.32767]",
745
+ "System.IO.IsolatedStorage": "(,4.3.32767]",
746
+ "System.IO.MemoryMappedFiles": "(,4.3.32767]",
747
+ "System.IO.Pipelines": "(,10.0.32767]",
748
+ "System.IO.Pipes": "(,4.3.32767]",
749
+ "System.IO.Pipes.AccessControl": "(,5.0.32767]",
750
+ "System.IO.UnmanagedMemoryStream": "(,4.3.32767]",
751
+ "System.Linq": "(,4.3.32767]",
752
+ "System.Linq.AsyncEnumerable": "(,10.0.32767]",
753
+ "System.Linq.Expressions": "(,4.3.32767]",
754
+ "System.Linq.Parallel": "(,4.3.32767]",
755
+ "System.Linq.Queryable": "(,4.3.32767]",
756
+ "System.Memory": "(,5.0.32767]",
757
+ "System.Net.Http": "(,4.3.32767]",
758
+ "System.Net.Http.Json": "(,10.0.32767]",
759
+ "System.Net.NameResolution": "(,4.3.32767]",
760
+ "System.Net.NetworkInformation": "(,4.3.32767]",
761
+ "System.Net.Ping": "(,4.3.32767]",
762
+ "System.Net.Primitives": "(,4.3.32767]",
763
+ "System.Net.Requests": "(,4.3.32767]",
764
+ "System.Net.Security": "(,4.3.32767]",
765
+ "System.Net.ServerSentEvents": "(,10.0.32767]",
766
+ "System.Net.Sockets": "(,4.3.32767]",
767
+ "System.Net.WebHeaderCollection": "(,4.3.32767]",
768
+ "System.Net.WebSockets": "(,4.3.32767]",
769
+ "System.Net.WebSockets.Client": "(,4.3.32767]",
770
+ "System.Numerics.Vectors": "(,5.0.32767]",
771
+ "System.ObjectModel": "(,4.3.32767]",
772
+ "System.Private.DataContractSerialization": "(,4.3.32767]",
773
+ "System.Private.Uri": "(,4.3.32767]",
774
+ "System.Reflection": "(,4.3.32767]",
775
+ "System.Reflection.DispatchProxy": "(,6.0.32767]",
776
+ "System.Reflection.Emit": "(,4.7.32767]",
777
+ "System.Reflection.Emit.ILGeneration": "(,4.7.32767]",
778
+ "System.Reflection.Emit.Lightweight": "(,4.7.32767]",
779
+ "System.Reflection.Extensions": "(,4.3.32767]",
780
+ "System.Reflection.Metadata": "(,10.0.32767]",
781
+ "System.Reflection.Primitives": "(,4.3.32767]",
782
+ "System.Reflection.TypeExtensions": "(,4.3.32767]",
783
+ "System.Resources.Reader": "(,4.3.32767]",
784
+ "System.Resources.ResourceManager": "(,4.3.32767]",
785
+ "System.Resources.Writer": "(,4.3.32767]",
786
+ "System.Runtime": "(,4.3.32767]",
787
+ "System.Runtime.CompilerServices.Unsafe": "(,7.0.32767]",
788
+ "System.Runtime.CompilerServices.VisualC": "(,4.3.32767]",
789
+ "System.Runtime.Extensions": "(,4.3.32767]",
790
+ "System.Runtime.Handles": "(,4.3.32767]",
791
+ "System.Runtime.InteropServices": "(,4.3.32767]",
792
+ "System.Runtime.InteropServices.RuntimeInformation": "(,4.3.32767]",
793
+ "System.Runtime.Loader": "(,4.3.32767]",
794
+ "System.Runtime.Numerics": "(,4.3.32767]",
795
+ "System.Runtime.Serialization.Formatters": "(,4.3.32767]",
796
+ "System.Runtime.Serialization.Json": "(,4.3.32767]",
797
+ "System.Runtime.Serialization.Primitives": "(,4.3.32767]",
798
+ "System.Runtime.Serialization.Xml": "(,4.3.32767]",
799
+ "System.Security.AccessControl": "(,6.0.32767]",
800
+ "System.Security.Claims": "(,4.3.32767]",
801
+ "System.Security.Cryptography.Algorithms": "(,4.3.32767]",
802
+ "System.Security.Cryptography.Cng": "(,5.0.32767]",
803
+ "System.Security.Cryptography.Csp": "(,4.3.32767]",
804
+ "System.Security.Cryptography.Encoding": "(,4.3.32767]",
805
+ "System.Security.Cryptography.OpenSsl": "(,5.0.32767]",
806
+ "System.Security.Cryptography.Primitives": "(,4.3.32767]",
807
+ "System.Security.Cryptography.X509Certificates": "(,4.3.32767]",
808
+ "System.Security.Principal": "(,4.3.32767]",
809
+ "System.Security.Principal.Windows": "(,5.0.32767]",
810
+ "System.Security.SecureString": "(,4.3.32767]",
811
+ "System.Text.Encoding": "(,4.3.32767]",
812
+ "System.Text.Encoding.CodePages": "(,10.0.32767]",
813
+ "System.Text.Encoding.Extensions": "(,4.3.32767]",
814
+ "System.Text.Encodings.Web": "(,10.0.32767]",
815
+ "System.Text.Json": "(,10.0.32767]",
816
+ "System.Text.RegularExpressions": "(,4.3.32767]",
817
+ "System.Threading": "(,4.3.32767]",
818
+ "System.Threading.AccessControl": "(,10.0.32767]",
819
+ "System.Threading.Channels": "(,10.0.32767]",
820
+ "System.Threading.Overlapped": "(,4.3.32767]",
821
+ "System.Threading.Tasks": "(,4.3.32767]",
822
+ "System.Threading.Tasks.Dataflow": "(,10.0.32767]",
823
+ "System.Threading.Tasks.Extensions": "(,5.0.32767]",
824
+ "System.Threading.Tasks.Parallel": "(,4.3.32767]",
825
+ "System.Threading.Thread": "(,4.3.32767]",
826
+ "System.Threading.ThreadPool": "(,4.3.32767]",
827
+ "System.Threading.Timer": "(,4.3.32767]",
828
+ "System.ValueTuple": "(,4.5.32767]",
829
+ "System.Xml.ReaderWriter": "(,4.3.32767]",
830
+ "System.Xml.XDocument": "(,4.3.32767]",
831
+ "System.Xml.XmlDocument": "(,4.3.32767]",
832
+ "System.Xml.XmlSerializer": "(,4.3.32767]",
833
+ "System.Xml.XPath": "(,4.3.32767]",
834
+ "System.Xml.XPath.XDocument": "(,5.0.32767]"
835
+ }
836
+ }
837
+ }
838
+ },
839
+ "C:\\Projects2\\Personal\\musketeer\\template\\dotnet-scaffold\\src\\__SolutionName__.Domain\\__SolutionName__.Domain.csproj": {
840
+ "version": "1.0.0",
841
+ "restore": {
842
+ "projectUniqueName": "C:\\Projects2\\Personal\\musketeer\\template\\dotnet-scaffold\\src\\__SolutionName__.Domain\\__SolutionName__.Domain.csproj",
843
+ "projectName": "__SolutionName__.Domain",
844
+ "projectPath": "C:\\Projects2\\Personal\\musketeer\\template\\dotnet-scaffold\\src\\__SolutionName__.Domain\\__SolutionName__.Domain.csproj",
845
+ "packagesPath": "C:\\Users\\phuc.pham\\.nuget\\packages\\",
846
+ "outputPath": "C:\\Projects2\\Personal\\musketeer\\template\\dotnet-scaffold\\src\\__SolutionName__.Domain\\obj\\",
847
+ "projectStyle": "PackageReference",
848
+ "fallbackFolders": [
849
+ "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages"
850
+ ],
851
+ "configFilePaths": [
852
+ "C:\\Users\\phuc.pham\\AppData\\Roaming\\NuGet\\NuGet.Config",
853
+ "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config",
854
+ "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config"
855
+ ],
856
+ "originalTargetFrameworks": [
857
+ "net10.0"
858
+ ],
859
+ "sources": {
860
+ "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {},
861
+ "https://api.nuget.org/v3/index.json": {}
862
+ },
863
+ "frameworks": {
864
+ "net10.0": {
865
+ "targetAlias": "net10.0",
866
+ "projectReferences": {}
867
+ }
868
+ },
869
+ "warningProperties": {
870
+ "warnAsError": [
871
+ "NU1605"
872
+ ]
873
+ },
874
+ "restoreAuditProperties": {
875
+ "enableAudit": "true",
876
+ "auditLevel": "low",
877
+ "auditMode": "all"
878
+ },
879
+ "SdkAnalysisLevel": "10.0.200"
880
+ },
881
+ "frameworks": {
882
+ "net10.0": {
883
+ "targetAlias": "net10.0",
884
+ "imports": [
885
+ "net461",
886
+ "net462",
887
+ "net47",
888
+ "net471",
889
+ "net472",
890
+ "net48",
891
+ "net481"
892
+ ],
893
+ "assetTargetFallback": true,
894
+ "warn": true,
895
+ "frameworkReferences": {
896
+ "Microsoft.NETCore.App": {
897
+ "privateAssets": "all"
898
+ }
899
+ },
900
+ "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\10.0.204/PortableRuntimeIdentifierGraph.json",
901
+ "packagesToPrune": {
902
+ "Microsoft.CSharp": "(,4.7.32767]",
903
+ "Microsoft.VisualBasic": "(,10.4.32767]",
904
+ "Microsoft.Win32.Primitives": "(,4.3.32767]",
905
+ "Microsoft.Win32.Registry": "(,5.0.32767]",
906
+ "runtime.any.System.Collections": "(,4.3.32767]",
907
+ "runtime.any.System.Diagnostics.Tools": "(,4.3.32767]",
908
+ "runtime.any.System.Diagnostics.Tracing": "(,4.3.32767]",
909
+ "runtime.any.System.Globalization": "(,4.3.32767]",
910
+ "runtime.any.System.Globalization.Calendars": "(,4.3.32767]",
911
+ "runtime.any.System.IO": "(,4.3.32767]",
912
+ "runtime.any.System.Reflection": "(,4.3.32767]",
913
+ "runtime.any.System.Reflection.Extensions": "(,4.3.32767]",
914
+ "runtime.any.System.Reflection.Primitives": "(,4.3.32767]",
915
+ "runtime.any.System.Resources.ResourceManager": "(,4.3.32767]",
916
+ "runtime.any.System.Runtime": "(,4.3.32767]",
917
+ "runtime.any.System.Runtime.Handles": "(,4.3.32767]",
918
+ "runtime.any.System.Runtime.InteropServices": "(,4.3.32767]",
919
+ "runtime.any.System.Text.Encoding": "(,4.3.32767]",
920
+ "runtime.any.System.Text.Encoding.Extensions": "(,4.3.32767]",
921
+ "runtime.any.System.Threading.Tasks": "(,4.3.32767]",
922
+ "runtime.any.System.Threading.Timer": "(,4.3.32767]",
923
+ "runtime.aot.System.Collections": "(,4.3.32767]",
924
+ "runtime.aot.System.Diagnostics.Tools": "(,4.3.32767]",
925
+ "runtime.aot.System.Diagnostics.Tracing": "(,4.3.32767]",
926
+ "runtime.aot.System.Globalization": "(,4.3.32767]",
927
+ "runtime.aot.System.Globalization.Calendars": "(,4.3.32767]",
928
+ "runtime.aot.System.IO": "(,4.3.32767]",
929
+ "runtime.aot.System.Reflection": "(,4.3.32767]",
930
+ "runtime.aot.System.Reflection.Extensions": "(,4.3.32767]",
931
+ "runtime.aot.System.Reflection.Primitives": "(,4.3.32767]",
932
+ "runtime.aot.System.Resources.ResourceManager": "(,4.3.32767]",
933
+ "runtime.aot.System.Runtime": "(,4.3.32767]",
934
+ "runtime.aot.System.Runtime.Handles": "(,4.3.32767]",
935
+ "runtime.aot.System.Runtime.InteropServices": "(,4.3.32767]",
936
+ "runtime.aot.System.Text.Encoding": "(,4.3.32767]",
937
+ "runtime.aot.System.Text.Encoding.Extensions": "(,4.3.32767]",
938
+ "runtime.aot.System.Threading.Tasks": "(,4.3.32767]",
939
+ "runtime.aot.System.Threading.Timer": "(,4.3.32767]",
940
+ "runtime.debian.8-x64.runtime.native.System": "(,4.3.32767]",
941
+ "runtime.debian.8-x64.runtime.native.System.IO.Compression": "(,4.3.32767]",
942
+ "runtime.debian.8-x64.runtime.native.System.Net.Http": "(,4.3.32767]",
943
+ "runtime.debian.8-x64.runtime.native.System.Net.Security": "(,4.3.32767]",
944
+ "runtime.debian.8-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]",
945
+ "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]",
946
+ "runtime.debian.9-x64.runtime.native.System": "(,4.3.32767]",
947
+ "runtime.debian.9-x64.runtime.native.System.IO.Compression": "(,4.3.32767]",
948
+ "runtime.debian.9-x64.runtime.native.System.Net.Http": "(,4.3.32767]",
949
+ "runtime.debian.9-x64.runtime.native.System.Net.Security": "(,4.3.32767]",
950
+ "runtime.fedora.23-x64.runtime.native.System": "(,4.3.32767]",
951
+ "runtime.fedora.23-x64.runtime.native.System.IO.Compression": "(,4.3.32767]",
952
+ "runtime.fedora.23-x64.runtime.native.System.Net.Http": "(,4.3.32767]",
953
+ "runtime.fedora.23-x64.runtime.native.System.Net.Security": "(,4.3.32767]",
954
+ "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]",
955
+ "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]",
956
+ "runtime.fedora.24-x64.runtime.native.System": "(,4.3.32767]",
957
+ "runtime.fedora.24-x64.runtime.native.System.IO.Compression": "(,4.3.32767]",
958
+ "runtime.fedora.24-x64.runtime.native.System.Net.Http": "(,4.3.32767]",
959
+ "runtime.fedora.24-x64.runtime.native.System.Net.Security": "(,4.3.32767]",
960
+ "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]",
961
+ "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]",
962
+ "runtime.fedora.27-x64.runtime.native.System": "(,4.3.32767]",
963
+ "runtime.fedora.27-x64.runtime.native.System.IO.Compression": "(,4.3.32767]",
964
+ "runtime.fedora.27-x64.runtime.native.System.Net.Http": "(,4.3.32767]",
965
+ "runtime.fedora.27-x64.runtime.native.System.Net.Security": "(,4.3.32767]",
966
+ "runtime.fedora.28-x64.runtime.native.System": "(,4.3.32767]",
967
+ "runtime.fedora.28-x64.runtime.native.System.IO.Compression": "(,4.3.32767]",
968
+ "runtime.fedora.28-x64.runtime.native.System.Net.Http": "(,4.3.32767]",
969
+ "runtime.fedora.28-x64.runtime.native.System.Net.Security": "(,4.3.32767]",
970
+ "runtime.opensuse.13.2-x64.runtime.native.System": "(,4.3.32767]",
971
+ "runtime.opensuse.13.2-x64.runtime.native.System.IO.Compression": "(,4.3.32767]",
972
+ "runtime.opensuse.13.2-x64.runtime.native.System.Net.Http": "(,4.3.32767]",
973
+ "runtime.opensuse.13.2-x64.runtime.native.System.Net.Security": "(,4.3.32767]",
974
+ "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]",
975
+ "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]",
976
+ "runtime.opensuse.42.1-x64.runtime.native.System": "(,4.3.32767]",
977
+ "runtime.opensuse.42.1-x64.runtime.native.System.IO.Compression": "(,4.3.32767]",
978
+ "runtime.opensuse.42.1-x64.runtime.native.System.Net.Http": "(,4.3.32767]",
979
+ "runtime.opensuse.42.1-x64.runtime.native.System.Net.Security": "(,4.3.32767]",
980
+ "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]",
981
+ "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]",
982
+ "runtime.opensuse.42.3-x64.runtime.native.System": "(,4.3.32767]",
983
+ "runtime.opensuse.42.3-x64.runtime.native.System.IO.Compression": "(,4.3.32767]",
984
+ "runtime.opensuse.42.3-x64.runtime.native.System.Net.Http": "(,4.3.32767]",
985
+ "runtime.opensuse.42.3-x64.runtime.native.System.Net.Security": "(,4.3.32767]",
986
+ "runtime.osx.10.10-x64.runtime.native.System": "(,4.3.32767]",
987
+ "runtime.osx.10.10-x64.runtime.native.System.IO.Compression": "(,4.3.32767]",
988
+ "runtime.osx.10.10-x64.runtime.native.System.Net.Http": "(,4.3.32767]",
989
+ "runtime.osx.10.10-x64.runtime.native.System.Net.Security": "(,4.3.32767]",
990
+ "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]",
991
+ "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple": "(,4.3.32767]",
992
+ "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]",
993
+ "runtime.rhel.7-x64.runtime.native.System": "(,4.3.32767]",
994
+ "runtime.rhel.7-x64.runtime.native.System.IO.Compression": "(,4.3.32767]",
995
+ "runtime.rhel.7-x64.runtime.native.System.Net.Http": "(,4.3.32767]",
996
+ "runtime.rhel.7-x64.runtime.native.System.Net.Security": "(,4.3.32767]",
997
+ "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]",
998
+ "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]",
999
+ "runtime.ubuntu.14.04-x64.runtime.native.System": "(,4.3.32767]",
1000
+ "runtime.ubuntu.14.04-x64.runtime.native.System.IO.Compression": "(,4.3.32767]",
1001
+ "runtime.ubuntu.14.04-x64.runtime.native.System.Net.Http": "(,4.3.32767]",
1002
+ "runtime.ubuntu.14.04-x64.runtime.native.System.Net.Security": "(,4.3.32767]",
1003
+ "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]",
1004
+ "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]",
1005
+ "runtime.ubuntu.16.04-x64.runtime.native.System": "(,4.3.32767]",
1006
+ "runtime.ubuntu.16.04-x64.runtime.native.System.IO.Compression": "(,4.3.32767]",
1007
+ "runtime.ubuntu.16.04-x64.runtime.native.System.Net.Http": "(,4.3.32767]",
1008
+ "runtime.ubuntu.16.04-x64.runtime.native.System.Net.Security": "(,4.3.32767]",
1009
+ "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]",
1010
+ "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]",
1011
+ "runtime.ubuntu.16.10-x64.runtime.native.System": "(,4.3.32767]",
1012
+ "runtime.ubuntu.16.10-x64.runtime.native.System.IO.Compression": "(,4.3.32767]",
1013
+ "runtime.ubuntu.16.10-x64.runtime.native.System.Net.Http": "(,4.3.32767]",
1014
+ "runtime.ubuntu.16.10-x64.runtime.native.System.Net.Security": "(,4.3.32767]",
1015
+ "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]",
1016
+ "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]",
1017
+ "runtime.ubuntu.18.04-x64.runtime.native.System": "(,4.3.32767]",
1018
+ "runtime.ubuntu.18.04-x64.runtime.native.System.IO.Compression": "(,4.3.32767]",
1019
+ "runtime.ubuntu.18.04-x64.runtime.native.System.Net.Http": "(,4.3.32767]",
1020
+ "runtime.ubuntu.18.04-x64.runtime.native.System.Net.Security": "(,4.3.32767]",
1021
+ "runtime.unix.Microsoft.Win32.Primitives": "(,4.3.32767]",
1022
+ "runtime.unix.System.Console": "(,4.3.32767]",
1023
+ "runtime.unix.System.Diagnostics.Debug": "(,4.3.32767]",
1024
+ "runtime.unix.System.IO.FileSystem": "(,4.3.32767]",
1025
+ "runtime.unix.System.Net.Primitives": "(,4.3.32767]",
1026
+ "runtime.unix.System.Net.Sockets": "(,4.3.32767]",
1027
+ "runtime.unix.System.Private.Uri": "(,4.3.32767]",
1028
+ "runtime.unix.System.Runtime.Extensions": "(,4.3.32767]",
1029
+ "runtime.win.Microsoft.Win32.Primitives": "(,4.3.32767]",
1030
+ "runtime.win.System.Console": "(,4.3.32767]",
1031
+ "runtime.win.System.Diagnostics.Debug": "(,4.3.32767]",
1032
+ "runtime.win.System.IO.FileSystem": "(,4.3.32767]",
1033
+ "runtime.win.System.Net.Primitives": "(,4.3.32767]",
1034
+ "runtime.win.System.Net.Sockets": "(,4.3.32767]",
1035
+ "runtime.win.System.Runtime.Extensions": "(,4.3.32767]",
1036
+ "runtime.win10-arm-aot.runtime.native.System.IO.Compression": "(,4.0.32767]",
1037
+ "runtime.win10-arm64.runtime.native.System.IO.Compression": "(,4.3.32767]",
1038
+ "runtime.win10-x64-aot.runtime.native.System.IO.Compression": "(,4.0.32767]",
1039
+ "runtime.win10-x86-aot.runtime.native.System.IO.Compression": "(,4.0.32767]",
1040
+ "runtime.win7-x64.runtime.native.System.IO.Compression": "(,4.3.32767]",
1041
+ "runtime.win7-x86.runtime.native.System.IO.Compression": "(,4.3.32767]",
1042
+ "runtime.win7.System.Private.Uri": "(,4.3.32767]",
1043
+ "runtime.win8-arm.runtime.native.System.IO.Compression": "(,4.3.32767]",
1044
+ "System.AppContext": "(,4.3.32767]",
1045
+ "System.Buffers": "(,5.0.32767]",
1046
+ "System.Collections": "(,4.3.32767]",
1047
+ "System.Collections.Concurrent": "(,4.3.32767]",
1048
+ "System.Collections.Immutable": "(,10.0.32767]",
1049
+ "System.Collections.NonGeneric": "(,4.3.32767]",
1050
+ "System.Collections.Specialized": "(,4.3.32767]",
1051
+ "System.ComponentModel": "(,4.3.32767]",
1052
+ "System.ComponentModel.Annotations": "(,4.3.32767]",
1053
+ "System.ComponentModel.EventBasedAsync": "(,4.3.32767]",
1054
+ "System.ComponentModel.Primitives": "(,4.3.32767]",
1055
+ "System.ComponentModel.TypeConverter": "(,4.3.32767]",
1056
+ "System.Console": "(,4.3.32767]",
1057
+ "System.Data.Common": "(,4.3.32767]",
1058
+ "System.Data.DataSetExtensions": "(,4.4.32767]",
1059
+ "System.Diagnostics.Contracts": "(,4.3.32767]",
1060
+ "System.Diagnostics.Debug": "(,4.3.32767]",
1061
+ "System.Diagnostics.DiagnosticSource": "(,10.0.32767]",
1062
+ "System.Diagnostics.FileVersionInfo": "(,4.3.32767]",
1063
+ "System.Diagnostics.Process": "(,4.3.32767]",
1064
+ "System.Diagnostics.StackTrace": "(,4.3.32767]",
1065
+ "System.Diagnostics.TextWriterTraceListener": "(,4.3.32767]",
1066
+ "System.Diagnostics.Tools": "(,4.3.32767]",
1067
+ "System.Diagnostics.TraceSource": "(,4.3.32767]",
1068
+ "System.Diagnostics.Tracing": "(,4.3.32767]",
1069
+ "System.Drawing.Primitives": "(,4.3.32767]",
1070
+ "System.Dynamic.Runtime": "(,4.3.32767]",
1071
+ "System.Formats.Asn1": "(,10.0.32767]",
1072
+ "System.Formats.Tar": "(,10.0.32767]",
1073
+ "System.Globalization": "(,4.3.32767]",
1074
+ "System.Globalization.Calendars": "(,4.3.32767]",
1075
+ "System.Globalization.Extensions": "(,4.3.32767]",
1076
+ "System.IO": "(,4.3.32767]",
1077
+ "System.IO.Compression": "(,4.3.32767]",
1078
+ "System.IO.Compression.ZipFile": "(,4.3.32767]",
1079
+ "System.IO.FileSystem": "(,4.3.32767]",
1080
+ "System.IO.FileSystem.AccessControl": "(,4.4.32767]",
1081
+ "System.IO.FileSystem.DriveInfo": "(,4.3.32767]",
1082
+ "System.IO.FileSystem.Primitives": "(,4.3.32767]",
1083
+ "System.IO.FileSystem.Watcher": "(,4.3.32767]",
1084
+ "System.IO.IsolatedStorage": "(,4.3.32767]",
1085
+ "System.IO.MemoryMappedFiles": "(,4.3.32767]",
1086
+ "System.IO.Pipelines": "(,10.0.32767]",
1087
+ "System.IO.Pipes": "(,4.3.32767]",
1088
+ "System.IO.Pipes.AccessControl": "(,5.0.32767]",
1089
+ "System.IO.UnmanagedMemoryStream": "(,4.3.32767]",
1090
+ "System.Linq": "(,4.3.32767]",
1091
+ "System.Linq.AsyncEnumerable": "(,10.0.32767]",
1092
+ "System.Linq.Expressions": "(,4.3.32767]",
1093
+ "System.Linq.Parallel": "(,4.3.32767]",
1094
+ "System.Linq.Queryable": "(,4.3.32767]",
1095
+ "System.Memory": "(,5.0.32767]",
1096
+ "System.Net.Http": "(,4.3.32767]",
1097
+ "System.Net.Http.Json": "(,10.0.32767]",
1098
+ "System.Net.NameResolution": "(,4.3.32767]",
1099
+ "System.Net.NetworkInformation": "(,4.3.32767]",
1100
+ "System.Net.Ping": "(,4.3.32767]",
1101
+ "System.Net.Primitives": "(,4.3.32767]",
1102
+ "System.Net.Requests": "(,4.3.32767]",
1103
+ "System.Net.Security": "(,4.3.32767]",
1104
+ "System.Net.ServerSentEvents": "(,10.0.32767]",
1105
+ "System.Net.Sockets": "(,4.3.32767]",
1106
+ "System.Net.WebHeaderCollection": "(,4.3.32767]",
1107
+ "System.Net.WebSockets": "(,4.3.32767]",
1108
+ "System.Net.WebSockets.Client": "(,4.3.32767]",
1109
+ "System.Numerics.Vectors": "(,5.0.32767]",
1110
+ "System.ObjectModel": "(,4.3.32767]",
1111
+ "System.Private.DataContractSerialization": "(,4.3.32767]",
1112
+ "System.Private.Uri": "(,4.3.32767]",
1113
+ "System.Reflection": "(,4.3.32767]",
1114
+ "System.Reflection.DispatchProxy": "(,6.0.32767]",
1115
+ "System.Reflection.Emit": "(,4.7.32767]",
1116
+ "System.Reflection.Emit.ILGeneration": "(,4.7.32767]",
1117
+ "System.Reflection.Emit.Lightweight": "(,4.7.32767]",
1118
+ "System.Reflection.Extensions": "(,4.3.32767]",
1119
+ "System.Reflection.Metadata": "(,10.0.32767]",
1120
+ "System.Reflection.Primitives": "(,4.3.32767]",
1121
+ "System.Reflection.TypeExtensions": "(,4.3.32767]",
1122
+ "System.Resources.Reader": "(,4.3.32767]",
1123
+ "System.Resources.ResourceManager": "(,4.3.32767]",
1124
+ "System.Resources.Writer": "(,4.3.32767]",
1125
+ "System.Runtime": "(,4.3.32767]",
1126
+ "System.Runtime.CompilerServices.Unsafe": "(,7.0.32767]",
1127
+ "System.Runtime.CompilerServices.VisualC": "(,4.3.32767]",
1128
+ "System.Runtime.Extensions": "(,4.3.32767]",
1129
+ "System.Runtime.Handles": "(,4.3.32767]",
1130
+ "System.Runtime.InteropServices": "(,4.3.32767]",
1131
+ "System.Runtime.InteropServices.RuntimeInformation": "(,4.3.32767]",
1132
+ "System.Runtime.Loader": "(,4.3.32767]",
1133
+ "System.Runtime.Numerics": "(,4.3.32767]",
1134
+ "System.Runtime.Serialization.Formatters": "(,4.3.32767]",
1135
+ "System.Runtime.Serialization.Json": "(,4.3.32767]",
1136
+ "System.Runtime.Serialization.Primitives": "(,4.3.32767]",
1137
+ "System.Runtime.Serialization.Xml": "(,4.3.32767]",
1138
+ "System.Security.AccessControl": "(,6.0.32767]",
1139
+ "System.Security.Claims": "(,4.3.32767]",
1140
+ "System.Security.Cryptography.Algorithms": "(,4.3.32767]",
1141
+ "System.Security.Cryptography.Cng": "(,5.0.32767]",
1142
+ "System.Security.Cryptography.Csp": "(,4.3.32767]",
1143
+ "System.Security.Cryptography.Encoding": "(,4.3.32767]",
1144
+ "System.Security.Cryptography.OpenSsl": "(,5.0.32767]",
1145
+ "System.Security.Cryptography.Primitives": "(,4.3.32767]",
1146
+ "System.Security.Cryptography.X509Certificates": "(,4.3.32767]",
1147
+ "System.Security.Principal": "(,4.3.32767]",
1148
+ "System.Security.Principal.Windows": "(,5.0.32767]",
1149
+ "System.Security.SecureString": "(,4.3.32767]",
1150
+ "System.Text.Encoding": "(,4.3.32767]",
1151
+ "System.Text.Encoding.CodePages": "(,10.0.32767]",
1152
+ "System.Text.Encoding.Extensions": "(,4.3.32767]",
1153
+ "System.Text.Encodings.Web": "(,10.0.32767]",
1154
+ "System.Text.Json": "(,10.0.32767]",
1155
+ "System.Text.RegularExpressions": "(,4.3.32767]",
1156
+ "System.Threading": "(,4.3.32767]",
1157
+ "System.Threading.AccessControl": "(,10.0.32767]",
1158
+ "System.Threading.Channels": "(,10.0.32767]",
1159
+ "System.Threading.Overlapped": "(,4.3.32767]",
1160
+ "System.Threading.Tasks": "(,4.3.32767]",
1161
+ "System.Threading.Tasks.Dataflow": "(,10.0.32767]",
1162
+ "System.Threading.Tasks.Extensions": "(,5.0.32767]",
1163
+ "System.Threading.Tasks.Parallel": "(,4.3.32767]",
1164
+ "System.Threading.Thread": "(,4.3.32767]",
1165
+ "System.Threading.ThreadPool": "(,4.3.32767]",
1166
+ "System.Threading.Timer": "(,4.3.32767]",
1167
+ "System.ValueTuple": "(,4.5.32767]",
1168
+ "System.Xml.ReaderWriter": "(,4.3.32767]",
1169
+ "System.Xml.XDocument": "(,4.3.32767]",
1170
+ "System.Xml.XmlDocument": "(,4.3.32767]",
1171
+ "System.Xml.XmlSerializer": "(,4.3.32767]",
1172
+ "System.Xml.XPath": "(,4.3.32767]",
1173
+ "System.Xml.XPath.XDocument": "(,5.0.32767]"
1174
+ }
1175
+ }
1176
+ }
1177
+ },
1178
+ "C:\\Projects2\\Personal\\musketeer\\template\\dotnet-scaffold\\src\\__SolutionName__.Infrastructure\\__SolutionName__.Infrastructure.csproj": {
1179
+ "version": "1.0.0",
1180
+ "restore": {
1181
+ "projectUniqueName": "C:\\Projects2\\Personal\\musketeer\\template\\dotnet-scaffold\\src\\__SolutionName__.Infrastructure\\__SolutionName__.Infrastructure.csproj",
1182
+ "projectName": "__SolutionName__.Infrastructure",
1183
+ "projectPath": "C:\\Projects2\\Personal\\musketeer\\template\\dotnet-scaffold\\src\\__SolutionName__.Infrastructure\\__SolutionName__.Infrastructure.csproj",
1184
+ "packagesPath": "C:\\Users\\phuc.pham\\.nuget\\packages\\",
1185
+ "outputPath": "C:\\Projects2\\Personal\\musketeer\\template\\dotnet-scaffold\\src\\__SolutionName__.Infrastructure\\obj\\",
1186
+ "projectStyle": "PackageReference",
1187
+ "fallbackFolders": [
1188
+ "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages"
1189
+ ],
1190
+ "configFilePaths": [
1191
+ "C:\\Users\\phuc.pham\\AppData\\Roaming\\NuGet\\NuGet.Config",
1192
+ "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config",
1193
+ "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config"
1194
+ ],
1195
+ "originalTargetFrameworks": [
1196
+ "net10.0"
1197
+ ],
1198
+ "sources": {
1199
+ "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {},
1200
+ "https://api.nuget.org/v3/index.json": {}
1201
+ },
1202
+ "frameworks": {
1203
+ "net10.0": {
1204
+ "targetAlias": "net10.0",
1205
+ "projectReferences": {
1206
+ "C:\\Projects2\\Personal\\musketeer\\template\\dotnet-scaffold\\src\\__SolutionName__.Application\\__SolutionName__.Application.csproj": {
1207
+ "projectPath": "C:\\Projects2\\Personal\\musketeer\\template\\dotnet-scaffold\\src\\__SolutionName__.Application\\__SolutionName__.Application.csproj"
1208
+ }
1209
+ }
1210
+ }
1211
+ },
1212
+ "warningProperties": {
1213
+ "warnAsError": [
1214
+ "NU1605"
1215
+ ]
1216
+ },
1217
+ "restoreAuditProperties": {
1218
+ "enableAudit": "true",
1219
+ "auditLevel": "low",
1220
+ "auditMode": "all"
1221
+ },
1222
+ "SdkAnalysisLevel": "10.0.200"
1223
+ },
1224
+ "frameworks": {
1225
+ "net10.0": {
1226
+ "targetAlias": "net10.0",
1227
+ "dependencies": {
1228
+ "Microsoft.Extensions.DependencyInjection.Abstractions": {
1229
+ "target": "Package",
1230
+ "version": "[10.0.0, )"
1231
+ },
1232
+ "Microsoft.Extensions.Hosting.Abstractions": {
1233
+ "target": "Package",
1234
+ "version": "[10.0.0, )"
1235
+ },
1236
+ "Microsoft.Extensions.Logging.Abstractions": {
1237
+ "target": "Package",
1238
+ "version": "[10.0.0, )"
1239
+ }
1240
+ },
1241
+ "imports": [
1242
+ "net461",
1243
+ "net462",
1244
+ "net47",
1245
+ "net471",
1246
+ "net472",
1247
+ "net48",
1248
+ "net481"
1249
+ ],
1250
+ "assetTargetFallback": true,
1251
+ "warn": true,
1252
+ "frameworkReferences": {
1253
+ "Microsoft.NETCore.App": {
1254
+ "privateAssets": "all"
1255
+ }
1256
+ },
1257
+ "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\10.0.204/PortableRuntimeIdentifierGraph.json",
1258
+ "packagesToPrune": {
1259
+ "Microsoft.CSharp": "(,4.7.32767]",
1260
+ "Microsoft.VisualBasic": "(,10.4.32767]",
1261
+ "Microsoft.Win32.Primitives": "(,4.3.32767]",
1262
+ "Microsoft.Win32.Registry": "(,5.0.32767]",
1263
+ "runtime.any.System.Collections": "(,4.3.32767]",
1264
+ "runtime.any.System.Diagnostics.Tools": "(,4.3.32767]",
1265
+ "runtime.any.System.Diagnostics.Tracing": "(,4.3.32767]",
1266
+ "runtime.any.System.Globalization": "(,4.3.32767]",
1267
+ "runtime.any.System.Globalization.Calendars": "(,4.3.32767]",
1268
+ "runtime.any.System.IO": "(,4.3.32767]",
1269
+ "runtime.any.System.Reflection": "(,4.3.32767]",
1270
+ "runtime.any.System.Reflection.Extensions": "(,4.3.32767]",
1271
+ "runtime.any.System.Reflection.Primitives": "(,4.3.32767]",
1272
+ "runtime.any.System.Resources.ResourceManager": "(,4.3.32767]",
1273
+ "runtime.any.System.Runtime": "(,4.3.32767]",
1274
+ "runtime.any.System.Runtime.Handles": "(,4.3.32767]",
1275
+ "runtime.any.System.Runtime.InteropServices": "(,4.3.32767]",
1276
+ "runtime.any.System.Text.Encoding": "(,4.3.32767]",
1277
+ "runtime.any.System.Text.Encoding.Extensions": "(,4.3.32767]",
1278
+ "runtime.any.System.Threading.Tasks": "(,4.3.32767]",
1279
+ "runtime.any.System.Threading.Timer": "(,4.3.32767]",
1280
+ "runtime.aot.System.Collections": "(,4.3.32767]",
1281
+ "runtime.aot.System.Diagnostics.Tools": "(,4.3.32767]",
1282
+ "runtime.aot.System.Diagnostics.Tracing": "(,4.3.32767]",
1283
+ "runtime.aot.System.Globalization": "(,4.3.32767]",
1284
+ "runtime.aot.System.Globalization.Calendars": "(,4.3.32767]",
1285
+ "runtime.aot.System.IO": "(,4.3.32767]",
1286
+ "runtime.aot.System.Reflection": "(,4.3.32767]",
1287
+ "runtime.aot.System.Reflection.Extensions": "(,4.3.32767]",
1288
+ "runtime.aot.System.Reflection.Primitives": "(,4.3.32767]",
1289
+ "runtime.aot.System.Resources.ResourceManager": "(,4.3.32767]",
1290
+ "runtime.aot.System.Runtime": "(,4.3.32767]",
1291
+ "runtime.aot.System.Runtime.Handles": "(,4.3.32767]",
1292
+ "runtime.aot.System.Runtime.InteropServices": "(,4.3.32767]",
1293
+ "runtime.aot.System.Text.Encoding": "(,4.3.32767]",
1294
+ "runtime.aot.System.Text.Encoding.Extensions": "(,4.3.32767]",
1295
+ "runtime.aot.System.Threading.Tasks": "(,4.3.32767]",
1296
+ "runtime.aot.System.Threading.Timer": "(,4.3.32767]",
1297
+ "runtime.debian.8-x64.runtime.native.System": "(,4.3.32767]",
1298
+ "runtime.debian.8-x64.runtime.native.System.IO.Compression": "(,4.3.32767]",
1299
+ "runtime.debian.8-x64.runtime.native.System.Net.Http": "(,4.3.32767]",
1300
+ "runtime.debian.8-x64.runtime.native.System.Net.Security": "(,4.3.32767]",
1301
+ "runtime.debian.8-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]",
1302
+ "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]",
1303
+ "runtime.debian.9-x64.runtime.native.System": "(,4.3.32767]",
1304
+ "runtime.debian.9-x64.runtime.native.System.IO.Compression": "(,4.3.32767]",
1305
+ "runtime.debian.9-x64.runtime.native.System.Net.Http": "(,4.3.32767]",
1306
+ "runtime.debian.9-x64.runtime.native.System.Net.Security": "(,4.3.32767]",
1307
+ "runtime.fedora.23-x64.runtime.native.System": "(,4.3.32767]",
1308
+ "runtime.fedora.23-x64.runtime.native.System.IO.Compression": "(,4.3.32767]",
1309
+ "runtime.fedora.23-x64.runtime.native.System.Net.Http": "(,4.3.32767]",
1310
+ "runtime.fedora.23-x64.runtime.native.System.Net.Security": "(,4.3.32767]",
1311
+ "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]",
1312
+ "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]",
1313
+ "runtime.fedora.24-x64.runtime.native.System": "(,4.3.32767]",
1314
+ "runtime.fedora.24-x64.runtime.native.System.IO.Compression": "(,4.3.32767]",
1315
+ "runtime.fedora.24-x64.runtime.native.System.Net.Http": "(,4.3.32767]",
1316
+ "runtime.fedora.24-x64.runtime.native.System.Net.Security": "(,4.3.32767]",
1317
+ "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]",
1318
+ "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]",
1319
+ "runtime.fedora.27-x64.runtime.native.System": "(,4.3.32767]",
1320
+ "runtime.fedora.27-x64.runtime.native.System.IO.Compression": "(,4.3.32767]",
1321
+ "runtime.fedora.27-x64.runtime.native.System.Net.Http": "(,4.3.32767]",
1322
+ "runtime.fedora.27-x64.runtime.native.System.Net.Security": "(,4.3.32767]",
1323
+ "runtime.fedora.28-x64.runtime.native.System": "(,4.3.32767]",
1324
+ "runtime.fedora.28-x64.runtime.native.System.IO.Compression": "(,4.3.32767]",
1325
+ "runtime.fedora.28-x64.runtime.native.System.Net.Http": "(,4.3.32767]",
1326
+ "runtime.fedora.28-x64.runtime.native.System.Net.Security": "(,4.3.32767]",
1327
+ "runtime.opensuse.13.2-x64.runtime.native.System": "(,4.3.32767]",
1328
+ "runtime.opensuse.13.2-x64.runtime.native.System.IO.Compression": "(,4.3.32767]",
1329
+ "runtime.opensuse.13.2-x64.runtime.native.System.Net.Http": "(,4.3.32767]",
1330
+ "runtime.opensuse.13.2-x64.runtime.native.System.Net.Security": "(,4.3.32767]",
1331
+ "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]",
1332
+ "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]",
1333
+ "runtime.opensuse.42.1-x64.runtime.native.System": "(,4.3.32767]",
1334
+ "runtime.opensuse.42.1-x64.runtime.native.System.IO.Compression": "(,4.3.32767]",
1335
+ "runtime.opensuse.42.1-x64.runtime.native.System.Net.Http": "(,4.3.32767]",
1336
+ "runtime.opensuse.42.1-x64.runtime.native.System.Net.Security": "(,4.3.32767]",
1337
+ "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]",
1338
+ "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]",
1339
+ "runtime.opensuse.42.3-x64.runtime.native.System": "(,4.3.32767]",
1340
+ "runtime.opensuse.42.3-x64.runtime.native.System.IO.Compression": "(,4.3.32767]",
1341
+ "runtime.opensuse.42.3-x64.runtime.native.System.Net.Http": "(,4.3.32767]",
1342
+ "runtime.opensuse.42.3-x64.runtime.native.System.Net.Security": "(,4.3.32767]",
1343
+ "runtime.osx.10.10-x64.runtime.native.System": "(,4.3.32767]",
1344
+ "runtime.osx.10.10-x64.runtime.native.System.IO.Compression": "(,4.3.32767]",
1345
+ "runtime.osx.10.10-x64.runtime.native.System.Net.Http": "(,4.3.32767]",
1346
+ "runtime.osx.10.10-x64.runtime.native.System.Net.Security": "(,4.3.32767]",
1347
+ "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]",
1348
+ "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple": "(,4.3.32767]",
1349
+ "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]",
1350
+ "runtime.rhel.7-x64.runtime.native.System": "(,4.3.32767]",
1351
+ "runtime.rhel.7-x64.runtime.native.System.IO.Compression": "(,4.3.32767]",
1352
+ "runtime.rhel.7-x64.runtime.native.System.Net.Http": "(,4.3.32767]",
1353
+ "runtime.rhel.7-x64.runtime.native.System.Net.Security": "(,4.3.32767]",
1354
+ "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]",
1355
+ "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]",
1356
+ "runtime.ubuntu.14.04-x64.runtime.native.System": "(,4.3.32767]",
1357
+ "runtime.ubuntu.14.04-x64.runtime.native.System.IO.Compression": "(,4.3.32767]",
1358
+ "runtime.ubuntu.14.04-x64.runtime.native.System.Net.Http": "(,4.3.32767]",
1359
+ "runtime.ubuntu.14.04-x64.runtime.native.System.Net.Security": "(,4.3.32767]",
1360
+ "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]",
1361
+ "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]",
1362
+ "runtime.ubuntu.16.04-x64.runtime.native.System": "(,4.3.32767]",
1363
+ "runtime.ubuntu.16.04-x64.runtime.native.System.IO.Compression": "(,4.3.32767]",
1364
+ "runtime.ubuntu.16.04-x64.runtime.native.System.Net.Http": "(,4.3.32767]",
1365
+ "runtime.ubuntu.16.04-x64.runtime.native.System.Net.Security": "(,4.3.32767]",
1366
+ "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]",
1367
+ "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]",
1368
+ "runtime.ubuntu.16.10-x64.runtime.native.System": "(,4.3.32767]",
1369
+ "runtime.ubuntu.16.10-x64.runtime.native.System.IO.Compression": "(,4.3.32767]",
1370
+ "runtime.ubuntu.16.10-x64.runtime.native.System.Net.Http": "(,4.3.32767]",
1371
+ "runtime.ubuntu.16.10-x64.runtime.native.System.Net.Security": "(,4.3.32767]",
1372
+ "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]",
1373
+ "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]",
1374
+ "runtime.ubuntu.18.04-x64.runtime.native.System": "(,4.3.32767]",
1375
+ "runtime.ubuntu.18.04-x64.runtime.native.System.IO.Compression": "(,4.3.32767]",
1376
+ "runtime.ubuntu.18.04-x64.runtime.native.System.Net.Http": "(,4.3.32767]",
1377
+ "runtime.ubuntu.18.04-x64.runtime.native.System.Net.Security": "(,4.3.32767]",
1378
+ "runtime.unix.Microsoft.Win32.Primitives": "(,4.3.32767]",
1379
+ "runtime.unix.System.Console": "(,4.3.32767]",
1380
+ "runtime.unix.System.Diagnostics.Debug": "(,4.3.32767]",
1381
+ "runtime.unix.System.IO.FileSystem": "(,4.3.32767]",
1382
+ "runtime.unix.System.Net.Primitives": "(,4.3.32767]",
1383
+ "runtime.unix.System.Net.Sockets": "(,4.3.32767]",
1384
+ "runtime.unix.System.Private.Uri": "(,4.3.32767]",
1385
+ "runtime.unix.System.Runtime.Extensions": "(,4.3.32767]",
1386
+ "runtime.win.Microsoft.Win32.Primitives": "(,4.3.32767]",
1387
+ "runtime.win.System.Console": "(,4.3.32767]",
1388
+ "runtime.win.System.Diagnostics.Debug": "(,4.3.32767]",
1389
+ "runtime.win.System.IO.FileSystem": "(,4.3.32767]",
1390
+ "runtime.win.System.Net.Primitives": "(,4.3.32767]",
1391
+ "runtime.win.System.Net.Sockets": "(,4.3.32767]",
1392
+ "runtime.win.System.Runtime.Extensions": "(,4.3.32767]",
1393
+ "runtime.win10-arm-aot.runtime.native.System.IO.Compression": "(,4.0.32767]",
1394
+ "runtime.win10-arm64.runtime.native.System.IO.Compression": "(,4.3.32767]",
1395
+ "runtime.win10-x64-aot.runtime.native.System.IO.Compression": "(,4.0.32767]",
1396
+ "runtime.win10-x86-aot.runtime.native.System.IO.Compression": "(,4.0.32767]",
1397
+ "runtime.win7-x64.runtime.native.System.IO.Compression": "(,4.3.32767]",
1398
+ "runtime.win7-x86.runtime.native.System.IO.Compression": "(,4.3.32767]",
1399
+ "runtime.win7.System.Private.Uri": "(,4.3.32767]",
1400
+ "runtime.win8-arm.runtime.native.System.IO.Compression": "(,4.3.32767]",
1401
+ "System.AppContext": "(,4.3.32767]",
1402
+ "System.Buffers": "(,5.0.32767]",
1403
+ "System.Collections": "(,4.3.32767]",
1404
+ "System.Collections.Concurrent": "(,4.3.32767]",
1405
+ "System.Collections.Immutable": "(,10.0.32767]",
1406
+ "System.Collections.NonGeneric": "(,4.3.32767]",
1407
+ "System.Collections.Specialized": "(,4.3.32767]",
1408
+ "System.ComponentModel": "(,4.3.32767]",
1409
+ "System.ComponentModel.Annotations": "(,4.3.32767]",
1410
+ "System.ComponentModel.EventBasedAsync": "(,4.3.32767]",
1411
+ "System.ComponentModel.Primitives": "(,4.3.32767]",
1412
+ "System.ComponentModel.TypeConverter": "(,4.3.32767]",
1413
+ "System.Console": "(,4.3.32767]",
1414
+ "System.Data.Common": "(,4.3.32767]",
1415
+ "System.Data.DataSetExtensions": "(,4.4.32767]",
1416
+ "System.Diagnostics.Contracts": "(,4.3.32767]",
1417
+ "System.Diagnostics.Debug": "(,4.3.32767]",
1418
+ "System.Diagnostics.DiagnosticSource": "(,10.0.32767]",
1419
+ "System.Diagnostics.FileVersionInfo": "(,4.3.32767]",
1420
+ "System.Diagnostics.Process": "(,4.3.32767]",
1421
+ "System.Diagnostics.StackTrace": "(,4.3.32767]",
1422
+ "System.Diagnostics.TextWriterTraceListener": "(,4.3.32767]",
1423
+ "System.Diagnostics.Tools": "(,4.3.32767]",
1424
+ "System.Diagnostics.TraceSource": "(,4.3.32767]",
1425
+ "System.Diagnostics.Tracing": "(,4.3.32767]",
1426
+ "System.Drawing.Primitives": "(,4.3.32767]",
1427
+ "System.Dynamic.Runtime": "(,4.3.32767]",
1428
+ "System.Formats.Asn1": "(,10.0.32767]",
1429
+ "System.Formats.Tar": "(,10.0.32767]",
1430
+ "System.Globalization": "(,4.3.32767]",
1431
+ "System.Globalization.Calendars": "(,4.3.32767]",
1432
+ "System.Globalization.Extensions": "(,4.3.32767]",
1433
+ "System.IO": "(,4.3.32767]",
1434
+ "System.IO.Compression": "(,4.3.32767]",
1435
+ "System.IO.Compression.ZipFile": "(,4.3.32767]",
1436
+ "System.IO.FileSystem": "(,4.3.32767]",
1437
+ "System.IO.FileSystem.AccessControl": "(,4.4.32767]",
1438
+ "System.IO.FileSystem.DriveInfo": "(,4.3.32767]",
1439
+ "System.IO.FileSystem.Primitives": "(,4.3.32767]",
1440
+ "System.IO.FileSystem.Watcher": "(,4.3.32767]",
1441
+ "System.IO.IsolatedStorage": "(,4.3.32767]",
1442
+ "System.IO.MemoryMappedFiles": "(,4.3.32767]",
1443
+ "System.IO.Pipelines": "(,10.0.32767]",
1444
+ "System.IO.Pipes": "(,4.3.32767]",
1445
+ "System.IO.Pipes.AccessControl": "(,5.0.32767]",
1446
+ "System.IO.UnmanagedMemoryStream": "(,4.3.32767]",
1447
+ "System.Linq": "(,4.3.32767]",
1448
+ "System.Linq.AsyncEnumerable": "(,10.0.32767]",
1449
+ "System.Linq.Expressions": "(,4.3.32767]",
1450
+ "System.Linq.Parallel": "(,4.3.32767]",
1451
+ "System.Linq.Queryable": "(,4.3.32767]",
1452
+ "System.Memory": "(,5.0.32767]",
1453
+ "System.Net.Http": "(,4.3.32767]",
1454
+ "System.Net.Http.Json": "(,10.0.32767]",
1455
+ "System.Net.NameResolution": "(,4.3.32767]",
1456
+ "System.Net.NetworkInformation": "(,4.3.32767]",
1457
+ "System.Net.Ping": "(,4.3.32767]",
1458
+ "System.Net.Primitives": "(,4.3.32767]",
1459
+ "System.Net.Requests": "(,4.3.32767]",
1460
+ "System.Net.Security": "(,4.3.32767]",
1461
+ "System.Net.ServerSentEvents": "(,10.0.32767]",
1462
+ "System.Net.Sockets": "(,4.3.32767]",
1463
+ "System.Net.WebHeaderCollection": "(,4.3.32767]",
1464
+ "System.Net.WebSockets": "(,4.3.32767]",
1465
+ "System.Net.WebSockets.Client": "(,4.3.32767]",
1466
+ "System.Numerics.Vectors": "(,5.0.32767]",
1467
+ "System.ObjectModel": "(,4.3.32767]",
1468
+ "System.Private.DataContractSerialization": "(,4.3.32767]",
1469
+ "System.Private.Uri": "(,4.3.32767]",
1470
+ "System.Reflection": "(,4.3.32767]",
1471
+ "System.Reflection.DispatchProxy": "(,6.0.32767]",
1472
+ "System.Reflection.Emit": "(,4.7.32767]",
1473
+ "System.Reflection.Emit.ILGeneration": "(,4.7.32767]",
1474
+ "System.Reflection.Emit.Lightweight": "(,4.7.32767]",
1475
+ "System.Reflection.Extensions": "(,4.3.32767]",
1476
+ "System.Reflection.Metadata": "(,10.0.32767]",
1477
+ "System.Reflection.Primitives": "(,4.3.32767]",
1478
+ "System.Reflection.TypeExtensions": "(,4.3.32767]",
1479
+ "System.Resources.Reader": "(,4.3.32767]",
1480
+ "System.Resources.ResourceManager": "(,4.3.32767]",
1481
+ "System.Resources.Writer": "(,4.3.32767]",
1482
+ "System.Runtime": "(,4.3.32767]",
1483
+ "System.Runtime.CompilerServices.Unsafe": "(,7.0.32767]",
1484
+ "System.Runtime.CompilerServices.VisualC": "(,4.3.32767]",
1485
+ "System.Runtime.Extensions": "(,4.3.32767]",
1486
+ "System.Runtime.Handles": "(,4.3.32767]",
1487
+ "System.Runtime.InteropServices": "(,4.3.32767]",
1488
+ "System.Runtime.InteropServices.RuntimeInformation": "(,4.3.32767]",
1489
+ "System.Runtime.Loader": "(,4.3.32767]",
1490
+ "System.Runtime.Numerics": "(,4.3.32767]",
1491
+ "System.Runtime.Serialization.Formatters": "(,4.3.32767]",
1492
+ "System.Runtime.Serialization.Json": "(,4.3.32767]",
1493
+ "System.Runtime.Serialization.Primitives": "(,4.3.32767]",
1494
+ "System.Runtime.Serialization.Xml": "(,4.3.32767]",
1495
+ "System.Security.AccessControl": "(,6.0.32767]",
1496
+ "System.Security.Claims": "(,4.3.32767]",
1497
+ "System.Security.Cryptography.Algorithms": "(,4.3.32767]",
1498
+ "System.Security.Cryptography.Cng": "(,5.0.32767]",
1499
+ "System.Security.Cryptography.Csp": "(,4.3.32767]",
1500
+ "System.Security.Cryptography.Encoding": "(,4.3.32767]",
1501
+ "System.Security.Cryptography.OpenSsl": "(,5.0.32767]",
1502
+ "System.Security.Cryptography.Primitives": "(,4.3.32767]",
1503
+ "System.Security.Cryptography.X509Certificates": "(,4.3.32767]",
1504
+ "System.Security.Principal": "(,4.3.32767]",
1505
+ "System.Security.Principal.Windows": "(,5.0.32767]",
1506
+ "System.Security.SecureString": "(,4.3.32767]",
1507
+ "System.Text.Encoding": "(,4.3.32767]",
1508
+ "System.Text.Encoding.CodePages": "(,10.0.32767]",
1509
+ "System.Text.Encoding.Extensions": "(,4.3.32767]",
1510
+ "System.Text.Encodings.Web": "(,10.0.32767]",
1511
+ "System.Text.Json": "(,10.0.32767]",
1512
+ "System.Text.RegularExpressions": "(,4.3.32767]",
1513
+ "System.Threading": "(,4.3.32767]",
1514
+ "System.Threading.AccessControl": "(,10.0.32767]",
1515
+ "System.Threading.Channels": "(,10.0.32767]",
1516
+ "System.Threading.Overlapped": "(,4.3.32767]",
1517
+ "System.Threading.Tasks": "(,4.3.32767]",
1518
+ "System.Threading.Tasks.Dataflow": "(,10.0.32767]",
1519
+ "System.Threading.Tasks.Extensions": "(,5.0.32767]",
1520
+ "System.Threading.Tasks.Parallel": "(,4.3.32767]",
1521
+ "System.Threading.Thread": "(,4.3.32767]",
1522
+ "System.Threading.ThreadPool": "(,4.3.32767]",
1523
+ "System.Threading.Timer": "(,4.3.32767]",
1524
+ "System.ValueTuple": "(,4.5.32767]",
1525
+ "System.Xml.ReaderWriter": "(,4.3.32767]",
1526
+ "System.Xml.XDocument": "(,4.3.32767]",
1527
+ "System.Xml.XmlDocument": "(,4.3.32767]",
1528
+ "System.Xml.XmlSerializer": "(,4.3.32767]",
1529
+ "System.Xml.XPath": "(,4.3.32767]",
1530
+ "System.Xml.XPath.XDocument": "(,5.0.32767]"
1531
+ }
1532
+ }
1533
+ }
1534
+ }
1535
+ }
1536
+ }