Skip to content

Commit 1232f3b

Browse files
Version Bump v9.10.0: Dynamic Template + Hacktoberfest Rollup
1 parent cf8d762 commit 1232f3b

File tree

4 files changed

+45
-53
lines changed

4 files changed

+45
-53
lines changed

nuspec/Sendgrid.9.10.0.nuspec

Lines changed: 43 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,43 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<package xmlns="http://schemas.microsoft.com/packaging/2012/06/nuspec.xsd">
3+
<metadata>
4+
<id>Sendgrid</id>
5+
<version>9.10.0</version>
6+
<title>SendGrid</title>
7+
<authors>Elmer Thomas,SendGrid DX Team</authors>
8+
<licenseUrl>https://github.com/sendgrid/sendgrid-csharp/blob/master/LICENSE.txt</licenseUrl>
9+
<projectUrl>https://github.com/sendgrid/sendgrid-csharp</projectUrl>
10+
<iconUrl>https://sendgrid.com/wp-content/themes/sgdotcom/pages/resource/brand//2016/SendGrid-Logomark.png</iconUrl>
11+
<requireLicenseAcceptance>false</requireLicenseAcceptance>
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>Please see: https://github.com/sendgrid/sendgrid-csharp/releases</releaseNotes>
15+
<copyright>SendGrid, Inc. 2018</copyright>
16+
<tags>SendGrid Email Mail Microsoft Azure Transactional .NET Core</tags>
17+
<dependencies>
18+
<group targetFramework=".NETFramework4.0">
19+
<dependency id="Newtonsoft.Json" version="9.0.1" />
20+
<dependency id="System.Net.Http" version="4.3.3" />
21+
</group>
22+
<group targetFramework=".NETStandard1.3">
23+
<dependency id="Newtonsoft.Json" version="9.0.1" />
24+
<dependency id="Microsoft.AspNetCore.Http.Abstractions" version="1.1.2" />
25+
</group>
26+
<group targetFramework=".NETStandard2.0">
27+
<dependency id="Microsoft.AspNetCore.Http.Abstractions" version="1.1.2" />
28+
<dependency id="Newtonsoft.Json" version="9.0.1" />
29+
</group>
30+
</dependencies>
31+
</metadata>
32+
<files>
33+
<file src="..\src\SendGrid\bin\Release\net452\SendGrid.dll" target="lib\net452\SendGrid.dll" />
34+
<file src="..\src\SendGrid\bin\Release\net452\SendGrid.pdb" target="lib\net452\SendGrid.pdb" />
35+
<file src="..\src\SendGrid\bin\Release\net452\SendGrid.xml" target="lib\net452\SendGrid.xml" />
36+
<file src="..\src\SendGrid\bin\Release\netstandard1.3\SendGrid.dll" target="lib\netstandard1.3\SendGrid.dll" />
37+
<file src="..\src\SendGrid\bin\Release\netstandard1.3\SendGrid.pdb" target="lib\netstandard1.3\SendGrid.pdb" />
38+
<file src="..\src\SendGrid\bin\Release\netstandard1.3\SendGrid.xml" target="lib\netstandard1.3\SendGrid.xml" />
39+
<file src="..\src\SendGrid\bin\Release\netstandard2.0\SendGrid.dll" target="lib\netstandard2.0\SendGrid.dll" />
40+
<file src="..\src\SendGrid\bin\Release\netstandard2.0\SendGrid.pdb" target="lib\netstandard2.0\SendGrid.pdb" />
41+
<file src="..\src\SendGrid\bin\Release\netstandard2.0\SendGrid.xml" target="lib\netstandard2.0\SendGrid.xml" />
42+
</files>
43+
</package>

nuspec/Sendgrid.9.9.0.nuspec

Lines changed: 0 additions & 51 deletions
This file was deleted.

src/SendGrid/Properties/AssemblyInfo.cs

Lines changed: 1 addition & 1 deletion
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.9.0")]
25+
[assembly: AssemblyInformationalVersion("9.10.0")]

src/SendGrid/SendGrid.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22

33
<PropertyGroup>
4-
<VersionPrefix>9.9.0</VersionPrefix>
4+
<VersionPrefix>9.10.0</VersionPrefix>
55
<TargetFrameworks>netstandard1.3;netstandard2.0;net452</TargetFrameworks>
66
<PlatformTarget>anycpu</PlatformTarget>
77
<GenerateDocumentationFile>true</GenerateDocumentationFile>

0 commit comments

Comments
 (0)