Skip to content

Commit 8f0bb8b

Browse files
authored
master to live (NuGet#881)
* Update rate limits for package push & unlist APIs Docs change for NuGet/NuGetGallery#5821. DO NOT MERGE YET! To be merged when change is live. * fix package description msbuild property * Update cli-ref-install.md * Address #871 * Address #868 * Address #873 * Small edit to address #870 * fixed exclude files copy/paste error Source Files in the Exclude example were a pattern, not a discreet set of files. If I've misunderstood, let me know! * 4.7 relnotes (NuGet#876) * Create NuGet-4.7-RTM.md * Update NuGet-4.7-RTM.md * Update NuGet-4.7-RTM.md * Updates * updates * 4.7 rtm * 4.7rtm * Update NuGet-4.7-RTM.md * Added more concrete file names Hopefully this is more clear. * init commit * Update NuGet-4.7-RTM.md (NuGet#879)
1 parent 00c4c80 commit 8f0bb8b

File tree

3 files changed

+22
-5
lines changed

3 files changed

+22
-5
lines changed

docs/api/rate-limits.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,5 +42,5 @@ The following tables list the rate limits for the NuGet.org API.
4242

4343
| API | Limit Type | Limit Value | API usecase |
4444
|:---|:---|:---|:--- |
45-
**PUT** `/api/v2/package` | API Key | 100 / minute | Upload a new NuGet package (version) via v2 push endpoint
46-
**DELETE** `/api/v2/package/{id}/{version}` | API Key | 100 / minute | Unlist a NuGet package (version) via v2 endpoint
45+
**PUT** `/api/v2/package` | API Key | 250 / hour | Upload a new NuGet package (version) via v2 push endpoint
46+
**DELETE** `/api/v2/package/{id}/{version}` | API Key | 250 / hour | Unlist a NuGet package (version) via v2 endpoint

docs/reference/nuspec.md

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -384,9 +384,10 @@ Each `<file>` element specifies the following attributes:
384384
**Excluding files**
385385

386386
Source files:
387-
\tools\*.bak
388-
\tools\*.log
389-
\tools\build\*.log
387+
\tools\fileA.bak
388+
\tools\fileB.bak
389+
\tools\fileA.log
390+
\tools\build\fileB.log
390391

391392
.nuspec entries:
392393
<file src="tools\*.*" target="tools" exclude="tools\*.bak" />

docs/release-notes/NuGet-4.7-RTM.md

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,22 @@ ms.topic: conceptual
2020

2121
## Known issues
2222

23+
### The `Migrate packages.config to PackageReference...` option is not available in the right-click context menu
24+
25+
#### Issue
26+
27+
When a project is first opened, NuGet may not have initialized until a NuGet operation is performed. This causes the migration option to not show up in the right-click context menu on `packages.config` or `References`.
28+
29+
#### Workaround
30+
31+
Peform any one of the following NuGet actions:
32+
* Open the Package Manager UI - Right-click on `References` and select `Manage NuGet Packages...`
33+
* Open the Package Manager Console - From `Tools > NuGet Package Manager`, select `Package Manager Console`
34+
* Run NuGet restore - Right-click on the solution node in the Solution Explorer and select `Restore NuGet Packages`
35+
* Build the project which also triggers NuGet restore
36+
37+
You should now be able to see the migration option. Note that this option is not supported and will not show up for ASP.NET and C++ project types.
38+
2339
### Issues with .NET Standard 2.0 with .NET Framework & NuGet
2440

2541
.NET Standard & its tooling was designed such that projects targeting .NET Framework 4.6.1 can consume NuGet packages & projects targeting .NET Standard 2.0 or earlier. [This document](https://github.com/dotnet/standard/issues/481) summarizes the issues around that scenario, the plan for addressing them, and workarounds you can deploy with today's state of the tooling.

0 commit comments

Comments
 (0)