Skip to content

Instantly share code, notes, and snippets.

@flushpot1125
Created July 2, 2016 06:49
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
Star You must be signed in to star a gist
Embed
What would you like to do?
try
{
var storageFile =
await Windows.Storage.StorageFile
.GetFileFromApplicationUriAsync(new Uri("ms-appx:///vcd.xml"));
await Windows.ApplicationModel.VoiceCommands.VoiceCommandDefinitionManager
.InstallCommandDefinitionsFromStorageFileAsync(storageFile);
Debug.WriteLine("VCD installed");
}
catch
{
Debug.WriteLine("VCD installation failed");
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment