Using the package manager console you can check if it is included or not.
First find out if the package exists:
Find-Package <Your Package>
Doing it with the System
package will give you something like:
Id Versions Description
-- -------- -----------
System.Buffers {4.5.1} Provides resource pooling of any type for performance-critical applications that allocate and deallocate objects frequently....
System.Memory {4.5.4} Provides types for efficient representation and pooling of managed, stack, and native memory segments and sequences of such s...
System.Threading.Tasks.Extensions {4.5.4} Provides additional types that simplify the work of writing concurrent and asynchronous code....
...
If you know the package is an actual package then you can skip the step above and type:
Get-Package <Your Package>
If it is included in .NET
by default you will get the following message:
No packages installed.
Otherwise you will get something like:
Id Versions Description
-- -------- -----------
MathParser.org-mXparser {4.4.2} mXparser is a super easy, rich, fast and highly flexible math expression parser library (parser and evaluator of mathematical...
Time Elapsed: 00:00:01.0141148