Skip to content

Commit c90111f

Browse files
Version Bump v9.5.2: #494 Update pdb format for VSTS
1 parent f0ef714 commit c90111f

File tree

4 files changed

+11
-4
lines changed

4 files changed

+11
-4
lines changed

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
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.5.2] - 2017-7-24
5+
## Fix
6+
- Issue #494: Update pdb format for VSTS
7+
- Thanks to [Murray Crowe](https://github.com/murraybiscuit) for the fix!
8+
49
## [9.5.1] - 2017-7-20
510
## Fix
611
- Issue #494: Repair bad pdb file

nuspec/Sendgrid.9.5.1.nuspec renamed to nuspec/Sendgrid.9.5.2.nuspec

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<package xmlns="http://schemas.microsoft.com/packaging/2012/06/nuspec.xsd">
33
<metadata>
44
<id>Sendgrid</id>
5-
<version>9.5.1</version>
5+
<version>9.5.2</version>
66
<title>SendGrid</title>
77
<authors>Elmer Thomas,SendGrid DX Team</authors>
88
<licenseUrl>https://github.com/sendgrid/sendgrid-csharp/blob/master/MIT.LICENSE</licenseUrl>
@@ -12,7 +12,7 @@
1212
<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>
1313
<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>
1414
<releaseNotes>## Fix
15-
- Issue #494: Repair bad pdb file</releaseNotes>
15+
- Issue #494: Update pdb format for VSTS</releaseNotes>
1616
<copyright>SendGrid, Inc. 2017</copyright>
1717
<tags>SendGrid Email Mail Microsoft Azure Transactional .NET Core</tags>
1818
<dependencies>

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.5.1")]
25+
[assembly: AssemblyInformationalVersion("9.5.2")]

src/SendGrid/SendGrid.csproj

Lines changed: 3 additions & 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.5.1</VersionPrefix>
4+
<VersionPrefix>9.5.2</VersionPrefix>
55
<TargetFrameworks>netstandard1.3;net452</TargetFrameworks>
66
<PlatformTarget>anycpu</PlatformTarget>
77
<GenerateDocumentationFile>true</GenerateDocumentationFile>
@@ -15,6 +15,8 @@
1515
<GenerateAssemblyCompanyAttribute>false</GenerateAssemblyCompanyAttribute>
1616
<GenerateAssemblyProductAttribute>false</GenerateAssemblyProductAttribute>
1717
<GenerateAssemblyInformationalVersionAttribute>false</GenerateAssemblyInformationalVersionAttribute>
18+
<DebugSymbols Condition=" '$(TargetFramework)' == 'net452' ">true</DebugSymbols>
19+
<DebugType Condition=" '$(TargetFramework)' == 'net452' ">full</DebugType>
1820
</PropertyGroup>
1921

2022
<ItemGroup>

0 commit comments

Comments
 (0)