@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,376 @@
1
+ {
2
+ "version": 3,
3
+ "targets": {
4
+ "net10.0": {
5
+ "__SolutionName__.Domain/1.0.0": {
6
+ "type": "project",
7
+ "framework": ".NETCoreApp,Version=v10.0",
8
+ "compile": {
9
+ "bin/placeholder/__SolutionName__.Domain.dll": {}
10
+ },
11
+ "runtime": {
12
+ "bin/placeholder/__SolutionName__.Domain.dll": {}
13
+ }
14
+ }
15
+ }
16
+ },
17
+ "libraries": {
18
+ "__SolutionName__.Domain/1.0.0": {
19
+ "type": "project",
20
+ "path": "../__SolutionName__.Domain/__SolutionName__.Domain.csproj",
21
+ "msbuildProject": "../__SolutionName__.Domain/__SolutionName__.Domain.csproj"
22
+ }
23
+ },
24
+ "projectFileDependencyGroups": {
25
+ "net10.0": [
26
+ "__SolutionName__.Domain >= 1.0.0"
27
+ ]
28
+ },
29
+ "packageFolders": {
30
+ "C:\\Users\\phuc.pham\\.nuget\\packages\\": {},
31
+ "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages": {}
32
+ },
33
+ "project": {
34
+ "version": "1.0.0",
35
+ "restore": {
36
+ "projectUniqueName": "C:\\Projects2\\Personal\\musketeer\\template\\dotnet-scaffold\\src\\__SolutionName__.Application\\__SolutionName__.Application.csproj",
37
+ "projectName": "__SolutionName__.Application",
38
+ "projectPath": "C:\\Projects2\\Personal\\musketeer\\template\\dotnet-scaffold\\src\\__SolutionName__.Application\\__SolutionName__.Application.csproj",
39
+ "packagesPath": "C:\\Users\\phuc.pham\\.nuget\\packages\\",
40
+ "outputPath": "C:\\Projects2\\Personal\\musketeer\\template\\dotnet-scaffold\\src\\__SolutionName__.Application\\obj\\",
41
+ "projectStyle": "PackageReference",
42
+ "fallbackFolders": [
43
+ "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages"
44
+ ],
45
+ "configFilePaths": [
46
+ "C:\\Users\\phuc.pham\\AppData\\Roaming\\NuGet\\NuGet.Config",
47
+ "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config",
48
+ "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config"
49
+ ],
50
+ "originalTargetFrameworks": [
51
+ "net10.0"
52
+ ],
53
+ "sources": {
54
+ "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {},
55
+ "https://api.nuget.org/v3/index.json": {}
56
+ },
57
+ "frameworks": {
58
+ "net10.0": {
59
+ "targetAlias": "net10.0",
60
+ "projectReferences": {
61
+ "C:\\Projects2\\Personal\\musketeer\\template\\dotnet-scaffold\\src\\__SolutionName__.Domain\\__SolutionName__.Domain.csproj": {
62
+ "projectPath": "C:\\Projects2\\Personal\\musketeer\\template\\dotnet-scaffold\\src\\__SolutionName__.Domain\\__SolutionName__.Domain.csproj"
63
+ }
64
+ }
65
+ }
66
+ },
67
+ "warningProperties": {
68
+ "warnAsError": [
69
+ "NU1605"
70
+ ]
71
+ },
72
+ "restoreAuditProperties": {
73
+ "enableAudit": "true",
74
+ "auditLevel": "low",
75
+ "auditMode": "all"
76
+ },
77
+ "SdkAnalysisLevel": "10.0.200"
78
+ },
79
+ "frameworks": {
80
+ "net10.0": {
81
+ "targetAlias": "net10.0",
82
+ "imports": [
83
+ "net461",
84
+ "net462",
85
+ "net47",
86
+ "net471",
87
+ "net472",
88
+ "net48",
89
+ "net481"
90
+ ],
91
+ "assetTargetFallback": true,
92
+ "warn": true,
93
+ "frameworkReferences": {
94
+ "Microsoft.NETCore.App": {
95
+ "privateAssets": "all"
96
+ }
97
+ },
98
+ "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\10.0.204/PortableRuntimeIdentifierGraph.json",
99
+ "packagesToPrune": {
100
+ "Microsoft.CSharp": "(,4.7.32767]",
101
+ "Microsoft.VisualBasic": "(,10.4.32767]",
102
+ "Microsoft.Win32.Primitives": "(,4.3.32767]",
103
+ "Microsoft.Win32.Registry": "(,5.0.32767]",
104
+ "runtime.any.System.Collections": "(,4.3.32767]",
105
+ "runtime.any.System.Diagnostics.Tools": "(,4.3.32767]",
106
+ "runtime.any.System.Diagnostics.Tracing": "(,4.3.32767]",
107
+ "runtime.any.System.Globalization": "(,4.3.32767]",
108
+ "runtime.any.System.Globalization.Calendars": "(,4.3.32767]",
109
+ "runtime.any.System.IO": "(,4.3.32767]",
110
+ "runtime.any.System.Reflection": "(,4.3.32767]",
111
+ "runtime.any.System.Reflection.Extensions": "(,4.3.32767]",
112
+ "runtime.any.System.Reflection.Primitives": "(,4.3.32767]",
113
+ "runtime.any.System.Resources.ResourceManager": "(,4.3.32767]",
114
+ "runtime.any.System.Runtime": "(,4.3.32767]",
115
+ "runtime.any.System.Runtime.Handles": "(,4.3.32767]",
116
+ "runtime.any.System.Runtime.InteropServices": "(,4.3.32767]",
117
+ "runtime.any.System.Text.Encoding": "(,4.3.32767]",
118
+ "runtime.any.System.Text.Encoding.Extensions": "(,4.3.32767]",
119
+ "runtime.any.System.Threading.Tasks": "(,4.3.32767]",
120
+ "runtime.any.System.Threading.Timer": "(,4.3.32767]",
121
+ "runtime.aot.System.Collections": "(,4.3.32767]",
122
+ "runtime.aot.System.Diagnostics.Tools": "(,4.3.32767]",
123
+ "runtime.aot.System.Diagnostics.Tracing": "(,4.3.32767]",
124
+ "runtime.aot.System.Globalization": "(,4.3.32767]",
125
+ "runtime.aot.System.Globalization.Calendars": "(,4.3.32767]",
126
+ "runtime.aot.System.IO": "(,4.3.32767]",
127
+ "runtime.aot.System.Reflection": "(,4.3.32767]",
128
+ "runtime.aot.System.Reflection.Extensions": "(,4.3.32767]",
129
+ "runtime.aot.System.Reflection.Primitives": "(,4.3.32767]",
130
+ "runtime.aot.System.Resources.ResourceManager": "(,4.3.32767]",
131
+ "runtime.aot.System.Runtime": "(,4.3.32767]",
132
+ "runtime.aot.System.Runtime.Handles": "(,4.3.32767]",
133
+ "runtime.aot.System.Runtime.InteropServices": "(,4.3.32767]",
134
+ "runtime.aot.System.Text.Encoding": "(,4.3.32767]",
135
+ "runtime.aot.System.Text.Encoding.Extensions": "(,4.3.32767]",
136
+ "runtime.aot.System.Threading.Tasks": "(,4.3.32767]",
137
+ "runtime.aot.System.Threading.Timer": "(,4.3.32767]",
138
+ "runtime.debian.8-x64.runtime.native.System": "(,4.3.32767]",
139
+ "runtime.debian.8-x64.runtime.native.System.IO.Compression": "(,4.3.32767]",
140
+ "runtime.debian.8-x64.runtime.native.System.Net.Http": "(,4.3.32767]",
141
+ "runtime.debian.8-x64.runtime.native.System.Net.Security": "(,4.3.32767]",
142
+ "runtime.debian.8-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]",
143
+ "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]",
144
+ "runtime.debian.9-x64.runtime.native.System": "(,4.3.32767]",
145
+ "runtime.debian.9-x64.runtime.native.System.IO.Compression": "(,4.3.32767]",
146
+ "runtime.debian.9-x64.runtime.native.System.Net.Http": "(,4.3.32767]",
147
+ "runtime.debian.9-x64.runtime.native.System.Net.Security": "(,4.3.32767]",
148
+ "runtime.fedora.23-x64.runtime.native.System": "(,4.3.32767]",
149
+ "runtime.fedora.23-x64.runtime.native.System.IO.Compression": "(,4.3.32767]",
150
+ "runtime.fedora.23-x64.runtime.native.System.Net.Http": "(,4.3.32767]",
151
+ "runtime.fedora.23-x64.runtime.native.System.Net.Security": "(,4.3.32767]",
152
+ "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]",
153
+ "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]",
154
+ "runtime.fedora.24-x64.runtime.native.System": "(,4.3.32767]",
155
+ "runtime.fedora.24-x64.runtime.native.System.IO.Compression": "(,4.3.32767]",
156
+ "runtime.fedora.24-x64.runtime.native.System.Net.Http": "(,4.3.32767]",
157
+ "runtime.fedora.24-x64.runtime.native.System.Net.Security": "(,4.3.32767]",
158
+ "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]",
159
+ "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]",
160
+ "runtime.fedora.27-x64.runtime.native.System": "(,4.3.32767]",
161
+ "runtime.fedora.27-x64.runtime.native.System.IO.Compression": "(,4.3.32767]",
162
+ "runtime.fedora.27-x64.runtime.native.System.Net.Http": "(,4.3.32767]",
163
+ "runtime.fedora.27-x64.runtime.native.System.Net.Security": "(,4.3.32767]",
164
+ "runtime.fedora.28-x64.runtime.native.System": "(,4.3.32767]",
165
+ "runtime.fedora.28-x64.runtime.native.System.IO.Compression": "(,4.3.32767]",
166
+ "runtime.fedora.28-x64.runtime.native.System.Net.Http": "(,4.3.32767]",
167
+ "runtime.fedora.28-x64.runtime.native.System.Net.Security": "(,4.3.32767]",
168
+ "runtime.opensuse.13.2-x64.runtime.native.System": "(,4.3.32767]",
169
+ "runtime.opensuse.13.2-x64.runtime.native.System.IO.Compression": "(,4.3.32767]",
170
+ "runtime.opensuse.13.2-x64.runtime.native.System.Net.Http": "(,4.3.32767]",
171
+ "runtime.opensuse.13.2-x64.runtime.native.System.Net.Security": "(,4.3.32767]",
172
+ "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]",
173
+ "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]",
174
+ "runtime.opensuse.42.1-x64.runtime.native.System": "(,4.3.32767]",
175
+ "runtime.opensuse.42.1-x64.runtime.native.System.IO.Compression": "(,4.3.32767]",
176
+ "runtime.opensuse.42.1-x64.runtime.native.System.Net.Http": "(,4.3.32767]",
177
+ "runtime.opensuse.42.1-x64.runtime.native.System.Net.Security": "(,4.3.32767]",
178
+ "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]",
179
+ "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]",
180
+ "runtime.opensuse.42.3-x64.runtime.native.System": "(,4.3.32767]",
181
+ "runtime.opensuse.42.3-x64.runtime.native.System.IO.Compression": "(,4.3.32767]",
182
+ "runtime.opensuse.42.3-x64.runtime.native.System.Net.Http": "(,4.3.32767]",
183
+ "runtime.opensuse.42.3-x64.runtime.native.System.Net.Security": "(,4.3.32767]",
184
+ "runtime.osx.10.10-x64.runtime.native.System": "(,4.3.32767]",
185
+ "runtime.osx.10.10-x64.runtime.native.System.IO.Compression": "(,4.3.32767]",
186
+ "runtime.osx.10.10-x64.runtime.native.System.Net.Http": "(,4.3.32767]",
187
+ "runtime.osx.10.10-x64.runtime.native.System.Net.Security": "(,4.3.32767]",
188
+ "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]",
189
+ "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple": "(,4.3.32767]",
190
+ "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]",
191
+ "runtime.rhel.7-x64.runtime.native.System": "(,4.3.32767]",
192
+ "runtime.rhel.7-x64.runtime.native.System.IO.Compression": "(,4.3.32767]",
193
+ "runtime.rhel.7-x64.runtime.native.System.Net.Http": "(,4.3.32767]",
194
+ "runtime.rhel.7-x64.runtime.native.System.Net.Security": "(,4.3.32767]",
195
+ "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]",
196
+ "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]",
197
+ "runtime.ubuntu.14.04-x64.runtime.native.System": "(,4.3.32767]",
198
+ "runtime.ubuntu.14.04-x64.runtime.native.System.IO.Compression": "(,4.3.32767]",
199
+ "runtime.ubuntu.14.04-x64.runtime.native.System.Net.Http": "(,4.3.32767]",
200
+ "runtime.ubuntu.14.04-x64.runtime.native.System.Net.Security": "(,4.3.32767]",
201
+ "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]",
202
+ "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]",
203
+ "runtime.ubuntu.16.04-x64.runtime.native.System": "(,4.3.32767]",
204
+ "runtime.ubuntu.16.04-x64.runtime.native.System.IO.Compression": "(,4.3.32767]",
205
+ "runtime.ubuntu.16.04-x64.runtime.native.System.Net.Http": "(,4.3.32767]",
206
+ "runtime.ubuntu.16.04-x64.runtime.native.System.Net.Security": "(,4.3.32767]",
207
+ "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]",
208
+ "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]",
209
+ "runtime.ubuntu.16.10-x64.runtime.native.System": "(,4.3.32767]",
210
+ "runtime.ubuntu.16.10-x64.runtime.native.System.IO.Compression": "(,4.3.32767]",
211
+ "runtime.ubuntu.16.10-x64.runtime.native.System.Net.Http": "(,4.3.32767]",
212
+ "runtime.ubuntu.16.10-x64.runtime.native.System.Net.Security": "(,4.3.32767]",
213
+ "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]",
214
+ "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]",
215
+ "runtime.ubuntu.18.04-x64.runtime.native.System": "(,4.3.32767]",
216
+ "runtime.ubuntu.18.04-x64.runtime.native.System.IO.Compression": "(,4.3.32767]",
217
+ "runtime.ubuntu.18.04-x64.runtime.native.System.Net.Http": "(,4.3.32767]",
218
+ "runtime.ubuntu.18.04-x64.runtime.native.System.Net.Security": "(,4.3.32767]",
219
+ "runtime.unix.Microsoft.Win32.Primitives": "(,4.3.32767]",
220
+ "runtime.unix.System.Console": "(,4.3.32767]",
221
+ "runtime.unix.System.Diagnostics.Debug": "(,4.3.32767]",
222
+ "runtime.unix.System.IO.FileSystem": "(,4.3.32767]",
223
+ "runtime.unix.System.Net.Primitives": "(,4.3.32767]",
224
+ "runtime.unix.System.Net.Sockets": "(,4.3.32767]",
225
+ "runtime.unix.System.Private.Uri": "(,4.3.32767]",
226
+ "runtime.unix.System.Runtime.Extensions": "(,4.3.32767]",
227
+ "runtime.win.Microsoft.Win32.Primitives": "(,4.3.32767]",
228
+ "runtime.win.System.Console": "(,4.3.32767]",
229
+ "runtime.win.System.Diagnostics.Debug": "(,4.3.32767]",
230
+ "runtime.win.System.IO.FileSystem": "(,4.3.32767]",
231
+ "runtime.win.System.Net.Primitives": "(,4.3.32767]",
232
+ "runtime.win.System.Net.Sockets": "(,4.3.32767]",
233
+ "runtime.win.System.Runtime.Extensions": "(,4.3.32767]",
234
+ "runtime.win10-arm-aot.runtime.native.System.IO.Compression": "(,4.0.32767]",
235
+ "runtime.win10-arm64.runtime.native.System.IO.Compression": "(,4.3.32767]",
236
+ "runtime.win10-x64-aot.runtime.native.System.IO.Compression": "(,4.0.32767]",
237
+ "runtime.win10-x86-aot.runtime.native.System.IO.Compression": "(,4.0.32767]",
238
+ "runtime.win7-x64.runtime.native.System.IO.Compression": "(,4.3.32767]",
239
+ "runtime.win7-x86.runtime.native.System.IO.Compression": "(,4.3.32767]",
240
+ "runtime.win7.System.Private.Uri": "(,4.3.32767]",
241
+ "runtime.win8-arm.runtime.native.System.IO.Compression": "(,4.3.32767]",
242
+ "System.AppContext": "(,4.3.32767]",
243
+ "System.Buffers": "(,5.0.32767]",
244
+ "System.Collections": "(,4.3.32767]",
245
+ "System.Collections.Concurrent": "(,4.3.32767]",
246
+ "System.Collections.Immutable": "(,10.0.32767]",
247
+ "System.Collections.NonGeneric": "(,4.3.32767]",
248
+ "System.Collections.Specialized": "(,4.3.32767]",
249
+ "System.ComponentModel": "(,4.3.32767]",
250
+ "System.ComponentModel.Annotations": "(,4.3.32767]",
251
+ "System.ComponentModel.EventBasedAsync": "(,4.3.32767]",
252
+ "System.ComponentModel.Primitives": "(,4.3.32767]",
253
+ "System.ComponentModel.TypeConverter": "(,4.3.32767]",
254
+ "System.Console": "(,4.3.32767]",
255
+ "System.Data.Common": "(,4.3.32767]",
256
+ "System.Data.DataSetExtensions": "(,4.4.32767]",
257
+ "System.Diagnostics.Contracts": "(,4.3.32767]",
258
+ "System.Diagnostics.Debug": "(,4.3.32767]",
259
+ "System.Diagnostics.DiagnosticSource": "(,10.0.32767]",
260
+ "System.Diagnostics.FileVersionInfo": "(,4.3.32767]",
261
+ "System.Diagnostics.Process": "(,4.3.32767]",
262
+ "System.Diagnostics.StackTrace": "(,4.3.32767]",
263
+ "System.Diagnostics.TextWriterTraceListener": "(,4.3.32767]",
264
+ "System.Diagnostics.Tools": "(,4.3.32767]",
265
+ "System.Diagnostics.TraceSource": "(,4.3.32767]",
266
+ "System.Diagnostics.Tracing": "(,4.3.32767]",
267
+ "System.Drawing.Primitives": "(,4.3.32767]",
268
+ "System.Dynamic.Runtime": "(,4.3.32767]",
269
+ "System.Formats.Asn1": "(,10.0.32767]",
270
+ "System.Formats.Tar": "(,10.0.32767]",
271
+ "System.Globalization": "(,4.3.32767]",
272
+ "System.Globalization.Calendars": "(,4.3.32767]",
273
+ "System.Globalization.Extensions": "(,4.3.32767]",
274
+ "System.IO": "(,4.3.32767]",
275
+ "System.IO.Compression": "(,4.3.32767]",
276
+ "System.IO.Compression.ZipFile": "(,4.3.32767]",
277
+ "System.IO.FileSystem": "(,4.3.32767]",
278
+ "System.IO.FileSystem.AccessControl": "(,4.4.32767]",
279
+ "System.IO.FileSystem.DriveInfo": "(,4.3.32767]",
280
+ "System.IO.FileSystem.Primitives": "(,4.3.32767]",
281
+ "System.IO.FileSystem.Watcher": "(,4.3.32767]",
282
+ "System.IO.IsolatedStorage": "(,4.3.32767]",
283
+ "System.IO.MemoryMappedFiles": "(,4.3.32767]",
284
+ "System.IO.Pipelines": "(,10.0.32767]",
285
+ "System.IO.Pipes": "(,4.3.32767]",
286
+ "System.IO.Pipes.AccessControl": "(,5.0.32767]",
287
+ "System.IO.UnmanagedMemoryStream": "(,4.3.32767]",
288
+ "System.Linq": "(,4.3.32767]",
289
+ "System.Linq.AsyncEnumerable": "(,10.0.32767]",
290
+ "System.Linq.Expressions": "(,4.3.32767]",
291
+ "System.Linq.Parallel": "(,4.3.32767]",
292
+ "System.Linq.Queryable": "(,4.3.32767]",
293
+ "System.Memory": "(,5.0.32767]",
294
+ "System.Net.Http": "(,4.3.32767]",
295
+ "System.Net.Http.Json": "(,10.0.32767]",
296
+ "System.Net.NameResolution": "(,4.3.32767]",
297
+ "System.Net.NetworkInformation": "(,4.3.32767]",
298
+ "System.Net.Ping": "(,4.3.32767]",
299
+ "System.Net.Primitives": "(,4.3.32767]",
300
+ "System.Net.Requests": "(,4.3.32767]",
301
+ "System.Net.Security": "(,4.3.32767]",
302
+ "System.Net.ServerSentEvents": "(,10.0.32767]",
303
+ "System.Net.Sockets": "(,4.3.32767]",
304
+ "System.Net.WebHeaderCollection": "(,4.3.32767]",
305
+ "System.Net.WebSockets": "(,4.3.32767]",
306
+ "System.Net.WebSockets.Client": "(,4.3.32767]",
307
+ "System.Numerics.Vectors": "(,5.0.32767]",
308
+ "System.ObjectModel": "(,4.3.32767]",
309
+ "System.Private.DataContractSerialization": "(,4.3.32767]",
310
+ "System.Private.Uri": "(,4.3.32767]",
311
+ "System.Reflection": "(,4.3.32767]",
312
+ "System.Reflection.DispatchProxy": "(,6.0.32767]",
313
+ "System.Reflection.Emit": "(,4.7.32767]",
314
+ "System.Reflection.Emit.ILGeneration": "(,4.7.32767]",
315
+ "System.Reflection.Emit.Lightweight": "(,4.7.32767]",
316
+ "System.Reflection.Extensions": "(,4.3.32767]",
317
+ "System.Reflection.Metadata": "(,10.0.32767]",
318
+ "System.Reflection.Primitives": "(,4.3.32767]",
319
+ "System.Reflection.TypeExtensions": "(,4.3.32767]",
320
+ "System.Resources.Reader": "(,4.3.32767]",
321
+ "System.Resources.ResourceManager": "(,4.3.32767]",
322
+ "System.Resources.Writer": "(,4.3.32767]",
323
+ "System.Runtime": "(,4.3.32767]",
324
+ "System.Runtime.CompilerServices.Unsafe": "(,7.0.32767]",
325
+ "System.Runtime.CompilerServices.VisualC": "(,4.3.32767]",
326
+ "System.Runtime.Extensions": "(,4.3.32767]",
327
+ "System.Runtime.Handles": "(,4.3.32767]",
328
+ "System.Runtime.InteropServices": "(,4.3.32767]",
329
+ "System.Runtime.InteropServices.RuntimeInformation": "(,4.3.32767]",
330
+ "System.Runtime.Loader": "(,4.3.32767]",
331
+ "System.Runtime.Numerics": "(,4.3.32767]",
332
+ "System.Runtime.Serialization.Formatters": "(,4.3.32767]",
333
+ "System.Runtime.Serialization.Json": "(,4.3.32767]",
334
+ "System.Runtime.Serialization.Primitives": "(,4.3.32767]",
335
+ "System.Runtime.Serialization.Xml": "(,4.3.32767]",
336
+ "System.Security.AccessControl": "(,6.0.32767]",
337
+ "System.Security.Claims": "(,4.3.32767]",
338
+ "System.Security.Cryptography.Algorithms": "(,4.3.32767]",
339
+ "System.Security.Cryptography.Cng": "(,5.0.32767]",
340
+ "System.Security.Cryptography.Csp": "(,4.3.32767]",
341
+ "System.Security.Cryptography.Encoding": "(,4.3.32767]",
342
+ "System.Security.Cryptography.OpenSsl": "(,5.0.32767]",
343
+ "System.Security.Cryptography.Primitives": "(,4.3.32767]",
344
+ "System.Security.Cryptography.X509Certificates": "(,4.3.32767]",
345
+ "System.Security.Principal": "(,4.3.32767]",
346
+ "System.Security.Principal.Windows": "(,5.0.32767]",
347
+ "System.Security.SecureString": "(,4.3.32767]",
348
+ "System.Text.Encoding": "(,4.3.32767]",
349
+ "System.Text.Encoding.CodePages": "(,10.0.32767]",
350
+ "System.Text.Encoding.Extensions": "(,4.3.32767]",
351
+ "System.Text.Encodings.Web": "(,10.0.32767]",
352
+ "System.Text.Json": "(,10.0.32767]",
353
+ "System.Text.RegularExpressions": "(,4.3.32767]",
354
+ "System.Threading": "(,4.3.32767]",
355
+ "System.Threading.AccessControl": "(,10.0.32767]",
356
+ "System.Threading.Channels": "(,10.0.32767]",
357
+ "System.Threading.Overlapped": "(,4.3.32767]",
358
+ "System.Threading.Tasks": "(,4.3.32767]",
359
+ "System.Threading.Tasks.Dataflow": "(,10.0.32767]",
360
+ "System.Threading.Tasks.Extensions": "(,5.0.32767]",
361
+ "System.Threading.Tasks.Parallel": "(,4.3.32767]",
362
+ "System.Threading.Thread": "(,4.3.32767]",
363
+ "System.Threading.ThreadPool": "(,4.3.32767]",
364
+ "System.Threading.Timer": "(,4.3.32767]",
365
+ "System.ValueTuple": "(,4.5.32767]",
366
+ "System.Xml.ReaderWriter": "(,4.3.32767]",
367
+ "System.Xml.XDocument": "(,4.3.32767]",
368
+ "System.Xml.XmlDocument": "(,4.3.32767]",
369
+ "System.Xml.XmlSerializer": "(,4.3.32767]",
370
+ "System.Xml.XPath": "(,4.3.32767]",
371
+ "System.Xml.XPath.XDocument": "(,5.0.32767]"
372
+ }
373
+ }
374
+ }
375
+ }
376
+ }
@@ -0,0 +1,8 @@
1
+ {
2
+ "version": 2,
3
+ "dgSpecHash": "1Q2Yh0uXTy8=",
4
+ "success": true,
5
+ "projectFilePath": "C:\\Projects2\\Personal\\musketeer\\template\\dotnet-scaffold\\src\\__SolutionName__.Application\\__SolutionName__.Application.csproj",
6
+ "expectedPackageFiles": [],
7
+ "logs": []
8
+ }
@@ -0,0 +1,24 @@
1
+ <Project Sdk="Microsoft.NET.Sdk">
2
+
3
+ <!--
4
+ __SolutionName__.Domain enforces ZERO framework dependencies (Clean Architecture
5
+ rule). No PackageReference to Microsoft.*, EntityFrameworkCore, AspNetCore, etc.
6
+ The build target below fails the build if any PackageReference is ever added here.
7
+ -->
8
+ <Target Name="EnforceDomainHasNoFrameworkDependencies" BeforeTargets="Build">
9
+ <ItemGroup>
10
+ <_ForbiddenRef Include="@(PackageReference)" />
11
+ </ItemGroup>
12
+ <Error
13
+ Condition="'@(_ForbiddenRef)' != ''"
14
+ Text="__SolutionName__.Domain MUST NOT have PackageReferences (Clean Architecture rule). Found: @(_ForbiddenRef)" />
15
+ </Target>
16
+
17
+ <PropertyGroup>
18
+ <TargetFramework>net10.0</TargetFramework>
19
+ <LangVersion>latest</LangVersion>
20
+ <Nullable>enable</Nullable>
21
+ <ImplicitUsings>enable</ImplicitUsings>
22
+ </PropertyGroup>
23
+
24
+ </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__.Domain")]
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__.Domain")]
18
+ [assembly: System.Reflection.AssemblyTitleAttribute("__SolutionName__.Domain")]
19
+ [assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")]
20
+
21
+ // Generated by the MSBuild WriteCodeFragment class.
22
+
@@ -0,0 +1 @@
1
+ 71f109e1b935f313e17e4cf82aaedf1f76cfbe0031744a6202cd00a7835efbc3
@@ -0,0 +1,17 @@
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 =
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__.Domain
13
+ build_property.ProjectDir = C:\Projects2\Personal\musketeer\template\dotnet-scaffold\src\__SolutionName__.Domain\
14
+ build_property.EnableComHosting =
15
+ build_property.EnableGeneratedComInterfaceComImportInterop =
16
+ build_property.EffectiveAnalysisLevelStyle = 10.0
17
+ build_property.EnableCodeStyleSeverity =
@@ -0,0 +1,8 @@
1
+ // <auto-generated/>
2
+ global using System;
3
+ global using System.Collections.Generic;
4
+ global using System.IO;
5
+ global using System.Linq;
6
+ global using System.Net.Http;
7
+ global using System.Threading;
8
+ global using System.Threading.Tasks;