aboutsummaryrefslogtreecommitdiffstats
path: root/Software/Experiments/Tango.RemoteDesktop/WpfApp1/App.config
blob: dced5aa43f53a5ddbb5a6e4393e019c8fbd89ed0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
<?xml version="1.0" encoding="utf-8"?>
<configuration>
    <startup> 
        <supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.6.1" />
    </startup>
  <runtime>
    <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
      <dependentAssembly>
        <assemblyIdentity name="ZedGraph" publicKeyToken="02a83cbd123fcd60" culture="neutral" />
        <bindingRedirect oldVersion="0.0.0.0-5.1.7.430" newVersion="5.1.7.430" />
      </dependentAssembly>
    </assemblyBinding>
  </runtime>
</configuration>
ns.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Tango.Settings { /// <summary> /// Represents the stubs UI utility settings. /// </summary> public class StubsUI { /// <summary> /// Gets or sets the selected port. /// </summary> public String SelectedPort { get; set; } /// <summary> /// Gets or sets the baud rate. /// </summary> public int BaudRate { get; set; } /// <summary> /// Gets or sets the last tabs. /// </summary> public List<String> LastTabs { get; set; } /// <summary> /// Gets or sets a value indicating whether [automatic log response]. /// </summary> public bool AutoLogResponse { get; set; } /// <summary> /// Initializes a new instance of the <see cref="StubsUI"/> class. /// </summary> public StubsUI() { BaudRate = 9600; LastTabs = new List<string>(); } } }