From a0292fd90bfed6569a9335645e715842bf7208a7 Mon Sep 17 00:00:00 2001 From: Thomas Nieto <38873752+ThomasNieto@users.noreply.github.com> Date: Mon, 2 Dec 2024 09:25:18 -0600 Subject: [PATCH] Add dynamic parameter examples --- README.md | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/README.md b/README.md index 96b33e3..79eecea 100644 --- a/README.md +++ b/README.md @@ -49,6 +49,18 @@ Installs packages to the NuGet global packages directory. Install-Package -Name System.Management.Automation ``` +### Install packages with specified framework + +```powershell +Install-Package -Name Avalonia -Provider NuGet -Framework netstandard2.0 +``` + +### Install packages with dependency behavior + +```powershell +Install-Package -Name Avalonia -Provider NuGet -DependencyBehavior Highest +``` + ### Save packages Saves packages to a directory.