Large diffs are not rendered by default.

@@ -0,0 +1,65 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace SpeechToTextWPFSample
{
class Player
{
private string name; // player's name
private char token; // the player's token or sign

// Default constructor
public Player()
{
this.name = null;
}

// Parameterized constructor
public Player(String name, char token)
{
this.name = name;
this.token = token;
}

// Getter for name
public String getName()
{
return name;
}

// setter for name
public void setName(String name)
{
this.name = name;
}

// retter for the token of the player
public char gettoken()
{
return this.token;
}

// Method to mark the board at a given spot. Takes a board and spot row and column to mark.
// The method returns true if the spot was available, false otherwise
public bool mark(Game g, string location)
{
String A = "abc"; // Max size of board is 9, so the max amount of letters is up to 'I'
int rowNum = A.IndexOf(location[0]);

if (g.getBoard()[rowNum, int.Parse(location[1]+"") - 1] == 0)
{
g.getBoard()[rowNum, int.Parse(location[1] + "") - 1] = token;

return true;
}

else
{
return false;
}
}
}
}
@@ -0,0 +1,96 @@
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="12.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<Import Project="$(EnvironmentConfig)" Condition="Exists('$(EnvironmentConfig)')" />
<PropertyGroup>
<ProductVersion>8.0.30703</ProductVersion>
<SchemaVersion>2.0</SchemaVersion>
<ProjectGuid>{8380449D-B908-4AA5-BD72-EB8401205DCE}</ProjectGuid>
<OutputType>WinExe</OutputType>
<AppDesignerFolder>Properties</AppDesignerFolder>
<RootNamespace>SpeechToTextWPFSample</RootNamespace>
<AssemblyName>SpeechToText-WPF-Sample</AssemblyName>
<TargetFrameworkVersion>v4.5</TargetFrameworkVersion>
<FileAlignment>512</FileAlignment>
<TargetFrameworkProfile />
<AssemblyClsCompliant>false</AssemblyClsCompliant>
<Prefer32Bit>false</Prefer32Bit>
<Require32Bit>false</Require32Bit>
<_TargetsPath Condition=" '$(_TargetsPath)' == '' and exists('$(ExtendedTargetsPath)') ">$(ExtendedTargetsPath)</_TargetsPath>
<_TargetsPath Condition=" '$(_TargetsPath)' == '' and exists('$(MSBuildToolsPath)') ">$(MSBuildToolsPath)</_TargetsPath>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|x64'">
<UseVSHostingProcess>false</UseVSHostingProcess>
<OutputPath>obj\amd64\</OutputPath>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|x64'">
<OutputPath>objd\amd64\</OutputPath>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|x86'">
<OutputPath>bin\x86\Release\</OutputPath>
<PlatformTarget>x86</PlatformTarget>
<UseVSHostingProcess>false</UseVSHostingProcess>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|x86'">
<DebugSymbols>true</DebugSymbols>
<OutputPath>bin\x86\Debug\</OutputPath>
<PlatformTarget>x86</PlatformTarget>
</PropertyGroup>
<ItemGroup>
<ApplicationDefinition Include="App.xaml">
<Generator>MSBuild:Compile</Generator>
<SubType>Designer</SubType>
</ApplicationDefinition>
<Compile Include="Logic.cs" />
<Compile Include="Player.cs" />
<Page Include="MainWindow.xaml">
<Generator>MSBuild:Compile</Generator>
<SubType>Designer</SubType>
</Page>
<Compile Include="App.xaml.cs">
<DependentUpon>App.xaml</DependentUpon>
<SubType>Code</SubType>
</Compile>
<Compile Include="Game.cs" />
<Compile Include="MainWindow.xaml.cs">
<DependentUpon>MainWindow.xaml</DependentUpon>
<SubType>Code</SubType>
</Compile>
</ItemGroup>
<ItemGroup>
<BootstrapperPackage Include=".NETFramework,Version=v4.5">
<Visible>False</Visible>
<ProductName>Microsoft .NET Framework 4.5 %28x86 and x64%29</ProductName>
<Install>true</Install>
</BootstrapperPackage>
<BootstrapperPackage Include="Microsoft.Net.Client.3.5">
<Visible>False</Visible>
<ProductName>.NET Framework 3.5 SP1 Client Profile</ProductName>
<Install>false</Install>
</BootstrapperPackage>
<BootstrapperPackage Include="Microsoft.Net.Framework.3.5.SP1">
<Visible>False</Visible>
<ProductName>.NET Framework 3.5 SP1</ProductName>
<Install>false</Install>
</BootstrapperPackage>
</ItemGroup>
<ItemGroup>
<Reference Include="SpeechClient, Version=0.0.0.0, Culture=neutral, processorArchitecture=AMD64">
<HintPath>..\..\packages\Microsoft.ProjectOxford.SpeechRecognition-x64.0.4.9.1\lib\SpeechClient.dll</HintPath>
<Private>True</Private>
</Reference>
<Reference Include="System.Configuration" />
<Reference Include="System.Xaml">
<RequiredTargetFramework>4.0</RequiredTargetFramework>
</Reference>
<Reference Include="System" />
<Reference Include="WindowsBase" />
<Reference Include="PresentationCore" />
<Reference Include="PresentationFramework" />
</ItemGroup>
<ItemGroup>
<None Include="app.config" />
<None Include="packages.config" />
</ItemGroup>
<ItemGroup />
<Import Project="$(_TargetsPath)\Microsoft.CSharp.targets" />
</Project>
@@ -0,0 +1,28 @@

Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio 14
VisualStudioVersion = 14.0.24720.0
MinimumVisualStudioVersion = 10.0.40219.1
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Speech2Text", "Speech2Text.csproj", "{8380449D-B908-4AA5-BD72-EB8401205DCE}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|x64 = Debug|x64
Debug|x86 = Debug|x86
Release|x64 = Release|x64
Release|x86 = Release|x86
EndGlobalSection
GlobalSection(ProjectConfigurationPlatforms) = postSolution
{8380449D-B908-4AA5-BD72-EB8401205DCE}.Debug|x64.ActiveCfg = Debug|x64
{8380449D-B908-4AA5-BD72-EB8401205DCE}.Debug|x64.Build.0 = Debug|x64
{8380449D-B908-4AA5-BD72-EB8401205DCE}.Debug|x86.ActiveCfg = Debug|x86
{8380449D-B908-4AA5-BD72-EB8401205DCE}.Debug|x86.Build.0 = Debug|x86
{8380449D-B908-4AA5-BD72-EB8401205DCE}.Release|x64.ActiveCfg = Release|x64
{8380449D-B908-4AA5-BD72-EB8401205DCE}.Release|x64.Build.0 = Release|x64
{8380449D-B908-4AA5-BD72-EB8401205DCE}.Release|x86.ActiveCfg = Release|x86
{8380449D-B908-4AA5-BD72-EB8401205DCE}.Release|x86.Build.0 = Release|x86
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
EndGlobalSection
EndGlobal
@@ -0,0 +1,12 @@
<?xml version="1.0" encoding="utf-8"?>
<configuration>
<startup>
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.5"/>
</startup>
<appSettings>
<add key="primaryKey" value="yourPrimaryKey" />
<add key="secondaryKey" value="yourSecondayKey" />
<add key="luisAppID" value="yourLuisAppID" />
<add key="luisSubscriptionID" value="yourLuisSubsrciptionID" />
</appSettings>
</configuration>
@@ -0,0 +1,12 @@
<?xml version="1.0" encoding="utf-8"?>
<configuration>
<startup>
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.5"/>
</startup>
<appSettings>
<add key="primaryKey" value="yourPrimaryKey" />
<add key="secondaryKey" value="yourSecondayKey" />
<add key="luisAppID" value="yourLuisAppID" />
<add key="luisSubscriptionID" value="yourLuisSubsrciptionID" />
</appSettings>
</configuration>
@@ -0,0 +1,12 @@
<?xml version="1.0" encoding="utf-8"?>
<configuration>
<startup>
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.5"/>
</startup>
<appSettings>
<add key="primaryKey" value="yourPrimaryKey" />
<add key="secondaryKey" value="yourSecondayKey" />
<add key="luisAppID" value="yourLuisAppID" />
<add key="luisSubscriptionID" value="yourLuisSubsrciptionID" />
</appSettings>
</configuration>
@@ -0,0 +1,11 @@
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<assembly xmlns="urn:schemas-microsoft-com:asm.v1" manifestVersion="1.0">
<assemblyIdentity version="1.0.0.0" name="MyApplication.app"/>
<trustInfo xmlns="urn:schemas-microsoft-com:asm.v2">
<security>
<requestedPrivileges xmlns="urn:schemas-microsoft-com:asm.v3">
<requestedExecutionLevel level="asInvoker" uiAccess="false"/>
</requestedPrivileges>
</security>
</trustInfo>
</assembly>
Binary file not shown.
@@ -0,0 +1,69 @@
#pragma checksum "..\..\..\App.xaml" "{406ea660-64cf-4c82-b6f0-42d48172a799}" "90CAE822C2F68C80FBBF8ED0C0BEA7C0"
//------------------------------------------------------------------------------
// <auto-generated>
// This code was generated by a tool.
// Runtime Version:4.0.30319.42000
//
// Changes to this file may cause incorrect behavior and will be lost if
// the code is regenerated.
// </auto-generated>
//------------------------------------------------------------------------------

