diff options
-rw-r--r-- | SendGrid/Example/Example.csproj | 10 | ||||
-rw-r--r-- | SendGrid/Example/Program.cs | 2 | ||||
-rw-r--r-- | SendGrid/SendGridMail/ISendGrid.cs | 4 | ||||
-rw-r--r-- | SendGrid/SendGridMail/SendGrid.cs | 2 | ||||
-rw-r--r-- | SendGrid/SendGridMail/packages.config | 19 |
5 files changed, 15 insertions, 22 deletions
diff --git a/SendGrid/Example/Example.csproj b/SendGrid/Example/Example.csproj index 235df7a..22e0e6e 100644 --- a/SendGrid/Example/Example.csproj +++ b/SendGrid/Example/Example.csproj @@ -39,6 +39,10 @@ <Prefer32Bit>false</Prefer32Bit>
</PropertyGroup>
<ItemGroup>
+ <Reference Include="SendGridMail, Version=3.0.0.0, Culture=neutral, PublicKeyToken=2ae73662c35d80e4, processorArchitecture=MSIL">
+ <SpecificVersion>False</SpecificVersion>
+ <HintPath>..\SendGridMail\bin\Debug\SendGridMail.dll</HintPath>
+ </Reference>
<Reference Include="System" />
<Reference Include="System.Core" />
<Reference Include="System.IO">
@@ -81,12 +85,6 @@ <SubType>Designer</SubType>
</None>
</ItemGroup>
- <ItemGroup>
- <ProjectReference Include="..\SendGridMail\Mail.csproj">
- <Project>{3c687bef-ff50-44ad-8315-2d4237281af8}</Project>
- <Name>Mail</Name>
- </ProjectReference>
- </ItemGroup>
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
<Import Project="..\packages\Microsoft.Bcl.Build.1.0.13\tools\Microsoft.Bcl.Build.targets" Condition="Exists('..\packages\Microsoft.Bcl.Build.1.0.13\tools\Microsoft.Bcl.Build.targets')" />
<Target Name="EnsureBclBuildImported" BeforeTargets="BeforeBuild" Condition="'$(BclBuildImported)' == ''">
diff --git a/SendGrid/Example/Program.cs b/SendGrid/Example/Program.cs index 9aaa8ec..9da69f5 100644 --- a/SendGrid/Example/Program.cs +++ b/SendGrid/Example/Program.cs @@ -14,7 +14,7 @@ namespace Example var myMessage = new SendGridMessage();
myMessage.AddTo("anna@example.com");
myMessage.From = new MailAddress("john@example.com", "John Smith");
- myMessage.Subject = "Testing the SendGridMessage Library";
+ myMessage.Subject = "Testing the SendGrid Library";
myMessage.Text = "Hello World!";
// Create credentials, specifying your user name and password.
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>
|