You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: docs/artifacts/how-to/delete-and-recover-packages.md
+2-2
Original file line number
Diff line number
Diff line change
@@ -24,7 +24,7 @@ In this article, you'll learn how to:
24
24
> * Recover recently deleted packages from the Recycle Bin.
25
25
26
26
> [!NOTE]
27
-
> To delete/recover packages or set up retention policies, you must be a feed **Owner**.
27
+
> You must be a feed **Owner** or **Administrator** to delete packages or set up retention policies.
28
28
29
29
## Delete packages
30
30
@@ -84,7 +84,7 @@ Two options are available to delete a NuGet package from your feed, [Unlist](#qa
84
84
```
85
85
86
86
> [!NOTE]
87
-
> Azure DevOps and Visual Studio Team Foundation Server interpret the `nuget.exe delete`command as an unlist operation. To delete a package, you must use the REST API or the web interface.
87
+
> Azure DevOps and Visual Studio Team Foundation Server interpret the `nuget.exe delete`command as an unlist operation. To delete a package, you must use the [REST API](/rest/api/azure/devops/artifactspackagetypes/nuget/delete-package-version) or the web interface.
With Azure Artifacts, you can publish your NuGet packages to public or private feeds and share them with others based on your feed's visibility settings. This article will guide you through connecting to Azure Artifacts and publishing your NuGet packages.
15
+
With Azure Artifacts, you can publish your NuGet packages to public or private feeds and share them with others based on your feed's visibility settings. This article will guide you through connecting to Azure Artifacts and publishing and restoring your NuGet packages.
16
16
17
17
## Prerequisites
18
18
19
-
- An Azure DevOps organization. [Create an organization](../../organizations/accounts/create-organization.md), if you don't have one already.
19
+
- An Azure DevOps organization and a project. Create an [organization](../../organizations/accounts/create-organization.md) or a [project](../../organizations/projects/create-project.md#create-a-project)if you haven't already.
20
20
21
21
- An Azure Artifacts feed. [Create a new feed](../get-started-nuget.md#create-a-feed) if you don't have one already.
22
22
@@ -30,14 +30,14 @@ With Azure Artifacts, you can publish your NuGet packages to public or private f
30
30
31
31
## Publish packages
32
32
33
-
To publish a NuGet package to your feed, run the following command in an elevated command prompt. Replace the placeholders with the appropriate information:
33
+
Run the following command to publish your packages to your feed. Replace the placeholders with the appropriate information:
1. Create a [personal access token](../../organizations/accounts/use-personal-access-tokens-to-authenticate.md) (PAT) with **packaging read and write** scope.
51
51
52
-
1. Add your package source to your nuget.config file. This will add your PAT to your nuget.config file. Make sure to store this file in a safe place, and do not check this file into source control.
52
+
1. Add your package source to your nuget.config file. This will add your PAT to your nuget.config file. Store this file in a safe location, and make sure that you don't check it into source control. See [NuGet sources](/nuget/reference/cli-reference/cli-ref-sources) for more details.
Copy file name to clipboardexpand all lines: docs/organizations/security/allow-list-ip-url.md
+1-1
Original file line number
Diff line number
Diff line change
@@ -293,7 +293,7 @@ If you use Microsoft-hosted agent to run your jobs and you need the information
293
293
For more information about hosted Windows, Linux and macOS agents, see [Microsoft-hosted agent IP ranges](../../pipelines/agents/hosted.md#agent-ip-ranges).
294
294
295
295
### Azure Pipelines Self-hosted agents
296
-
If you're running a firewall and your code is in Azure Repos, see [Self-hosted Linux agents FAQs](../../pipelines/agents/windows-agent.md#im-running-a-firewall-and-my-code-is-in-azure-repos-what-urls-does-the-agent-need-to-communicate-with), [Self-hosted macOS agents FAQs](../../pipelines/agents/osx-agent.md#im-running-a-firewall-and-my-code-is-in-azure-repos-what-urls-does-the-agent-need-to-communicate-with) or [Self-hosted Windows agents FAQs](../../pipelines/agents/windows-agent.md#im-running-a-firewall-and-my-code-is-in-azure-repos-what-urls-does-the-agent-need-to-communicate-with). This article has information about which domain URLs and IP addresses your private agent needs to communicate with.
296
+
If you're running a firewall and your code is in Azure Repos, see [Self-hosted Linux agents FAQs](../../pipelines/agents/linux-agent.md#im-running-a-firewall-and-my-code-is-in-azure-repos-what-urls-does-the-agent-need-to-communicate-with), [Self-hosted macOS agents FAQs](../../pipelines/agents/osx-agent.md#im-running-a-firewall-and-my-code-is-in-azure-repos-what-urls-does-the-agent-need-to-communicate-with) or [Self-hosted Windows agents FAQs](../../pipelines/agents/windows-agent.md#im-running-a-firewall-and-my-code-is-in-azure-repos-what-urls-does-the-agent-need-to-communicate-with). This article has information about which domain URLs and IP addresses your private agent needs to communicate with.
Copy file name to clipboardexpand all lines: docs/pipelines/ecosystems/customize-python.md
+2-2
Original file line number
Diff line number
Diff line change
@@ -15,13 +15,13 @@ To create your first pipeline with Python, see the [Python quickstart](python.md
15
15
16
16
### Use a specific Python version
17
17
18
-
To use a specific version of Python in your pipeline, add the [Use Python Version task](/azure/devops/pipelines/tasks/reference/use-python-version-v0) to *azure-pipelines.yml*. This snippet sets the pipeline to use Python 3.6:
18
+
To use a specific version of Python in your pipeline, add the [Use Python Version task](/azure/devops/pipelines/tasks/reference/use-python-version-v0) to *azure-pipelines.yml*. This snippet sets the pipeline to use Python 3.11:
0 commit comments