using System;
using System.Diagnostics;
using System.Windows;
using System.Windows.Automation;
using System.Windows.Controls;
using System.Windows.Controls.Primitives;
using System.Windows.Data;
using System.Windows.Documents;
using System.Windows.Ink;
using System.Windows.Input;
using System.Windows.Markup;
using System.Windows.Media;
using System.Windows.Media.Animation;
using System.Windows.Media.Effects;
using System.Windows.Media.Imaging;
using System.Windows.Media.Media3D;
using System.Windows.Media.TextFormatting;
using System.Windows.Navigation;
using System.Windows.Shapes;
using System.Windows.Shell;


namespace IntellServiceExample {


/// <summary>
/// App
/// </summary>
public partial class App : System.Windows.Application {

/// <summary>
/// InitializeComponent
/// </summary>
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
[System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "4.0.0.0")]
public void InitializeComponent() {

#line 4 "..\..\..\App.xaml"
this.StartupUri = new System.Uri("MainWindow.xaml", System.UriKind.Relative);

#line default
#line hidden
}

/// <summary>
/// Application Entry Point.
/// </summary>
[System.STAThreadAttribute()]
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
[System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "4.0.0.0")]
public static void Main() {
IntellServiceExample.App app = new IntellServiceExample.App();
app.InitializeComponent();
app.Run();
}
}
}

@@ -0,0 +1,69 @@
#pragma checksum "..\..\..\App.xaml" "{406ea660-64cf-4c82-b6f0-42d48172a799}" "90CAE822C2F68C80FBBF8ED0C0BEA7C0"
//------------------------------------------------------------------------------
// <auto-generated>
// This code was generated by a tool.
// Runtime Version:4.0.30319.42000
//
// Changes to this file may cause incorrect behavior and will be lost if
// the code is regenerated.
// </auto-generated>
//------------------------------------------------------------------------------

using System;
using System.Diagnostics;
using System.Windows;
using System.Windows.Automation;
using System.Windows.Controls;
using System.Windows.Controls.Primitives;
using System.Windows.Data;
using System.Windows.Documents;
using System.Windows.Ink;
using System.Windows.Input;
using System.Windows.Markup;
using System.Windows.Media;
using System.Windows.Media.Animation;
using System.Windows.Media.Effects;
using System.Windows.Media.Imaging;
using System.Windows.Media.Media3D;
using System.Windows.Media.TextFormatting;
using System.Windows.Navigation;
using System.Windows.Shapes;
using System.Windows.Shell;


