-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Branched from $/Liquesce/Liquesce-PhaseII to a version that support .…
…Net 4.5 onwards
- Loading branch information
smurfiv_cp
authored and
smurfiv_cp
committed
Dec 24, 2014
1 parent
e1d365b
commit 474bf91
Showing
219 changed files
with
17,239 additions
and
10,359 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,43 +1,44 @@ | ||
<?xml version="1.0"?> | ||
<?xml version="1.0"?> | ||
<configuration> | ||
<configSections> | ||
<section name="nlog" type="NLog.Config.ConfigSectionHandler, NLog"/> | ||
<sectionGroup name="userSettings" type="System.Configuration.UserSettingsGroup, System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089"> | ||
<section name="Liquesce.Properties.Settings" type="System.Configuration.ClientSettingsSection, System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" allowExeDefinition="MachineToLocalUser" requirePermission="false"/> | ||
<section name="Liquesce.Settings1" type="System.Configuration.ClientSettingsSection, System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" allowExeDefinition="MachineToLocalUser" requirePermission="false"/> | ||
</sectionGroup> | ||
</configSections> | ||
|
||
<!-- Stick the namespaces in .. this is supposed to allow the intellisense to work ;-) --> | ||
<nlog xmlns="http://www.nlog-project.org/schemas/NLog.xsd" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | ||
autoReload="true"> | ||
<nlog xmlns="http://www.nlog-project.org/schemas/NLog.xsd" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" autoReload="true"> | ||
<variable name="LogDir" value="${specialfolder:folder=CommonApplicationData}/Liquesce/Logs"/> | ||
<targets> | ||
<target name="file" xsi:type="File" | ||
layout="${longdate}[${threadid}][${threadname}] ${level:uppercase=true} ${logger}: ${message} ${exception:format=ToString}" | ||
fileName="${LogDir}/Liquesce.log" | ||
archiveFileName="${LogDir}/Liquesce.{#}.log" | ||
archiveAboveSize="1048576" | ||
archiveNumbering="Rolling" | ||
maxArchiveFiles="5"> | ||
<target name="file" xsi:type="File" layout="${longdate}[${threadid}] ${level:uppercase=true} ${logger}: ${message} ${exception:format=ToString}" fileName="${LogDir}/Liquesce.log" archiveFileName="${LogDir}/Liquesce.{#}.log" archiveAboveSize="1048576" archiveNumbering="Rolling" maxArchiveFiles="5"> | ||
</target> | ||
</targets> | ||
|
||
<rules> | ||
<logger name="*" minlevel="Debug" writeTo="file"/> | ||
</rules> | ||
</nlog> | ||
<system.serviceModel> | ||
<client> | ||
<endpoint | ||
name="LiquesceFacade" | ||
address="net.tcp://localhost:41014/LiquesceFacade" | ||
binding="netTcpBinding" | ||
bindingConfiguration="tcp_Unsecured" | ||
contract="LiquesceFacade.ILiquesce" /> | ||
</client> | ||
<bindings> | ||
<netTcpBinding> | ||
<binding name="tcp_Unsecured"> | ||
<security mode="None" /> | ||
</binding> | ||
</netTcpBinding> | ||
</bindings> | ||
</system.serviceModel> | ||
</configuration> | ||
<userSettings> | ||
<Liquesce.Properties.Settings> | ||
<setting name="WindowLocation" serializeAs="String"> | ||
<value/> | ||
</setting> | ||
<setting name="UpdateRequired" serializeAs="String"> | ||
<value>True</value> | ||
</setting> | ||
<setting name="TailWindowLocation" serializeAs="String"> | ||
<value/> | ||
</setting> | ||
</Liquesce.Properties.Settings> | ||
<Liquesce.Settings1> | ||
<setting name="WindowLocation" serializeAs="String"> | ||
<value/> | ||
</setting> | ||
<setting name="UpdateRequired" serializeAs="String"> | ||
<value>True</value> | ||
</setting> | ||
</Liquesce.Settings1> | ||
</userSettings> | ||
<startup><supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.0"/></startup></configuration> |
Oops, something went wrong.