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>
>// Copyright (c) AlphaSierraPapa for the SharpDevelop Team (for details please see \doc\copyright.txt) // This code is distributed under the GNU LGPL (for details please see \doc\license.txt) using System; using System.Text.RegularExpressions; namespace ICSharpCode.AvalonEdit.Highlighting { /// <summary> /// A highlighting rule. /// </summary> [Serializable] public class HighlightingRule { /// <summary> /// Gets/Sets the regular expression for the rule. /// </summary> public Regex Regex { get; set; } /// <summary> /// Gets/Sets the highlighting color. /// </summary> public HighlightingColor Color { get; set; } /// <inheritdoc/> public override string ToString() { return "[" + GetType().Name + " " + Regex + "]"; } } }