如何使用 dotnet sln 将所有项目添加到单个解决方案中?
How to add all projects to a single solution with dotnet sln?
下面的示例来自 here 我正在尝试执行
dotnet sln AllProjects.sln add **/*.csproj
但是我得到这个错误:
Could not find project or directory **/*.csproj
.
通配符似乎不起作用。我做错了什么?
我错过了这个声明:
Globbing patterns are supported on Unix/Linux based terminals
我的 Windows PowerShell 解决方案如下所示:
$projects = Get-ChildItem -Recurse | Where-Object { $_.Name -match '^.+\.(csproj|vbproj)$' }
$uniqueProjects = $projects | Group-Object -Property Name | Where Count -EQ 1 | select -ExpandProperty Group | % { $_.FullName }
Invoke-Expression -Command "dotnet new sln -n AllProjects"
$uniqueProjects | % { Invoke-Expression -Command "dotnet sln AllProjects.sln add ""$_""" }
在 Windows 上,您还可以使用以下命令以递归方式将子目录中的所有项目添加到预先存在的解决方案文件中:
FOR /R %i IN (*.csproj) DO dotnet sln add "%i"
或者,如果您需要经常(重新)创建解决方案文件,那么您可以创建一个包含以下内容的批处理文件,然后在您需要时 运行 它:
dotnet new sln
FOR /R %%i IN (*.csproj) DO dotnet sln add "%%i"
请注意,在批处理文件中执行此操作时需要额外的 %。
对于 Windows,打开 PowerShell 并运行此命令将所有项目添加到解决方案文件:
dotnet sln add (ls -r **/*.csproj)
下面的示例来自 here 我正在尝试执行
dotnet sln AllProjects.sln add **/*.csproj
但是我得到这个错误:
Could not find project or directory
**/*.csproj
.
通配符似乎不起作用。我做错了什么?
我错过了这个声明:
Globbing patterns are supported on Unix/Linux based terminals
我的 Windows PowerShell 解决方案如下所示:
$projects = Get-ChildItem -Recurse | Where-Object { $_.Name -match '^.+\.(csproj|vbproj)$' }
$uniqueProjects = $projects | Group-Object -Property Name | Where Count -EQ 1 | select -ExpandProperty Group | % { $_.FullName }
Invoke-Expression -Command "dotnet new sln -n AllProjects"
$uniqueProjects | % { Invoke-Expression -Command "dotnet sln AllProjects.sln add ""$_""" }
在 Windows 上,您还可以使用以下命令以递归方式将子目录中的所有项目添加到预先存在的解决方案文件中:
FOR /R %i IN (*.csproj) DO dotnet sln add "%i"
或者,如果您需要经常(重新)创建解决方案文件,那么您可以创建一个包含以下内容的批处理文件,然后在您需要时 运行 它:
dotnet new sln
FOR /R %%i IN (*.csproj) DO dotnet sln add "%%i"
请注意,在批处理文件中执行此操作时需要额外的 %。
对于 Windows,打开 PowerShell 并运行此命令将所有项目添加到解决方案文件:
dotnet sln add (ls -r **/*.csproj)