Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
特定のディレクトリですべてのソリューション ファイル (.sln) を検索し、それらをすべてビルドする方法はありますか?
このバッチファイルを使用できます。
for /F %%a in ('dir *.sln /s/b') do msbuild "%%a"
これを行うには、バッチまたは PowerShell を使用してファイルセットを検索し、ビルド プロセスのコマンドライン呼び出しを実行します。