An Alexa Skill in Javascript – Part 4

So far we've defined, gathered and installed the requisite tools in Part 1.  We've defined the Skill we're creating in Part 2.  And, we've created the Intents for our skill in Part 3. Now, we will code the Lambda function that is the brains of our skill in this entry, Part 4. What is a … Continue reading An Alexa Skill in Javascript – Part 4

An Alexa Skill in Javascript – Part 3

The Skill Model (en-US.json) Open the en-US.json file in the models folder.  Notice the areas I’ve highlighted in bold, red text.  These are things we will change. { "interactionModel": { "languageModel": { "invocationName": "greeter", "types": [ ], "intents": [ { "name": "AMAZON.CancelIntent", "samples": [ ] }, { "name": "AMAZON.HelpIntent", "samples": [ ] }, { "name": "AMAZON.StopIntent", "samples": … Continue reading An Alexa Skill in Javascript – Part 3

Unit Testing an Alexa Skill in C# – Step 3a

In Step 3, we created the Lambda function that will provide the functionality of the Alexa Skill we defined in Step 1, we wired everything up and then we tested our Skill.  So far so good.  However, that's an awful long way round to test the Skill Request and Response.  It would be nice if … Continue reading Unit Testing an Alexa Skill in C# – Step 3a

Visual Studio 2012, 2013, 2015, 2017 Version Numbers and Updates

Which Version of Visual Studio do I Have? Because I couldn't find it on the web, here's a list of the Visual Studio 2013 Version numbers for each of the Updates: VS 2012 Version Version ID Shell - RTM 11.0.50727.1 Update 5 11.0.61219.00 VS 2013 Version Version ID RTM 12.0.21005.1 Update 1 12.0.30110.0 Update 2 … Continue reading Visual Studio 2012, 2013, 2015, 2017 Version Numbers and Updates