namespace IntellServiceExample {


/// <summary>
/// App
/// </summary>
public partial class App : System.Windows.Application {

/// <summary>
/// InitializeComponent
/// </summary>
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
[System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "4.0.0.0")]
public void InitializeComponent() {

#line 4 "..\..\..\App.xaml"
this.StartupUri = new System.Uri("MainWindow.xaml", System.UriKind.Relative);

#line default
#line hidden
}

/// <summary>
/// Application Entry Point.
/// </summary>
[System.STAThreadAttribute()]
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
[System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "4.0.0.0")]
public static void Main() {
IntellServiceExample.App app = new IntellServiceExample.App();
app.InitializeComponent();
app.Run();
}
}
}

Binary file not shown.
@@ -0,0 +1,198 @@
#pragma checksum "..\..\..\MainWindow.xaml" "{406ea660-64cf-4c82-b6f0-42d48172a799}" "7CAFB0D743B53A33B08CF087A6BBFFD2"
//------------------------------------------------------------------------------
// <auto-generated>
// This code was generated by a tool.
// Runtime Version:4.0.30319.42000
//
// Changes to this file may cause incorrect behavior and will be lost if
// the code is regenerated.
// </auto-generated>
//------------------------------------------------------------------------------

using System;
using System.Diagnostics;
using System.Windows;
using System.Windows.Automation;
using System.Windows.Controls;
using System.Windows.Controls.Primitives;
using System.Windows.Data;
using System.Windows.Documents;
using System.Windows.Ink;
using System.Windows.Input;
using System.Windows.Markup;
using System.Windows.Media;
using System.Windows.Media.Animation;
using System.Windows.Media.Effects;
using System.Windows.Media.Imaging;
using System.Windows.Media.Media3D;
using System.Windows.Media.TextFormatting;
using System.Windows.Navigation;
using System.Windows.Shapes;
using System.Windows.Shell;


namespace MicrosoftProjectOxfordExample {


/// <summary>
/// MainWindow
/// </summary>
public partial class MainWindow : System.Windows.Window, System.Windows.Markup.IComponentConnector {


#line 5 "..\..\..\MainWindow.xaml"
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
internal MicrosoftProjectOxfordExample.MainWindow _mainWindow;

#line default
#line hidden


#line 11 "..\..\..\MainWindow.xaml"
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
internal System.Windows.Controls.TextBox A1;

#line default
#line hidden


#line 12 "..\..\..\MainWindow.xaml"
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
internal System.Windows.Controls.TextBox A2;

#line default
#line hidden


#line 13 "..\..\..\MainWindow.xaml"
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
internal System.Windows.Controls.TextBox A3;

#line default
#line hidden


#line 14 "..\..\..\MainWindow.xaml"
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
internal System.Windows.Controls.TextBox B3;

#line default
#line hidden


#line 15 "..\..\..\MainWindow.xaml"
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
internal System.Windows.Controls.TextBox B2;

#line default
#line hidden


#line 16 "..\..\..\MainWindow.xaml"
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
internal System.Windows.Controls.TextBox B1;

#line default
#line hidden


#line 17 "..\..\..\MainWindow.xaml"
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
internal System.Windows.Controls.TextBox C1;

#line default
#line hidden


#line 18 "..\..\..\MainWindow.xaml"
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
internal System.Windows.Controls.TextBox C2;

#line default
#line hidden


#line 19 "..\..\..\MainWindow.xaml"
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
internal System.Windows.Controls.TextBox C3;

#line default
#line hidden


#line 34 "..\..\..\MainWindow.xaml"
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
internal System.Windows.Controls.TextBox _logText;

#line default
#line hidden

private bool _contentLoaded;

/// <summary>
/// InitializeComponent
/// </summary>
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
[System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "4.0.0.0")]
public void InitializeComponent() {
if (_contentLoaded) {
return;
}
_contentLoaded = true;
System.Uri resourceLocater = new System.Uri("/SpeechToText-WPF-Sample;component/mainwindow.xaml", System.UriKind.Relative);

#line 1 "..\..\..\MainWindow.xaml"
System.Windows.Application.LoadComponent(this, resourceLocater);

#line default
#line hidden
}

[System.Diagnostics.DebuggerNonUserCodeAttribute()]
[System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "4.0.0.0")]
[System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)]
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Design", "CA1033:InterfaceMethodsShouldBeCallableByChildTypes")]
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Maintainability", "CA1502:AvoidExcessiveComplexity")]
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1800:DoNotCastUnnecessarily")]
void System.Windows.Markup.IComponentConnector.Connect(int connectionId, object target) {
switch (connectionId)
{
case 1:
this._mainWindow = ((MicrosoftProjectOxfordExample.MainWindow)(target));
return;
case 2:
this.A1 = ((System.Windows.Controls.TextBox)(target));
return;
case 3:
this.A2 = ((System.Windows.Controls.TextBox)(target));
return;
case 4:
this.A3 = ((System.Windows.Controls.TextBox)(target));
return;
case 5:
this.B3 = ((System.Windows.Controls.TextBox)(target));
return;
case 6:
this.B2 = ((System.Windows.Controls.TextBox)(target));
return;
case 7:
this.B1 = ((System.Windows.Controls.TextBox)(target));
return;
case 8:
this.C1 = ((System.Windows.Controls.TextBox)(target));
return;
case 9:
this.C2 = ((System.Windows.Controls.TextBox)(target));
return;
case 10:
this.C3 = ((System.Windows.Controls.TextBox)(target));
return;
case 11:
this._logText = ((System.Windows.Controls.TextBox)(target));
return;
}
this._contentLoaded = true;
}
}
}

