From 1b3a93e0e24b7807b209ec733ad447a268a1a2d9 Mon Sep 17 00:00:00 2001 From: Tom Dykstra Date: Mon, 13 Apr 2020 11:29:45 -0700 Subject: [PATCH] add globbing pattern for windows --- docs/core/tools/dotnet-sln.md | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/docs/core/tools/dotnet-sln.md b/docs/core/tools/dotnet-sln.md index c0d509d04def9..6c86bdd25ed27 100644 --- a/docs/core/tools/dotnet-sln.md +++ b/docs/core/tools/dotnet-sln.md @@ -169,8 +169,20 @@ dotnet sln [] 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) + ```