forked from timheuer/alexa-skills-dotnet
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
41a8acf
commit 2f083eb
Showing
9 changed files
with
49 additions
and
65 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
<Project Sdk="Microsoft.NET.Sdk"> | ||
|
||
<PropertyGroup> | ||
<Description>A simple .NET Core library for handling Alexa Skill request/responses.</Description> | ||
<AssemblyTitle>Alexa.NET</AssemblyTitle> | ||
<VersionPrefix>1.0.0-beta-6</VersionPrefix> | ||
<Authors>Tim Heuer</Authors> | ||
<TargetFramework>netstandard1.6</TargetFramework> | ||
<AssemblyName>Alexa.NET</AssemblyName> | ||
<PackageId>Alexa.NET</PackageId> | ||
<PackageTags>amazon;alexa;echo;dot;echo dot;skills</PackageTags> | ||
<PackageReleaseNotes>Added AskWithCard options</PackageReleaseNotes> | ||
<PackageProjectUrl>https://github.com/timheuer/alexa-skills-dotnet</PackageProjectUrl> | ||
<PackageLicenseUrl>https://github.com/timheuer/alexa-skills-dotnet/blob/master/LICENSE</PackageLicenseUrl> | ||
<RepositoryUrl>https://github.com/timheuer/alexa-skills-dotnet</RepositoryUrl> | ||
<NetStandardImplicitPackageVersion>1.6.0</NetStandardImplicitPackageVersion> | ||
<PackageTargetFallback>$(PackageTargetFallback);dnxcore50</PackageTargetFallback> | ||
<GenerateAssemblyConfigurationAttribute>false</GenerateAssemblyConfigurationAttribute> | ||
<GenerateAssemblyCompanyAttribute>false</GenerateAssemblyCompanyAttribute> | ||
<GenerateAssemblyProductAttribute>false</GenerateAssemblyProductAttribute> | ||
</PropertyGroup> | ||
|
||
<ItemGroup> | ||
<PackageReference Include="Newtonsoft.Json" Version="9.0.1" /> | ||
</ItemGroup> | ||
|
||
</Project> |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
using Newtonsoft.Json; | ||
|
||
namespace Alexa.NET.Request | ||
{ | ||
public class Permissions | ||
{ | ||
[JsonProperty("consentToken")] | ||
public string ConsentToken { get; set; } | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.