Skip to content

Commit d00fb7f

Browse files
author
Kraig Brockschmidt
committed
Test code tag
1 parent 72d6556 commit d00fb7f

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

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

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ Every NuGet package needs a manifest–a .nuspec file–to describe its contents
6868

6969
1. Open the file in your favorite text editor. It will look something like the code below, where tokens in the form *$<token>$* will be replaced during the packaging process with values from the project's Properties/AssemblyInfo.cs file. For more details on tokens, see [Creating a .nuspec file](../create-packages/creating-a-package.md#creating-the-nuspec-file).
7070

71-
```xml
71+
```xml
7272
<?xml version="1.0"?>
7373
<package>
7474
<metadata>
@@ -87,11 +87,11 @@ Every NuGet package needs a manifest–a .nuspec file–to describe its contents
8787
<tags>Tag1 Tag2</tags>
8888
</metadata>
8989
</package>
90-
```
90+
```
9191

9292
1. Select a package ID that is unique across nuget.org. We recommend using the naming conventions described in [Creating a package](../create-packages/creating-a-package.md#choosing-a-unique-package-identifier-and-setting-the-version-number). You must also update the author and description tags or you will get an error in the next step. Here's an updated .nuspec file as an example:
9393

94-
```xml
94+
```xml
9595
<?xml version="1.0"?>
9696
<package>
9797
<metadata>
@@ -107,7 +107,7 @@ Every NuGet package needs a manifest–a .nuspec file–to describe its contents
107107
<tags>application app logger logging logs</tags>
108108
</metadata>
109109
</package>
110-
```
110+
```
111111

112112
> [!Note]
113113
> For packages built for public consumption, pay special attention to the &lt;tags&gt; element, as these tags help others find your package and understand what it does.

0 commit comments

Comments
 (0)