@atlashub/smartstack-cli 1.10.1 → 1.11.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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@atlashub/smartstack-cli",
3
- "version": "1.10.1",
3
+ "version": "1.11.0",
4
4
  "description": "SmartStack Claude Code automation toolkit - GitFlow, APEX, EF Core migrations, prompts and more",
5
5
  "author": {
6
6
  "name": "SmartStack",
@@ -186,7 +186,8 @@ For each backend project, use Write tool to create:
186
186
  ```
187
187
 
188
188
  #### 3.2 Solution File ({ProjectName}.sln)
189
- Use `dotnet new sln` and `dotnet sln add` commands.
189
+ Use `dotnet new sln --format sln` and `dotnet sln add` commands.
190
+ > **Note:** L'option `--format sln` est requise depuis .NET 10 pour generer le format classique `.sln` compatible avec VS Code.
190
191
 
191
192
  #### 3.3 Domain Project
192
193
  - Create .csproj with MediatR.Contracts
@@ -328,7 +329,7 @@ Clean Architecture with CQRS pattern.
328
329
  ```bash
329
330
  cd {ProjectName}
330
331
  git init
331
- dotnet new sln -n {ProjectName}
332
+ dotnet new sln -n {ProjectName} --format sln
332
333
  dotnet sln add src/{ProjectName}.Domain
333
334
  dotnet sln add src/{ProjectName}.Application
334
335
  dotnet sln add src/{ProjectName}.Infrastructure
@@ -187,8 +187,8 @@ AskUserQuestion({
187
187
  mkdir -p "$PROJECT_NAME"
188
188
  cd "$PROJECT_NAME"
189
189
 
190
- # Creer la solution
191
- dotnet new sln -n "$PROJECT_NAME"
190
+ # Creer la solution (format classique .sln pour compatibilite VS Code)
191
+ dotnet new sln -n "$PROJECT_NAME" --format sln
192
192
 
193
193
  # Creer les projets
194
194
  dotnet new classlib -n "$PROJECT_NAME.Domain" -o "src/$PROJECT_NAME.Domain"