You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+11-9Lines changed: 11 additions & 9 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -4,19 +4,19 @@ Twilio provides a simple HTTP-based API for sending and receiving phone calls an
4
4
5
5
### Adding Twilio libraries to your .NET project
6
6
7
-
The best and easiest way to add the Twilio libraries to your .NET project is to use the NuGet package manager. NuGet is a Visual Studio extension that makes it easy to install and update third-party libraries and tools in Visual Studio.
7
+
The best and easiest way to add the Twilio libraries to your .NET project is to use the NuGet package manager.
Once you have installed the NuGet extension, you can choose to install the Twilio libraries using either the Package Manager dialog, or using the Package Manager console.
11
+
From within Visual Studio, you can use the NuGet GUI to search for and install the Twilio NuGet package. Or, as a shortcut, simply type the following command into the Package Manager Console:
12
12
13
-
#### Installing via the Package Manager Console
13
+
Install-Package Twilio
14
14
15
-
To install a Twilio library using the Package Manager console, first open the console, then Use the _Install-Package_ command to install the different Twilio packages:
15
+
#### With .NET Core Command Line Tools
16
16
17
-
Install REST API wrapper:
17
+
If you are building with the .NET Core command line tools, then you can run the following command from within your project directory:
18
18
19
-
Install-Package Twilio
19
+
dotnet add package Twilio
20
20
21
21
### Sample Usage
22
22
@@ -63,7 +63,8 @@ Console.WriteLine(response);
63
63
```
64
64
65
65
## Migrating from earlier versions
66
-
See the migration guide [here][3]
66
+
See the migration guide [here][3]. Also, if you were using the Twilio.Mvc package, that has been replaced by the [Twilio.AspNet.Mvc][4]
67
+
package which is compatible with this version of the library.
67
68
68
69
## Alpha Version
69
70
The alpha version of the Twilio .NET library is available on nuget. This version is a superset of the mainline version that includes all of the Twilio Products that are currently in beta. To install the alpha version from the NuGet Package manager console, add the *-prerelease* flag to the *Install-Package* command:
@@ -82,4 +83,5 @@ If you've instead found a bug in the library or would like new features added, g
0 commit comments