@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,77 @@
1
+ Microsoft Visual Studio Solution File, Format Version 12.00
2
+ # Visual Studio Version 17
3
+ VisualStudioVersion = 17.0.31903.59
4
+ MinimumVisualStudioVersion = 10.0.40219.1
5
+ Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "src", "src", "__SlnFolderGuid_Src__"
6
+ EndProject
7
+ Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "__SolutionName__.Domain", "src\__SolutionName__.Domain\__SolutionName__.Domain.csproj", "__ProjectGuid_Domain__"
8
+ EndProject
9
+ Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "__SolutionName__.Application", "src\__SolutionName__.Application\__SolutionName__.Application.csproj", "__ProjectGuid_Application__"
10
+ EndProject
11
+ Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "__SolutionName__.Infrastructure", "src\__SolutionName__.Infrastructure\__SolutionName__.Infrastructure.csproj", "__ProjectGuid_Infrastructure__"
12
+ EndProject
13
+ Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "__SolutionName__.Api", "src\__SolutionName__.Api\__SolutionName__.Api.csproj", "__ProjectGuid_Api__"
14
+ EndProject
15
+ Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "tests", "tests", "__SlnFolderGuid_Tests__"
16
+ EndProject
17
+ Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "__SolutionName__.Domain.Tests", "tests\__SolutionName__.Domain.Tests\__SolutionName__.Domain.Tests.csproj", "__ProjectGuid_DomainTests__"
18
+ EndProject
19
+ Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "__SolutionName__.Application.Tests", "tests\__SolutionName__.Application.Tests\__SolutionName__.Application.Tests.csproj", "__ProjectGuid_ApplicationTests__"
20
+ EndProject
21
+ Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "__SolutionName__.Infrastructure.Tests", "tests\__SolutionName__.Infrastructure.Tests\__SolutionName__.Infrastructure.Tests.csproj", "__ProjectGuid_InfrastructureTests__"
22
+ EndProject
23
+ Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "__SolutionName__.Api.Tests", "tests\__SolutionName__.Api.Tests\__SolutionName__.Api.Tests.csproj", "__ProjectGuid_ApiTests__"
24
+ EndProject
25
+ Global
26
+ GlobalSection(SolutionConfigurationPlatforms) = preSolution
27
+ Debug|Any CPU = Debug|Any CPU
28
+ Release|Any CPU = Release|Any CPU
29
+ EndGlobalSection
30
+ GlobalSection(SolutionProperties) = preSolution
31
+ HideSolutionNode = FALSE
32
+ EndGlobalSection
33
+ GlobalSection(ProjectConfigurationPlatforms) = postSolution
34
+ __ProjectGuid_Domain__.Debug|Any CPU.ActiveCfg = Debug|Any CPU
35
+ __ProjectGuid_Domain__.Debug|Any CPU.Build.0 = Debug|Any CPU
36
+ __ProjectGuid_Domain__.Release|Any CPU.ActiveCfg = Release|Any CPU
37
+ __ProjectGuid_Domain__.Release|Any CPU.Build.0 = Release|Any CPU
38
+ __ProjectGuid_Application__.Debug|Any CPU.ActiveCfg = Debug|Any CPU
39
+ __ProjectGuid_Application__.Debug|Any CPU.Build.0 = Debug|Any CPU
40
+ __ProjectGuid_Application__.Release|Any CPU.ActiveCfg = Release|Any CPU
41
+ __ProjectGuid_Application__.Release|Any CPU.Build.0 = Release|Any CPU
42
+ __ProjectGuid_Infrastructure__.Debug|Any CPU.ActiveCfg = Debug|Any CPU
43
+ __ProjectGuid_Infrastructure__.Debug|Any CPU.Build.0 = Debug|Any CPU
44
+ __ProjectGuid_Infrastructure__.Release|Any CPU.ActiveCfg = Release|Any CPU
45
+ __ProjectGuid_Infrastructure__.Release|Any CPU.Build.0 = Release|Any CPU
46
+ __ProjectGuid_Api__.Debug|Any CPU.ActiveCfg = Debug|Any CPU
47
+ __ProjectGuid_Api__.Debug|Any CPU.Build.0 = Debug|Any CPU
48
+ __ProjectGuid_Api__.Release|Any CPU.ActiveCfg = Release|Any CPU
49
+ __ProjectGuid_Api__.Release|Any CPU.Build.0 = Release|Any CPU
50
+ __ProjectGuid_DomainTests__.Debug|Any CPU.ActiveCfg = Debug|Any CPU
51
+ __ProjectGuid_DomainTests__.Debug|Any CPU.Build.0 = Debug|Any CPU
52
+ __ProjectGuid_DomainTests__.Release|Any CPU.ActiveCfg = Release|Any CPU
53
+ __ProjectGuid_DomainTests__.Release|Any CPU.Build.0 = Release|Any CPU
54
+ __ProjectGuid_ApplicationTests__.Debug|Any CPU.ActiveCfg = Debug|Any CPU
55
+ __ProjectGuid_ApplicationTests__.Debug|Any CPU.Build.0 = Debug|Any CPU
56
+ __ProjectGuid_ApplicationTests__.Release|Any CPU.ActiveCfg = Release|Any CPU
57
+ __ProjectGuid_ApplicationTests__.Release|Any CPU.Build.0 = Release|Any CPU
58
+ __ProjectGuid_InfrastructureTests__.Debug|Any CPU.ActiveCfg = Debug|Any CPU
59
+ __ProjectGuid_InfrastructureTests__.Debug|Any CPU.Build.0 = Debug|Any CPU
60
+ __ProjectGuid_InfrastructureTests__.Release|Any CPU.ActiveCfg = Release|Any CPU
61
+ __ProjectGuid_InfrastructureTests__.Release|Any CPU.Build.0 = Release|Any CPU
62
+ __ProjectGuid_ApiTests__.Debug|Any CPU.ActiveCfg = Debug|Any CPU
63
+ __ProjectGuid_ApiTests__.Debug|Any CPU.Build.0 = Debug|Any CPU
64
+ __ProjectGuid_ApiTests__.Release|Any CPU.ActiveCfg = Release|Any CPU
65
+ __ProjectGuid_ApiTests__.Release|Any CPU.Build.0 = Release|Any CPU
66
+ EndGlobalSection
67
+ GlobalSection(NestedProjects) = preSolution
68
+ __ProjectGuid_Domain__ = __SlnFolderGuid_Src__
69
+ __ProjectGuid_Application__ = __SlnFolderGuid_Src__
70
+ __ProjectGuid_Infrastructure__ = __SlnFolderGuid_Src__
71
+ __ProjectGuid_Api__ = __SlnFolderGuid_Src__
72
+ __ProjectGuid_DomainTests__ = __SlnFolderGuid_Tests__
73
+ __ProjectGuid_ApplicationTests__ = __SlnFolderGuid_Tests__
74
+ __ProjectGuid_InfrastructureTests__ = __SlnFolderGuid_Tests__
75
+ __ProjectGuid_ApiTests__ = __SlnFolderGuid_Tests__
76
+ EndGlobalSection
77
+ EndGlobal
@@ -0,0 +1,6 @@
1
+ {
2
+ "sdk": {
3
+ "version": "10.0.100",
4
+ "rollForward": "latestFeature"
5
+ }
6
+ }
@@ -0,0 +1,6 @@
1
+ var builder = WebApplication.CreateBuilder(args);
2
+ var app = builder.Build();
3
+
4
+ app.MapGet("/", () => "Hello World!");
5
+
6
+ app.Run();
@@ -0,0 +1,38 @@
1
+ {
2
+ "$schema": "http://json.schemastore.org/launchsettings.json",
3
+ "iisSettings": {
4
+ "windowsAuthentication": false,
5
+ "anonymousAuthentication": true,
6
+ "iisExpress": {
7
+ "applicationUrl": "http://localhost:54976",
8
+ "sslPort": 44329
9
+ }
10
+ },
11
+ "profiles": {
12
+ "http": {
13
+ "commandName": "Project",
14
+ "dotnetRunMessages": true,
15
+ "launchBrowser": true,
16
+ "applicationUrl": "http://localhost:5093",
17
+ "environmentVariables": {
18
+ "ASPNETCORE_ENVIRONMENT": "Development"
19
+ }
20
+ },
21
+ "https": {
22
+ "commandName": "Project",
23
+ "dotnetRunMessages": true,
24
+ "launchBrowser": true,
25
+ "applicationUrl": "https://localhost:7192;http://localhost:5093",
26
+ "environmentVariables": {
27
+ "ASPNETCORE_ENVIRONMENT": "Development"
28
+ }
29
+ },
30
+ "IIS Express": {
31
+ "commandName": "IISExpress",
32
+ "launchBrowser": true,
33
+ "environmentVariables": {
34
+ "ASPNETCORE_ENVIRONMENT": "Development"
35
+ }
36
+ }
37
+ }
38
+ }
@@ -0,0 +1,15 @@
1
+ <Project Sdk="Microsoft.NET.Sdk.Web">
2
+
3
+ <ItemGroup>
4
+ <ProjectReference Include="..\__SolutionName__.Application\__SolutionName__.Application.csproj" />
5
+ <ProjectReference Include="..\__SolutionName__.Infrastructure\__SolutionName__.Infrastructure.csproj" />
6
+ </ItemGroup>
7
+
8
+ <PropertyGroup>
9
+ <TargetFramework>net10.0</TargetFramework>
10
+ <LangVersion>latest</LangVersion>
11
+ <Nullable>enable</Nullable>
12
+ <ImplicitUsings>enable</ImplicitUsings>
13
+ </PropertyGroup>
14
+
15
+ </Project>
@@ -0,0 +1,8 @@
1
+ {
2
+ "Logging": {
3
+ "LogLevel": {
4
+ "Default": "Information",
5
+ "Microsoft.AspNetCore": "Warning"
6
+ }
7
+ }
8
+ }
@@ -0,0 +1,9 @@
1
+ {
2
+ "Logging": {
3
+ "LogLevel": {
4
+ "Default": "Information",
5
+ "Microsoft.AspNetCore": "Warning"
6
+ }
7
+ },
8
+ "AllowedHosts": "*"
9
+ }
@@ -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__.Api")]
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__.Api")]
18
+ [assembly: System.Reflection.AssemblyTitleAttribute("__SolutionName__.Api")]
19
+ [assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")]
20
+
21
+ // Generated by the MSBuild WriteCodeFragment class.
22
+
@@ -0,0 +1 @@
1
+ d837ad0b9eac655ab38ab4bc05ad8a8eb7b84758bca71acbc2c0eb411a5d092d
@@ -0,0 +1,23 @@
1
+ is_global = true
2
+ build_property.TargetFramework = net10.0
3
+ build_property.TargetFrameworkIdentifier = .NETCoreApp
4
+ build_property.TargetFrameworkVersion = v10.0
5
+ build_property.TargetPlatformMinVersion =
6
+ build_property.UsingMicrosoftNETSdkWeb = true
7
+ build_property.ProjectTypeGuids =
8
+ build_property.InvariantGlobalization =
9
+ build_property.PlatformNeutralAssembly =
10
+ build_property.EnforceExtendedAnalyzerRules =
11
+ build_property._SupportedPlatformList = Linux,macOS,Windows
12
+ build_property.RootNamespace = __SolutionName__.Api
13
+ build_property.RootNamespace = __SolutionName__.Api
14
+ build_property.ProjectDir = C:\Projects2\Personal\musketeer\template\dotnet-scaffold\src\__SolutionName__.Api\
15
+ build_property.EnableComHosting =
16
+ build_property.EnableGeneratedComInterfaceComImportInterop =
17
+ build_property.RazorLangVersion = 9.0
18
+ build_property.SupportLocalizedComponentNames =
19
+ build_property.GenerateRazorMetadataSourceChecksumAttributes =
20
+ build_property.MSBuildProjectDirectory = C:\Projects2\Personal\musketeer\template\dotnet-scaffold\src\__SolutionName__.Api
21
+ build_property._RazorSourceGeneratorDebug =
22
+ build_property.EffectiveAnalysisLevelStyle = 10.0
23
+ build_property.EnableCodeStyleSeverity =
@@ -0,0 +1,17 @@
1
+ // <auto-generated/>
2
+ global using Microsoft.AspNetCore.Builder;
3
+ global using Microsoft.AspNetCore.Hosting;
4
+ global using Microsoft.AspNetCore.Http;
5
+ global using Microsoft.AspNetCore.Routing;
6
+ global using Microsoft.Extensions.Configuration;
7
+ global using Microsoft.Extensions.DependencyInjection;
8
+ global using Microsoft.Extensions.Hosting;
9
+ global using Microsoft.Extensions.Logging;
10
+ global using System;
11
+ global using System.Collections.Generic;
12
+ global using System.IO;
13
+ global using System.Linq;
14
+ global using System.Net.Http;
15
+ global using System.Net.Http.Json;
16
+ global using System.Threading;
17
+ global using System.Threading.Tasks;