- Start by pressing your Windows or Start button, then type
terminal
and press enter (you can also useCommand Promptfor this instead of terminal if you prefer).
- Make sure you stand in your project folder. Type
cd D:\Repos\Mdk.PbScript1\and press enter. ObviouslyMdk.PbScript1is an example placeholder here.
- To see if there are any update available, type:
dotnet list package --outdated
and press enter.
Here we can see that we have two MDK2 packages with updates available.
- Update an individual package. Type
dotnet add package Mal.Mdk2.PbAnalyzers
and press enter.
Repeat this for all the packages you want to update.