@@ -0,0 +1,198 @@
#pragma checksum "..\..\..\MainWindow.xaml" "{406ea660-64cf-4c82-b6f0-42d48172a799}" "7CAFB0D743B53A33B08CF087A6BBFFD2"
//------------------------------------------------------------------------------
// <auto-generated>
// This code was generated by a tool.
// Runtime Version:4.0.30319.42000
//
// Changes to this file may cause incorrect behavior and will be lost if
// the code is regenerated.
// </auto-generated>
//------------------------------------------------------------------------------

using System;
using System.Diagnostics;
using System.Windows;
using System.Windows.Automation;
using System.Windows.Controls;
using System.Windows.Controls.Primitives;
using System.Windows.Data;
using System.Windows.Documents;
using System.Windows.Ink;
using System.Windows.Input;
using System.Windows.Markup;
using System.Windows.Media;
using System.Windows.Media.Animation;
using System.Windows.Media.Effects;
using System.Windows.Media.Imaging;
using System.Windows.Media.Media3D;
using System.Windows.Media.TextFormatting;
using System.Windows.Navigation;
using System.Windows.Shapes;
using System.Windows.Shell;


namespace MicrosoftProjectOxfordExample {


/// <summary>
/// MainWindow
/// </summary>
public partial class MainWindow : System.Windows.Window, System.Windows.Markup.IComponentConnector {


#line 5 "..\..\..\MainWindow.xaml"
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
internal MicrosoftProjectOxfordExample.MainWindow _mainWindow;

#line default
#line hidden


#line 11 "..\..\..\MainWindow.xaml"
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
internal System.Windows.Controls.TextBox A1;

#line default
#line hidden


#line 12 "..\..\..\MainWindow.xaml"
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
internal System.Windows.Controls.TextBox A2;

#line default
#line hidden


#line 13 "..\..\..\MainWindow.xaml"
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
internal System.Windows.Controls.TextBox A3;

#line default
#line hidden


#line 14 "..\..\..\MainWindow.xaml"
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
internal System.Windows.Controls.TextBox B3;

#line default
#line hidden


#line 15 "..\..\..\MainWindow.xaml"
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
internal System.Windows.Controls.TextBox B2;

#line default
#line hidden


#line 16 "..\..\..\MainWindow.xaml"
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
internal System.Windows.Controls.TextBox B1;

#line default
#line hidden


#line 17 "..\..\..\MainWindow.xaml"
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
internal System.Windows.Controls.TextBox C1;

#line default
#line hidden


#line 18 "..\..\..\MainWindow.xaml"
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
internal System.Windows.Controls.TextBox C2;

#line default
#line hidden


#line 19 "..\..\..\MainWindow.xaml"
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
internal System.Windows.Controls.TextBox C3;

#line default
#line hidden


#line 34 "..\..\..\MainWindow.xaml"
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
internal System.Windows.Controls.TextBox _logText;

#line default
#line hidden

private bool _contentLoaded;

/// <summary>
/// InitializeComponent
/// </summary>
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
[System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "4.0.0.0")]
public void InitializeComponent() {
if (_contentLoaded) {
return;
}
_contentLoaded = true;
System.Uri resourceLocater = new System.Uri("/SpeechToText-WPF-Sample;component/mainwindow.xaml", System.UriKind.Relative);

#line 1 "..\..\..\MainWindow.xaml"
System.Windows.Application.LoadComponent(this, resourceLocater);

#line default
#line hidden
}

[System.Diagnostics.DebuggerNonUserCodeAttribute()]
[System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "4.0.0.0")]
[System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)]
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Design", "CA1033:InterfaceMethodsShouldBeCallableByChildTypes")]
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Maintainability", "CA1502:AvoidExcessiveComplexity")]
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1800:DoNotCastUnnecessarily")]
void System.Windows.Markup.IComponentConnector.Connect(int connectionId, object target) {
switch (connectionId)
{
case 1:
this._mainWindow = ((MicrosoftProjectOxfordExample.MainWindow)(target));
return;
case 2:
this.A1 = ((System.Windows.Controls.TextBox)(target));
return;
case 3:
this.A2 = ((System.Windows.Controls.TextBox)(target));
return;
case 4:
this.A3 = ((System.Windows.Controls.TextBox)(target));
return;
case 5:
this.B3 = ((System.Windows.Controls.TextBox)(target));
return;
case 6:
this.B2 = ((System.Windows.Controls.TextBox)(target));
return;
case 7:
this.B1 = ((System.Windows.Controls.TextBox)(target));
return;
case 8:
this.C1 = ((System.Windows.Controls.TextBox)(target));
return;
case 9:
this.C2 = ((System.Windows.Controls.TextBox)(target));
return;
case 10:
this.C3 = ((System.Windows.Controls.TextBox)(target));
return;
case 11:
this._logText = ((System.Windows.Controls.TextBox)(target));
return;
}
this._contentLoaded = true;
}
}
}

