summaryrefslogtreecommitdiffstats
path: root/SendGrid/SendGridMail/Mail.csproj
diff options
context:
space:
mode:
authorbrandonmwest <brawest@gmail.com>2013-07-29 12:51:31 -0700
committerbrandonmwest <brawest@gmail.com>2013-07-29 12:51:31 -0700
commit8313c8bab44bef9fde57ac2e22f994427d8d83bd (patch)
tree1c8c5550dab4b2c6fd62ae9698c5ecaaa2d8f5a0 /SendGrid/SendGridMail/Mail.csproj
parent2a1b360b89ac07fab5e4a377f380bd563dfa5f7e (diff)
parent072cd3ebf52417a275b5180cd1e6841ca4aa86df (diff)
downloadsendgrid-csharp-8313c8bab44bef9fde57ac2e22f994427d8d83bd.zip
sendgrid-csharp-8313c8bab44bef9fde57ac2e22f994427d8d83bd.tar.gz
sendgrid-csharp-8313c8bab44bef9fde57ac2e22f994427d8d83bd.tar.bz2
Merge pull request #33 from sendgrid/bw-net45
Remove RestSharp, refactor to System.Net.Http.HttpClient
Diffstat (limited to 'SendGrid/SendGridMail/Mail.csproj')
-rw-r--r--SendGrid/SendGridMail/Mail.csproj16
1 files changed, 9 insertions, 7 deletions
diff --git a/SendGrid/SendGridMail/Mail.csproj b/SendGrid/SendGridMail/Mail.csproj
index 7744b73..e7b0cde 100644
--- a/SendGrid/SendGridMail/Mail.csproj
+++ b/SendGrid/SendGridMail/Mail.csproj
@@ -11,6 +11,8 @@
<RootNamespace>SendGridMail</RootNamespace>
<AssemblyName>SendGridMail</AssemblyName>
<FileAlignment>512</FileAlignment>
+ <TargetFrameworkVersion>v4.0</TargetFrameworkVersion>
+ <TargetFrameworkProfile />
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<DebugSymbols>True</DebugSymbols>
@@ -20,6 +22,7 @@
<DefineConstants>DEBUG;TRACE</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
+ <Prefer32Bit>false</Prefer32Bit>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
<DebugType>pdbonly</DebugType>
@@ -28,15 +31,14 @@
<DefineConstants>TRACE</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
+ <Prefer32Bit>false</Prefer32Bit>
</PropertyGroup>
<ItemGroup>
- <Reference Include="RestSharp">
- <HintPath>..\packages\RestSharp.104.1\lib\net4\RestSharp.dll</HintPath>
- <Private>False</Private>
- </Reference>
<Reference Include="System" />
<Reference Include="System.Core" />
<Reference Include="System.Net" />
+ <Reference Include="System.Net.Http" />
+ <Reference Include="System.Net.Http.WebRequest" />
<Reference Include="System.Runtime.Serialization" />
<Reference Include="System.ServiceModel.Web" />
<Reference Include="System.Web" />
@@ -57,6 +59,9 @@
<Compile Include="Transport\SMTP.cs" />
<Compile Include="Utils.cs" />
</ItemGroup>
+ <ItemGroup>
+ <None Include="packages.config" />
+ </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.
@@ -65,7 +70,4 @@
<Target Name="AfterBuild">
</Target>
-->
- <ItemGroup>
- <None Include="packages.config" />
- </ItemGroup>
</Project> \ No newline at end of file