Skip to content

Commit

Permalink
Merge branch 'stoiveyp-DynamicEntityFix'
Browse files Browse the repository at this point in the history
  • Loading branch information
timheuer committed Aug 14, 2019
2 parents 043b033 + 6ef44bd commit d62765e
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
4 changes: 2 additions & 2 deletions Alexa.NET/Alexa.NET.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,13 @@
<PropertyGroup>
<Description>A simple .NET Core library for handling Alexa Skill request/responses.</Description>
<AssemblyTitle>Alexa.NET</AssemblyTitle>
<VersionPrefix>1.8.0</VersionPrefix>
<VersionPrefix>1.8.1</VersionPrefix>
<Authors>Tim Heuer, Steven Pears</Authors>
<TargetFramework>netstandard2.0</TargetFramework>
<AssemblyName>Alexa.NET</AssemblyName>
<PackageId>Alexa.NET</PackageId>
<PackageTags>amazon;alexa;echo;dot;echo dot;skills</PackageTags>
<PackageReleaseNotes>1.8.0 release makes this a .NET Standard 2 library; Bumping JSON.NET package version support as well.</PackageReleaseNotes>
<PackageReleaseNotes>Added dynamic entity update to directive list; 1.8.0 release makes this a .NET Standard 2 library; Bumping JSON.NET package version support as well.</PackageReleaseNotes>
<PackageProjectUrl>https://github.com/timheuer/alexa-skills-dotnet</PackageProjectUrl>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<RepositoryUrl>https://github.com/timheuer/alexa-skills-dotnet</RepositoryUrl>
Expand Down
3 changes: 2 additions & 1 deletion Alexa.NET/Response/Converters/DirectiveConverter.cs
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,8 @@ public class DirectiveConverter : JsonConverter
{ "AudioPlayer.Stop", () => new StopDirective() },
{ "VideoApp.Launch", () => new VideoAppDirective() },
{ "Connections.StartConnection", () => new StartConnectionDirective() },
{ "Tasks.CompleteTask",() => new CompleteTaskDirective()}
{ "Tasks.CompleteTask",() => new CompleteTaskDirective()},
{ "Dialog.UpdateDynamicEntities", () => new DialogUpdateDynamicEntities() }
};

public override void WriteJson(JsonWriter writer, object value, JsonSerializer serializer)
Expand Down

0 comments on commit d62765e

Please sign in to comment.