@@ -0,0 +1,15 @@
C:\Users\t-elharo\Documents\NoBrailleNoProblem\speech_SpeechToText-SDK-Windows\samples\SpeechRecognitionServiceExample\obj\x64\Debug\App.g.cs
C:\Users\t-elharo\Documents\NoBrailleNoProblem\speech_SpeechToText-SDK-Windows\samples\SpeechRecognitionServiceExample\obj\x64\Debug\SpeechToText-WPF-Sample_MarkupCompile.cache
C:\Users\t-elharo\Documents\NoBrailleNoProblem\speech_SpeechToText-SDK-Windows\samples\SpeechRecognitionServiceExample\objd\amd64\SpeechToText-WPF-Sample.exe.config
C:\Users\t-elharo\Documents\NoBrailleNoProblem\speech_SpeechToText-SDK-Windows\samples\SpeechRecognitionServiceExample\objd\amd64\SpeechToText-WPF-Sample.exe
C:\Users\t-elharo\Documents\NoBrailleNoProblem\speech_SpeechToText-SDK-Windows\samples\SpeechRecognitionServiceExample\objd\amd64\SpeechToText-WPF-Sample.pdb
C:\Users\t-elharo\Documents\NoBrailleNoProblem\speech_SpeechToText-SDK-Windows\samples\SpeechRecognitionServiceExample\objd\amd64\SpeechClient.dll
C:\Users\t-elharo\Documents\NoBrailleNoProblem\speech_SpeechToText-SDK-Windows\samples\SpeechRecognitionServiceExample\obj\x64\Debug\MainWindow.baml
C:\Users\t-elharo\Documents\NoBrailleNoProblem\speech_SpeechToText-SDK-Windows\samples\SpeechRecognitionServiceExample\obj\x64\Debug\MainWindow.g.cs
C:\Users\t-elharo\Documents\NoBrailleNoProblem\speech_SpeechToText-SDK-Windows\samples\SpeechRecognitionServiceExample\obj\x64\Debug\SpeechToText-WPF-Sample.g.resources
C:\Users\t-elharo\Documents\NoBrailleNoProblem\speech_SpeechToText-SDK-Windows\samples\SpeechRecognitionServiceExample\obj\x64\Debug\SpeechToText-WPF-Sample.exe
C:\Users\t-elharo\Documents\NoBrailleNoProblem\speech_SpeechToText-SDK-Windows\samples\SpeechRecognitionServiceExample\obj\x64\Debug\SpeechToText-WPF-Sample.pdb
C:\Users\t-elharo\Documents\NoBrailleNoProblem\speech_SpeechToText-SDK-Windows\samples\SpeechRecognitionServiceExample\obj\x64\Debug\Speech2Text.csprojResolveAssemblyReference.cache
C:\Users\t-elharo\Documents\TicTacTalk\objd\amd64\SpeechToText-WPF-Sample.exe.config
C:\Users\t-elharo\Documents\TicTacTalk\obj\x64\Debug\SpeechToText-WPF-Sample.exe
C:\Users\t-elharo\Documents\TicTacTalk\obj\x64\Debug\SpeechToText-WPF-Sample.pdb
@@ -0,0 +1,28 @@
C:\Users\t-elharo\Downloads\speech_SpeechToText-SDK-Windows\samples\SpeechRecognitionServiceExample\objd\amd64\batman.wav
C:\Users\t-elharo\Downloads\speech_SpeechToText-SDK-Windows\samples\SpeechRecognitionServiceExample\objd\amd64\SpeechToText-WPF-Sample.exe.config
C:\Users\t-elharo\Downloads\speech_SpeechToText-SDK-Windows\samples\SpeechRecognitionServiceExample\objd\amd64\SpeechToText-WPF-Sample.exe
C:\Users\t-elharo\Downloads\speech_SpeechToText-SDK-Windows\samples\SpeechRecognitionServiceExample\objd\amd64\SpeechToText-WPF-Sample.pdb
C:\Users\t-elharo\Downloads\speech_SpeechToText-SDK-Windows\samples\SpeechRecognitionServiceExample\objd\amd64\SpeechClient.dll
C:\Users\t-elharo\Downloads\speech_SpeechToText-SDK-Windows\samples\SpeechRecognitionServiceExample\obj\x64\Debug\MainWindow.baml
C:\Users\t-elharo\Downloads\speech_SpeechToText-SDK-Windows\samples\SpeechRecognitionServiceExample\obj\x64\Debug\MainWindow.g.cs
C:\Users\t-elharo\Downloads\speech_SpeechToText-SDK-Windows\samples\SpeechRecognitionServiceExample\obj\x64\Debug\App.g.cs
C:\Users\t-elharo\Downloads\speech_SpeechToText-SDK-Windows\samples\SpeechRecognitionServiceExample\obj\x64\Debug\SpeechToText-WPF-Sample_Content.g.cs
C:\Users\t-elharo\Downloads\speech_SpeechToText-SDK-Windows\samples\SpeechRecognitionServiceExample\obj\x64\Debug\SpeechToText-WPF-Sample_MarkupCompile.cache
C:\Users\t-elharo\Downloads\speech_SpeechToText-SDK-Windows\samples\SpeechRecognitionServiceExample\obj\x64\Debug\SpeechToText-WPF-Sample.g.resources
C:\Users\t-elharo\Downloads\speech_SpeechToText-SDK-Windows\samples\SpeechRecognitionServiceExample\obj\x64\Debug\SpeechToText-WPF-Sample.exe
C:\Users\t-elharo\Downloads\speech_SpeechToText-SDK-Windows\samples\SpeechRecognitionServiceExample\obj\x64\Debug\SpeechToText-WPF-Sample.pdb
C:\Users\t-elharo\Downloads\speech_SpeechToText-SDK-Windows\samples\SpeechRecognitionServiceExample\obj\x64\Debug\SpeechToText-WPF-Sample.csprojResolveAssemblyReference.cache
C:\Users\t-elharo\Documents\NoBrailleNoProblem\speech_SpeechToText-SDK-Windows\samples\SpeechRecognitionServiceExample\objd\amd64\batman.wav
C:\Users\t-elharo\Documents\NoBrailleNoProblem\speech_SpeechToText-SDK-Windows\samples\SpeechRecognitionServiceExample\objd\amd64\SpeechToText-WPF-Sample.exe.config
C:\Users\t-elharo\Documents\NoBrailleNoProblem\speech_SpeechToText-SDK-Windows\samples\SpeechRecognitionServiceExample\objd\amd64\SpeechToText-WPF-Sample.exe
C:\Users\t-elharo\Documents\NoBrailleNoProblem\speech_SpeechToText-SDK-Windows\samples\SpeechRecognitionServiceExample\objd\amd64\SpeechToText-WPF-Sample.pdb
C:\Users\t-elharo\Documents\NoBrailleNoProblem\speech_SpeechToText-SDK-Windows\samples\SpeechRecognitionServiceExample\objd\amd64\SpeechClient.dll
C:\Users\t-elharo\Documents\NoBrailleNoProblem\speech_SpeechToText-SDK-Windows\samples\SpeechRecognitionServiceExample\obj\x64\Debug\SpeechToText-WPF-Sample.csprojResolveAssemblyReference.cache
C:\Users\t-elharo\Documents\NoBrailleNoProblem\speech_SpeechToText-SDK-Windows\samples\SpeechRecognitionServiceExample\obj\x64\Debug\MainWindow.baml
C:\Users\t-elharo\Documents\NoBrailleNoProblem\speech_SpeechToText-SDK-Windows\samples\SpeechRecognitionServiceExample\obj\x64\Debug\MainWindow.g.cs
C:\Users\t-elharo\Documents\NoBrailleNoProblem\speech_SpeechToText-SDK-Windows\samples\SpeechRecognitionServiceExample\obj\x64\Debug\App.g.cs
C:\Users\t-elharo\Documents\NoBrailleNoProblem\speech_SpeechToText-SDK-Windows\samples\SpeechRecognitionServiceExample\obj\x64\Debug\SpeechToText-WPF-Sample_Content.g.cs
C:\Users\t-elharo\Documents\NoBrailleNoProblem\speech_SpeechToText-SDK-Windows\samples\SpeechRecognitionServiceExample\obj\x64\Debug\SpeechToText-WPF-Sample_MarkupCompile.cache
C:\Users\t-elharo\Documents\NoBrailleNoProblem\speech_SpeechToText-SDK-Windows\samples\SpeechRecognitionServiceExample\obj\x64\Debug\SpeechToText-WPF-Sample.g.resources
C:\Users\t-elharo\Documents\NoBrailleNoProblem\speech_SpeechToText-SDK-Windows\samples\SpeechRecognitionServiceExample\obj\x64\Debug\SpeechToText-WPF-Sample.exe
C:\Users\t-elharo\Documents\NoBrailleNoProblem\speech_SpeechToText-SDK-Windows\samples\SpeechRecognitionServiceExample\obj\x64\Debug\SpeechToText-WPF-Sample.pdb
Binary file not shown.
@@ -0,0 +1,13 @@
//------------------------------------------------------------------------------
// <auto-generated>
// This code was generated by a tool.
// Runtime Version:4.0.30319.42000
//
// Changes to this file may cause incorrect behavior and will be lost if
// the code is regenerated.
// </auto-generated>
//------------------------------------------------------------------------------

