diff options
author | Brandon West <brawest@gmail.com> | 2013-01-12 09:57:41 -0700 |
---|---|---|
committer | Brandon West <brawest@gmail.com> | 2013-01-12 09:57:41 -0700 |
commit | 0011c7d7633ca413f99a6b59fea4475e6953afe7 (patch) | |
tree | dbca8045f65dc4df54a7a3c959fd924efdf79d98 /SendGrid/SendGridMail/Mail.csproj | |
parent | cff2a81a6b7601ebccfd6bc1d9cb20a1579c9f0e (diff) | |
download | sendgrid-csharp-0011c7d7633ca413f99a6b59fea4475e6953afe7.zip sendgrid-csharp-0011c7d7633ca413f99a6b59fea4475e6953afe7.tar.gz sendgrid-csharp-0011c7d7633ca413f99a6b59fea4475e6953afe7.tar.bz2 |
refactored Web API to use RestSharp instead of codescales, unstabled
Diffstat (limited to 'SendGrid/SendGridMail/Mail.csproj')
-rw-r--r-- | SendGrid/SendGridMail/Mail.csproj | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/SendGrid/SendGridMail/Mail.csproj b/SendGrid/SendGridMail/Mail.csproj index b85ec5e..7775d9c 100644 --- a/SendGrid/SendGridMail/Mail.csproj +++ b/SendGrid/SendGridMail/Mail.csproj @@ -30,6 +30,9 @@ <WarningLevel>4</WarningLevel>
</PropertyGroup>
<ItemGroup>
+ <Reference Include="RestSharp">
+ <HintPath>..\packages\RestSharp.104.1\lib\net4\RestSharp.dll</HintPath>
+ </Reference>
<Reference Include="System" />
<Reference Include="System.Core" />
<Reference Include="System.Net" />
@@ -41,10 +44,6 @@ <Reference Include="Microsoft.CSharp" />
<Reference Include="System.Data" />
<Reference Include="System.Xml" />
- <Reference Include="CodeScales.Http">
- <HintPath>lib\CodeScales.Http.dll</HintPath>
- <Private>False</Private>
- </Reference>
</ItemGroup>
<ItemGroup>
<Compile Include="Header.cs" />
@@ -52,7 +51,6 @@ <Compile Include="ISendGrid.cs" />
<Compile Include="Properties\AssemblyInfo.cs" />
<Compile Include="SendGrid.cs" />
- <Compile Include="StreamedFileBody.cs" />
<Compile Include="Transport\ITransport.cs" />
<Compile Include="Transport\Web.cs" />
<Compile Include="Transport\SMTP.cs" />
@@ -69,4 +67,7 @@ <ItemGroup>
<EmbeddedResource Include="lib\CodeScales.Http.dll" />
</ItemGroup>
+ <ItemGroup>
+ <None Include="packages.config" />
+ </ItemGroup>
</Project>
\ No newline at end of file |