diff options
author | Brandon West <brawest@gmail.com> | 2014-05-23 17:31:47 -0600 |
---|---|---|
committer | Brandon West <brawest@gmail.com> | 2014-05-23 17:31:57 -0600 |
commit | d86ef025cabce6867bf3b84ba782b68c899f66b3 (patch) | |
tree | 4d37bcc8dca11731c4e348a47dc9b8f0c35ae10b /SendGrid/Example/Example.csproj | |
parent | 8430d0eb48212c46e4ff0c7d300cdfcd7343172e (diff) | |
download | sendgrid-csharp-d86ef025cabce6867bf3b84ba782b68c899f66b3.zip sendgrid-csharp-d86ef025cabce6867bf3b84ba782b68c899f66b3.tar.gz sendgrid-csharp-d86ef025cabce6867bf3b84ba782b68c899f66b3.tar.bz2 |
fix constructor
Diffstat (limited to 'SendGrid/Example/Example.csproj')
-rw-r--r-- | SendGrid/Example/Example.csproj | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/SendGrid/Example/Example.csproj b/SendGrid/Example/Example.csproj index 235df7a..f1fb787 100644 --- a/SendGrid/Example/Example.csproj +++ b/SendGrid/Example/Example.csproj @@ -39,6 +39,9 @@ <Prefer32Bit>false</Prefer32Bit>
</PropertyGroup>
<ItemGroup>
+ <Reference Include="SendGrid.SmtpApi">
+ <HintPath>..\SendGridMail\bin\Debug\SendGrid.SmtpApi.dll</HintPath>
+ </Reference>
<Reference Include="System" />
<Reference Include="System.Core" />
<Reference Include="System.IO">
@@ -87,6 +90,9 @@ <Name>Mail</Name>
</ProjectReference>
</ItemGroup>
+ <ItemGroup>
+ <WCFMetadata Include="Service References\" />
+ </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)' == ''">
|