[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("batman.wav")]


Empty file.
Empty file.
Empty file.
@@ -0,0 +1,69 @@
#pragma checksum "..\..\..\App.xaml" "{406ea660-64cf-4c82-b6f0-42d48172a799}" "90CAE822C2F68C80FBBF8ED0C0BEA7C0"
//------------------------------------------------------------------------------
// <auto-generated>
// This code was generated by a tool.
// Runtime Version:4.0.30319.42000
//
// Changes to this file may cause incorrect behavior and will be lost if
// the code is regenerated.
// </auto-generated>
//------------------------------------------------------------------------------

using System;
using System.Diagnostics;
using System.Windows;
using System.Windows.Automation;
using System.Windows.Controls;
using System.Windows.Controls.Primitives;
using System.Windows.Data;
using System.Windows.Documents;
using System.Windows.Ink;
using System.Windows.Input;
using System.Windows.Markup;
using System.Windows.Media;
using System.Windows.Media.Animation;
using System.Windows.Media.Effects;
using System.Windows.Media.Imaging;
using System.Windows.Media.Media3D;
using System.Windows.Media.TextFormatting;
using System.Windows.Navigation;
using System.Windows.Shapes;
using System.Windows.Shell;


namespace IntellServiceExample {


/// <summary>
/// App
/// </summary>
public partial class App : System.Windows.Application {

/// <summary>
/// InitializeComponent
/// </summary>
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
[System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "4.0.0.0")]
public void InitializeComponent() {

#line 4 "..\..\..\App.xaml"
this.StartupUri = new System.Uri("MainWindow.xaml", System.UriKind.Relative);

#line default
#line hidden
}

/// <summary>
/// Application Entry Point.
/// </summary>
[System.STAThreadAttribute()]
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
[System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "4.0.0.0")]
public static void Main() {
IntellServiceExample.App app = new IntellServiceExample.App();
app.InitializeComponent();
app.Run();
}
}
}

@@ -0,0 +1,69 @@
#pragma checksum "..\..\..\App.xaml" "{406ea660-64cf-4c82-b6f0-42d48172a799}" "90CAE822C2F68C80FBBF8ED0C0BEA7C0"
//------------------------------------------------------------------------------
// <auto-generated>
// This code was generated by a tool.
// Runtime Version:4.0.30319.42000
//
// Changes to this file may cause incorrect behavior and will be lost if
// the code is regenerated.
// </auto-generated>
//------------------------------------------------------------------------------

using System;
using System.Diagnostics;
using System.Windows;
using System.Windows.Automation;
using System.Windows.Controls;
using System.Windows.Controls.Primitives;
using System.Windows.Data;
using System.Windows.Documents;
using System.Windows.Ink;
using System.Windows.Input;
using System.Windows.Markup;
using System.Windows.Media;
using System.Windows.Media.Animation;
using System.Windows.Media.Effects;
using System.Windows.Media.Imaging;
using System.Windows.Media.Media3D;
using System.Windows.Media.TextFormatting;
using System.Windows.Navigation;
using System.Windows.Shapes;
using System.Windows.Shell;


namespace IntellServiceExample {


/// <summary>
/// App
/// </summary>
public partial class App : System.Windows.Application {

/// <summary>
/// InitializeComponent
/// </summary>
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
[System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "4.0.0.0")]
public void InitializeComponent() {

#line 4 "..\..\..\App.xaml"
this.StartupUri = new System.Uri("MainWindow.xaml", System.UriKind.Relative);

#line default
#line hidden
}

/// <summary>
/// Application Entry Point.
/// </summary>
[System.STAThreadAttribute()]
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
[System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "4.0.0.0")]
public static void Main() {
IntellServiceExample.App app = new IntellServiceExample.App();
app.InitializeComponent();
app.Run();
}
}
}

