Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 12 additions & 0 deletions docs/core/tools/dotnet-sln.md
Original file line number Diff line number Diff line change
Expand Up @@ -169,8 +169,20 @@ dotnet sln [<SOLUTION_FILE>] remove [-h|--help]
dotnet sln todo.sln add **/*.csproj
```

- Add multiple C# projects to a solution using a globbing pattern (Windows PowerShell only):

```dotnetcli
dotnet sln todo.sln add (ls **/*.csproj)
```

- Remove multiple C# projects from a solution using a globbing pattern (Unix/Linux only):

```dotnetcli
dotnet sln todo.sln remove **/*.csproj
```

- Remove multiple C# projects from a solution using a globbing pattern (Windows PowerShell only):

```dotnetcli
dotnet sln todo.sln remove (ls **/*.csproj)
```