├── .gitignore ├── .vs └── config │ └── applicationhost.config ├── CustomCortanaCommands.sln ├── CustomCortanaCommands ├── App.xaml ├── App.xaml.cs ├── ApplicationInsights.config ├── Assets │ ├── LockScreenLogo.scale-200.png │ ├── SplashScreen.scale-200.png │ ├── Square150x150Logo.scale-200.png │ ├── Square44x44Logo.scale-200.png │ ├── Square44x44Logo.targetsize-24_altform-unplated.png │ ├── StoreLogo.png │ └── Wide310x150Logo.scale-200.png ├── CortanaFunctions.cs ├── CustomCortanaCommands.csproj ├── CustomVoiceCommandDefinitions.xml ├── MainPage.xaml ├── MainPage.xaml.cs ├── Package.appxmanifest ├── Properties │ ├── AssemblyInfo.cs │ └── Default.rd.xml ├── Test.txt └── project.lock.json └── README.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crclayton/custom-cortana-commands-template/HEAD/.gitignore -------------------------------------------------------------------------------- /.vs/config/applicationhost.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crclayton/custom-cortana-commands-template/HEAD/.vs/config/applicationhost.config -------------------------------------------------------------------------------- /CustomCortanaCommands.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crclayton/custom-cortana-commands-template/HEAD/CustomCortanaCommands.sln -------------------------------------------------------------------------------- /CustomCortanaCommands/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crclayton/custom-cortana-commands-template/HEAD/CustomCortanaCommands/App.xaml -------------------------------------------------------------------------------- /CustomCortanaCommands/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crclayton/custom-cortana-commands-template/HEAD/CustomCortanaCommands/App.xaml.cs -------------------------------------------------------------------------------- /CustomCortanaCommands/ApplicationInsights.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crclayton/custom-cortana-commands-template/HEAD/CustomCortanaCommands/ApplicationInsights.config -------------------------------------------------------------------------------- /CustomCortanaCommands/Assets/LockScreenLogo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crclayton/custom-cortana-commands-template/HEAD/CustomCortanaCommands/Assets/LockScreenLogo.scale-200.png -------------------------------------------------------------------------------- /CustomCortanaCommands/Assets/SplashScreen.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crclayton/custom-cortana-commands-template/HEAD/CustomCortanaCommands/Assets/SplashScreen.scale-200.png -------------------------------------------------------------------------------- /CustomCortanaCommands/Assets/Square150x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crclayton/custom-cortana-commands-template/HEAD/CustomCortanaCommands/Assets/Square150x150Logo.scale-200.png -------------------------------------------------------------------------------- /CustomCortanaCommands/Assets/Square44x44Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crclayton/custom-cortana-commands-template/HEAD/CustomCortanaCommands/Assets/Square44x44Logo.scale-200.png -------------------------------------------------------------------------------- /CustomCortanaCommands/Assets/Square44x44Logo.targetsize-24_altform-unplated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crclayton/custom-cortana-commands-template/HEAD/CustomCortanaCommands/Assets/Square44x44Logo.targetsize-24_altform-unplated.png -------------------------------------------------------------------------------- /CustomCortanaCommands/Assets/StoreLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crclayton/custom-cortana-commands-template/HEAD/CustomCortanaCommands/Assets/StoreLogo.png -------------------------------------------------------------------------------- /CustomCortanaCommands/Assets/Wide310x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crclayton/custom-cortana-commands-template/HEAD/CustomCortanaCommands/Assets/Wide310x150Logo.scale-200.png -------------------------------------------------------------------------------- /CustomCortanaCommands/CortanaFunctions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crclayton/custom-cortana-commands-template/HEAD/CustomCortanaCommands/CortanaFunctions.cs -------------------------------------------------------------------------------- /CustomCortanaCommands/CustomCortanaCommands.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crclayton/custom-cortana-commands-template/HEAD/CustomCortanaCommands/CustomCortanaCommands.csproj -------------------------------------------------------------------------------- /CustomCortanaCommands/CustomVoiceCommandDefinitions.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crclayton/custom-cortana-commands-template/HEAD/CustomCortanaCommands/CustomVoiceCommandDefinitions.xml -------------------------------------------------------------------------------- /CustomCortanaCommands/MainPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crclayton/custom-cortana-commands-template/HEAD/CustomCortanaCommands/MainPage.xaml -------------------------------------------------------------------------------- /CustomCortanaCommands/MainPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crclayton/custom-cortana-commands-template/HEAD/CustomCortanaCommands/MainPage.xaml.cs -------------------------------------------------------------------------------- /CustomCortanaCommands/Package.appxmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crclayton/custom-cortana-commands-template/HEAD/CustomCortanaCommands/Package.appxmanifest -------------------------------------------------------------------------------- /CustomCortanaCommands/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crclayton/custom-cortana-commands-template/HEAD/CustomCortanaCommands/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /CustomCortanaCommands/Properties/Default.rd.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crclayton/custom-cortana-commands-template/HEAD/CustomCortanaCommands/Properties/Default.rd.xml -------------------------------------------------------------------------------- /CustomCortanaCommands/Test.txt: -------------------------------------------------------------------------------- 1 | here look this is a test file -------------------------------------------------------------------------------- /CustomCortanaCommands/project.lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crclayton/custom-cortana-commands-template/HEAD/CustomCortanaCommands/project.lock.json -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crclayton/custom-cortana-commands-template/HEAD/README.md --------------------------------------------------------------------------------