Add documentation for --option argument (#667)

This commit is contained in:
Taylor Southwick 2021-06-25 11:01:42 -07:00 коммит произвёл GitHub
Родитель a8f00be1bd
Коммит 608b619499
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
1 изменённых файлов: 19 добавлений и 1 удалений

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

@ -87,11 +87,29 @@ namespace Microsoft.DotNet.UpgradeAssistant
public class SomeOptions
{
public string Value { get; set; }
}
}
```
This can then be used in a couple of ways:
In order to set these values, you can either do it via `ExtensionManifest.json`:
```json
{
"sectionName": {
"Value": "hello"
}
}
```
or via the command line:
```
upgrade-assistant [...] --option "sectionName:Value=other"
```
This can then be access from within an extension in a couple of ways:
```csharp
using Microsoft.DotNet.UpgradeAssistant.Extensions;