diff options
author | Tyler Bischel <tyler.bischel@sendgrid.com> | 2012-01-10 13:40:15 -0800 |
---|---|---|
committer | Tyler Bischel <tyler.bischel@sendgrid.com> | 2012-01-10 13:40:15 -0800 |
commit | e7e7ea043de835793b9d65e6176e6148d0b51e29 (patch) | |
tree | 04490de0b36b3fcbdc4433a678b30cd18f31dc8c /SendGrid/Example | |
parent | e40ecaea2026a525650c02f6b84526c68762fbcb (diff) | |
download | sendgrid-csharp-e7e7ea043de835793b9d65e6176e6148d0b51e29.zip sendgrid-csharp-e7e7ea043de835793b9d65e6176e6148d0b51e29.tar.gz sendgrid-csharp-e7e7ea043de835793b9d65e6176e6148d0b51e29.tar.bz2 |
fixed namespace weirdness, made changes to .gitignore
Diffstat (limited to 'SendGrid/Example')
-rwxr-xr-x | SendGrid/Example/Example.csproj | 6 | ||||
-rwxr-xr-x | SendGrid/Example/Program.cs | 1 |
2 files changed, 7 insertions, 0 deletions
diff --git a/SendGrid/Example/Example.csproj b/SendGrid/Example/Example.csproj index 8ce66d2..7272179 100755 --- a/SendGrid/Example/Example.csproj +++ b/SendGrid/Example/Example.csproj @@ -47,6 +47,12 @@ <Compile Include="Program.cs" />
<Compile Include="Properties\AssemblyInfo.cs" />
</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" />
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.
Other similar extension points exist, see Microsoft.Common.targets.
diff --git a/SendGrid/Example/Program.cs b/SendGrid/Example/Program.cs index abf67f0..dde4452 100755 --- a/SendGrid/Example/Program.cs +++ b/SendGrid/Example/Program.cs @@ -3,6 +3,7 @@ using System.Collections.Generic; using System.Linq;
using System.Net.Mail;
using System.Text;
+using SendGrid.Transport;
namespace Example
{
|