@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,690 @@
1
+ {
2
+ "format": 1,
3
+ "restore": {
4
+ "C:\\Projects2\\Personal\\musketeer\\template\\dotnet-scaffold\\src\\__SolutionName__.Application\\__SolutionName__.Application.csproj": {}
5
+ },
6
+ "projects": {
7
+ "C:\\Projects2\\Personal\\musketeer\\template\\dotnet-scaffold\\src\\__SolutionName__.Application\\__SolutionName__.Application.csproj": {
8
+ "version": "1.0.0",
9
+ "restore": {
10
+ "projectUniqueName": "C:\\Projects2\\Personal\\musketeer\\template\\dotnet-scaffold\\src\\__SolutionName__.Application\\__SolutionName__.Application.csproj",
11
+ "projectName": "__SolutionName__.Application",
12
+ "projectPath": "C:\\Projects2\\Personal\\musketeer\\template\\dotnet-scaffold\\src\\__SolutionName__.Application\\__SolutionName__.Application.csproj",
13
+ "packagesPath": "C:\\Users\\phuc.pham\\.nuget\\packages\\",
14
+ "outputPath": "C:\\Projects2\\Personal\\musketeer\\template\\dotnet-scaffold\\src\\__SolutionName__.Application\\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__.Domain\\__SolutionName__.Domain.csproj": {
36
+ "projectPath": "C:\\Projects2\\Personal\\musketeer\\template\\dotnet-scaffold\\src\\__SolutionName__.Domain\\__SolutionName__.Domain.csproj"
37
+ }
38
+ }
39
+ }
40
+ },
41
+ "warningProperties": {
42
+ "warnAsError": [
43
+ "NU1605"
44
+ ]
45
+ },
46
+ "restoreAuditProperties": {
47
+ "enableAudit": "true",
48
+ "auditLevel": "low",
49
+ "auditMode": "all"
50
+ },
51
+ "SdkAnalysisLevel": "10.0.200"
52
+ },
53
+ "frameworks": {
54
+ "net10.0": {
55
+ "targetAlias": "net10.0",
56
+ "imports": [
57
+ "net461",
58
+ "net462",
59
+ "net47",
60
+ "net471",
61
+ "net472",
62
+ "net48",
63
+ "net481"
64
+ ],
65
+ "assetTargetFallback": true,
66
+ "warn": true,
67
+ "frameworkReferences": {
68
+ "Microsoft.NETCore.App": {
69
+ "privateAssets": "all"
70
+ }
71
+ },
72
+ "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\10.0.204/PortableRuntimeIdentifierGraph.json",
73
+ "packagesToPrune": {
74
+ "Microsoft.CSharp": "(,4.7.32767]",
75
+ "Microsoft.VisualBasic": "(,10.4.32767]",
76
+ "Microsoft.Win32.Primitives": "(,4.3.32767]",
77
+ "Microsoft.Win32.Registry": "(,5.0.32767]",
78
+ "runtime.any.System.Collections": "(,4.3.32767]",
79
+ "runtime.any.System.Diagnostics.Tools": "(,4.3.32767]",
80
+ "runtime.any.System.Diagnostics.Tracing": "(,4.3.32767]",
81
+ "runtime.any.System.Globalization": "(,4.3.32767]",
82
+ "runtime.any.System.Globalization.Calendars": "(,4.3.32767]",
83
+ "runtime.any.System.IO": "(,4.3.32767]",
84
+ "runtime.any.System.Reflection": "(,4.3.32767]",
85
+ "runtime.any.System.Reflection.Extensions": "(,4.3.32767]",
86
+ "runtime.any.System.Reflection.Primitives": "(,4.3.32767]",
87
+ "runtime.any.System.Resources.ResourceManager": "(,4.3.32767]",
88
+ "runtime.any.System.Runtime": "(,4.3.32767]",
89
+ "runtime.any.System.Runtime.Handles": "(,4.3.32767]",
90
+ "runtime.any.System.Runtime.InteropServices": "(,4.3.32767]",
91
+ "runtime.any.System.Text.Encoding": "(,4.3.32767]",
92
+ "runtime.any.System.Text.Encoding.Extensions": "(,4.3.32767]",
93
+ "runtime.any.System.Threading.Tasks": "(,4.3.32767]",
94
+ "runtime.any.System.Threading.Timer": "(,4.3.32767]",
95
+ "runtime.aot.System.Collections": "(,4.3.32767]",
96
+ "runtime.aot.System.Diagnostics.Tools": "(,4.3.32767]",
97
+ "runtime.aot.System.Diagnostics.Tracing": "(,4.3.32767]",
98
+ "runtime.aot.System.Globalization": "(,4.3.32767]",
99
+ "runtime.aot.System.Globalization.Calendars": "(,4.3.32767]",
100
+ "runtime.aot.System.IO": "(,4.3.32767]",
101
+ "runtime.aot.System.Reflection": "(,4.3.32767]",
102
+ "runtime.aot.System.Reflection.Extensions": "(,4.3.32767]",
103
+ "runtime.aot.System.Reflection.Primitives": "(,4.3.32767]",
104
+ "runtime.aot.System.Resources.ResourceManager": "(,4.3.32767]",
105
+ "runtime.aot.System.Runtime": "(,4.3.32767]",
106
+ "runtime.aot.System.Runtime.Handles": "(,4.3.32767]",
107
+ "runtime.aot.System.Runtime.InteropServices": "(,4.3.32767]",
108
+ "runtime.aot.System.Text.Encoding": "(,4.3.32767]",
109
+ "runtime.aot.System.Text.Encoding.Extensions": "(,4.3.32767]",
110
+ "runtime.aot.System.Threading.Tasks": "(,4.3.32767]",
111
+ "runtime.aot.System.Threading.Timer": "(,4.3.32767]",
112
+ "runtime.debian.8-x64.runtime.native.System": "(,4.3.32767]",
113
+ "runtime.debian.8-x64.runtime.native.System.IO.Compression": "(,4.3.32767]",
114
+ "runtime.debian.8-x64.runtime.native.System.Net.Http": "(,4.3.32767]",
115
+ "runtime.debian.8-x64.runtime.native.System.Net.Security": "(,4.3.32767]",
116
+ "runtime.debian.8-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]",
117
+ "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]",
118
+ "runtime.debian.9-x64.runtime.native.System": "(,4.3.32767]",
119
+ "runtime.debian.9-x64.runtime.native.System.IO.Compression": "(,4.3.32767]",
120
+ "runtime.debian.9-x64.runtime.native.System.Net.Http": "(,4.3.32767]",
121
+ "runtime.debian.9-x64.runtime.native.System.Net.Security": "(,4.3.32767]",
122
+ "runtime.fedora.23-x64.runtime.native.System": "(,4.3.32767]",
123
+ "runtime.fedora.23-x64.runtime.native.System.IO.Compression": "(,4.3.32767]",
124
+ "runtime.fedora.23-x64.runtime.native.System.Net.Http": "(,4.3.32767]",
125
+ "runtime.fedora.23-x64.runtime.native.System.Net.Security": "(,4.3.32767]",
126
+ "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]",
127
+ "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]",
128
+ "runtime.fedora.24-x64.runtime.native.System": "(,4.3.32767]",
129
+ "runtime.fedora.24-x64.runtime.native.System.IO.Compression": "(,4.3.32767]",
130
+ "runtime.fedora.24-x64.runtime.native.System.Net.Http": "(,4.3.32767]",
131
+ "runtime.fedora.24-x64.runtime.native.System.Net.Security": "(,4.3.32767]",
132
+ "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]",
133
+ "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]",
134
+ "runtime.fedora.27-x64.runtime.native.System": "(,4.3.32767]",
135
+ "runtime.fedora.27-x64.runtime.native.System.IO.Compression": "(,4.3.32767]",
136
+ "runtime.fedora.27-x64.runtime.native.System.Net.Http": "(,4.3.32767]",
137
+ "runtime.fedora.27-x64.runtime.native.System.Net.Security": "(,4.3.32767]",
138
+ "runtime.fedora.28-x64.runtime.native.System": "(,4.3.32767]",
139
+ "runtime.fedora.28-x64.runtime.native.System.IO.Compression": "(,4.3.32767]",
140
+ "runtime.fedora.28-x64.runtime.native.System.Net.Http": "(,4.3.32767]",
141
+ "runtime.fedora.28-x64.runtime.native.System.Net.Security": "(,4.3.32767]",
142
+ "runtime.opensuse.13.2-x64.runtime.native.System": "(,4.3.32767]",
143
+ "runtime.opensuse.13.2-x64.runtime.native.System.IO.Compression": "(,4.3.32767]",
144
+ "runtime.opensuse.13.2-x64.runtime.native.System.Net.Http": "(,4.3.32767]",
145
+ "runtime.opensuse.13.2-x64.runtime.native.System.Net.Security": "(,4.3.32767]",
146
+ "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]",
147
+ "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]",
148
+ "runtime.opensuse.42.1-x64.runtime.native.System": "(,4.3.32767]",
149
+ "runtime.opensuse.42.1-x64.runtime.native.System.IO.Compression": "(,4.3.32767]",
150
+ "runtime.opensuse.42.1-x64.runtime.native.System.Net.Http": "(,4.3.32767]",
151
+ "runtime.opensuse.42.1-x64.runtime.native.System.Net.Security": "(,4.3.32767]",
152
+ "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]",
153
+ "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]",
154
+ "runtime.opensuse.42.3-x64.runtime.native.System": "(,4.3.32767]",
155
+ "runtime.opensuse.42.3-x64.runtime.native.System.IO.Compression": "(,4.3.32767]",
156
+ "runtime.opensuse.42.3-x64.runtime.native.System.Net.Http": "(,4.3.32767]",
157
+ "runtime.opensuse.42.3-x64.runtime.native.System.Net.Security": "(,4.3.32767]",
158
+ "runtime.osx.10.10-x64.runtime.native.System": "(,4.3.32767]",
159
+ "runtime.osx.10.10-x64.runtime.native.System.IO.Compression": "(,4.3.32767]",
160
+ "runtime.osx.10.10-x64.runtime.native.System.Net.Http": "(,4.3.32767]",
161
+ "runtime.osx.10.10-x64.runtime.native.System.Net.Security": "(,4.3.32767]",
162
+ "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]",
163
+ "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple": "(,4.3.32767]",
164
+ "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]",
165
+ "runtime.rhel.7-x64.runtime.native.System": "(,4.3.32767]",
166
+ "runtime.rhel.7-x64.runtime.native.System.IO.Compression": "(,4.3.32767]",
167
+ "runtime.rhel.7-x64.runtime.native.System.Net.Http": "(,4.3.32767]",
168
+ "runtime.rhel.7-x64.runtime.native.System.Net.Security": "(,4.3.32767]",
169
+ "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]",
170
+ "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]",
171
+ "runtime.ubuntu.14.04-x64.runtime.native.System": "(,4.3.32767]",
172
+ "runtime.ubuntu.14.04-x64.runtime.native.System.IO.Compression": "(,4.3.32767]",
173
+ "runtime.ubuntu.14.04-x64.runtime.native.System.Net.Http": "(,4.3.32767]",
174
+ "runtime.ubuntu.14.04-x64.runtime.native.System.Net.Security": "(,4.3.32767]",
175
+ "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]",
176
+ "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]",
177
+ "runtime.ubuntu.16.04-x64.runtime.native.System": "(,4.3.32767]",
178
+ "runtime.ubuntu.16.04-x64.runtime.native.System.IO.Compression": "(,4.3.32767]",
179
+ "runtime.ubuntu.16.04-x64.runtime.native.System.Net.Http": "(,4.3.32767]",
180
+ "runtime.ubuntu.16.04-x64.runtime.native.System.Net.Security": "(,4.3.32767]",
181
+ "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]",
182
+ "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]",
183
+ "runtime.ubuntu.16.10-x64.runtime.native.System": "(,4.3.32767]",
184
+ "runtime.ubuntu.16.10-x64.runtime.native.System.IO.Compression": "(,4.3.32767]",
185
+ "runtime.ubuntu.16.10-x64.runtime.native.System.Net.Http": "(,4.3.32767]",
186
+ "runtime.ubuntu.16.10-x64.runtime.native.System.Net.Security": "(,4.3.32767]",
187
+ "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]",
188
+ "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]",
189
+ "runtime.ubuntu.18.04-x64.runtime.native.System": "(,4.3.32767]",
190
+ "runtime.ubuntu.18.04-x64.runtime.native.System.IO.Compression": "(,4.3.32767]",
191
+ "runtime.ubuntu.18.04-x64.runtime.native.System.Net.Http": "(,4.3.32767]",
192
+ "runtime.ubuntu.18.04-x64.runtime.native.System.Net.Security": "(,4.3.32767]",
193
+ "runtime.unix.Microsoft.Win32.Primitives": "(,4.3.32767]",
194
+ "runtime.unix.System.Console": "(,4.3.32767]",
195
+ "runtime.unix.System.Diagnostics.Debug": "(,4.3.32767]",
196
+ "runtime.unix.System.IO.FileSystem": "(,4.3.32767]",
197
+ "runtime.unix.System.Net.Primitives": "(,4.3.32767]",
198
+ "runtime.unix.System.Net.Sockets": "(,4.3.32767]",
199
+ "runtime.unix.System.Private.Uri": "(,4.3.32767]",
200
+ "runtime.unix.System.Runtime.Extensions": "(,4.3.32767]",
201
+ "runtime.win.Microsoft.Win32.Primitives": "(,4.3.32767]",
202
+ "runtime.win.System.Console": "(,4.3.32767]",
203
+ "runtime.win.System.Diagnostics.Debug": "(,4.3.32767]",
204
+ "runtime.win.System.IO.FileSystem": "(,4.3.32767]",
205
+ "runtime.win.System.Net.Primitives": "(,4.3.32767]",
206
+ "runtime.win.System.Net.Sockets": "(,4.3.32767]",
207
+ "runtime.win.System.Runtime.Extensions": "(,4.3.32767]",
208
+ "runtime.win10-arm-aot.runtime.native.System.IO.Compression": "(,4.0.32767]",
209
+ "runtime.win10-arm64.runtime.native.System.IO.Compression": "(,4.3.32767]",
210
+ "runtime.win10-x64-aot.runtime.native.System.IO.Compression": "(,4.0.32767]",
211
+ "runtime.win10-x86-aot.runtime.native.System.IO.Compression": "(,4.0.32767]",
212
+ "runtime.win7-x64.runtime.native.System.IO.Compression": "(,4.3.32767]",
213
+ "runtime.win7-x86.runtime.native.System.IO.Compression": "(,4.3.32767]",
214
+ "runtime.win7.System.Private.Uri": "(,4.3.32767]",
215
+ "runtime.win8-arm.runtime.native.System.IO.Compression": "(,4.3.32767]",
216
+ "System.AppContext": "(,4.3.32767]",
217
+ "System.Buffers": "(,5.0.32767]",
218
+ "System.Collections": "(,4.3.32767]",
219
+ "System.Collections.Concurrent": "(,4.3.32767]",
220
+ "System.Collections.Immutable": "(,10.0.32767]",
221
+ "System.Collections.NonGeneric": "(,4.3.32767]",
222
+ "System.Collections.Specialized": "(,4.3.32767]",
223
+ "System.ComponentModel": "(,4.3.32767]",
224
+ "System.ComponentModel.Annotations": "(,4.3.32767]",
225
+ "System.ComponentModel.EventBasedAsync": "(,4.3.32767]",
226
+ "System.ComponentModel.Primitives": "(,4.3.32767]",
227
+ "System.ComponentModel.TypeConverter": "(,4.3.32767]",
228
+ "System.Console": "(,4.3.32767]",
229
+ "System.Data.Common": "(,4.3.32767]",
230
+ "System.Data.DataSetExtensions": "(,4.4.32767]",
231
+ "System.Diagnostics.Contracts": "(,4.3.32767]",
232
+ "System.Diagnostics.Debug": "(,4.3.32767]",
233
+ "System.Diagnostics.DiagnosticSource": "(,10.0.32767]",
234
+ "System.Diagnostics.FileVersionInfo": "(,4.3.32767]",
235
+ "System.Diagnostics.Process": "(,4.3.32767]",
236
+ "System.Diagnostics.StackTrace": "(,4.3.32767]",
237
+ "System.Diagnostics.TextWriterTraceListener": "(,4.3.32767]",
238
+ "System.Diagnostics.Tools": "(,4.3.32767]",
239
+ "System.Diagnostics.TraceSource": "(,4.3.32767]",
240
+ "System.Diagnostics.Tracing": "(,4.3.32767]",
241
+ "System.Drawing.Primitives": "(,4.3.32767]",
242
+ "System.Dynamic.Runtime": "(,4.3.32767]",
243
+ "System.Formats.Asn1": "(,10.0.32767]",
244
+ "System.Formats.Tar": "(,10.0.32767]",
245
+ "System.Globalization": "(,4.3.32767]",
246
+ "System.Globalization.Calendars": "(,4.3.32767]",
247
+ "System.Globalization.Extensions": "(,4.3.32767]",
248
+ "System.IO": "(,4.3.32767]",
249
+ "System.IO.Compression": "(,4.3.32767]",
250
+ "System.IO.Compression.ZipFile": "(,4.3.32767]",
251
+ "System.IO.FileSystem": "(,4.3.32767]",
252
+ "System.IO.FileSystem.AccessControl": "(,4.4.32767]",
253
+ "System.IO.FileSystem.DriveInfo": "(,4.3.32767]",
254
+ "System.IO.FileSystem.Primitives": "(,4.3.32767]",
255
+ "System.IO.FileSystem.Watcher": "(,4.3.32767]",
256
+ "System.IO.IsolatedStorage": "(,4.3.32767]",
257
+ "System.IO.MemoryMappedFiles": "(,4.3.32767]",
258
+ "System.IO.Pipelines": "(,10.0.32767]",
259
+ "System.IO.Pipes": "(,4.3.32767]",
260
+ "System.IO.Pipes.AccessControl": "(,5.0.32767]",
261
+ "System.IO.UnmanagedMemoryStream": "(,4.3.32767]",
262
+ "System.Linq": "(,4.3.32767]",
263
+ "System.Linq.AsyncEnumerable": "(,10.0.32767]",
264
+ "System.Linq.Expressions": "(,4.3.32767]",
265
+ "System.Linq.Parallel": "(,4.3.32767]",
266
+ "System.Linq.Queryable": "(,4.3.32767]",
267
+ "System.Memory": "(,5.0.32767]",
268
+ "System.Net.Http": "(,4.3.32767]",
269
+ "System.Net.Http.Json": "(,10.0.32767]",
270
+ "System.Net.NameResolution": "(,4.3.32767]",
271
+ "System.Net.NetworkInformation": "(,4.3.32767]",
272
+ "System.Net.Ping": "(,4.3.32767]",
273
+ "System.Net.Primitives": "(,4.3.32767]",
274
+ "System.Net.Requests": "(,4.3.32767]",
275
+ "System.Net.Security": "(,4.3.32767]",
276
+ "System.Net.ServerSentEvents": "(,10.0.32767]",
277
+ "System.Net.Sockets": "(,4.3.32767]",
278
+ "System.Net.WebHeaderCollection": "(,4.3.32767]",
279
+ "System.Net.WebSockets": "(,4.3.32767]",
280
+ "System.Net.WebSockets.Client": "(,4.3.32767]",
281
+ "System.Numerics.Vectors": "(,5.0.32767]",
282
+ "System.ObjectModel": "(,4.3.32767]",
283
+ "System.Private.DataContractSerialization": "(,4.3.32767]",
284
+ "System.Private.Uri": "(,4.3.32767]",
285
+ "System.Reflection": "(,4.3.32767]",
286
+ "System.Reflection.DispatchProxy": "(,6.0.32767]",
287
+ "System.Reflection.Emit": "(,4.7.32767]",
288
+ "System.Reflection.Emit.ILGeneration": "(,4.7.32767]",
289
+ "System.Reflection.Emit.Lightweight": "(,4.7.32767]",
290
+ "System.Reflection.Extensions": "(,4.3.32767]",
291
+ "System.Reflection.Metadata": "(,10.0.32767]",
292
+ "System.Reflection.Primitives": "(,4.3.32767]",
293
+ "System.Reflection.TypeExtensions": "(,4.3.32767]",
294
+ "System.Resources.Reader": "(,4.3.32767]",
295
+ "System.Resources.ResourceManager": "(,4.3.32767]",
296
+ "System.Resources.Writer": "(,4.3.32767]",
297
+ "System.Runtime": "(,4.3.32767]",
298
+ "System.Runtime.CompilerServices.Unsafe": "(,7.0.32767]",
299
+ "System.Runtime.CompilerServices.VisualC": "(,4.3.32767]",
300
+ "System.Runtime.Extensions": "(,4.3.32767]",
301
+ "System.Runtime.Handles": "(,4.3.32767]",
302
+ "System.Runtime.InteropServices": "(,4.3.32767]",
303
+ "System.Runtime.InteropServices.RuntimeInformation": "(,4.3.32767]",
304
+ "System.Runtime.Loader": "(,4.3.32767]",
305
+ "System.Runtime.Numerics": "(,4.3.32767]",
306
+ "System.Runtime.Serialization.Formatters": "(,4.3.32767]",
307
+ "System.Runtime.Serialization.Json": "(,4.3.32767]",
308
+ "System.Runtime.Serialization.Primitives": "(,4.3.32767]",
309
+ "System.Runtime.Serialization.Xml": "(,4.3.32767]",
310
+ "System.Security.AccessControl": "(,6.0.32767]",
311
+ "System.Security.Claims": "(,4.3.32767]",
312
+ "System.Security.Cryptography.Algorithms": "(,4.3.32767]",
313
+ "System.Security.Cryptography.Cng": "(,5.0.32767]",
314
+ "System.Security.Cryptography.Csp": "(,4.3.32767]",
315
+ "System.Security.Cryptography.Encoding": "(,4.3.32767]",
316
+ "System.Security.Cryptography.OpenSsl": "(,5.0.32767]",
317
+ "System.Security.Cryptography.Primitives": "(,4.3.32767]",
318
+ "System.Security.Cryptography.X509Certificates": "(,4.3.32767]",
319
+ "System.Security.Principal": "(,4.3.32767]",
320
+ "System.Security.Principal.Windows": "(,5.0.32767]",
321
+ "System.Security.SecureString": "(,4.3.32767]",
322
+ "System.Text.Encoding": "(,4.3.32767]",
323
+ "System.Text.Encoding.CodePages": "(,10.0.32767]",
324
+ "System.Text.Encoding.Extensions": "(,4.3.32767]",
325
+ "System.Text.Encodings.Web": "(,10.0.32767]",
326
+ "System.Text.Json": "(,10.0.32767]",
327
+ "System.Text.RegularExpressions": "(,4.3.32767]",
328
+ "System.Threading": "(,4.3.32767]",
329
+ "System.Threading.AccessControl": "(,10.0.32767]",
330
+ "System.Threading.Channels": "(,10.0.32767]",
331
+ "System.Threading.Overlapped": "(,4.3.32767]",
332
+ "System.Threading.Tasks": "(,4.3.32767]",
333
+ "System.Threading.Tasks.Dataflow": "(,10.0.32767]",
334
+ "System.Threading.Tasks.Extensions": "(,5.0.32767]",
335
+ "System.Threading.Tasks.Parallel": "(,4.3.32767]",
336
+ "System.Threading.Thread": "(,4.3.32767]",
337
+ "System.Threading.ThreadPool": "(,4.3.32767]",
338
+ "System.Threading.Timer": "(,4.3.32767]",
339
+ "System.ValueTuple": "(,4.5.32767]",
340
+ "System.Xml.ReaderWriter": "(,4.3.32767]",
341
+ "System.Xml.XDocument": "(,4.3.32767]",
342
+ "System.Xml.XmlDocument": "(,4.3.32767]",
343
+ "System.Xml.XmlSerializer": "(,4.3.32767]",
344
+ "System.Xml.XPath": "(,4.3.32767]",
345
+ "System.Xml.XPath.XDocument": "(,5.0.32767]"
346
+ }
347
+ }
348
+ }
349
+ },
350
+ "C:\\Projects2\\Personal\\musketeer\\template\\dotnet-scaffold\\src\\__SolutionName__.Domain\\__SolutionName__.Domain.csproj": {
351
+ "version": "1.0.0",
352
+ "restore": {
353
+ "projectUniqueName": "C:\\Projects2\\Personal\\musketeer\\template\\dotnet-scaffold\\src\\__SolutionName__.Domain\\__SolutionName__.Domain.csproj",
354
+ "projectName": "__SolutionName__.Domain",
355
+ "projectPath": "C:\\Projects2\\Personal\\musketeer\\template\\dotnet-scaffold\\src\\__SolutionName__.Domain\\__SolutionName__.Domain.csproj",
356
+ "packagesPath": "C:\\Users\\phuc.pham\\.nuget\\packages\\",
357
+ "outputPath": "C:\\Projects2\\Personal\\musketeer\\template\\dotnet-scaffold\\src\\__SolutionName__.Domain\\obj\\",
358
+ "projectStyle": "PackageReference",
359
+ "fallbackFolders": [
360
+ "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages"
361
+ ],
362
+ "configFilePaths": [
363
+ "C:\\Users\\phuc.pham\\AppData\\Roaming\\NuGet\\NuGet.Config",
364
+ "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config",
365
+ "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config"
366
+ ],
367
+ "originalTargetFrameworks": [
368
+ "net10.0"
369
+ ],
370
+ "sources": {
371
+ "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {},
372
+ "https://api.nuget.org/v3/index.json": {}
373
+ },
374
+ "frameworks": {
375
+ "net10.0": {
376
+ "targetAlias": "net10.0",
377
+ "projectReferences": {}
378
+ }
379
+ },
380
+ "warningProperties": {
381
+ "warnAsError": [
382
+ "NU1605"
383
+ ]
384
+ },
385
+ "restoreAuditProperties": {
386
+ "enableAudit": "true",
387
+ "auditLevel": "low",
388
+ "auditMode": "all"
389
+ },
390
+ "SdkAnalysisLevel": "10.0.200"
391
+ },
392
+ "frameworks": {
393
+ "net10.0": {
394
+ "targetAlias": "net10.0",
395
+ "imports": [
396
+ "net461",
397
+ "net462",
398
+ "net47",
399
+ "net471",
400
+ "net472",
401
+ "net48",
402
+ "net481"
403
+ ],
404
+ "assetTargetFallback": true,
405
+ "warn": true,
406
+ "frameworkReferences": {
407
+ "Microsoft.NETCore.App": {
408
+ "privateAssets": "all"
409
+ }
410
+ },
411
+ "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\10.0.204/PortableRuntimeIdentifierGraph.json",
412
+ "packagesToPrune": {
413
+ "Microsoft.CSharp": "(,4.7.32767]",
414
+ "Microsoft.VisualBasic": "(,10.4.32767]",
415
+ "Microsoft.Win32.Primitives": "(,4.3.32767]",
416
+ "Microsoft.Win32.Registry": "(,5.0.32767]",
417
+ "runtime.any.System.Collections": "(,4.3.32767]",
418
+ "runtime.any.System.Diagnostics.Tools": "(,4.3.32767]",
419
+ "runtime.any.System.Diagnostics.Tracing": "(,4.3.32767]",
420
+ "runtime.any.System.Globalization": "(,4.3.32767]",
421
+ "runtime.any.System.Globalization.Calendars": "(,4.3.32767]",
422
+ "runtime.any.System.IO": "(,4.3.32767]",
423
+ "runtime.any.System.Reflection": "(,4.3.32767]",
424
+ "runtime.any.System.Reflection.Extensions": "(,4.3.32767]",
425
+ "runtime.any.System.Reflection.Primitives": "(,4.3.32767]",
426
+ "runtime.any.System.Resources.ResourceManager": "(,4.3.32767]",
427
+ "runtime.any.System.Runtime": "(,4.3.32767]",
428
+ "runtime.any.System.Runtime.Handles": "(,4.3.32767]",
429
+ "runtime.any.System.Runtime.InteropServices": "(,4.3.32767]",
430
+ "runtime.any.System.Text.Encoding": "(,4.3.32767]",
431
+ "runtime.any.System.Text.Encoding.Extensions": "(,4.3.32767]",
432
+ "runtime.any.System.Threading.Tasks": "(,4.3.32767]",
433
+ "runtime.any.System.Threading.Timer": "(,4.3.32767]",
434
+ "runtime.aot.System.Collections": "(,4.3.32767]",
435
+ "runtime.aot.System.Diagnostics.Tools": "(,4.3.32767]",
436
+ "runtime.aot.System.Diagnostics.Tracing": "(,4.3.32767]",
437
+ "runtime.aot.System.Globalization": "(,4.3.32767]",
438
+ "runtime.aot.System.Globalization.Calendars": "(,4.3.32767]",
439
+ "runtime.aot.System.IO": "(,4.3.32767]",
440
+ "runtime.aot.System.Reflection": "(,4.3.32767]",
441
+ "runtime.aot.System.Reflection.Extensions": "(,4.3.32767]",
442
+ "runtime.aot.System.Reflection.Primitives": "(,4.3.32767]",
443
+ "runtime.aot.System.Resources.ResourceManager": "(,4.3.32767]",
444
+ "runtime.aot.System.Runtime": "(,4.3.32767]",
445
+ "runtime.aot.System.Runtime.Handles": "(,4.3.32767]",
446
+ "runtime.aot.System.Runtime.InteropServices": "(,4.3.32767]",
447
+ "runtime.aot.System.Text.Encoding": "(,4.3.32767]",
448
+ "runtime.aot.System.Text.Encoding.Extensions": "(,4.3.32767]",
449
+ "runtime.aot.System.Threading.Tasks": "(,4.3.32767]",
450
+ "runtime.aot.System.Threading.Timer": "(,4.3.32767]",
451
+ "runtime.debian.8-x64.runtime.native.System": "(,4.3.32767]",
452
+ "runtime.debian.8-x64.runtime.native.System.IO.Compression": "(,4.3.32767]",
453
+ "runtime.debian.8-x64.runtime.native.System.Net.Http": "(,4.3.32767]",
454
+ "runtime.debian.8-x64.runtime.native.System.Net.Security": "(,4.3.32767]",
455
+ "runtime.debian.8-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]",
456
+ "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]",
457
+ "runtime.debian.9-x64.runtime.native.System": "(,4.3.32767]",
458
+ "runtime.debian.9-x64.runtime.native.System.IO.Compression": "(,4.3.32767]",
459
+ "runtime.debian.9-x64.runtime.native.System.Net.Http": "(,4.3.32767]",
460
+ "runtime.debian.9-x64.runtime.native.System.Net.Security": "(,4.3.32767]",
461
+ "runtime.fedora.23-x64.runtime.native.System": "(,4.3.32767]",
462
+ "runtime.fedora.23-x64.runtime.native.System.IO.Compression": "(,4.3.32767]",
463
+ "runtime.fedora.23-x64.runtime.native.System.Net.Http": "(,4.3.32767]",
464
+ "runtime.fedora.23-x64.runtime.native.System.Net.Security": "(,4.3.32767]",
465
+ "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]",
466
+ "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]",
467
+ "runtime.fedora.24-x64.runtime.native.System": "(,4.3.32767]",
468
+ "runtime.fedora.24-x64.runtime.native.System.IO.Compression": "(,4.3.32767]",
469
+ "runtime.fedora.24-x64.runtime.native.System.Net.Http": "(,4.3.32767]",
470
+ "runtime.fedora.24-x64.runtime.native.System.Net.Security": "(,4.3.32767]",
471
+ "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]",
472
+ "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]",
473
+ "runtime.fedora.27-x64.runtime.native.System": "(,4.3.32767]",
474
+ "runtime.fedora.27-x64.runtime.native.System.IO.Compression": "(,4.3.32767]",
475
+ "runtime.fedora.27-x64.runtime.native.System.Net.Http": "(,4.3.32767]",
476
+ "runtime.fedora.27-x64.runtime.native.System.Net.Security": "(,4.3.32767]",
477
+ "runtime.fedora.28-x64.runtime.native.System": "(,4.3.32767]",
478
+ "runtime.fedora.28-x64.runtime.native.System.IO.Compression": "(,4.3.32767]",
479
+ "runtime.fedora.28-x64.runtime.native.System.Net.Http": "(,4.3.32767]",
480
+ "runtime.fedora.28-x64.runtime.native.System.Net.Security": "(,4.3.32767]",
481
+ "runtime.opensuse.13.2-x64.runtime.native.System": "(,4.3.32767]",
482
+ "runtime.opensuse.13.2-x64.runtime.native.System.IO.Compression": "(,4.3.32767]",
483
+ "runtime.opensuse.13.2-x64.runtime.native.System.Net.Http": "(,4.3.32767]",
484
+ "runtime.opensuse.13.2-x64.runtime.native.System.Net.Security": "(,4.3.32767]",
485
+ "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]",
486
+ "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]",
487
+ "runtime.opensuse.42.1-x64.runtime.native.System": "(,4.3.32767]",
488
+ "runtime.opensuse.42.1-x64.runtime.native.System.IO.Compression": "(,4.3.32767]",
489
+ "runtime.opensuse.42.1-x64.runtime.native.System.Net.Http": "(,4.3.32767]",
490
+ "runtime.opensuse.42.1-x64.runtime.native.System.Net.Security": "(,4.3.32767]",
491
+ "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]",
492
+ "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]",
493
+ "runtime.opensuse.42.3-x64.runtime.native.System": "(,4.3.32767]",
494
+ "runtime.opensuse.42.3-x64.runtime.native.System.IO.Compression": "(,4.3.32767]",
495
+ "runtime.opensuse.42.3-x64.runtime.native.System.Net.Http": "(,4.3.32767]",
496
+ "runtime.opensuse.42.3-x64.runtime.native.System.Net.Security": "(,4.3.32767]",
497
+ "runtime.osx.10.10-x64.runtime.native.System": "(,4.3.32767]",
498
+ "runtime.osx.10.10-x64.runtime.native.System.IO.Compression": "(,4.3.32767]",
499
+ "runtime.osx.10.10-x64.runtime.native.System.Net.Http": "(,4.3.32767]",
500
+ "runtime.osx.10.10-x64.runtime.native.System.Net.Security": "(,4.3.32767]",
501
+ "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]",
502
+ "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple": "(,4.3.32767]",
503
+ "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]",
504
+ "runtime.rhel.7-x64.runtime.native.System": "(,4.3.32767]",
505
+ "runtime.rhel.7-x64.runtime.native.System.IO.Compression": "(,4.3.32767]",
506
+ "runtime.rhel.7-x64.runtime.native.System.Net.Http": "(,4.3.32767]",
507
+ "runtime.rhel.7-x64.runtime.native.System.Net.Security": "(,4.3.32767]",
508
+ "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]",
509
+ "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]",
510
+ "runtime.ubuntu.14.04-x64.runtime.native.System": "(,4.3.32767]",
511
+ "runtime.ubuntu.14.04-x64.runtime.native.System.IO.Compression": "(,4.3.32767]",
512
+ "runtime.ubuntu.14.04-x64.runtime.native.System.Net.Http": "(,4.3.32767]",
513
+ "runtime.ubuntu.14.04-x64.runtime.native.System.Net.Security": "(,4.3.32767]",
514
+ "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]",
515
+ "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]",
516
+ "runtime.ubuntu.16.04-x64.runtime.native.System": "(,4.3.32767]",
517
+ "runtime.ubuntu.16.04-x64.runtime.native.System.IO.Compression": "(,4.3.32767]",
518
+ "runtime.ubuntu.16.04-x64.runtime.native.System.Net.Http": "(,4.3.32767]",
519
+ "runtime.ubuntu.16.04-x64.runtime.native.System.Net.Security": "(,4.3.32767]",
520
+ "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]",
521
+ "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]",
522
+ "runtime.ubuntu.16.10-x64.runtime.native.System": "(,4.3.32767]",
523
+ "runtime.ubuntu.16.10-x64.runtime.native.System.IO.Compression": "(,4.3.32767]",
524
+ "runtime.ubuntu.16.10-x64.runtime.native.System.Net.Http": "(,4.3.32767]",
525
+ "runtime.ubuntu.16.10-x64.runtime.native.System.Net.Security": "(,4.3.32767]",
526
+ "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]",
527
+ "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]",
528
+ "runtime.ubuntu.18.04-x64.runtime.native.System": "(,4.3.32767]",
529
+ "runtime.ubuntu.18.04-x64.runtime.native.System.IO.Compression": "(,4.3.32767]",
530
+ "runtime.ubuntu.18.04-x64.runtime.native.System.Net.Http": "(,4.3.32767]",
531
+ "runtime.ubuntu.18.04-x64.runtime.native.System.Net.Security": "(,4.3.32767]",
532
+ "runtime.unix.Microsoft.Win32.Primitives": "(,4.3.32767]",
533
+ "runtime.unix.System.Console": "(,4.3.32767]",
534
+ "runtime.unix.System.Diagnostics.Debug": "(,4.3.32767]",
535
+ "runtime.unix.System.IO.FileSystem": "(,4.3.32767]",
536
+ "runtime.unix.System.Net.Primitives": "(,4.3.32767]",
537
+ "runtime.unix.System.Net.Sockets": "(,4.3.32767]",
538
+ "runtime.unix.System.Private.Uri": "(,4.3.32767]",
539
+ "runtime.unix.System.Runtime.Extensions": "(,4.3.32767]",
540
+ "runtime.win.Microsoft.Win32.Primitives": "(,4.3.32767]",
541
+ "runtime.win.System.Console": "(,4.3.32767]",
542
+ "runtime.win.System.Diagnostics.Debug": "(,4.3.32767]",
543
+ "runtime.win.System.IO.FileSystem": "(,4.3.32767]",
544
+ "runtime.win.System.Net.Primitives": "(,4.3.32767]",
545
+ "runtime.win.System.Net.Sockets": "(,4.3.32767]",
546
+ "runtime.win.System.Runtime.Extensions": "(,4.3.32767]",
547
+ "runtime.win10-arm-aot.runtime.native.System.IO.Compression": "(,4.0.32767]",
548
+ "runtime.win10-arm64.runtime.native.System.IO.Compression": "(,4.3.32767]",
549
+ "runtime.win10-x64-aot.runtime.native.System.IO.Compression": "(,4.0.32767]",
550
+ "runtime.win10-x86-aot.runtime.native.System.IO.Compression": "(,4.0.32767]",
551
+ "runtime.win7-x64.runtime.native.System.IO.Compression": "(,4.3.32767]",
552
+ "runtime.win7-x86.runtime.native.System.IO.Compression": "(,4.3.32767]",
553
+ "runtime.win7.System.Private.Uri": "(,4.3.32767]",
554
+ "runtime.win8-arm.runtime.native.System.IO.Compression": "(,4.3.32767]",
555
+ "System.AppContext": "(,4.3.32767]",
556
+ "System.Buffers": "(,5.0.32767]",
557
+ "System.Collections": "(,4.3.32767]",
558
+ "System.Collections.Concurrent": "(,4.3.32767]",
559
+ "System.Collections.Immutable": "(,10.0.32767]",
560
+ "System.Collections.NonGeneric": "(,4.3.32767]",
561
+ "System.Collections.Specialized": "(,4.3.32767]",
562
+ "System.ComponentModel": "(,4.3.32767]",
563
+ "System.ComponentModel.Annotations": "(,4.3.32767]",
564
+ "System.ComponentModel.EventBasedAsync": "(,4.3.32767]",
565
+ "System.ComponentModel.Primitives": "(,4.3.32767]",
566
+ "System.ComponentModel.TypeConverter": "(,4.3.32767]",
567
+ "System.Console": "(,4.3.32767]",
568
+ "System.Data.Common": "(,4.3.32767]",
569
+ "System.Data.DataSetExtensions": "(,4.4.32767]",
570
+ "System.Diagnostics.Contracts": "(,4.3.32767]",
571
+ "System.Diagnostics.Debug": "(,4.3.32767]",
572
+ "System.Diagnostics.DiagnosticSource": "(,10.0.32767]",
573
+ "System.Diagnostics.FileVersionInfo": "(,4.3.32767]",
574
+ "System.Diagnostics.Process": "(,4.3.32767]",
575
+ "System.Diagnostics.StackTrace": "(,4.3.32767]",
576
+ "System.Diagnostics.TextWriterTraceListener": "(,4.3.32767]",
577
+ "System.Diagnostics.Tools": "(,4.3.32767]",
578
+ "System.Diagnostics.TraceSource": "(,4.3.32767]",
579
+ "System.Diagnostics.Tracing": "(,4.3.32767]",
580
+ "System.Drawing.Primitives": "(,4.3.32767]",
581
+ "System.Dynamic.Runtime": "(,4.3.32767]",
582
+ "System.Formats.Asn1": "(,10.0.32767]",
583
+ "System.Formats.Tar": "(,10.0.32767]",
584
+ "System.Globalization": "(,4.3.32767]",
585
+ "System.Globalization.Calendars": "(,4.3.32767]",
586
+ "System.Globalization.Extensions": "(,4.3.32767]",
587
+ "System.IO": "(,4.3.32767]",
588
+ "System.IO.Compression": "(,4.3.32767]",
589
+ "System.IO.Compression.ZipFile": "(,4.3.32767]",
590
+ "System.IO.FileSystem": "(,4.3.32767]",
591
+ "System.IO.FileSystem.AccessControl": "(,4.4.32767]",
592
+ "System.IO.FileSystem.DriveInfo": "(,4.3.32767]",
593
+ "System.IO.FileSystem.Primitives": "(,4.3.32767]",
594
+ "System.IO.FileSystem.Watcher": "(,4.3.32767]",
595
+ "System.IO.IsolatedStorage": "(,4.3.32767]",
596
+ "System.IO.MemoryMappedFiles": "(,4.3.32767]",
597
+ "System.IO.Pipelines": "(,10.0.32767]",
598
+ "System.IO.Pipes": "(,4.3.32767]",
599
+ "System.IO.Pipes.AccessControl": "(,5.0.32767]",
600
+ "System.IO.UnmanagedMemoryStream": "(,4.3.32767]",
601
+ "System.Linq": "(,4.3.32767]",
602
+ "System.Linq.AsyncEnumerable": "(,10.0.32767]",
603
+ "System.Linq.Expressions": "(,4.3.32767]",
604
+ "System.Linq.Parallel": "(,4.3.32767]",
605
+ "System.Linq.Queryable": "(,4.3.32767]",
606
+ "System.Memory": "(,5.0.32767]",
607
+ "System.Net.Http": "(,4.3.32767]",
608
+ "System.Net.Http.Json": "(,10.0.32767]",
609
+ "System.Net.NameResolution": "(,4.3.32767]",
610
+ "System.Net.NetworkInformation": "(,4.3.32767]",
611
+ "System.Net.Ping": "(,4.3.32767]",
612
+ "System.Net.Primitives": "(,4.3.32767]",
613
+ "System.Net.Requests": "(,4.3.32767]",
614
+ "System.Net.Security": "(,4.3.32767]",
615
+ "System.Net.ServerSentEvents": "(,10.0.32767]",
616
+ "System.Net.Sockets": "(,4.3.32767]",
617
+ "System.Net.WebHeaderCollection": "(,4.3.32767]",
618
+ "System.Net.WebSockets": "(,4.3.32767]",
619
+ "System.Net.WebSockets.Client": "(,4.3.32767]",
620
+ "System.Numerics.Vectors": "(,5.0.32767]",
621
+ "System.ObjectModel": "(,4.3.32767]",
622
+ "System.Private.DataContractSerialization": "(,4.3.32767]",
623
+ "System.Private.Uri": "(,4.3.32767]",
624
+ "System.Reflection": "(,4.3.32767]",
625
+ "System.Reflection.DispatchProxy": "(,6.0.32767]",
626
+ "System.Reflection.Emit": "(,4.7.32767]",
627
+ "System.Reflection.Emit.ILGeneration": "(,4.7.32767]",
628
+ "System.Reflection.Emit.Lightweight": "(,4.7.32767]",
629
+ "System.Reflection.Extensions": "(,4.3.32767]",
630
+ "System.Reflection.Metadata": "(,10.0.32767]",
631
+ "System.Reflection.Primitives": "(,4.3.32767]",
632
+ "System.Reflection.TypeExtensions": "(,4.3.32767]",
633
+ "System.Resources.Reader": "(,4.3.32767]",
634
+ "System.Resources.ResourceManager": "(,4.3.32767]",
635
+ "System.Resources.Writer": "(,4.3.32767]",
636
+ "System.Runtime": "(,4.3.32767]",
637
+ "System.Runtime.CompilerServices.Unsafe": "(,7.0.32767]",
638
+ "System.Runtime.CompilerServices.VisualC": "(,4.3.32767]",
639
+ "System.Runtime.Extensions": "(,4.3.32767]",
640
+ "System.Runtime.Handles": "(,4.3.32767]",
641
+ "System.Runtime.InteropServices": "(,4.3.32767]",
642
+ "System.Runtime.InteropServices.RuntimeInformation": "(,4.3.32767]",
643
+ "System.Runtime.Loader": "(,4.3.32767]",
644
+ "System.Runtime.Numerics": "(,4.3.32767]",
645
+ "System.Runtime.Serialization.Formatters": "(,4.3.32767]",
646
+ "System.Runtime.Serialization.Json": "(,4.3.32767]",
647
+ "System.Runtime.Serialization.Primitives": "(,4.3.32767]",
648
+ "System.Runtime.Serialization.Xml": "(,4.3.32767]",
649
+ "System.Security.AccessControl": "(,6.0.32767]",
650
+ "System.Security.Claims": "(,4.3.32767]",
651
+ "System.Security.Cryptography.Algorithms": "(,4.3.32767]",
652
+ "System.Security.Cryptography.Cng": "(,5.0.32767]",
653
+ "System.Security.Cryptography.Csp": "(,4.3.32767]",
654
+ "System.Security.Cryptography.Encoding": "(,4.3.32767]",
655
+ "System.Security.Cryptography.OpenSsl": "(,5.0.32767]",
656
+ "System.Security.Cryptography.Primitives": "(,4.3.32767]",
657
+ "System.Security.Cryptography.X509Certificates": "(,4.3.32767]",
658
+ "System.Security.Principal": "(,4.3.32767]",
659
+ "System.Security.Principal.Windows": "(,5.0.32767]",
660
+ "System.Security.SecureString": "(,4.3.32767]",
661
+ "System.Text.Encoding": "(,4.3.32767]",
662
+ "System.Text.Encoding.CodePages": "(,10.0.32767]",
663
+ "System.Text.Encoding.Extensions": "(,4.3.32767]",
664
+ "System.Text.Encodings.Web": "(,10.0.32767]",
665
+ "System.Text.Json": "(,10.0.32767]",
666
+ "System.Text.RegularExpressions": "(,4.3.32767]",
667
+ "System.Threading": "(,4.3.32767]",
668
+ "System.Threading.AccessControl": "(,10.0.32767]",
669
+ "System.Threading.Channels": "(,10.0.32767]",
670
+ "System.Threading.Overlapped": "(,4.3.32767]",
671
+ "System.Threading.Tasks": "(,4.3.32767]",
672
+ "System.Threading.Tasks.Dataflow": "(,10.0.32767]",
673
+ "System.Threading.Tasks.Extensions": "(,5.0.32767]",
674
+ "System.Threading.Tasks.Parallel": "(,4.3.32767]",
675
+ "System.Threading.Thread": "(,4.3.32767]",
676
+ "System.Threading.ThreadPool": "(,4.3.32767]",
677
+ "System.Threading.Timer": "(,4.3.32767]",
678
+ "System.ValueTuple": "(,4.5.32767]",
679
+ "System.Xml.ReaderWriter": "(,4.3.32767]",
680
+ "System.Xml.XDocument": "(,4.3.32767]",
681
+ "System.Xml.XmlDocument": "(,4.3.32767]",
682
+ "System.Xml.XmlSerializer": "(,4.3.32767]",
683
+ "System.Xml.XPath": "(,4.3.32767]",
684
+ "System.Xml.XPath.XDocument": "(,5.0.32767]"
685
+ }
686
+ }
687
+ }
688
+ }
689
+ }
690
+ }