File tree 2 files changed +37
-0
lines changed
2 files changed +37
-0
lines changed Original file line number Diff line number Diff line change 1
1
{
2
2
"words" : [
3
3
" anypackage" ,
4
+ " Avalonia" ,
4
5
" Defaultv" ,
5
6
" netstandard" ,
6
7
" Nieto" ,
Original file line number Diff line number Diff line change @@ -32,3 +32,39 @@ Import-Module AnyPackage.NuGet
32
32
``` powershell
33
33
Find-Package -Name System.Management.Automation
34
34
```
35
+
36
+ ### Get installed packages
37
+
38
+ Gets installed packages from the NuGet global packages directory.
39
+
40
+ ``` powershell
41
+ Get-Package
42
+ ```
43
+
44
+ ### Install packages
45
+
46
+ Installs packages to the NuGet global packages directory.
47
+
48
+ ``` powershell
49
+ Install-Package -Name System.Management.Automation
50
+ ```
51
+
52
+ ### Install packages with specified framework
53
+
54
+ ``` powershell
55
+ Install-Package -Name Avalonia -Provider NuGet -Framework netstandard2.0
56
+ ```
57
+
58
+ ### Install packages with dependency behavior
59
+
60
+ ``` powershell
61
+ Install-Package -Name Avalonia -Provider NuGet -DependencyBehavior Highest
62
+ ```
63
+
64
+ ### Save packages
65
+
66
+ Saves packages to a directory.
67
+
68
+ ``` powershell
69
+ Save-Package -Name System.Management.Automation -Path C:\Temp
70
+ ```
You can’t perform that action at this time.
0 commit comments