Improve deployment script documentation. (#9916)

Fixes #9832

Context
Updating documentation concerning using the deployment PowerShell script on Linux.

---------

Co-authored-by: Roman Konecny <rokonecn@microsoft.com>
This commit is contained in:
AR-May 2024-03-27 13:28:39 +01:00 коммит произвёл GitHub
Родитель 6064d9c8fe
Коммит 7919d42ffc
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: B5690EEEBB952194
2 изменённых файлов: 8 добавлений и 1 удалений

Просмотреть файл

@ -22,3 +22,7 @@ If you cannot build or cannot deploy MSBuild on the same machine on which you wi
## .NET (Core) SDK
Deploy-MSBuild can also patch a .NET (Core) SDK installation. Pass the `-runtime Core` argument to `Deploy-MSBuild.ps1` to ensure that it selects .NET Core MSBuild.
### Linux
There isnt a shell script for deploying MSBuild. Instead, youll need to [install the PowerShell tool](https://learn.microsoft.com/powershell/scripting/install/installing-powershell-on-linux) and execute `Deploy-MSBuild.ps1` using the tool on Unix platforms with the command: `pwsh scripts\Deploy-MSBuild.ps1`.

Просмотреть файл

@ -12,7 +12,10 @@
* find targets [referencesource.microsoft.com/#MSBuildTarget=ResolveAssemblyReferences](https://referencesource.microsoft.com/#MSBuildTarget=ResolveAssemblyReferences)
# Tools
**Note:** These are third party tools
* [PowerShell](https://learn.microsoft.com/powershell/scripting/overview)
* Allows to execute powershell scripts in Windows, Linux, and macOS.
Third-party tools:
* [MSBuildStructuredLog](https://msbuildlog.com/)
* A log viewer that displays a structured representation of executed targets, tasks, property and item values.
* [MSBuildExtensionPack](https://github.com/mikefourie-zz/MSBuildExtensionPack) (also via [NuGet](https://www.nuget.org/packages/MSBuild.Extension.Pack))