Binary file not shown.
@@ -0,0 +1,99 @@
#pragma checksum "..\..\..\MainWindow.xaml" "{406ea660-64cf-4c82-b6f0-42d48172a799}" "C3B5D68B4840B2286C26D74DBF7874F6"
//------------------------------------------------------------------------------
// <auto-generated>
// This code was generated by a tool.
// Runtime Version:4.0.30319.42000
//
// Changes to this file may cause incorrect behavior and will be lost if
// the code is regenerated.
// </auto-generated>
//------------------------------------------------------------------------------

using System;
using System.Diagnostics;
using System.Windows;
using System.Windows.Automation;
using System.Windows.Controls;
using System.Windows.Controls.Primitives;
using System.Windows.Data;
using System.Windows.Documents;
using System.Windows.Ink;
using System.Windows.Input;
using System.Windows.Markup;
using System.Windows.Media;
using System.Windows.Media.Animation;
using System.Windows.Media.Effects;
using System.Windows.Media.Imaging;
using System.Windows.Media.Media3D;
using System.Windows.Media.TextFormatting;
using System.Windows.Navigation;
using System.Windows.Shapes;
using System.Windows.Shell;


namespace MicrosoftProjectOxfordExample {


/// <summary>
/// MainWindow
/// </summary>
public partial class MainWindow : System.Windows.Window, System.Windows.Markup.IComponentConnector {


#line 2 "..\..\..\MainWindow.xaml"
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
internal MicrosoftProjectOxfordExample.MainWindow _mainWindow;

#line default
#line hidden


#line 33 "..\..\..\MainWindow.xaml"
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
internal System.Windows.Controls.TextBox _logText;

#line default
#line hidden

private bool _contentLoaded;

/// <summary>
/// InitializeComponent
/// </summary>
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
[System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "4.0.0.0")]
public void InitializeComponent() {
if (_contentLoaded) {
return;
}
_contentLoaded = true;
System.Uri resourceLocater = new System.Uri("/SpeechToText-WPF-Sample;component/mainwindow.xaml", System.UriKind.Relative);

#line 1 "..\..\..\MainWindow.xaml"
System.Windows.Application.LoadComponent(this, resourceLocater);

#line default
#line hidden
}

[System.Diagnostics.DebuggerNonUserCodeAttribute()]
[System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "4.0.0.0")]
[System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)]
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Design", "CA1033:InterfaceMethodsShouldBeCallableByChildTypes")]
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Maintainability", "CA1502:AvoidExcessiveComplexity")]
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1800:DoNotCastUnnecessarily")]
void System.Windows.Markup.IComponentConnector.Connect(int connectionId, object target) {
switch (connectionId)
{
case 1:
this._mainWindow = ((MicrosoftProjectOxfordExample.MainWindow)(target));
return;
case 2:
this._logText = ((System.Windows.Controls.TextBox)(target));
return;
}
this._contentLoaded = true;
}
}
}

@@ -0,0 +1,99 @@
#pragma checksum "..\..\..\MainWindow.xaml" "{406ea660-64cf-4c82-b6f0-42d48172a799}" "C3B5D68B4840B2286C26D74DBF7874F6"
//------------------------------------------------------------------------------
// <auto-generated>
// This code was generated by a tool.
// Runtime Version:4.0.30319.42000
//
// Changes to this file may cause incorrect behavior and will be lost if
// the code is regenerated.
// </auto-generated>
//------------------------------------------------------------------------------

using System;
using System.Diagnostics;
using System.Windows;
using System.Windows.Automation;
using System.Windows.Controls;
using System.Windows.Controls.Primitives;
using System.Windows.Data;
using System.Windows.Documents;
using System.Windows.Ink;
using System.Windows.Input;
using System.Windows.Markup;
using System.Windows.Media;
using System.Windows.Media.Animation;
using System.Windows.Media.Effects;
using System.Windows.Media.Imaging;
using System.Windows.Media.Media3D;
using System.Windows.Media.TextFormatting;
using System.Windows.Navigation;
using System.Windows.Shapes;
using System.Windows.Shell;


namespace MicrosoftProjectOxfordExample {


/// <summary>
/// MainWindow
/// </summary>
public partial class MainWindow : System.Windows.Window, System.Windows.Markup.IComponentConnector {


#line 2 "..\..\..\MainWindow.xaml"
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
internal MicrosoftProjectOxfordExample.MainWindow _mainWindow;

#line default
#line hidden


#line 33 "..\..\..\MainWindow.xaml"
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
internal System.Windows.Controls.TextBox _logText;

#line default
#line hidden

private bool _contentLoaded;

/// <summary>
/// InitializeComponent
/// </summary>
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
[System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "4.0.0.0")]
public void InitializeComponent() {
if (_contentLoaded) {
return;
}
_contentLoaded = true;
System.Uri resourceLocater = new System.Uri("/SpeechToText-WPF-Sample;component/mainwindow.xaml", System.UriKind.Relative);

#line 1 "..\..\..\MainWindow.xaml"
System.Windows.Application.LoadComponent(this, resourceLocater);

#line default
#line hidden
}

[System.Diagnostics.DebuggerNonUserCodeAttribute()]
[System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "4.0.0.0")]
[System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)]
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Design", "CA1033:InterfaceMethodsShouldBeCallableByChildTypes")]
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Maintainability", "CA1502:AvoidExcessiveComplexity")]
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1800:DoNotCastUnnecessarily")]
void System.Windows.Markup.IComponentConnector.Connect(int connectionId, object target) {
switch (connectionId)
{
case 1:
this._mainWindow = ((MicrosoftProjectOxfordExample.MainWindow)(target));
return;
case 2:
this._logText = ((System.Windows.Controls.TextBox)(target));
return;
}
this._contentLoaded = true;
}
}
}

