Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How do I install and setup RESTSharp without NuGet?

Tags:

c#

.net

restsharp

I am using Visual Studio C# 2010 Express and is learning. RESTSharp is supposed to be installed by NuGet but NuGet cannot be used with Express version. Can I still install and configure RESTSharp manually, and how?

like image 250
M W Avatar asked May 17 '12 06:05

M W


People also ask

What is RestSharp DLL?

RestSharp is a comprehensive, open-source HTTP client library that works with all kinds of DotNet technologies. It can be used to build robust applications by making it easy to interface with public APIs and quickly access data without the complexity of dealing with raw HTTP requests.

How do I download NuGet package in Visual Studio code?

To find and install a NuGet package with Visual Studio, follow these steps: Load a project in Solution Explorer, and then select Project > Manage NuGet Packages. The NuGet Package Manager window opens. Select the Browse tab to display packages by popularity from the currently selected source (see Package sources).

What is Restrequest C#?

RestSharp is a C# library used to build and send API requests, and interpret the responses. It is used as part of the C#Bot API testing framework to build the requests, send them to the server, and interpret the responses so assertions can be made.


1 Answers

Get the dll from https://github.com/restsharp/RestSharp/downloads

and add it as reference to your project

like image 108
bmkay Avatar answered Nov 05 '22 20:11

bmkay