From 323bde8fcecde1daf26a2d4511c3d6f38f4c1dc7 Mon Sep 17 00:00:00 2001 From: Tim Heuer Date: Wed, 1 Mar 2017 13:24:36 -0800 Subject: [PATCH] Fixed inheritance on Request. --- Alexa.NET/Request/Type/AudioPlayerRequest.cs | 3 --- Alexa.NET/project.json | 5 +++-- 2 files changed, 3 insertions(+), 5 deletions(-) diff --git a/Alexa.NET/Request/Type/AudioPlayerRequest.cs b/Alexa.NET/Request/Type/AudioPlayerRequest.cs index 98f69da..4fa80a4 100644 --- a/Alexa.NET/Request/Type/AudioPlayerRequest.cs +++ b/Alexa.NET/Request/Type/AudioPlayerRequest.cs @@ -11,9 +11,6 @@ public class AudioPlayerRequest: Request [JsonProperty("token")] public string Token { get; set; } - [JsonProperty("locale")] - public string Locale { get; set; } - [JsonProperty("offsetInMilliseconds")] public string OffsetInMilliseconds { get; set; } diff --git a/Alexa.NET/project.json b/Alexa.NET/project.json index fa56bed..e0f5843 100644 --- a/Alexa.NET/project.json +++ b/Alexa.NET/project.json @@ -1,7 +1,7 @@ { "name": "Alexa.NET", "title": "Alexa.NET", - "version": "1.0.0-beta-1", + "version": "1.0.0-beta-2", "authors": [ "Tim Heuer" ], "description": "A simple .NET Core library for handling Alexa Skill request/responses.", @@ -26,6 +26,7 @@ ], "repository": { "url": "https://github.com/timheuer/alexa-skills-dotnet" }, "requireLicenseAcceptance": false, - "tags": [ "amazon", "alexa", "echo", "dot", "echo dot", "skills" ] + "tags": [ "amazon", "alexa", "echo", "dot", "echo dot", "skills" ], + "releaseNotes": "Updated to include Locale" } }