We love your input! We want to make contributing to this project as easy and transparent as possible, whether it's:
- Reporting a bug
- Discussing the current state of the code
- Submitting a fix
- Proposing new features
- Becoming a maintainer
| $destinationDirectory = "C:\LocalNuGetTest\" | |
| $webClient = New-Object System.Net.WebClient | |
| $webClient.Credentials = New-Object System.Net.NetworkCredential("USERNAME", "PASSWORD") | |
| $feed =[xml]$webClient.DownloadString("https://hostednugetfeed.com/custom-feed/nuget/v2/Packages") | |
| $records = $feed | select -ExpandProperty feed | select -ExpandProperty entry #| select -ExpandProperty content | |
| for ($i=0; $i -lt $records.Length; $i++) { | |
| $content = $records[$i] | select -ExpandProperty content | |
| $properties = $records[$i] | select -ExpandProperty properties |
| $indexClient = new-object system.net.webclient | |
| $jsonIndex=$indexClient.DownloadString("https://api.nuget.org/v3/catalog0/index.json") | ConvertFrom-Json | |
| for ($h=0; $h -lt $jsonIndex.items.Length; $h++) { | |
| $web_client = new-object system.net.webclient | |
| $jsonObj=$web_client.DownloadString($jsonIndex.items[$h].'@id') | ConvertFrom-Json | |
| for ($i=0; $i -lt $jsonObj.items.Length; $i++) { | |
| $package = $jsonObj.items[$i]."nuget:id" + "/" + $jsonObj.items[$i]."nuget:version" | |
| $web_client.DownloadFile("https://www.nuget.org/api/v2/package/" + $package, ("C:\Nuget\" + $jsonObj.items[$i]."nuget:id" + "." + $jsonObj.items[$i]."nuget:version" + ".nupkg")) | |
| "Processing: " + ($h + 1) + " of " + $jsonIndex.count + " ---- " + ($i + 1) + " of " + $jsonObj.count + " - " + $jsonObj.items[$i]."nuget:id" + "." + $jsonObj.items[$i]."nuget:version" | |
| } |
Authentication means determining who a particular user is. Authorization means applying rules about what they can do. Blazor contains features for handling both aspects of this.
It worth remembering how the overall goals differ between server-side Blazor and client-side Blazor:
| DEL %userprofile%\AppData\Local\Microsoft\VisualStudio\10.0\ComponentModelCache | |
| DEL %userprofile%\AppData\Local\Microsoft\VisualStudio\12.0\ComponentModelCache | |
| DEL %userprofile%\AppData\Local\Microsoft\VisualStudio\14.0\ComponentModelCache |
Sammlung von Lizenz-Schildern (Badges) für die README-Datei deines Projekts. Diese Liste enthält die meist verbreiteten Open Source und Open Data Lizenzen. Kopieren und fügen Sie den Code unter den Badges einfach in Ihre Markdown-Dateien ein.