I am new to Powershell 7
I have a .txt log file formatted like this:
| Include | Version |
|---|---|
| Microsoft.ApplicationInsights | 2.17.0 |
| NewtonSoft.Json | 13.0.1 |
I need to iterate and read the package names and versions of this file and somehow insert the values into something like this:
dotnet package add {packagename} --version {version}
Any guidance on the best approach would be greatly appreciated.
Thanks.