How to view source code from downloaded packages in Visual Studio

I am working on TOTP and downloaded the package in Visual Studio 2013:

Tools --> Library Package Manager --> Manage Nuget Package Packages

enter image description here

However, there seems to be no documentation for this downloaded package. So, still, I can view all the code and implementation in this package so that I can know how to use classes in the package?

After package inclusion:

using Albireo.Otp;
using Albireo.Base32;

I can go to the definition from the classes inside the package

right clicking the class --> Go To Definition.

But is there a way to view all the files and implementations from this downloaded package?

+4
source share
1 answer

For this particular library, the source is at https://github.com/kappa7194/otp

, Assembly Explorer Object Browser VS.

Go to Solution Explorer -> Open references --> Right click on the referenced library

enter image description here

Im, VS 2016, , VS 2013 .

0

Source: https://habr.com/ru/post/1650957/


All Articles