I am following the readme file of installing and using mailkit here: https://github.com/jstedfast/MailKit And I have 3 questions about the following passage:
Passage:
"In the top-level MailKit directory, there are a number of solution files; they are:
MailKit.sln - includes the projects for .NET 4.5/4.6/4.7/4.8, .NETStandard 1.3/1.6/2.0 as well as the unit tests. Once you've opened the appropriate MailKit solution file in Visual Studio, you can choose the Debug or Release build configuration and then build."
My questions:
1.how can I find the top-level MailKit directory?
2.what does it mean to build?
- How do I open the appropriate MailKit solution file in Visual Studio?
First answers to your questions -
When you clone this repo, its main directory is the top-level Mailkit directory.
Building means downloading the project's dependencies and compiling the code into a runnable application.
Open visual studio and locate
Mailkit.sln
in the top-level directory.If you want to use Mailkit in your .net project you no need to do all these things. You can simply create a project and can install Mailkit via Nuget Package Manager. And refer this link - https://www.nuget.org/packages/MailKit