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/create-packages/Native-Packages.md
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -9,7 +9,7 @@ ms.topic: conceptual
9
9
10
10
# Creating native packages
11
11
12
-
A native package contains native C++ code instead of managed code, allowing it to be used within C++ projects. (See [Native C++ Packages](../consume-packages/finding-and-choosing-packages.md#native-c-packages) in the Consume section.)
12
+
A native package contains native binaries instead of managed assemblies, allowing it to be used within C++ (or similar) projects. (See [Native C++ Packages](../consume-packages/finding-and-choosing-packages.md#native-c-packages) in the Consume section.)
13
13
14
14
To be consumable in a C++ project, a package must target the `native` framework. At present there are not any version numbers associated with this framework as NuGet treats all C++ projects the same.
Copy file name to clipboardExpand all lines: docs/faqs/NuGet-FAQ.md
+3-5Lines changed: 3 additions & 5 deletions
Original file line number
Diff line number
Diff line change
@@ -232,15 +232,13 @@ If that fails, try the [tips mentioned in this StackOverflow post](http://stacko
232
232
233
233
## What is the API endpoint for nuget.org?
234
234
235
-
To use nuget.org as a package repository with NuGet clients, you would need to use the following V3 API endpoint:
235
+
To use nuget.org as a package repository with NuGet clients, you should use the following V3 API endpoint:
236
236
237
237
**`https://api.nuget.org/v3/index.json`**
238
238
239
-
Older clients can still use the v2 protocol to reach nuget.org. However, please note, NuGet clients 3.0 or later will have slower and less-reliable service using the v2 protocol:
239
+
Older clients can still use the V2 protocol to reach nuget.org. However, please note, NuGet clients 3.0 or later will have slower and less-reliable service using the V2 protocol:
240
240
241
-
`https://www.nuget.org/api/v2/` (DEPRECATED!!!) **Note:** the "www." is important.
242
-
243
-
Additionally, *NuGet.exe List* only works with the v2 protocol.
241
+
`https://www.nuget.org/api/v2` (DEPRECATED!!!) **Note:** use "www." for the best reliability.
Copy file name to clipboardExpand all lines: docs/hosting-packages/Overview.md
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -20,7 +20,7 @@ For all such purposes, NuGet supports setting up private package sources in the
20
20
21
21
There are also several other NuGet hosting products that support remote private feeds, including the following:
22
22
23
-
-[Visual Studio Team Services Package Management](https://www.visualstudio.com/docs/package/nuget/publish), which is also available on Team Foundation Server 2017 and later.
23
+
-[Azure Artifacts](https://www.visualstudio.com/docs/package/nuget/publish), which is also available on Team Foundation Server 2017 and later.
24
24
-[MyGet](http://myget.org)
25
25
-[ProGet](http://inedo.com/proget) from Inedo
26
26
-[NuGet Server](http://nugetserver.net/), a community project from Inedo
Copy file name to clipboardExpand all lines: docs/tools/cli-ref-pack.md
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -38,7 +38,7 @@ where `<nuspecPath>` and `<projectPath>` specify the `.nuspec` or project file,
38
38
| IncludeReferencedProjects | Indicates that the built package should include referenced projects either as dependencies or as part of the package. If a referenced project has a corresponding `.nuspec` file that has the same name as the project, then that referenced project is added as a dependency. Otherwise, the referenced project is added as part of the package. |
39
39
| MinClientVersion | Set the *minClientVersion* attribute for the created package. This value will override the value of the existing *minClientVersion* attribute (if any) in the `.nuspec` file. |
40
40
| MSBuildPath |*(4.0+)* Specifies the path of MSBuild to use with the command, taking precedence over `-MSBuildVersion`. |
41
-
| MSBuildVersion |*(3.2+)* Specifies the version of MSBuild to be used with this command. Supported values are 4, 12, 14, 15. By default the MSBuild in your path is picked, otherwise it defaults to the highest installed version of MSBuild. |
41
+
| MSBuildVersion |*(3.2+)* Specifies the version of MSBuild to be used with this command. Supported values are 4, 12, 14, 15.1, 15.3, 15.4, 15.5, 15.6, 15.7, 15.8, 15.9. By default the MSBuild in your path is picked, otherwise it defaults to the highest installed version of MSBuild. |
42
42
| NoDefaultExcludes | Prevents default exclusion of NuGet package files and files and folders starting with a dot, such as `.svn` and `.gitignore`. |
43
43
| NoPackageAnalysis | Specifies that pack should not run package analysis after building the package. |
44
44
| OutputDirectory | Specifies the folder in which the created package is stored. If no folder is specified, the current folder is used. |
Copy file name to clipboardExpand all lines: docs/tools/cli-ref-restore.md
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -34,7 +34,7 @@ where `<projectPath>` specifies the location of a solution or a `packages.config
34
34
| ForceEnglishOutput |*(3.5+)* Forces nuget.exe to run using an invariant, English-based culture. |
35
35
| Help | Displays help information for the command. |
36
36
| MSBuildPath |*(4.0+)* Specifies the path of MSBuild to use with the command, taking precedence over `-MSBuildVersion`. |
37
-
| MSBuildVersion |*(3.2+)* Specifies the version of MSBuild to be used with this command. Supported values are 4, 12, 14, 15. By default the MSBuild in your path is picked, otherwise it defaults to the highest installed version of MSBuild. |
37
+
| MSBuildVersion |*(3.2+)* Specifies the version of MSBuild to be used with this command. Supported values are 4, 12, 14, 15.1, 15.3, 15.4, 15.5, 15.6, 15.7, 15.8, 15.9. By default the MSBuild in your path is picked, otherwise it defaults to the highest installed version of MSBuild. |
38
38
| NoCache | Prevents NuGet from using cached packages. See [Managing the global packages and cache folders](../consume-packages/managing-the-global-packages-and-cache-folders.md). |
39
39
| NonInteractive | Suppresses prompts for user input or confirmations. |
40
40
| OutputDirectory | Specifies the folder in which packages are installed. If no folder is specified, the current folder is used. Required when restoring with a `packages.config` file unless `PackagesDirectory` or `SolutionDirectory` is used.|
Copy file name to clipboardExpand all lines: docs/tools/cli-ref-update.md
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -37,7 +37,7 @@ where `<configPath>` identifies either a `packages.config` or solution file that
37
37
| Help | Displays help information for the command. |
38
38
| Id | Specifies a list of package IDs to update. |
39
39
| MSBuildPath |*(4.0+)* Specifies the path of MSBuild to use with the command, taking precedence over `-MSBuildVersion`. |
40
-
| MSBuildVersion |*(3.2+)* Specifies the version of MSBuild to be used with this command. Supported values are 4, 12, 14, 15. By default the MSBuild in your path is picked, otherwise it defaults to the highest installed version of MSBuild. |
40
+
| MSBuildVersion |*(3.2+)* Specifies the version of MSBuild to be used with this command. Supported values are 4, 12, 14, 15.1, 15.3, 15.4, 15.5, 15.6, 15.7, 15.8, 15.9. By default the MSBuild in your path is picked, otherwise it defaults to the highest installed version of MSBuild. |
41
41
| NonInteractive | Suppresses prompts for user input or confirmations. |
42
42
| PreRelease | Allows updating to prerelease versions. This flag is not required when updating prerelease packages that are already installed. |
43
43
| RepositoryPath | Specifies the local folder where packages are installed. |
0 commit comments