diff options
author | Brandon West <brawest@gmail.com> | 2014-05-21 18:22:30 -0600 |
---|---|---|
committer | Brandon West <brawest@gmail.com> | 2014-05-21 18:22:30 -0600 |
commit | 1b755d1304c9198a5970a79cee223bf343bdf67c (patch) | |
tree | a0791633516734efef84ecbf30c2442b0b7f87f6 /SendGrid/SendGridMail | |
parent | e6a8e1133ed56a78e6dd3c8147249100121602ca (diff) | |
download | sendgrid-csharp-1b755d1304c9198a5970a79cee223bf343bdf67c.zip sendgrid-csharp-1b755d1304c9198a5970a79cee223bf343bdf67c.tar.gz sendgrid-csharp-1b755d1304c9198a5970a79cee223bf343bdf67c.tar.bz2 |
fix some copypasta
Diffstat (limited to 'SendGrid/SendGridMail')
-rw-r--r-- | SendGrid/SendGridMail/ISendGrid.cs | 4 | ||||
-rw-r--r-- | SendGrid/SendGridMail/SendGrid.cs | 2 | ||||
-rw-r--r-- | SendGrid/SendGridMail/packages.config | 19 |
3 files changed, 10 insertions, 15 deletions
diff --git a/SendGrid/SendGridMail/ISendGrid.cs b/SendGrid/SendGridMail/ISendGrid.cs index b487741..b5f212c 100644 --- a/SendGrid/SendGridMail/ISendGrid.cs +++ b/SendGrid/SendGridMail/ISendGrid.cs @@ -75,7 +75,7 @@ namespace SendGrid void AddSubstitution(String replacementTag, List<String> substitutionValues);
/// <summary>
- /// This adds parameters and values that will be bassed back through SendGridMessage's
+ /// This adds parameters and values that will be bassed back through SendGrid's
/// Event API if an event notification is triggered by this email.
/// </summary>
/// <param name="identifiers">parameter substitutionValues pairs to be passed back on event notification</param>
@@ -191,7 +191,7 @@ namespace SendGrid void EnableOpenTracking();
/// <summary>
- /// Causes all links to be overwritten, shortened, and pointed to SendGridMessage's servers so clicks will be tracked.
+ /// Causes all links to be overwritten, shortened, and pointed to SendGrid's servers so clicks will be tracked.
/// </summary>
/// <param name="includePlainText">true if links found in plain text portions of the message are to be overwritten</param>
void EnableClickTracking(bool includePlainText = false);
diff --git a/SendGrid/SendGridMail/SendGrid.cs b/SendGrid/SendGridMail/SendGrid.cs index 09aa1fe..8b48774 100644 --- a/SendGrid/SendGridMail/SendGrid.cs +++ b/SendGrid/SendGridMail/SendGrid.cs @@ -25,7 +25,7 @@ namespace SendGrid #region Initialization and Constructors
/// <summary>
- /// Creates an instance of SendGridMessage's custom message object
+ /// Creates an instance of SendGrid's custom message object
/// </summary>
/// <returns></returns>
public SendGridMessage() : this(new Header())
diff --git a/SendGrid/SendGridMail/packages.config b/SendGrid/SendGridMail/packages.config index 8ff7b73..b115c6d 100644 --- a/SendGrid/SendGridMail/packages.config +++ b/SendGrid/SendGridMail/packages.config @@ -1,14 +1,9 @@ <?xml version="1.0" encoding="utf-8"?>
-<dependencies>
- <group targetFramework="net40">
- <dependency id="Microsoft.Bcl" version="1.1.6" />
- <dependency id="Microsoft.Bcl.Build" version="1.0.13" />
- <dependency id="Microsoft.Net.Http" version="2.2.18" />
- <dependency id="SendGrid.SmtpApi" version="1.1.3" />
- </group>
-
- <group targetFramework="net45">
- <dependency id="SendGrid.SmtpApi" version="1.1.3" />
- </group>
-</dependencies>
\ No newline at end of file +<packages>
+ <package id="Microsoft.Bcl" version="1.0.19" targetFramework="net40" />
+ <package id="Microsoft.Bcl.Async" version="1.0.16" targetFramework="net40" />
+ <package id="Microsoft.Bcl.Build" version="1.0.10" targetFramework="net40" />
+ <package id="Microsoft.Net.Http" version="2.0.20710.0" targetFramework="net40" />
+ <package id="SendGrid.SmtpApi" version="1.1.3" targetFramework="net40" />
+</packages>
|