Skip to content

Commit 16c588b

Browse files
Version Bump v9.0.10: Issue #395: Remove dependency for Microsoft.AspNetCore.Http.Abstractions in .NET 4
1 parent cfdc375 commit 16c588b

File tree

5 files changed

+28
-22
lines changed

5 files changed

+28
-22
lines changed

CHANGELOG.md

+5
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,11 @@
11
# Change Log
22
All notable changes to this project will be documented in this file.
33

4+
## [9.0.10] - 2017-02-16
5+
## Fix
6+
- Issue #395: Remove dependency for Microsoft.AspNetCore.Http.Abstractions in .NET 4
7+
- Thanks to [@Hinni](https://github.com/Hinni) for the heads up!
8+
49
## [9.0.9] - 2017-02-15 ##
510
## Fix
611
- Issue #396: Make 'stylecop' a development dependency

ExampleNet45Project/ExampleNet45.csproj

+1-1
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@
4040
<Private>True</Private>
4141
</Reference>
4242
<Reference Include="SendGrid">
43-
<HintPath>..\src\SendGrid\bin\Debug\net452\SendGrid.dll</HintPath>
43+
<HintPath>..\src\SendGrid\bin\Release\net452\SendGrid.dll</HintPath>
4444
</Reference>
4545
<Reference Include="System" />
4646
<Reference Include="System.Core" />

nuspec/Sendgrid.9.0.9.nuspec renamed to nuspec/Sendgrid.9.0.10.nuspec

+9-9
Original file line numberDiff line numberDiff line change
@@ -2,23 +2,23 @@
22
<package xmlns="http://schemas.microsoft.com/packaging/2012/06/nuspec.xsd">
33
<metadata>
44
<id>Sendgrid</id>
5-
<version>9.0.9</version>
5+
<version>9.0.10</version>
66
<title>SendGrid</title>
7-
<authors>Elmer Thomas</authors>
7+
<authors>Elmer Thomas,SendGrid DX Team</authors>
88
<licenseUrl>https://github.com/sendgrid/sendgrid-csharp/blob/master/MIT.LICENSE</licenseUrl>
99
<projectUrl>https://github.com/sendgrid/sendgrid-csharp</projectUrl>
1010
<iconUrl>https://sendgrid.com/wp-content/themes/sgdotcom/pages/brand/2016/SendGrid-Logomark.png</iconUrl>
1111
<requireLicenseAcceptance>false</requireLicenseAcceptance>
12-
<description>C# client library and examples for using SendGrid API's to send mail and access Web API v3 endpoints. Github repo located at : https://github.com/sendgrid/sendgrid-csharp</description>
13-
<summary>C# client library and examples for using SendGrid API's to send mail and access Web API v3 endpoints.</summary>
14-
<releaseNotes>- Issue #396: Make 'stylecop' a development dependency
15-
- Thanks to [@knopa](https://github.com/knopa) for the heads up!</releaseNotes>
16-
<copyright>Copyright 2017</copyright>
17-
<tags>SendGrid Email Mail Microsoft Azure Transactional</tags>
12+
<description>C# client library and examples for using SendGrid API's to send mail and access Web API v3 endpoints with .NET Standard 1.3 and .NET Core support. Github repo located at : https://github.com/sendgrid/sendgrid-csharp</description>
13+
<summary>C# client library and examples for using SendGrid API's to send mail and access Web API v3 endpoints with .NET Standard 1.3 and .NET Core support.</summary>
14+
<releaseNotes>- Issue #395: Remove dependency for Microsoft.AspNetCore.Http.Abstractions in .NET 4
15+
- Thanks to [@Hinni](https://github.com/Hinni) for the heads up!</releaseNotes>
16+
<copyright>SendGrid, Inc. 2017</copyright>
17+
<tags>SendGrid Email Mail Microsoft Azure Transactional .NET Core</tags>
1818
<dependencies>
1919
<group targetFramework=".NETFramework4.0">
2020
<dependency id="Newtonsoft.Json" version="9.0.1" />
21-
<dependency id="Microsoft.AspNetCore.Http.Abstractions" version="1.1.0" />
21+
<dependency id="System.Net.Http" version="4.0.0" />
2222
</group>
2323
<group targetFramework=".NETStandard1.3">
2424
<dependency id="NETStandard.Library" version="1.6.1" />

src/SendGrid/Properties/AssemblyInfo.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,4 +22,4 @@
2222
// The following GUID is for the ID of the typelib if this project is exposed to COM
2323
[assembly: Guid("377c20e4-2297-488f-933b-fb635c56d8fc")]
2424

25-
[assembly: AssemblyInformationalVersion("9.0.9")]
25+
[assembly: AssemblyInformationalVersion("9.0.10")]

src/SendGrid/project.json

+12-11
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,6 @@
1717
}
1818
},
1919
"dependencies": {
20-
"Microsoft.AspNetCore.Http.Abstractions": "1.1.0",
2120
"StyleCop.Analyzers": {
2221
"version": "1.0.0",
2322
"type": "build"
@@ -29,22 +28,24 @@
2928
"define": [ "NETSTANDARD" ]
3029
},
3130
"imports": "dnxcore50",
32-
"dependencies": {
33-
"NETStandard.Library": "1.6.1",
34-
"Newtonsoft.Json": "9.0.1"
35-
}
31+
"dependencies": {
32+
"Microsoft.AspNetCore.Http.Abstractions": "1.1.0",
33+
"NETStandard.Library": "1.6.1",
34+
"Newtonsoft.Json": "9.0.1"
35+
}
3636
},
3737
"net452": {
3838
"buildOptions": {
3939
"define": [ "NET452" ]
4040
},
4141
"dependencies": {
42-
"Newtonsoft.Json": "9.0.1"
43-
},
44-
"frameworkAssemblies": {
45-
"System.Runtime.Serialization": "4.0.0"
46-
}
42+
"Newtonsoft.Json": "9.0.1"
43+
},
44+
"frameworkAssemblies": {
45+
"System.Net.Http": "4.0.0",
46+
"System.Runtime.Serialization": "4.0.0"
47+
}
4748
}
4849
},
49-
"version": "9.0.9"
50+
"version": "9.0.10"
5051
}

0 commit comments

Comments
 (0)