.NET
Add the Vonage .NET SDK
Move into the VonageSms directory that you created in the previous step and execute the following command:
dotnet add package Vonage
You can now open the VonageSms.csproj file in Visual Studio.
Note: This tutorial assumes that you are using Visual Studio. Alternatively, you could open the VonageSms folder in Visual Studio Code or another editor, but you might have to create some of the scaffolding that Visual Studio generates for you.
How to Receive an SMS Message with ASP.NET Core MVC
A tutorial to show how your ASP .NET MVC application can use the Vonage .NET SDK to receive SMS messages from your users and display them in your output window.
Available on:
Steps
1
Introduction to this tutorial2
Prerequisites3
Create the SMS Project File4
Add Vonage Dotnet SDK5
Add an SMS Controller6
Run the .NET App7
Conclusion