Merge pull request #49 from microsoft/users/shrverm/update-docs

update docs
This commit is contained in:
shadargee1982 2022-03-31 13:17:04 -07:00 коммит произвёл GitHub
Родитель ebe186b4be 1b275e7884
Коммит 949691b15f
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
4 изменённых файлов: 4 добавлений и 4 удалений

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

@ -30,7 +30,7 @@ To use `artifacts-keyring` to set up authentication between `pip`/`twine` and Az
* pip version **19.2** or higher
* twine version **1.13.0** or higher
* python version **3.0** or higher
* .Net Core runtime is installed. Refer to [here](https://docs.microsoft.com/en-us/dotnet/core/install/linux-ubuntu) for installation guideline.
* .Net SDK is installed. Refer to [here](https://docs.microsoft.com/en-us/dotnet/core/install/linux-ubuntu) for installation guideline.
### Publishing packages to an Azure Artifacts feed
Once `artifacts-keyring` is installed, to publish a package, use the following `twine` command, replacing **<org_name>** and **<feed_name>** with your own:

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

@ -3,7 +3,7 @@ universal = 1
[metadata]
name = artifacts-keyring
version = 0.3.1
version = 0.3.2
author = Microsoft Corporation
url = https://github.com/Microsoft/artifacts-keyring
license_file = LICENSE.txt

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

@ -6,7 +6,7 @@
from __future__ import absolute_import
__author__ = "Microsoft Corporation <python@microsoft.com>"
__version__ = "0.3.1"
__version__ = "0.3.2"
import json
import subprocess

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

@ -39,7 +39,7 @@ class CredentialProvider(object):
except Exception as e:
message = (
"Unable to find dependency dotnet, please manually install"
" the .NET Core runtime and ensure 'dotnet' is in your PATH. Error: "
" the .NET SDK and ensure 'dotnet' is in your PATH. Error: "
)
raise Exception(message + str(e))