Skip to content

Commit 7c61307

Browse files
author
Kraig Brockschmidt
committed
Merge remote-tracking branch 'refs/remotes/origin/master' into kraigb
2 parents e65cb3a + 9be2d4e commit 7c61307

File tree

2 files changed

+10
-5
lines changed

2 files changed

+10
-5
lines changed

docs/Quickstart/Create-and-Publish-a-Package.md

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -147,15 +147,18 @@ You're now ready to publish the package to nuget.org using the NuGet CLI. (Alter
147147
148148
1. At a command prompt, run the following command, replacing the key with the value copied in step 3:
149149
150+
```bash
150151
nuget push AppLogger.1.0.0.0.nupkg 47be3377-c434-4c29-8576-af7f6993a54b -Source https://www.nuget.org/api/v2/package
151-
152+
```
153+
152154
1. You should then see something like the following:
153155
156+
```
154157
Pushing AppLogger.1.0.0.0.nupkg to 'https://www.nuget.org/api/v2/package'...
155158
PUT https://www.nuget.org/api/v2/package/
156159
Created https://www.nuget.org/api/v2/package/ 6829ms
157-
Your package was pushed.
158-
160+
Your package was pushed.
161+
```
159162
160163
1. In your account on nuget.org, click **Manage my packages** to see the one that you just published; you'll also receive a confirmation email. Note that it might take a while for your package to be indexed and appear in search results where others can find it, during which time you'll see the following message on your package page:
161164
@@ -172,4 +175,4 @@ And that's it! You've just created and published your first NuGet package to [nu
172175
- [Publish a Package](../create-packages/publish-a-package.md)
173176
- [Support multiple target frameworks](../create-packages/supporting-multiple-target-frameworks.md)
174177
- [Dependency versions](../create-packages/dependency-versions.md)
175-
- [Creating localized packages](../create-packages/creating-localized-packages.md)
178+
- [Creating localized packages](../create-packages/creating-localized-packages.md)

docs/docfx.json

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,9 @@
3030
"externalReference": [],
3131
"globalMetadata": {
3232
"breadcrumb_path": "~/_breadcrumb/toc.yml",
33-
"ROBOTS": "INDEX,FOLLOW"},
33+
"ROBOTS": "INDEX,FOLLOW",
34+
"searchScope": ["NuGet"]
35+
},
3436
"fileMetadata": {},
3537
"template": [],
3638
"dest": "nuget"

0 commit comments

Comments
 (0)