Skip to content

Commit f998dae

Browse files
committed
Merge branch 'master' of https://github.com/twilio/twilio-csharp
2 parents 455a4db + 7043bfe commit f998dae

File tree

1 file changed

+11
-9
lines changed

1 file changed

+11
-9
lines changed

README.md

Lines changed: 11 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -4,19 +4,19 @@ Twilio provides a simple HTTP-based API for sending and receiving phone calls an
44

55
### Adding Twilio libraries to your .NET project
66

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.
88

9-
[http://docs.nuget.org/docs/start-here/installing-nuget](http://docs.nuget.org/docs/start-here/installing-nuget)
9+
#### With Visual Studio IDE
1010

11-
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:
1212

13-
#### Installing via the Package Manager Console
13+
Install-Package Twilio
1414

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
1616

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:
1818

19-
Install-Package Twilio
19+
dotnet add package Twilio
2020

2121
### Sample Usage
2222

@@ -63,7 +63,8 @@ Console.WriteLine(response);
6363
```
6464

6565
## 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.
6768

6869
## Alpha Version
6970
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
8283
[0]: http://www.twilio.com
8384
[1]: http://www.twilio.com/docs/api/rest
8485
[2]: http://www.twilio.com/docs/api/twiml
85-
[3]: https://www.twilio.com/docs/libraries/csharp/migrating-your-csharp-dot-net-application-twilio-sdk-4x-5x
86+
[3]: https://www.twilio.com/docs/libraries/csharp/migrating-your-csharp-dot-net-application-twilio-sdk-4x-5x
87+
[4]: https://github.com/twilio/twilio-aspnet

0 commit comments

Comments
 (0)