@@ -0,0 +1,14 @@
C:\Users\t-elharo\Documents\NoBrailleNoProblem\speech_SpeechToText-SDK-Windows\samples\SpeechRecognitionServiceExample\bin\x86\Debug\batman.wav
C:\Users\t-elharo\Documents\NoBrailleNoProblem\speech_SpeechToText-SDK-Windows\samples\SpeechRecognitionServiceExample\bin\x86\Debug\SpeechToText-WPF-Sample.exe.config
C:\Users\t-elharo\Documents\NoBrailleNoProblem\speech_SpeechToText-SDK-Windows\samples\SpeechRecognitionServiceExample\bin\x86\Debug\SpeechToText-WPF-Sample.exe
C:\Users\t-elharo\Documents\NoBrailleNoProblem\speech_SpeechToText-SDK-Windows\samples\SpeechRecognitionServiceExample\bin\x86\Debug\SpeechToText-WPF-Sample.pdb
C:\Users\t-elharo\Documents\NoBrailleNoProblem\speech_SpeechToText-SDK-Windows\samples\SpeechRecognitionServiceExample\bin\x86\Debug\SpeechClient.dll
C:\Users\t-elharo\Documents\NoBrailleNoProblem\speech_SpeechToText-SDK-Windows\samples\SpeechRecognitionServiceExample\obj\x86\Debug\SpeechToText-WPF-Sample.csprojResolveAssemblyReference.cache
C:\Users\t-elharo\Documents\NoBrailleNoProblem\speech_SpeechToText-SDK-Windows\samples\SpeechRecognitionServiceExample\obj\x86\Debug\MainWindow.baml
C:\Users\t-elharo\Documents\NoBrailleNoProblem\speech_SpeechToText-SDK-Windows\samples\SpeechRecognitionServiceExample\obj\x86\Debug\MainWindow.g.cs
C:\Users\t-elharo\Documents\NoBrailleNoProblem\speech_SpeechToText-SDK-Windows\samples\SpeechRecognitionServiceExample\obj\x86\Debug\App.g.cs
C:\Users\t-elharo\Documents\NoBrailleNoProblem\speech_SpeechToText-SDK-Windows\samples\SpeechRecognitionServiceExample\obj\x86\Debug\SpeechToText-WPF-Sample_Content.g.cs
C:\Users\t-elharo\Documents\NoBrailleNoProblem\speech_SpeechToText-SDK-Windows\samples\SpeechRecognitionServiceExample\obj\x86\Debug\SpeechToText-WPF-Sample_MarkupCompile.cache
C:\Users\t-elharo\Documents\NoBrailleNoProblem\speech_SpeechToText-SDK-Windows\samples\SpeechRecognitionServiceExample\obj\x86\Debug\SpeechToText-WPF-Sample.g.resources
C:\Users\t-elharo\Documents\NoBrailleNoProblem\speech_SpeechToText-SDK-Windows\samples\SpeechRecognitionServiceExample\obj\x86\Debug\SpeechToText-WPF-Sample.exe
C:\Users\t-elharo\Documents\NoBrailleNoProblem\speech_SpeechToText-SDK-Windows\samples\SpeechRecognitionServiceExample\obj\x86\Debug\SpeechToText-WPF-Sample.pdb
Binary file not shown.
@@ -0,0 +1,13 @@
//------------------------------------------------------------------------------
// <auto-generated>
// This code was generated by a tool.
// Runtime Version:4.0.30319.42000
//
// Changes to this file may cause incorrect behavior and will be lost if
// the code is regenerated.
// </auto-generated>
//------------------------------------------------------------------------------

[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("batman.wav")]


@@ -0,0 +1,13 @@
//------------------------------------------------------------------------------
// <auto-generated>
// This code was generated by a tool.
// Runtime Version:4.0.30319.42000
//
// Changes to this file may cause incorrect behavior and will be lost if
// the code is regenerated.
// </auto-generated>
//------------------------------------------------------------------------------

[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("batman.wav")]


Empty file.
Empty file.
Empty file.
@@ -0,0 +1,12 @@
<?xml version="1.0" encoding="utf-8"?>
<configuration>
<startup>
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.5"/>
</startup>
<appSettings>
<add key="primaryKey" value="yourPrimaryKey" />
<add key="secondaryKey" value="yourSecondayKey" />
<add key="luisAppID" value="yourLuisAppID" />
<add key="luisSubscriptionID" value="yourLuisSubsrciptionID" />
</appSettings>
</configuration>
@@ -0,0 +1,12 @@
<?xml version="1.0" encoding="utf-8"?>
<configuration>
<startup>
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.5"/>
</startup>
<appSettings>
<add key="primaryKey" value="yourPrimaryKey" />
<add key="secondaryKey" value="yourSecondayKey" />
<add key="luisAppID" value="yourLuisAppID" />
<add key="luisSubscriptionID" value="yourLuisSubsrciptionID" />
</appSettings>
</configuration>
@@ -0,0 +1,11 @@
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<assembly xmlns="urn:schemas-microsoft-com:asm.v1" manifestVersion="1.0">
<assemblyIdentity version="1.0.0.0" name="MyApplication.app"/>
<trustInfo xmlns="urn:schemas-microsoft-com:asm.v2">
<security>
<requestedPrivileges xmlns="urn:schemas-microsoft-com:asm.v3">
<requestedExecutionLevel level="asInvoker" uiAccess="false"/>
</requestedPrivileges>
</security>
</trustInfo>
</assembly>
@@ -0,0 +1,4 @@
<?xml version="1.0" encoding="utf-8"?>
<packages>
<package id="Microsoft.ProjectOxford.SpeechRecognition-x64" version="0.4.9.1" targetFramework="net45" />
</packages>
@@ -0,0 +1 @@
nuget pack SpeechClient.dll.nuspec
Binary file not shown.