aboutsummaryrefslogtreecommitdiffstats
path: root/Software/Visual_Studio/Tango.Integration/packages.config
blob: 56f5092b26a6388986ca5cc88b0b4c669c1dbd6f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
<?xml version="1.0" encoding="utf-8"?>
<packages>
  <package id="EntityFramework" version="6.2.0" targetFramework="net461" />
  <package id="Google.Protobuf" version="3.4.1" targetFramework="net46" />
  <package id="Ionic.Zip" version="1.9.1.8" targetFramework="net461" />
  <package id="Newtonsoft.Json" version="9.0.1" targetFramework="net461" />
  <package id="System.Reactive" version="3.1.1" targetFramework="net46" />
  <package id="System.Reactive.Core" version="3.1.1" targetFramework="net46" />
  <package id="System.Reactive.Interfaces" version="3.1.1" targetFramework="net46" />
  <package id="System.Reactive.Linq" version="3.1.1" targetFramework="net46" />
  <package id="System.Reactive.PlatformServices" version="3.1.1" targetFramework="net46" />
  <package id="System.Reactive.Windows.Threading" version="3.1.1" targetFramework="net46" />
</packages>
ss="nn">System.Linq; using System.Text; using System.Threading.Tasks; namespace Tango.MachineStudio.Common.Speech { /// <summary> /// Represents a text to speech engine. /// </summary> public interface ISpeechProvider { /// <summary> /// Gets or sets a value indicating whether this <see cref="ISpeechProvider"/> is mute. /// </summary> bool Mute { get; set; } /// <summary> /// Speaks the specified text associated with an information sound. /// </summary> /// <param name="text">The text.</param> void SpeakInfo(String text); /// <summary> /// Speaks the specified text associated with an error sound. /// </summary> /// <param name="text">The text.</param> void SpeakError(String text); } }