@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,347 @@
1
+ {
2
+ "format": 1,
3
+ "restore": {
4
+ "C:\\Projects2\\Personal\\musketeer\\template\\dotnet-scaffold\\src\\__SolutionName__.Domain\\__SolutionName__.Domain.csproj": {}
5
+ },
6
+ "projects": {
7
+ "C:\\Projects2\\Personal\\musketeer\\template\\dotnet-scaffold\\src\\__SolutionName__.Domain\\__SolutionName__.Domain.csproj": {
8
+ "version": "1.0.0",
9
+ "restore": {
10
+ "projectUniqueName": "C:\\Projects2\\Personal\\musketeer\\template\\dotnet-scaffold\\src\\__SolutionName__.Domain\\__SolutionName__.Domain.csproj",
11
+ "projectName": "__SolutionName__.Domain",
12
+ "projectPath": "C:\\Projects2\\Personal\\musketeer\\template\\dotnet-scaffold\\src\\__SolutionName__.Domain\\__SolutionName__.Domain.csproj",
13
+ "packagesPath": "C:\\Users\\phuc.pham\\.nuget\\packages\\",
14
+ "outputPath": "C:\\Projects2\\Personal\\musketeer\\template\\dotnet-scaffold\\src\\__SolutionName__.Domain\\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
+ }
36
+ },
37
+ "warningProperties": {
38
+ "warnAsError": [
39
+ "NU1605"
40
+ ]
41
+ },
42
+ "restoreAuditProperties": {
43
+ "enableAudit": "true",
44
+ "auditLevel": "low",
45
+ "auditMode": "all"
46
+ },
47
+ "SdkAnalysisLevel": "10.0.200"
48
+ },
49
+ "frameworks": {
50
+ "net10.0": {
51
+ "targetAlias": "net10.0",
52
+ "imports": [
53
+ "net461",
54
+ "net462",
55
+ "net47",
56
+ "net471",
57
+ "net472",
58
+ "net48",
59
+ "net481"
60
+ ],
61
+ "assetTargetFallback": true,
62
+ "warn": true,
63
+ "frameworkReferences": {
64
+ "Microsoft.NETCore.App": {
65
+ "privateAssets": "all"
66
+ }
67
+ },
68
+ "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\10.0.204/PortableRuntimeIdentifierGraph.json",
69
+ "packagesToPrune": {
70
+ "Microsoft.CSharp": "(,4.7.32767]",
71
+ "Microsoft.VisualBasic": "(,10.4.32767]",
72
+ "Microsoft.Win32.Primitives": "(,4.3.32767]",
73
+ "Microsoft.Win32.Registry": "(,5.0.32767]",
74
+ "runtime.any.System.Collections": "(,4.3.32767]",
75
+ "runtime.any.System.Diagnostics.Tools": "(,4.3.32767]",
76
+ "runtime.any.System.Diagnostics.Tracing": "(,4.3.32767]",
77
+ "runtime.any.System.Globalization": "(,4.3.32767]",
78
+ "runtime.any.System.Globalization.Calendars": "(,4.3.32767]",
79
+ "runtime.any.System.IO": "(,4.3.32767]",
80
+ "runtime.any.System.Reflection": "(,4.3.32767]",
81
+ "runtime.any.System.Reflection.Extensions": "(,4.3.32767]",
82
+ "runtime.any.System.Reflection.Primitives": "(,4.3.32767]",
83
+ "runtime.any.System.Resources.ResourceManager": "(,4.3.32767]",
84
+ "runtime.any.System.Runtime": "(,4.3.32767]",
85
+ "runtime.any.System.Runtime.Handles": "(,4.3.32767]",
86
+ "runtime.any.System.Runtime.InteropServices": "(,4.3.32767]",
87
+ "runtime.any.System.Text.Encoding": "(,4.3.32767]",
88
+ "runtime.any.System.Text.Encoding.Extensions": "(,4.3.32767]",
89
+ "runtime.any.System.Threading.Tasks": "(,4.3.32767]",
90
+ "runtime.any.System.Threading.Timer": "(,4.3.32767]",
91
+ "runtime.aot.System.Collections": "(,4.3.32767]",
92
+ "runtime.aot.System.Diagnostics.Tools": "(,4.3.32767]",
93
+ "runtime.aot.System.Diagnostics.Tracing": "(,4.3.32767]",
94
+ "runtime.aot.System.Globalization": "(,4.3.32767]",
95
+ "runtime.aot.System.Globalization.Calendars": "(,4.3.32767]",
96
+ "runtime.aot.System.IO": "(,4.3.32767]",
97
+ "runtime.aot.System.Reflection": "(,4.3.32767]",
98
+ "runtime.aot.System.Reflection.Extensions": "(,4.3.32767]",
99
+ "runtime.aot.System.Reflection.Primitives": "(,4.3.32767]",
100
+ "runtime.aot.System.Resources.ResourceManager": "(,4.3.32767]",
101
+ "runtime.aot.System.Runtime": "(,4.3.32767]",
102
+ "runtime.aot.System.Runtime.Handles": "(,4.3.32767]",
103
+ "runtime.aot.System.Runtime.InteropServices": "(,4.3.32767]",
104
+ "runtime.aot.System.Text.Encoding": "(,4.3.32767]",
105
+ "runtime.aot.System.Text.Encoding.Extensions": "(,4.3.32767]",
106
+ "runtime.aot.System.Threading.Tasks": "(,4.3.32767]",
107
+ "runtime.aot.System.Threading.Timer": "(,4.3.32767]",
108
+ "runtime.debian.8-x64.runtime.native.System": "(,4.3.32767]",
109
+ "runtime.debian.8-x64.runtime.native.System.IO.Compression": "(,4.3.32767]",
110
+ "runtime.debian.8-x64.runtime.native.System.Net.Http": "(,4.3.32767]",
111
+ "runtime.debian.8-x64.runtime.native.System.Net.Security": "(,4.3.32767]",
112
+ "runtime.debian.8-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]",
113
+ "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]",
114
+ "runtime.debian.9-x64.runtime.native.System": "(,4.3.32767]",
115
+ "runtime.debian.9-x64.runtime.native.System.IO.Compression": "(,4.3.32767]",
116
+ "runtime.debian.9-x64.runtime.native.System.Net.Http": "(,4.3.32767]",
117
+ "runtime.debian.9-x64.runtime.native.System.Net.Security": "(,4.3.32767]",
118
+ "runtime.fedora.23-x64.runtime.native.System": "(,4.3.32767]",
119
+ "runtime.fedora.23-x64.runtime.native.System.IO.Compression": "(,4.3.32767]",
120
+ "runtime.fedora.23-x64.runtime.native.System.Net.Http": "(,4.3.32767]",
121
+ "runtime.fedora.23-x64.runtime.native.System.Net.Security": "(,4.3.32767]",
122
+ "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]",
123
+ "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]",
124
+ "runtime.fedora.24-x64.runtime.native.System": "(,4.3.32767]",
125
+ "runtime.fedora.24-x64.runtime.native.System.IO.Compression": "(,4.3.32767]",
126
+ "runtime.fedora.24-x64.runtime.native.System.Net.Http": "(,4.3.32767]",
127
+ "runtime.fedora.24-x64.runtime.native.System.Net.Security": "(,4.3.32767]",
128
+ "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]",
129
+ "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]",
130
+ "runtime.fedora.27-x64.runtime.native.System": "(,4.3.32767]",
131
+ "runtime.fedora.27-x64.runtime.native.System.IO.Compression": "(,4.3.32767]",
132
+ "runtime.fedora.27-x64.runtime.native.System.Net.Http": "(,4.3.32767]",
133
+ "runtime.fedora.27-x64.runtime.native.System.Net.Security": "(,4.3.32767]",
134
+ "runtime.fedora.28-x64.runtime.native.System": "(,4.3.32767]",
135
+ "runtime.fedora.28-x64.runtime.native.System.IO.Compression": "(,4.3.32767]",
136
+ "runtime.fedora.28-x64.runtime.native.System.Net.Http": "(,4.3.32767]",
137
+ "runtime.fedora.28-x64.runtime.native.System.Net.Security": "(,4.3.32767]",
138
+ "runtime.opensuse.13.2-x64.runtime.native.System": "(,4.3.32767]",
139
+ "runtime.opensuse.13.2-x64.runtime.native.System.IO.Compression": "(,4.3.32767]",
140
+ "runtime.opensuse.13.2-x64.runtime.native.System.Net.Http": "(,4.3.32767]",
141
+ "runtime.opensuse.13.2-x64.runtime.native.System.Net.Security": "(,4.3.32767]",
142
+ "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]",
143
+ "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]",
144
+ "runtime.opensuse.42.1-x64.runtime.native.System": "(,4.3.32767]",
145
+ "runtime.opensuse.42.1-x64.runtime.native.System.IO.Compression": "(,4.3.32767]",
146
+ "runtime.opensuse.42.1-x64.runtime.native.System.Net.Http": "(,4.3.32767]",
147
+ "runtime.opensuse.42.1-x64.runtime.native.System.Net.Security": "(,4.3.32767]",
148
+ "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]",
149
+ "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]",
150
+ "runtime.opensuse.42.3-x64.runtime.native.System": "(,4.3.32767]",
151
+ "runtime.opensuse.42.3-x64.runtime.native.System.IO.Compression": "(,4.3.32767]",
152
+ "runtime.opensuse.42.3-x64.runtime.native.System.Net.Http": "(,4.3.32767]",
153
+ "runtime.opensuse.42.3-x64.runtime.native.System.Net.Security": "(,4.3.32767]",
154
+ "runtime.osx.10.10-x64.runtime.native.System": "(,4.3.32767]",
155
+ "runtime.osx.10.10-x64.runtime.native.System.IO.Compression": "(,4.3.32767]",
156
+ "runtime.osx.10.10-x64.runtime.native.System.Net.Http": "(,4.3.32767]",
157
+ "runtime.osx.10.10-x64.runtime.native.System.Net.Security": "(,4.3.32767]",
158
+ "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]",
159
+ "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple": "(,4.3.32767]",
160
+ "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]",
161
+ "runtime.rhel.7-x64.runtime.native.System": "(,4.3.32767]",
162
+ "runtime.rhel.7-x64.runtime.native.System.IO.Compression": "(,4.3.32767]",
163
+ "runtime.rhel.7-x64.runtime.native.System.Net.Http": "(,4.3.32767]",
164
+ "runtime.rhel.7-x64.runtime.native.System.Net.Security": "(,4.3.32767]",
165
+ "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]",
166
+ "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]",
167
+ "runtime.ubuntu.14.04-x64.runtime.native.System": "(,4.3.32767]",
168
+ "runtime.ubuntu.14.04-x64.runtime.native.System.IO.Compression": "(,4.3.32767]",
169
+ "runtime.ubuntu.14.04-x64.runtime.native.System.Net.Http": "(,4.3.32767]",
170
+ "runtime.ubuntu.14.04-x64.runtime.native.System.Net.Security": "(,4.3.32767]",
171
+ "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]",
172
+ "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]",
173
+ "runtime.ubuntu.16.04-x64.runtime.native.System": "(,4.3.32767]",
174
+ "runtime.ubuntu.16.04-x64.runtime.native.System.IO.Compression": "(,4.3.32767]",
175
+ "runtime.ubuntu.16.04-x64.runtime.native.System.Net.Http": "(,4.3.32767]",
176
+ "runtime.ubuntu.16.04-x64.runtime.native.System.Net.Security": "(,4.3.32767]",
177
+ "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]",
178
+ "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]",
179
+ "runtime.ubuntu.16.10-x64.runtime.native.System": "(,4.3.32767]",
180
+ "runtime.ubuntu.16.10-x64.runtime.native.System.IO.Compression": "(,4.3.32767]",
181
+ "runtime.ubuntu.16.10-x64.runtime.native.System.Net.Http": "(,4.3.32767]",
182
+ "runtime.ubuntu.16.10-x64.runtime.native.System.Net.Security": "(,4.3.32767]",
183
+ "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]",
184
+ "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]",
185
+ "runtime.ubuntu.18.04-x64.runtime.native.System": "(,4.3.32767]",
186
+ "runtime.ubuntu.18.04-x64.runtime.native.System.IO.Compression": "(,4.3.32767]",
187
+ "runtime.ubuntu.18.04-x64.runtime.native.System.Net.Http": "(,4.3.32767]",
188
+ "runtime.ubuntu.18.04-x64.runtime.native.System.Net.Security": "(,4.3.32767]",
189
+ "runtime.unix.Microsoft.Win32.Primitives": "(,4.3.32767]",
190
+ "runtime.unix.System.Console": "(,4.3.32767]",
191
+ "runtime.unix.System.Diagnostics.Debug": "(,4.3.32767]",
192
+ "runtime.unix.System.IO.FileSystem": "(,4.3.32767]",
193
+ "runtime.unix.System.Net.Primitives": "(,4.3.32767]",
194
+ "runtime.unix.System.Net.Sockets": "(,4.3.32767]",
195
+ "runtime.unix.System.Private.Uri": "(,4.3.32767]",
196
+ "runtime.unix.System.Runtime.Extensions": "(,4.3.32767]",
197
+ "runtime.win.Microsoft.Win32.Primitives": "(,4.3.32767]",
198
+ "runtime.win.System.Console": "(,4.3.32767]",
199
+ "runtime.win.System.Diagnostics.Debug": "(,4.3.32767]",
200
+ "runtime.win.System.IO.FileSystem": "(,4.3.32767]",
201
+ "runtime.win.System.Net.Primitives": "(,4.3.32767]",
202
+ "runtime.win.System.Net.Sockets": "(,4.3.32767]",
203
+ "runtime.win.System.Runtime.Extensions": "(,4.3.32767]",
204
+ "runtime.win10-arm-aot.runtime.native.System.IO.Compression": "(,4.0.32767]",
205
+ "runtime.win10-arm64.runtime.native.System.IO.Compression": "(,4.3.32767]",
206
+ "runtime.win10-x64-aot.runtime.native.System.IO.Compression": "(,4.0.32767]",
207
+ "runtime.win10-x86-aot.runtime.native.System.IO.Compression": "(,4.0.32767]",
208
+ "runtime.win7-x64.runtime.native.System.IO.Compression": "(,4.3.32767]",
209
+ "runtime.win7-x86.runtime.native.System.IO.Compression": "(,4.3.32767]",
210
+ "runtime.win7.System.Private.Uri": "(,4.3.32767]",
211
+ "runtime.win8-arm.runtime.native.System.IO.Compression": "(,4.3.32767]",
212
+ "System.AppContext": "(,4.3.32767]",
213
+ "System.Buffers": "(,5.0.32767]",
214
+ "System.Collections": "(,4.3.32767]",
215
+ "System.Collections.Concurrent": "(,4.3.32767]",
216
+ "System.Collections.Immutable": "(,10.0.32767]",
217
+ "System.Collections.NonGeneric": "(,4.3.32767]",
218
+ "System.Collections.Specialized": "(,4.3.32767]",
219
+ "System.ComponentModel": "(,4.3.32767]",
220
+ "System.ComponentModel.Annotations": "(,4.3.32767]",
221
+ "System.ComponentModel.EventBasedAsync": "(,4.3.32767]",
222
+ "System.ComponentModel.Primitives": "(,4.3.32767]",
223
+ "System.ComponentModel.TypeConverter": "(,4.3.32767]",
224
+ "System.Console": "(,4.3.32767]",
225
+ "System.Data.Common": "(,4.3.32767]",
226
+ "System.Data.DataSetExtensions": "(,4.4.32767]",
227
+ "System.Diagnostics.Contracts": "(,4.3.32767]",
228
+ "System.Diagnostics.Debug": "(,4.3.32767]",
229
+ "System.Diagnostics.DiagnosticSource": "(,10.0.32767]",
230
+ "System.Diagnostics.FileVersionInfo": "(,4.3.32767]",
231
+ "System.Diagnostics.Process": "(,4.3.32767]",
232
+ "System.Diagnostics.StackTrace": "(,4.3.32767]",
233
+ "System.Diagnostics.TextWriterTraceListener": "(,4.3.32767]",
234
+ "System.Diagnostics.Tools": "(,4.3.32767]",
235
+ "System.Diagnostics.TraceSource": "(,4.3.32767]",
236
+ "System.Diagnostics.Tracing": "(,4.3.32767]",
237
+ "System.Drawing.Primitives": "(,4.3.32767]",
238
+ "System.Dynamic.Runtime": "(,4.3.32767]",
239
+ "System.Formats.Asn1": "(,10.0.32767]",
240
+ "System.Formats.Tar": "(,10.0.32767]",
241
+ "System.Globalization": "(,4.3.32767]",
242
+ "System.Globalization.Calendars": "(,4.3.32767]",
243
+ "System.Globalization.Extensions": "(,4.3.32767]",
244
+ "System.IO": "(,4.3.32767]",
245
+ "System.IO.Compression": "(,4.3.32767]",
246
+ "System.IO.Compression.ZipFile": "(,4.3.32767]",
247
+ "System.IO.FileSystem": "(,4.3.32767]",
248
+ "System.IO.FileSystem.AccessControl": "(,4.4.32767]",
249
+ "System.IO.FileSystem.DriveInfo": "(,4.3.32767]",
250
+ "System.IO.FileSystem.Primitives": "(,4.3.32767]",
251
+ "System.IO.FileSystem.Watcher": "(,4.3.32767]",
252
+ "System.IO.IsolatedStorage": "(,4.3.32767]",
253
+ "System.IO.MemoryMappedFiles": "(,4.3.32767]",
254
+ "System.IO.Pipelines": "(,10.0.32767]",
255
+ "System.IO.Pipes": "(,4.3.32767]",
256
+ "System.IO.Pipes.AccessControl": "(,5.0.32767]",
257
+ "System.IO.UnmanagedMemoryStream": "(,4.3.32767]",
258
+ "System.Linq": "(,4.3.32767]",
259
+ "System.Linq.AsyncEnumerable": "(,10.0.32767]",
260
+ "System.Linq.Expressions": "(,4.3.32767]",
261
+ "System.Linq.Parallel": "(,4.3.32767]",
262
+ "System.Linq.Queryable": "(,4.3.32767]",
263
+ "System.Memory": "(,5.0.32767]",
264
+ "System.Net.Http": "(,4.3.32767]",
265
+ "System.Net.Http.Json": "(,10.0.32767]",
266
+ "System.Net.NameResolution": "(,4.3.32767]",
267
+ "System.Net.NetworkInformation": "(,4.3.32767]",
268
+ "System.Net.Ping": "(,4.3.32767]",
269
+ "System.Net.Primitives": "(,4.3.32767]",
270
+ "System.Net.Requests": "(,4.3.32767]",
271
+ "System.Net.Security": "(,4.3.32767]",
272
+ "System.Net.ServerSentEvents": "(,10.0.32767]",
273
+ "System.Net.Sockets": "(,4.3.32767]",
274
+ "System.Net.WebHeaderCollection": "(,4.3.32767]",
275
+ "System.Net.WebSockets": "(,4.3.32767]",
276
+ "System.Net.WebSockets.Client": "(,4.3.32767]",
277
+ "System.Numerics.Vectors": "(,5.0.32767]",
278
+ "System.ObjectModel": "(,4.3.32767]",
279
+ "System.Private.DataContractSerialization": "(,4.3.32767]",
280
+ "System.Private.Uri": "(,4.3.32767]",
281
+ "System.Reflection": "(,4.3.32767]",
282
+ "System.Reflection.DispatchProxy": "(,6.0.32767]",
283
+ "System.Reflection.Emit": "(,4.7.32767]",
284
+ "System.Reflection.Emit.ILGeneration": "(,4.7.32767]",
285
+ "System.Reflection.Emit.Lightweight": "(,4.7.32767]",
286
+ "System.Reflection.Extensions": "(,4.3.32767]",
287
+ "System.Reflection.Metadata": "(,10.0.32767]",
288
+ "System.Reflection.Primitives": "(,4.3.32767]",
289
+ "System.Reflection.TypeExtensions": "(,4.3.32767]",
290
+ "System.Resources.Reader": "(,4.3.32767]",
291
+ "System.Resources.ResourceManager": "(,4.3.32767]",
292
+ "System.Resources.Writer": "(,4.3.32767]",
293
+ "System.Runtime": "(,4.3.32767]",
294
+ "System.Runtime.CompilerServices.Unsafe": "(,7.0.32767]",
295
+ "System.Runtime.CompilerServices.VisualC": "(,4.3.32767]",
296
+ "System.Runtime.Extensions": "(,4.3.32767]",
297
+ "System.Runtime.Handles": "(,4.3.32767]",
298
+ "System.Runtime.InteropServices": "(,4.3.32767]",
299
+ "System.Runtime.InteropServices.RuntimeInformation": "(,4.3.32767]",
300
+ "System.Runtime.Loader": "(,4.3.32767]",
301
+ "System.Runtime.Numerics": "(,4.3.32767]",
302
+ "System.Runtime.Serialization.Formatters": "(,4.3.32767]",
303
+ "System.Runtime.Serialization.Json": "(,4.3.32767]",
304
+ "System.Runtime.Serialization.Primitives": "(,4.3.32767]",
305
+ "System.Runtime.Serialization.Xml": "(,4.3.32767]",
306
+ "System.Security.AccessControl": "(,6.0.32767]",
307
+ "System.Security.Claims": "(,4.3.32767]",
308
+ "System.Security.Cryptography.Algorithms": "(,4.3.32767]",
309
+ "System.Security.Cryptography.Cng": "(,5.0.32767]",
310
+ "System.Security.Cryptography.Csp": "(,4.3.32767]",
311
+ "System.Security.Cryptography.Encoding": "(,4.3.32767]",
312
+ "System.Security.Cryptography.OpenSsl": "(,5.0.32767]",
313
+ "System.Security.Cryptography.Primitives": "(,4.3.32767]",
314
+ "System.Security.Cryptography.X509Certificates": "(,4.3.32767]",
315
+ "System.Security.Principal": "(,4.3.32767]",
316
+ "System.Security.Principal.Windows": "(,5.0.32767]",
317
+ "System.Security.SecureString": "(,4.3.32767]",
318
+ "System.Text.Encoding": "(,4.3.32767]",
319
+ "System.Text.Encoding.CodePages": "(,10.0.32767]",
320
+ "System.Text.Encoding.Extensions": "(,4.3.32767]",
321
+ "System.Text.Encodings.Web": "(,10.0.32767]",
322
+ "System.Text.Json": "(,10.0.32767]",
323
+ "System.Text.RegularExpressions": "(,4.3.32767]",
324
+ "System.Threading": "(,4.3.32767]",
325
+ "System.Threading.AccessControl": "(,10.0.32767]",
326
+ "System.Threading.Channels": "(,10.0.32767]",
327
+ "System.Threading.Overlapped": "(,4.3.32767]",
328
+ "System.Threading.Tasks": "(,4.3.32767]",
329
+ "System.Threading.Tasks.Dataflow": "(,10.0.32767]",
330
+ "System.Threading.Tasks.Extensions": "(,5.0.32767]",
331
+ "System.Threading.Tasks.Parallel": "(,4.3.32767]",
332
+ "System.Threading.Thread": "(,4.3.32767]",
333
+ "System.Threading.ThreadPool": "(,4.3.32767]",
334
+ "System.Threading.Timer": "(,4.3.32767]",
335
+ "System.ValueTuple": "(,4.5.32767]",
336
+ "System.Xml.ReaderWriter": "(,4.3.32767]",
337
+ "System.Xml.XDocument": "(,4.3.32767]",
338
+ "System.Xml.XmlDocument": "(,4.3.32767]",
339
+ "System.Xml.XmlSerializer": "(,4.3.32767]",
340
+ "System.Xml.XPath": "(,4.3.32767]",
341
+ "System.Xml.XPath.XDocument": "(,5.0.32767]"
342
+ }
343
+ }
344
+ }
345
+ }
346
+ }
347
+ }
@@ -0,0 +1,16 @@
1
+ <?xml version="1.0" encoding="utf-8" standalone="no"?>
2
+ <Project ToolsVersion="14.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
3
+ <PropertyGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
4
+ <RestoreSuccess Condition=" '$(RestoreSuccess)' == '' ">True</RestoreSuccess>
5
+ <RestoreTool Condition=" '$(RestoreTool)' == '' ">NuGet</RestoreTool>
6
+ <ProjectAssetsFile Condition=" '$(ProjectAssetsFile)' == '' ">$(MSBuildThisFileDirectory)project.assets.json</ProjectAssetsFile>
7
+ <NuGetPackageRoot Condition=" '$(NuGetPackageRoot)' == '' ">$(UserProfile)\.nuget\packages\</NuGetPackageRoot>
8
+ <NuGetPackageFolders Condition=" '$(NuGetPackageFolders)' == '' ">C:\Users\phuc.pham\.nuget\packages\;C:\Program Files (x86)\Microsoft Visual Studio\Shared\NuGetPackages</NuGetPackageFolders>
9
+ <NuGetProjectStyle Condition=" '$(NuGetProjectStyle)' == '' ">PackageReference</NuGetProjectStyle>
10
+ <NuGetToolVersion Condition=" '$(NuGetToolVersion)' == '' ">7.0.0</NuGetToolVersion>
11
+ </PropertyGroup>
12
+ <ItemGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
13
+ <SourceRoot Include="C:\Users\phuc.pham\.nuget\packages\" />
14
+ <SourceRoot Include="C:\Program Files (x86)\Microsoft Visual Studio\Shared\NuGetPackages\" />
15
+ </ItemGroup>
16
+ </Project>
@@ -0,0 +1,2 @@
1
+ <?xml version="1.0" encoding="utf-8" standalone="no"?>
2
+ <Project ToolsVersion="14.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003" />