diff SilverlightValidation/Tools/StatLight/StatLight.exe.config @ 108:b728c44d9c61

StatLight added to repo
author stevenhollidge <stevenhollidge@hotmail.com>
date Sun, 06 May 2012 16:15:42 +0100
parents
children
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/SilverlightValidation/Tools/StatLight/StatLight.exe.config	Sun May 06 16:15:42 2012 +0100
@@ -0,0 +1,41 @@
+<?xml version="1.0"?>
+<configuration>
+    <configSections>
+        <sectionGroup name="applicationSettings" type="System.Configuration.ApplicationSettingsGroup, System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" >
+            <section name="StatLight.Core.Properties.Settings" type="System.Configuration.ClientSettingsSection, System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" requirePermission="false" />
+        </sectionGroup>
+    </configSections>
+    <applicationSettings>
+
+        <!-- NOTE: the ConsoleColor{Name} settings are from the System.ConsoleColor enum (you can change these to any value in there)-->
+        <StatLight.Core.Properties.Settings>
+            <setting name="ConsoleColorError" serializeAs="String">
+                <value>Red</value>
+            </setting>
+            <setting name="ConsoleColorInformation" serializeAs="String">
+                <value>White</value>
+            </setting>
+            <setting name="ConsoleColorDebug" serializeAs="String">
+                <value>Cyan</value>
+            </setting>
+            <setting name="ConsoleColorWarning" serializeAs="String">
+                <value>Yellow</value>
+            </setting>
+            <setting name="ConsoleColorSuccess" serializeAs="String">
+                <value>Green</value>
+            </setting>
+
+            <!--
+                Windowless value will be used to set the silverlight object tag in the test page html. EX if the 
+                windowless property is 'false' then it will output <param name="windowless" value="false"/> in the html
+            -->
+            <setting name="Windowless" serializeAs="String">
+                <value>false</value>
+            </setting>
+
+        </StatLight.Core.Properties.Settings>
+    </applicationSettings>
+    <startup>
+        <supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.0"/>
+    </startup>
+</configuration>