forked from cedrozor/myrtille
-
Notifications
You must be signed in to change notification settings - Fork 26
/
Copy pathWeb.config
22 lines (22 loc) · 1 KB
/
Web.config
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<?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="Myrtille.Admin.Web.Properties.Settings" type="System.Configuration.ClientSettingsSection, System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" requirePermission="false"/>
</sectionGroup>
</configSections>
<startup>
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.5"/>
</startup>
<applicationSettings>
<Myrtille.Admin.Web.Properties.Settings>
<setting name="ConnectionServiceUrl" serializeAs="String">
<value>http://localhost:8008/MyrtilleAdmin/ConnectionService/</value>
</setting>
</Myrtille.Admin.Web.Properties.Settings>
</applicationSettings>
<system.web>
<compilation debug="true" targetFramework="4.5"/>
<httpRuntime targetFramework="4.5"/>
</system.web>
</configuration>