The new home for NuGetPackageExplorer (moved from https://npe.codeplex.com)
clairernovotny on v5.10.43
clairernovotny on main
Update to use ConnectionString … (compare)
clairernovotny on main
Update to latest nuget (compare)
clairernovotny on main
Update to latest AI (compare)
dependabot-preview[bot] on nuget
dependabot-preview[bot] on main
Bump Nerdbank.GitVersioning fro… Merge pull request #1292 from N… (compare)
dependabot-preview[bot] on nuget
Bump Nerdbank.GitVersioning fro… (compare)
dependabot-preview[bot] on main
Bump Humanizer from 2.10.1 to 2… Merge pull request #1290 from N… (compare)
dependabot-preview[bot] on nuget
dependabot-preview[bot] on nuget
Bump Humanizer from 2.10.1 to 2… (compare)
clairernovotny on main
CrossGen2 is causing issuses F… Update WinX86.pubxml Update WinARM64.pubxml and 2 more (compare)
clairernovotny on disable-crossgen2
Our initial version of the “Web API OData based v2 service”, or “new API v2” in short, is a 1:1 port of the old API v2. No changes in the API have been made: no query functionality was removed. We did make some caching changes to improve perceived performance for developers in older versions of the client that are using the v2 endpoint (2013, 2012, 2010).
var client = new WebClient();
if (onDownloadProgressChanged != null)
client.DownloadProgressChanged += new DownloadProgressChangedEventHandler(onDownloadProgressChanged);
if (onDownloadComplete != null)
client.DownloadFileCompleted += new AsyncCompletedEventHandler(onDownloadComplete);
client.DownloadFileAsync(downloadSource, downloadDestination, downloadDestination);
}
var client = new WebClient();
if (onDownloadProgressChanged != null)
client.DownloadProgressChanged += new DownloadProgressChangedEventHandler(onDownloadProgressChanged);
if (onDownloadComplete != null)
client.DownloadFileCompleted += new AsyncCompletedEventHandler(onDownloadComplete);
client.DownloadFileAsync(downloadSource, downloadDestination, downloadDestination);
}</code>