Convert TXT to EMF via C++ application
Try our On-Premise APIs for your document conversion using C++ Runtime Environment for Windows 32 bit, Windows 64 bit and Linux 64 bit....from NuGet × Open NuGet packagemanager, search for Aspose.Cells...the PackageManagerConsole. Copied! PM> Install-Package Aspose...
products.aspose.com/cells/cpp/conversion/txt-to...Convert XLT to SVG via C++ application
Try our On-Premise APIs for your document conversion using C++ Runtime Environment for Windows 32 bit, Windows 64 bit and Linux 64 bit....from NuGet × Open NuGet packagemanager, search for Aspose.Cells...the PackageManagerConsole. Copied! PM> Install-Package Aspose...
products.aspose.com/cells/cpp/conversion/xlt-to...Convert XLTM to TIFF via C++ application
Try our On-Premise APIs for your document conversion using C++ Runtime Environment for Windows 32 bit, Windows 64 bit and Linux 64 bit....from NuGet × Open NuGet packagemanager, search for Aspose.Cells...the PackageManagerConsole. Copied! PM> Install-Package Aspose...
products.aspose.com/cells/cpp/conversion/xltm-t...Convert TXT to TIFF via C++ application
Try our On-Premise APIs for your document conversion using C++ Runtime Environment for Windows 32 bit, Windows 64 bit and Linux 64 bit....from NuGet × Open NuGet packagemanager, search for Aspose.Cells...the PackageManagerConsole. Copied! PM> Install-Package Aspose...
products.aspose.com/cells/cpp/conversion/txt-to...Convert XLT to PNG via C++ application
Try our On-Premise APIs for your document conversion using C++ Runtime Environment for Windows 32 bit, Windows 64 bit and Linux 64 bit....from NuGet × Open NuGet packagemanager, search for Aspose.Cells...the PackageManagerConsole. Copied! PM> Install-Package Aspose...
products.aspose.com/cells/cpp/conversion/xlt-to...Generate MAXICODE BarCode Images via .NET
Try our On-Premise MAXICODE Barcode Image Generation API on .NET Framework, .NET Standard, COM Interloop for PHP, VBScript, Delphi, C++....from NuGet × Open NuGet packagemanager, search for Aspose.BarCode...the PackageManagerConsole. Copied! PM> Install-Package Aspose...
Generate SSCC18 BarCode Images via .NET
Try our On-Premise SSCC18 Barcode Image Generation API on .NET Framework, .NET Standard, COM Interloop for PHP, VBScript, Delphi, C++....from NuGet × Open NuGet packagemanager, search for Aspose.BarCode...the PackageManagerConsole. Copied! PM> Install-Package Aspose...
Generate GS1DATAMATRIX BarCode Images via .NET
Try our On-Premise GS1DATAMATRIX Barcode Image Generation API on .NET Framework, .NET Standard, COM Interloop for PHP, VBScript, Delphi, C++....from NuGet × Open NuGet packagemanager, search for Aspose.BarCode...the PackageManagerConsole. Copied! PM> Install-Package Aspose...
products.aspose.com/barcode/net/generate/gs1dat...Generate UPCAGS1DATABARCOUPON BarCode Images vi...
Try our On-Premise UPCAGS1DATABARCOUPON Barcode Image Generation API on .NET Framework, .NET Standard, COM Interloop for PHP, VBScript, Delphi, C++....from NuGet × Open NuGet packagemanager, search for Aspose.BarCode...the PackageManagerConsole. Copied! PM> Install-Package Aspose...
products.aspose.com/barcode/net/generate/upcags...Generate PATCHCODE BarCode Images via .NET
Try our On-Premise PATCHCODE Barcode Image Generation API on .NET Framework, .NET Standard, COM Interloop for PHP, VBScript, Delphi, C++....from NuGet × Open NuGet packagemanager, search for Aspose.BarCode...the PackageManagerConsole. Copied! PM> Install-Package Aspose...
products.aspose.com/barcode/net/generate/patchcode
The Package Manager Console is available within Visual Studio by going to Tools » Nuget Package Manager. If you want to use the Package Manager Console to execute migrations command, you need to ensure that the latest version of Microsoft.EntityFrameworkCore.Tools is added to your project.json file. The Package Manager Console is a PowerShell console within Visual Studio used to interact with NuGet and automate Visual Studio. You can access the Package Manager Console from within Visual Studio by going to Tools - Library Package Manager - Package Manager Console. The following is a screen shot for the console.
Adding multiple nuget packages to the project from package manager console
If you are using Visual Studio 2017 as your main IDE, than you are probably familiar and used at least once NuGet package manager console. You may know or maybe not, but NuGet Package Manager relies on PowerShell script and Package Manager Console is basically hosted PowerShell command line inside Visual Studio.

This means, apart from NuGet commands, you can also execute PowerShell commands.
This allows great extensibility as you can write any PowerShell script you need and use it from Visual Studio directly from the hosted PowerShell terminal which is Package Manager Console.
Install-Packages PowerShell function

Now, NuGet has one limitation which makes it a bit less awesome than it is. Unlike other package managers out here for different frameworks, NuGet does not have option to install multiple packages from the single command line.
However, since it is PowerShell based, it means you can easily extend your development environment with a simple PowerShell script. The following is the script I wrote which enables me to install multiple packages. The following function wraps up Install-Package command to receive multiple packages for installation.
Since it is a wrapper function around Install-Package, some of the arguments used in Install-Package command are omitted and it only supports passing version and pre-release optional argument apart from mandatory package name argument. Anyway, it is a nice base if you want to extend it and suite it to your needs.

More about Package Manager PowerShell command options and argument you can find in articles Install-Package (Package Manager Console in Visual Studio) and PowerShell reference.

Making custom made PowerShell function available in Visual Studio Package Manager Console
We have the function that will install multiple packages for us, but we are not done yet. This function is not available in the PM. To do so, we need to register a profile. Full text about PowerShell profiles you can find in article Understanding the Six PowerShell Profiles. To cut the story short, you need to place the function above in one of the file paths from the table below.

Description | Path |
Current User, Current Host - console | $Home[My ]DocumentsWindowsPowerShellProfile.ps1 |
Current User, All Hosts | $Home[My ]DocumentsProfile.ps1 |
All Users, Current Host - console | $PsHomeMicrosoft.PowerShell_profile.ps1 |
All Users, All Hosts | $PsHomeProfile.ps1 |
Current user, Current Host - ISE | $Home[My ]DocumentsWindowsPowerShellMicrosoft.P owerShellISE_profile.ps1 |
All users, Current Host - ISE | $PsHomeMicrosoft.PowerShellISE_profile.ps1 |
Since I am doing development on my personal laptop and there are no accounts apar from mine on the machine I created my file with the function at C:UsersDejanWindowsPowerShellProfile.ps1
If you have Visual Studio already opened, you might not have this option available in the PM right away, for the simple reason of Visual Studio 2017 reads the profile file on the startup. So restart your Visual Studio and you should have Install-Packages method available in your VS2017 PM.
The usage of the function is pretty simple since you have only pre-release and version option.
If you need more option, you might consider extending the function to suite your requirements.
References
Visual Studio Package Manager Console
Disclaimer
Purpose of the code contained in snippets or available for download in this article is solely for learning and demo purposes. Author will not be held responsible for any failure or damages caused due to any other usage.