mirror of
https://github.com/OrchardCMS/Orchard.git
synced 2025-10-15 03:25:23 +08:00

Executing ClickToBuild.cmd generates the package for Azure including all modules available in Orchard.Web automatically AzureSDK in requiered for this tasks. If not present, the package won't succeed, but Orchard.Web will still be built The Orchard.Azure solution contains the required environment for implementing Azure specific providers, and unit testing The Orchard.Azure.CloudService solution contains the CloudService enrironment to simulate Azure platform locally --HG-- branch : dev
28 lines
1023 B
Plaintext
28 lines
1023 B
Plaintext
<system.diagnostics>
|
|
<trace autoflush="true"/>
|
|
<sources>
|
|
<source name="Default" switchValue="Verbose">
|
|
<listeners>
|
|
<add name="OrchardDebugTextLog" />
|
|
<add name="WebPageTrace"/>
|
|
</listeners>
|
|
</source>
|
|
<source name="Orchard.Localization" switchValue="Warning">
|
|
<listeners>
|
|
<add name="OrchardDebugTextLog" />
|
|
<add name="WebPageTrace"/>
|
|
</listeners>
|
|
</source>
|
|
<source name="Orchard.Data.SessionLocator" switchValue="Information">
|
|
<listeners>
|
|
<add name="OrchardDebugTextLog" />
|
|
<add name="WebPageTrace"/>
|
|
</listeners>
|
|
</source>
|
|
</sources>
|
|
<sharedListeners>
|
|
<add name="OrchardDebugTextLog" type="System.Diagnostics.TextWriterTraceListener" initializeData="c:\logs\orchard-debug.txt" />
|
|
<add name="WebPageTrace" type="System.Web.WebPageTraceListener, System.Web, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" />
|
|
</sharedListeners>
|
|
</system.diagnostics>
|