mirror of
https://github.com/ViViDboarder/subsonic-csharp.git
synced 2024-10-31 23:46:39 +00:00
33 lines
1.2 KiB
Plaintext
33 lines
1.2 KiB
Plaintext
|
<?xml version="1.0"?>
|
||
|
<!--
|
||
|
Web.config file for SubsonicWeb.
|
||
|
|
||
|
The settings that can be used in this file are documented at
|
||
|
http://www.mono-project.com/Config_system.web and
|
||
|
http://msdn2.microsoft.com/en-us/library/b5ysx397.aspx
|
||
|
-->
|
||
|
<configuration>
|
||
|
<system.web>
|
||
|
<compilation defaultLanguage="C#" debug="true">
|
||
|
<assemblies>
|
||
|
<add assembly="Mono.Data, Version=2.0.0.0, Culture=neutral, PublicKeyToken=0738eb9f132ed756" />
|
||
|
<add assembly="Mono.Data.Sqlite, Version=2.0.0.0, Culture=neutral, PublicKeyToken=0738eb9f132ed756" />
|
||
|
<add assembly="Mono.Data.SqliteClient, Version=2.0.0.0, Culture=neutral, PublicKeyToken=0738eb9f132ed756" />
|
||
|
</assemblies>
|
||
|
</compilation>
|
||
|
<customErrors mode="RemoteOnly">
|
||
|
</customErrors>
|
||
|
<authentication mode="None">
|
||
|
</authentication>
|
||
|
<authorization>
|
||
|
<allow users="*" />
|
||
|
</authorization>
|
||
|
<httpHandlers>
|
||
|
</httpHandlers>
|
||
|
<trace enabled="false" localOnly="true" pageOutput="false" requestLimit="10" traceMode="SortByTime" />
|
||
|
<sessionState mode="InProc" cookieless="false" timeout="20" />
|
||
|
<globalization requestEncoding="utf-8" responseEncoding="utf-8" />
|
||
|
<pages>
|
||
|
</pages>
|
||
|
</system.web>
|
||
|
</configuration>
|