@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,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" />
@@ -0,0 +1,559 @@
1
+ {
2
+ "version": 3,
3
+ "targets": {
4
+ "net10.0": {
5
+ "__SolutionName__.Application/1.0.0": {
6
+ "type": "project",
7
+ "framework": ".NETCoreApp,Version=v10.0",
8
+ "dependencies": {
9
+ "__SolutionName__.Domain": "1.0.0"
10
+ },
11
+ "compile": {
12
+ "bin/placeholder/__SolutionName__.Application.dll": {}
13
+ },
14
+ "runtime": {
15
+ "bin/placeholder/__SolutionName__.Application.dll": {}
16
+ }
17
+ },
18
+ "__SolutionName__.Domain/1.0.0": {
19
+ "type": "project",
20
+ "framework": ".NETCoreApp,Version=v10.0",
21
+ "compile": {
22
+ "bin/placeholder/__SolutionName__.Domain.dll": {}
23
+ },
24
+ "runtime": {
25
+ "bin/placeholder/__SolutionName__.Domain.dll": {}
26
+ }
27
+ },
28
+ "__SolutionName__.Infrastructure/1.0.0": {
29
+ "type": "project",
30
+ "framework": ".NETCoreApp,Version=v10.0",
31
+ "dependencies": {
32
+ "__SolutionName__.Application": "1.0.0"
33
+ },
34
+ "compile": {
35
+ "bin/placeholder/__SolutionName__.Infrastructure.dll": {}
36
+ },
37
+ "runtime": {
38
+ "bin/placeholder/__SolutionName__.Infrastructure.dll": {}
39
+ }
40
+ }
41
+ }
42
+ },
43
+ "libraries": {
44
+ "__SolutionName__.Application/1.0.0": {
45
+ "type": "project",
46
+ "path": "../__SolutionName__.Application/__SolutionName__.Application.csproj",
47
+ "msbuildProject": "../__SolutionName__.Application/__SolutionName__.Application.csproj"
48
+ },
49
+ "__SolutionName__.Domain/1.0.0": {
50
+ "type": "project",
51
+ "path": "../__SolutionName__.Domain/__SolutionName__.Domain.csproj",
52
+ "msbuildProject": "../__SolutionName__.Domain/__SolutionName__.Domain.csproj"
53
+ },
54
+ "__SolutionName__.Infrastructure/1.0.0": {
55
+ "type": "project",
56
+ "path": "../__SolutionName__.Infrastructure/__SolutionName__.Infrastructure.csproj",
57
+ "msbuildProject": "../__SolutionName__.Infrastructure/__SolutionName__.Infrastructure.csproj"
58
+ }
59
+ },
60
+ "projectFileDependencyGroups": {
61
+ "net10.0": [
62
+ "__SolutionName__.Application >= 1.0.0",
63
+ "__SolutionName__.Infrastructure >= 1.0.0"
64
+ ]
65
+ },
66
+ "packageFolders": {
67
+ "C:\\Users\\phuc.pham\\.nuget\\packages\\": {},
68
+ "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages": {}
69
+ },
70
+ "project": {
71
+ "version": "1.0.0",
72
+ "restore": {
73
+ "projectUniqueName": "C:\\Projects2\\Personal\\musketeer\\template\\dotnet-scaffold\\src\\__SolutionName__.Api\\__SolutionName__.Api.csproj",
74
+ "projectName": "__SolutionName__.Api",
75
+ "projectPath": "C:\\Projects2\\Personal\\musketeer\\template\\dotnet-scaffold\\src\\__SolutionName__.Api\\__SolutionName__.Api.csproj",
76
+ "packagesPath": "C:\\Users\\phuc.pham\\.nuget\\packages\\",
77
+ "outputPath": "C:\\Projects2\\Personal\\musketeer\\template\\dotnet-scaffold\\src\\__SolutionName__.Api\\obj\\",
78
+ "projectStyle": "PackageReference",
79
+ "fallbackFolders": [
80
+ "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages"
81
+ ],
82
+ "configFilePaths": [
83
+ "C:\\Users\\phuc.pham\\AppData\\Roaming\\NuGet\\NuGet.Config",
84
+ "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config",
85
+ "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config"
86
+ ],
87
+ "originalTargetFrameworks": [
88
+ "net10.0"
89
+ ],
90
+ "sources": {
91
+ "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {},
92
+ "https://api.nuget.org/v3/index.json": {}
93
+ },
94
+ "frameworks": {
95
+ "net10.0": {
96
+ "targetAlias": "net10.0",
97
+ "projectReferences": {
98
+ "C:\\Projects2\\Personal\\musketeer\\template\\dotnet-scaffold\\src\\__SolutionName__.Application\\__SolutionName__.Application.csproj": {
99
+ "projectPath": "C:\\Projects2\\Personal\\musketeer\\template\\dotnet-scaffold\\src\\__SolutionName__.Application\\__SolutionName__.Application.csproj"
100
+ },
101
+ "C:\\Projects2\\Personal\\musketeer\\template\\dotnet-scaffold\\src\\__SolutionName__.Infrastructure\\__SolutionName__.Infrastructure.csproj": {
102
+ "projectPath": "C:\\Projects2\\Personal\\musketeer\\template\\dotnet-scaffold\\src\\__SolutionName__.Infrastructure\\__SolutionName__.Infrastructure.csproj"
103
+ }
104
+ }
105
+ }
106
+ },
107
+ "warningProperties": {
108
+ "warnAsError": [
109
+ "NU1605"
110
+ ]
111
+ },
112
+ "restoreAuditProperties": {
113
+ "enableAudit": "true",
114
+ "auditLevel": "low",
115
+ "auditMode": "all"
116
+ },
117
+ "SdkAnalysisLevel": "10.0.200"
118
+ },
119
+ "frameworks": {
120
+ "net10.0": {
121
+ "targetAlias": "net10.0",
122
+ "imports": [
123
+ "net461",
124
+ "net462",
125
+ "net47",
126
+ "net471",
127
+ "net472",
128
+ "net48",
129
+ "net481"
130
+ ],
131
+ "assetTargetFallback": true,
132
+ "warn": true,
133
+ "frameworkReferences": {
134
+ "Microsoft.AspNetCore.App": {
135
+ "privateAssets": "none"
136
+ },
137
+ "Microsoft.NETCore.App": {
138
+ "privateAssets": "all"
139
+ }
140
+ },
141
+ "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\10.0.204/PortableRuntimeIdentifierGraph.json",
142
+ "packagesToPrune": {
143
+ "Microsoft.AspNetCore": "(,10.0.32767]",
144
+ "Microsoft.AspNetCore.Antiforgery": "(,10.0.32767]",
145
+ "Microsoft.AspNetCore.App": "(,10.0.32767]",
146
+ "Microsoft.AspNetCore.Authentication": "(,10.0.32767]",
147
+ "Microsoft.AspNetCore.Authentication.Abstractions": "(,10.0.32767]",
148
+ "Microsoft.AspNetCore.Authentication.BearerToken": "(,10.0.32767]",
149
+ "Microsoft.AspNetCore.Authentication.Cookies": "(,10.0.32767]",
150
+ "Microsoft.AspNetCore.Authentication.Core": "(,10.0.32767]",
151
+ "Microsoft.AspNetCore.Authentication.OAuth": "(,10.0.32767]",
152
+ "Microsoft.AspNetCore.Authorization": "(,10.0.32767]",
153
+ "Microsoft.AspNetCore.Authorization.Policy": "(,10.0.32767]",
154
+ "Microsoft.AspNetCore.Components": "(,10.0.32767]",
155
+ "Microsoft.AspNetCore.Components.Authorization": "(,10.0.32767]",
156
+ "Microsoft.AspNetCore.Components.Endpoints": "(,10.0.32767]",
157
+ "Microsoft.AspNetCore.Components.Forms": "(,10.0.32767]",
158
+ "Microsoft.AspNetCore.Components.Server": "(,10.0.32767]",
159
+ "Microsoft.AspNetCore.Components.Web": "(,10.0.32767]",
160
+ "Microsoft.AspNetCore.Connections.Abstractions": "(,10.0.32767]",
161
+ "Microsoft.AspNetCore.CookiePolicy": "(,10.0.32767]",
162
+ "Microsoft.AspNetCore.Cors": "(,10.0.32767]",
163
+ "Microsoft.AspNetCore.Cryptography.Internal": "(,10.0.32767]",
164
+ "Microsoft.AspNetCore.Cryptography.KeyDerivation": "(,10.0.32767]",
165
+ "Microsoft.AspNetCore.DataProtection": "(,10.0.32767]",
166
+ "Microsoft.AspNetCore.DataProtection.Abstractions": "(,10.0.32767]",
167
+ "Microsoft.AspNetCore.DataProtection.Extensions": "(,10.0.32767]",
168
+ "Microsoft.AspNetCore.Diagnostics": "(,10.0.32767]",
169
+ "Microsoft.AspNetCore.Diagnostics.Abstractions": "(,10.0.32767]",
170
+ "Microsoft.AspNetCore.Diagnostics.HealthChecks": "(,10.0.32767]",
171
+ "Microsoft.AspNetCore.HostFiltering": "(,10.0.32767]",
172
+ "Microsoft.AspNetCore.Hosting": "(,10.0.32767]",
173
+ "Microsoft.AspNetCore.Hosting.Abstractions": "(,10.0.32767]",
174
+ "Microsoft.AspNetCore.Hosting.Server.Abstractions": "(,10.0.32767]",
175
+ "Microsoft.AspNetCore.Html.Abstractions": "(,10.0.32767]",
176
+ "Microsoft.AspNetCore.Http": "(,10.0.32767]",
177
+ "Microsoft.AspNetCore.Http.Abstractions": "(,10.0.32767]",
178
+ "Microsoft.AspNetCore.Http.Connections": "(,10.0.32767]",
179
+ "Microsoft.AspNetCore.Http.Connections.Common": "(,10.0.32767]",
180
+ "Microsoft.AspNetCore.Http.Extensions": "(,10.0.32767]",
181
+ "Microsoft.AspNetCore.Http.Features": "(,10.0.32767]",
182
+ "Microsoft.AspNetCore.Http.Results": "(,10.0.32767]",
183
+ "Microsoft.AspNetCore.HttpLogging": "(,10.0.32767]",
184
+ "Microsoft.AspNetCore.HttpOverrides": "(,10.0.32767]",
185
+ "Microsoft.AspNetCore.HttpsPolicy": "(,10.0.32767]",
186
+ "Microsoft.AspNetCore.Identity": "(,10.0.32767]",
187
+ "Microsoft.AspNetCore.Localization": "(,10.0.32767]",
188
+ "Microsoft.AspNetCore.Localization.Routing": "(,10.0.32767]",
189
+ "Microsoft.AspNetCore.Metadata": "(,10.0.32767]",
190
+ "Microsoft.AspNetCore.Mvc": "(,10.0.32767]",
191
+ "Microsoft.AspNetCore.Mvc.Abstractions": "(,10.0.32767]",
192
+ "Microsoft.AspNetCore.Mvc.ApiExplorer": "(,10.0.32767]",
193
+ "Microsoft.AspNetCore.Mvc.Core": "(,10.0.32767]",
194
+ "Microsoft.AspNetCore.Mvc.Cors": "(,10.0.32767]",
195
+ "Microsoft.AspNetCore.Mvc.DataAnnotations": "(,10.0.32767]",
196
+ "Microsoft.AspNetCore.Mvc.Formatters.Json": "(,10.0.32767]",
197
+ "Microsoft.AspNetCore.Mvc.Formatters.Xml": "(,10.0.32767]",
198
+ "Microsoft.AspNetCore.Mvc.Localization": "(,10.0.32767]",
199
+ "Microsoft.AspNetCore.Mvc.Razor": "(,10.0.32767]",
200
+ "Microsoft.AspNetCore.Mvc.RazorPages": "(,10.0.32767]",
201
+ "Microsoft.AspNetCore.Mvc.TagHelpers": "(,10.0.32767]",
202
+ "Microsoft.AspNetCore.Mvc.ViewFeatures": "(,10.0.32767]",
203
+ "Microsoft.AspNetCore.OutputCaching": "(,10.0.32767]",
204
+ "Microsoft.AspNetCore.RateLimiting": "(,10.0.32767]",
205
+ "Microsoft.AspNetCore.Razor": "(,10.0.32767]",
206
+ "Microsoft.AspNetCore.Razor.Runtime": "(,10.0.32767]",
207
+ "Microsoft.AspNetCore.RequestDecompression": "(,10.0.32767]",
208
+ "Microsoft.AspNetCore.ResponseCaching": "(,10.0.32767]",
209
+ "Microsoft.AspNetCore.ResponseCaching.Abstractions": "(,10.0.32767]",
210
+ "Microsoft.AspNetCore.ResponseCompression": "(,10.0.32767]",
211
+ "Microsoft.AspNetCore.Rewrite": "(,10.0.32767]",
212
+ "Microsoft.AspNetCore.Routing": "(,10.0.32767]",
213
+ "Microsoft.AspNetCore.Routing.Abstractions": "(,10.0.32767]",
214
+ "Microsoft.AspNetCore.Server.HttpSys": "(,10.0.32767]",
215
+ "Microsoft.AspNetCore.Server.IIS": "(,10.0.32767]",
216
+ "Microsoft.AspNetCore.Server.IISIntegration": "(,10.0.32767]",
217
+ "Microsoft.AspNetCore.Server.Kestrel": "(,10.0.32767]",
218
+ "Microsoft.AspNetCore.Server.Kestrel.Core": "(,10.0.32767]",
219
+ "Microsoft.AspNetCore.Server.Kestrel.Transport.NamedPipes": "(,10.0.32767]",
220
+ "Microsoft.AspNetCore.Server.Kestrel.Transport.Quic": "(,10.0.32767]",
221
+ "Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets": "(,10.0.32767]",
222
+ "Microsoft.AspNetCore.Session": "(,10.0.32767]",
223
+ "Microsoft.AspNetCore.SignalR": "(,10.0.32767]",
224
+ "Microsoft.AspNetCore.SignalR.Common": "(,10.0.32767]",
225
+ "Microsoft.AspNetCore.SignalR.Core": "(,10.0.32767]",
226
+ "Microsoft.AspNetCore.SignalR.Protocols.Json": "(,10.0.32767]",
227
+ "Microsoft.AspNetCore.StaticAssets": "(,10.0.32767]",
228
+ "Microsoft.AspNetCore.StaticFiles": "(,10.0.32767]",
229
+ "Microsoft.AspNetCore.WebSockets": "(,10.0.32767]",
230
+ "Microsoft.AspNetCore.WebUtilities": "(,10.0.32767]",
231
+ "Microsoft.CSharp": "(,4.7.32767]",
232
+ "Microsoft.Extensions.Caching.Abstractions": "(,10.0.32767]",
233
+ "Microsoft.Extensions.Caching.Memory": "(,10.0.32767]",
234
+ "Microsoft.Extensions.Configuration": "(,10.0.32767]",
235
+ "Microsoft.Extensions.Configuration.Abstractions": "(,10.0.32767]",
236
+ "Microsoft.Extensions.Configuration.Binder": "(,10.0.32767]",
237
+ "Microsoft.Extensions.Configuration.CommandLine": "(,10.0.32767]",
238
+ "Microsoft.Extensions.Configuration.EnvironmentVariables": "(,10.0.32767]",
239
+ "Microsoft.Extensions.Configuration.FileExtensions": "(,10.0.32767]",
240
+ "Microsoft.Extensions.Configuration.Ini": "(,10.0.32767]",
241
+ "Microsoft.Extensions.Configuration.Json": "(,10.0.32767]",
242
+ "Microsoft.Extensions.Configuration.KeyPerFile": "(,10.0.32767]",
243
+ "Microsoft.Extensions.Configuration.UserSecrets": "(,10.0.32767]",
244
+ "Microsoft.Extensions.Configuration.Xml": "(,10.0.32767]",
245
+ "Microsoft.Extensions.DependencyInjection": "(,10.0.32767]",
246
+ "Microsoft.Extensions.DependencyInjection.Abstractions": "(,10.0.32767]",
247
+ "Microsoft.Extensions.Diagnostics": "(,10.0.32767]",
248
+ "Microsoft.Extensions.Diagnostics.Abstractions": "(,10.0.32767]",
249
+ "Microsoft.Extensions.Diagnostics.HealthChecks": "(,10.0.32767]",
250
+ "Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions": "(,10.0.32767]",
251
+ "Microsoft.Extensions.Features": "(,10.0.32767]",
252
+ "Microsoft.Extensions.FileProviders.Abstractions": "(,10.0.32767]",
253
+ "Microsoft.Extensions.FileProviders.Composite": "(,10.0.32767]",
254
+ "Microsoft.Extensions.FileProviders.Physical": "(,10.0.32767]",
255
+ "Microsoft.Extensions.FileSystemGlobbing": "(,10.0.32767]",
256
+ "Microsoft.Extensions.Hosting": "(,10.0.32767]",
257
+ "Microsoft.Extensions.Hosting.Abstractions": "(,10.0.32767]",
258
+ "Microsoft.Extensions.Http": "(,10.0.32767]",
259
+ "Microsoft.Extensions.Identity.Core": "(,10.0.32767]",
260
+ "Microsoft.Extensions.Identity.Stores": "(,10.0.32767]",
261
+ "Microsoft.Extensions.Localization": "(,10.0.32767]",
262
+ "Microsoft.Extensions.Localization.Abstractions": "(,10.0.32767]",
263
+ "Microsoft.Extensions.Logging": "(,10.0.32767]",
264
+ "Microsoft.Extensions.Logging.Abstractions": "(,10.0.32767]",
265
+ "Microsoft.Extensions.Logging.Configuration": "(,10.0.32767]",
266
+ "Microsoft.Extensions.Logging.Console": "(,10.0.32767]",
267
+ "Microsoft.Extensions.Logging.Debug": "(,10.0.32767]",
268
+ "Microsoft.Extensions.Logging.EventLog": "(,10.0.32767]",
269
+ "Microsoft.Extensions.Logging.EventSource": "(,10.0.32767]",
270
+ "Microsoft.Extensions.Logging.TraceSource": "(,10.0.32767]",
271
+ "Microsoft.Extensions.ObjectPool": "(,10.0.32767]",
272
+ "Microsoft.Extensions.Options": "(,10.0.32767]",
273
+ "Microsoft.Extensions.Options.ConfigurationExtensions": "(,10.0.32767]",
274
+ "Microsoft.Extensions.Options.DataAnnotations": "(,10.0.32767]",
275
+ "Microsoft.Extensions.Primitives": "(,10.0.32767]",
276
+ "Microsoft.Extensions.Validation": "(,10.0.32767]",
277
+ "Microsoft.Extensions.WebEncoders": "(,10.0.32767]",
278
+ "Microsoft.JSInterop": "(,10.0.32767]",
279
+ "Microsoft.Net.Http.Headers": "(,10.0.32767]",
280
+ "Microsoft.VisualBasic": "(,10.4.32767]",
281
+ "Microsoft.Win32.Primitives": "(,4.3.32767]",
282
+ "Microsoft.Win32.Registry": "(,5.0.32767]",
283
+ "runtime.any.System.Collections": "(,4.3.32767]",
284
+ "runtime.any.System.Diagnostics.Tools": "(,4.3.32767]",
285
+ "runtime.any.System.Diagnostics.Tracing": "(,4.3.32767]",
286
+ "runtime.any.System.Globalization": "(,4.3.32767]",
287
+ "runtime.any.System.Globalization.Calendars": "(,4.3.32767]",
288
+ "runtime.any.System.IO": "(,4.3.32767]",
289
+ "runtime.any.System.Reflection": "(,4.3.32767]",
290
+ "runtime.any.System.Reflection.Extensions": "(,4.3.32767]",
291
+ "runtime.any.System.Reflection.Primitives": "(,4.3.32767]",
292
+ "runtime.any.System.Resources.ResourceManager": "(,4.3.32767]",
293
+ "runtime.any.System.Runtime": "(,4.3.32767]",
294
+ "runtime.any.System.Runtime.Handles": "(,4.3.32767]",
295
+ "runtime.any.System.Runtime.InteropServices": "(,4.3.32767]",
296
+ "runtime.any.System.Text.Encoding": "(,4.3.32767]",
297
+ "runtime.any.System.Text.Encoding.Extensions": "(,4.3.32767]",
298
+ "runtime.any.System.Threading.Tasks": "(,4.3.32767]",
299
+ "runtime.any.System.Threading.Timer": "(,4.3.32767]",
300
+ "runtime.aot.System.Collections": "(,4.3.32767]",
301
+ "runtime.aot.System.Diagnostics.Tools": "(,4.3.32767]",
302
+ "runtime.aot.System.Diagnostics.Tracing": "(,4.3.32767]",
303
+ "runtime.aot.System.Globalization": "(,4.3.32767]",
304
+ "runtime.aot.System.Globalization.Calendars": "(,4.3.32767]",
305
+ "runtime.aot.System.IO": "(,4.3.32767]",
306
+ "runtime.aot.System.Reflection": "(,4.3.32767]",
307
+ "runtime.aot.System.Reflection.Extensions": "(,4.3.32767]",
308
+ "runtime.aot.System.Reflection.Primitives": "(,4.3.32767]",
309
+ "runtime.aot.System.Resources.ResourceManager": "(,4.3.32767]",
310
+ "runtime.aot.System.Runtime": "(,4.3.32767]",
311
+ "runtime.aot.System.Runtime.Handles": "(,4.3.32767]",
312
+ "runtime.aot.System.Runtime.InteropServices": "(,4.3.32767]",
313
+ "runtime.aot.System.Text.Encoding": "(,4.3.32767]",
314
+ "runtime.aot.System.Text.Encoding.Extensions": "(,4.3.32767]",
315
+ "runtime.aot.System.Threading.Tasks": "(,4.3.32767]",
316
+ "runtime.aot.System.Threading.Timer": "(,4.3.32767]",
317
+ "runtime.debian.8-x64.runtime.native.System": "(,4.3.32767]",
318
+ "runtime.debian.8-x64.runtime.native.System.IO.Compression": "(,4.3.32767]",
319
+ "runtime.debian.8-x64.runtime.native.System.Net.Http": "(,4.3.32767]",
320
+ "runtime.debian.8-x64.runtime.native.System.Net.Security": "(,4.3.32767]",
321
+ "runtime.debian.8-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]",
322
+ "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]",
323
+ "runtime.debian.9-x64.runtime.native.System": "(,4.3.32767]",
324
+ "runtime.debian.9-x64.runtime.native.System.IO.Compression": "(,4.3.32767]",
325
+ "runtime.debian.9-x64.runtime.native.System.Net.Http": "(,4.3.32767]",
326
+ "runtime.debian.9-x64.runtime.native.System.Net.Security": "(,4.3.32767]",
327
+ "runtime.fedora.23-x64.runtime.native.System": "(,4.3.32767]",
328
+ "runtime.fedora.23-x64.runtime.native.System.IO.Compression": "(,4.3.32767]",
329
+ "runtime.fedora.23-x64.runtime.native.System.Net.Http": "(,4.3.32767]",
330
+ "runtime.fedora.23-x64.runtime.native.System.Net.Security": "(,4.3.32767]",
331
+ "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]",
332
+ "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]",
333
+ "runtime.fedora.24-x64.runtime.native.System": "(,4.3.32767]",
334
+ "runtime.fedora.24-x64.runtime.native.System.IO.Compression": "(,4.3.32767]",
335
+ "runtime.fedora.24-x64.runtime.native.System.Net.Http": "(,4.3.32767]",
336
+ "runtime.fedora.24-x64.runtime.native.System.Net.Security": "(,4.3.32767]",
337
+ "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]",
338
+ "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]",
339
+ "runtime.fedora.27-x64.runtime.native.System": "(,4.3.32767]",
340
+ "runtime.fedora.27-x64.runtime.native.System.IO.Compression": "(,4.3.32767]",
341
+ "runtime.fedora.27-x64.runtime.native.System.Net.Http": "(,4.3.32767]",
342
+ "runtime.fedora.27-x64.runtime.native.System.Net.Security": "(,4.3.32767]",
343
+ "runtime.fedora.28-x64.runtime.native.System": "(,4.3.32767]",
344
+ "runtime.fedora.28-x64.runtime.native.System.IO.Compression": "(,4.3.32767]",
345
+ "runtime.fedora.28-x64.runtime.native.System.Net.Http": "(,4.3.32767]",
346
+ "runtime.fedora.28-x64.runtime.native.System.Net.Security": "(,4.3.32767]",
347
+ "runtime.opensuse.13.2-x64.runtime.native.System": "(,4.3.32767]",
348
+ "runtime.opensuse.13.2-x64.runtime.native.System.IO.Compression": "(,4.3.32767]",
349
+ "runtime.opensuse.13.2-x64.runtime.native.System.Net.Http": "(,4.3.32767]",
350
+ "runtime.opensuse.13.2-x64.runtime.native.System.Net.Security": "(,4.3.32767]",
351
+ "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]",
352
+ "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]",
353
+ "runtime.opensuse.42.1-x64.runtime.native.System": "(,4.3.32767]",
354
+ "runtime.opensuse.42.1-x64.runtime.native.System.IO.Compression": "(,4.3.32767]",
355
+ "runtime.opensuse.42.1-x64.runtime.native.System.Net.Http": "(,4.3.32767]",
356
+ "runtime.opensuse.42.1-x64.runtime.native.System.Net.Security": "(,4.3.32767]",
357
+ "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]",
358
+ "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]",
359
+ "runtime.opensuse.42.3-x64.runtime.native.System": "(,4.3.32767]",
360
+ "runtime.opensuse.42.3-x64.runtime.native.System.IO.Compression": "(,4.3.32767]",
361
+ "runtime.opensuse.42.3-x64.runtime.native.System.Net.Http": "(,4.3.32767]",
362
+ "runtime.opensuse.42.3-x64.runtime.native.System.Net.Security": "(,4.3.32767]",
363
+ "runtime.osx.10.10-x64.runtime.native.System": "(,4.3.32767]",
364
+ "runtime.osx.10.10-x64.runtime.native.System.IO.Compression": "(,4.3.32767]",
365
+ "runtime.osx.10.10-x64.runtime.native.System.Net.Http": "(,4.3.32767]",
366
+ "runtime.osx.10.10-x64.runtime.native.System.Net.Security": "(,4.3.32767]",
367
+ "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]",
368
+ "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple": "(,4.3.32767]",
369
+ "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]",
370
+ "runtime.rhel.7-x64.runtime.native.System": "(,4.3.32767]",
371
+ "runtime.rhel.7-x64.runtime.native.System.IO.Compression": "(,4.3.32767]",
372
+ "runtime.rhel.7-x64.runtime.native.System.Net.Http": "(,4.3.32767]",
373
+ "runtime.rhel.7-x64.runtime.native.System.Net.Security": "(,4.3.32767]",
374
+ "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]",
375
+ "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]",
376
+ "runtime.ubuntu.14.04-x64.runtime.native.System": "(,4.3.32767]",
377
+ "runtime.ubuntu.14.04-x64.runtime.native.System.IO.Compression": "(,4.3.32767]",
378
+ "runtime.ubuntu.14.04-x64.runtime.native.System.Net.Http": "(,4.3.32767]",
379
+ "runtime.ubuntu.14.04-x64.runtime.native.System.Net.Security": "(,4.3.32767]",
380
+ "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]",
381
+ "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]",
382
+ "runtime.ubuntu.16.04-x64.runtime.native.System": "(,4.3.32767]",
383
+ "runtime.ubuntu.16.04-x64.runtime.native.System.IO.Compression": "(,4.3.32767]",
384
+ "runtime.ubuntu.16.04-x64.runtime.native.System.Net.Http": "(,4.3.32767]",
385
+ "runtime.ubuntu.16.04-x64.runtime.native.System.Net.Security": "(,4.3.32767]",
386
+ "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]",
387
+ "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]",
388
+ "runtime.ubuntu.16.10-x64.runtime.native.System": "(,4.3.32767]",
389
+ "runtime.ubuntu.16.10-x64.runtime.native.System.IO.Compression": "(,4.3.32767]",
390
+ "runtime.ubuntu.16.10-x64.runtime.native.System.Net.Http": "(,4.3.32767]",
391
+ "runtime.ubuntu.16.10-x64.runtime.native.System.Net.Security": "(,4.3.32767]",
392
+ "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]",
393
+ "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]",
394
+ "runtime.ubuntu.18.04-x64.runtime.native.System": "(,4.3.32767]",
395
+ "runtime.ubuntu.18.04-x64.runtime.native.System.IO.Compression": "(,4.3.32767]",
396
+ "runtime.ubuntu.18.04-x64.runtime.native.System.Net.Http": "(,4.3.32767]",
397
+ "runtime.ubuntu.18.04-x64.runtime.native.System.Net.Security": "(,4.3.32767]",
398
+ "runtime.unix.Microsoft.Win32.Primitives": "(,4.3.32767]",
399
+ "runtime.unix.System.Console": "(,4.3.32767]",
400
+ "runtime.unix.System.Diagnostics.Debug": "(,4.3.32767]",
401
+ "runtime.unix.System.IO.FileSystem": "(,4.3.32767]",
402
+ "runtime.unix.System.Net.Primitives": "(,4.3.32767]",
403
+ "runtime.unix.System.Net.Sockets": "(,4.3.32767]",
404
+ "runtime.unix.System.Private.Uri": "(,4.3.32767]",
405
+ "runtime.unix.System.Runtime.Extensions": "(,4.3.32767]",
406
+ "runtime.win.Microsoft.Win32.Primitives": "(,4.3.32767]",
407
+ "runtime.win.System.Console": "(,4.3.32767]",
408
+ "runtime.win.System.Diagnostics.Debug": "(,4.3.32767]",
409
+ "runtime.win.System.IO.FileSystem": "(,4.3.32767]",
410
+ "runtime.win.System.Net.Primitives": "(,4.3.32767]",
411
+ "runtime.win.System.Net.Sockets": "(,4.3.32767]",
412
+ "runtime.win.System.Runtime.Extensions": "(,4.3.32767]",
413
+ "runtime.win10-arm-aot.runtime.native.System.IO.Compression": "(,4.0.32767]",
414
+ "runtime.win10-arm64.runtime.native.System.IO.Compression": "(,4.3.32767]",
415
+ "runtime.win10-x64-aot.runtime.native.System.IO.Compression": "(,4.0.32767]",
416
+ "runtime.win10-x86-aot.runtime.native.System.IO.Compression": "(,4.0.32767]",
417
+ "runtime.win7-x64.runtime.native.System.IO.Compression": "(,4.3.32767]",
418
+ "runtime.win7-x86.runtime.native.System.IO.Compression": "(,4.3.32767]",
419
+ "runtime.win7.System.Private.Uri": "(,4.3.32767]",
420
+ "runtime.win8-arm.runtime.native.System.IO.Compression": "(,4.3.32767]",
421
+ "System.AppContext": "(,4.3.32767]",
422
+ "System.Buffers": "(,5.0.32767]",
423
+ "System.Collections": "(,4.3.32767]",
424
+ "System.Collections.Concurrent": "(,4.3.32767]",
425
+ "System.Collections.Immutable": "(,10.0.32767]",
426
+ "System.Collections.NonGeneric": "(,4.3.32767]",
427
+ "System.Collections.Specialized": "(,4.3.32767]",
428
+ "System.ComponentModel": "(,4.3.32767]",
429
+ "System.ComponentModel.Annotations": "(,4.3.32767]",
430
+ "System.ComponentModel.EventBasedAsync": "(,4.3.32767]",
431
+ "System.ComponentModel.Primitives": "(,4.3.32767]",
432
+ "System.ComponentModel.TypeConverter": "(,4.3.32767]",
433
+ "System.Console": "(,4.3.32767]",
434
+ "System.Data.Common": "(,4.3.32767]",
435
+ "System.Data.DataSetExtensions": "(,4.4.32767]",
436
+ "System.Diagnostics.Contracts": "(,4.3.32767]",
437
+ "System.Diagnostics.Debug": "(,4.3.32767]",
438
+ "System.Diagnostics.DiagnosticSource": "(,10.0.32767]",
439
+ "System.Diagnostics.EventLog": "(,10.0.32767]",
440
+ "System.Diagnostics.FileVersionInfo": "(,4.3.32767]",
441
+ "System.Diagnostics.Process": "(,4.3.32767]",
442
+ "System.Diagnostics.StackTrace": "(,4.3.32767]",
443
+ "System.Diagnostics.TextWriterTraceListener": "(,4.3.32767]",
444
+ "System.Diagnostics.Tools": "(,4.3.32767]",
445
+ "System.Diagnostics.TraceSource": "(,4.3.32767]",
446
+ "System.Diagnostics.Tracing": "(,4.3.32767]",
447
+ "System.Drawing.Primitives": "(,4.3.32767]",
448
+ "System.Dynamic.Runtime": "(,4.3.32767]",
449
+ "System.Formats.Asn1": "(,10.0.32767]",
450
+ "System.Formats.Cbor": "(,10.0.32767]",
451
+ "System.Formats.Tar": "(,10.0.32767]",
452
+ "System.Globalization": "(,4.3.32767]",
453
+ "System.Globalization.Calendars": "(,4.3.32767]",
454
+ "System.Globalization.Extensions": "(,4.3.32767]",
455
+ "System.IO": "(,4.3.32767]",
456
+ "System.IO.Compression": "(,4.3.32767]",
457
+ "System.IO.Compression.ZipFile": "(,4.3.32767]",
458
+ "System.IO.FileSystem": "(,4.3.32767]",
459
+ "System.IO.FileSystem.AccessControl": "(,4.4.32767]",
460
+ "System.IO.FileSystem.DriveInfo": "(,4.3.32767]",
461
+ "System.IO.FileSystem.Primitives": "(,4.3.32767]",
462
+ "System.IO.FileSystem.Watcher": "(,4.3.32767]",
463
+ "System.IO.IsolatedStorage": "(,4.3.32767]",
464
+ "System.IO.MemoryMappedFiles": "(,4.3.32767]",
465
+ "System.IO.Pipelines": "(,10.0.32767]",
466
+ "System.IO.Pipes": "(,4.3.32767]",
467
+ "System.IO.Pipes.AccessControl": "(,5.0.32767]",
468
+ "System.IO.UnmanagedMemoryStream": "(,4.3.32767]",
469
+ "System.Linq": "(,4.3.32767]",
470
+ "System.Linq.AsyncEnumerable": "(,10.0.32767]",
471
+ "System.Linq.Expressions": "(,4.3.32767]",
472
+ "System.Linq.Parallel": "(,4.3.32767]",
473
+ "System.Linq.Queryable": "(,4.3.32767]",
474
+ "System.Memory": "(,5.0.32767]",
475
+ "System.Net.Http": "(,4.3.32767]",
476
+ "System.Net.Http.Json": "(,10.0.32767]",
477
+ "System.Net.NameResolution": "(,4.3.32767]",
478
+ "System.Net.NetworkInformation": "(,4.3.32767]",
479
+ "System.Net.Ping": "(,4.3.32767]",
480
+ "System.Net.Primitives": "(,4.3.32767]",
481
+ "System.Net.Requests": "(,4.3.32767]",
482
+ "System.Net.Security": "(,4.3.32767]",
483
+ "System.Net.ServerSentEvents": "(,10.0.32767]",
484
+ "System.Net.Sockets": "(,4.3.32767]",
485
+ "System.Net.WebHeaderCollection": "(,4.3.32767]",
486
+ "System.Net.WebSockets": "(,4.3.32767]",
487
+ "System.Net.WebSockets.Client": "(,4.3.32767]",
488
+ "System.Numerics.Vectors": "(,5.0.32767]",
489
+ "System.ObjectModel": "(,4.3.32767]",
490
+ "System.Private.DataContractSerialization": "(,4.3.32767]",
491
+ "System.Private.Uri": "(,4.3.32767]",
492
+ "System.Reflection": "(,4.3.32767]",
493
+ "System.Reflection.DispatchProxy": "(,6.0.32767]",
494
+ "System.Reflection.Emit": "(,4.7.32767]",
495
+ "System.Reflection.Emit.ILGeneration": "(,4.7.32767]",
496
+ "System.Reflection.Emit.Lightweight": "(,4.7.32767]",
497
+ "System.Reflection.Extensions": "(,4.3.32767]",
498
+ "System.Reflection.Metadata": "(,10.0.32767]",
499
+ "System.Reflection.Primitives": "(,4.3.32767]",
500
+ "System.Reflection.TypeExtensions": "(,4.3.32767]",
501
+ "System.Resources.Reader": "(,4.3.32767]",
502
+ "System.Resources.ResourceManager": "(,4.3.32767]",
503
+ "System.Resources.Writer": "(,4.3.32767]",
504
+ "System.Runtime": "(,4.3.32767]",
505
+ "System.Runtime.CompilerServices.Unsafe": "(,7.0.32767]",
506
+ "System.Runtime.CompilerServices.VisualC": "(,4.3.32767]",
507
+ "System.Runtime.Extensions": "(,4.3.32767]",
508
+ "System.Runtime.Handles": "(,4.3.32767]",
509
+ "System.Runtime.InteropServices": "(,4.3.32767]",
510
+ "System.Runtime.InteropServices.RuntimeInformation": "(,4.3.32767]",
511
+ "System.Runtime.Loader": "(,4.3.32767]",
512
+ "System.Runtime.Numerics": "(,4.3.32767]",
513
+ "System.Runtime.Serialization.Formatters": "(,4.3.32767]",
514
+ "System.Runtime.Serialization.Json": "(,4.3.32767]",
515
+ "System.Runtime.Serialization.Primitives": "(,4.3.32767]",
516
+ "System.Runtime.Serialization.Xml": "(,4.3.32767]",
517
+ "System.Security.AccessControl": "(,6.0.32767]",
518
+ "System.Security.Claims": "(,4.3.32767]",
519
+ "System.Security.Cryptography.Algorithms": "(,4.3.32767]",
520
+ "System.Security.Cryptography.Cng": "(,5.0.32767]",
521
+ "System.Security.Cryptography.Csp": "(,4.3.32767]",
522
+ "System.Security.Cryptography.Encoding": "(,4.3.32767]",
523
+ "System.Security.Cryptography.OpenSsl": "(,5.0.32767]",
524
+ "System.Security.Cryptography.Primitives": "(,4.3.32767]",
525
+ "System.Security.Cryptography.X509Certificates": "(,4.3.32767]",
526
+ "System.Security.Cryptography.Xml": "(,10.0.32767]",
527
+ "System.Security.Principal": "(,4.3.32767]",
528
+ "System.Security.Principal.Windows": "(,5.0.32767]",
529
+ "System.Security.SecureString": "(,4.3.32767]",
530
+ "System.Text.Encoding": "(,4.3.32767]",
531
+ "System.Text.Encoding.CodePages": "(,10.0.32767]",
532
+ "System.Text.Encoding.Extensions": "(,4.3.32767]",
533
+ "System.Text.Encodings.Web": "(,10.0.32767]",
534
+ "System.Text.Json": "(,10.0.32767]",
535
+ "System.Text.RegularExpressions": "(,4.3.32767]",
536
+ "System.Threading": "(,4.3.32767]",
537
+ "System.Threading.AccessControl": "(,10.0.32767]",
538
+ "System.Threading.Channels": "(,10.0.32767]",
539
+ "System.Threading.Overlapped": "(,4.3.32767]",
540
+ "System.Threading.RateLimiting": "(,10.0.32767]",
541
+ "System.Threading.Tasks": "(,4.3.32767]",
542
+ "System.Threading.Tasks.Dataflow": "(,10.0.32767]",
543
+ "System.Threading.Tasks.Extensions": "(,5.0.32767]",
544
+ "System.Threading.Tasks.Parallel": "(,4.3.32767]",
545
+ "System.Threading.Thread": "(,4.3.32767]",
546
+ "System.Threading.ThreadPool": "(,4.3.32767]",
547
+ "System.Threading.Timer": "(,4.3.32767]",
548
+ "System.ValueTuple": "(,4.5.32767]",
549
+ "System.Xml.ReaderWriter": "(,4.3.32767]",
550
+ "System.Xml.XDocument": "(,4.3.32767]",
551
+ "System.Xml.XmlDocument": "(,4.3.32767]",
552
+ "System.Xml.XmlSerializer": "(,4.3.32767]",
553
+ "System.Xml.XPath": "(,4.3.32767]",
554
+ "System.Xml.XPath.XDocument": "(,5.0.32767]"
555
+ }
556
+ }
557
+ }
558
+ }
559
+ }
@@ -0,0 +1,8 @@
1
+ {
2
+ "version": 2,
3
+ "dgSpecHash": "/OAe41UUhNU=",
4
+ "success": true,
5
+ "projectFilePath": "C:\\Projects2\\Personal\\musketeer\\template\\dotnet-scaffold\\src\\__SolutionName__.Api\\__SolutionName__.Api.csproj",
6
+ "expectedPackageFiles": [],
7
+ "logs": []
8
+ }
@@ -0,0 +1,14 @@
1
+ <Project Sdk="Microsoft.NET.Sdk">
2
+
3
+ <ItemGroup>
4
+ <ProjectReference Include="..\__SolutionName__.Domain\__SolutionName__.Domain.csproj" />
5
+ </ItemGroup>
6
+
7
+ <PropertyGroup>
8
+ <TargetFramework>net10.0</TargetFramework>
9
+ <LangVersion>latest</LangVersion>
10
+ <Nullable>enable</Nullable>
11
+ <ImplicitUsings>enable</ImplicitUsings>
12
+ </PropertyGroup>
13
+
14
+ </Project>
@@ -0,0 +1,4 @@
1
+ // <autogenerated />
2
+ using System;
3
+ using System.Reflection;
4
+ [assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v10.0", FrameworkDisplayName = ".NET 10.0")]
@@ -0,0 +1,22 @@
1
+ //------------------------------------------------------------------------------
2
+ // <auto-generated>
3
+ // This code was generated by a tool.
4
+ //
5
+ // Changes to this file may cause incorrect behavior and will be lost if
6
+ // the code is regenerated.
7
+ // </auto-generated>
8
+ //------------------------------------------------------------------------------
9
+
10
+ using System;
11
+ using System.Reflection;
12
+
13
+ [assembly: System.Reflection.AssemblyCompanyAttribute("__SolutionName__.Application")]
14
+ [assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")]
15
+ [assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")]
16
+ [assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+0342d5b9ce3d2a90f472edee8291747e8286b305")]
17
+ [assembly: System.Reflection.AssemblyProductAttribute("__SolutionName__.Application")]
18
+ [assembly: System.Reflection.AssemblyTitleAttribute("__SolutionName__.Application")]
19
+ [assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")]
20
+
21
+ // Generated by the MSBuild WriteCodeFragment class.
22
+
@@ -0,0 +1 @@
1
+ b2a7e660b0aec34f2b56ff0f06b59027837a8c27d54f86c080961356183283d5