source: extensions/PiwigoLib/PiwigoWpf/app.config @ 12035

Last change on this file since 12035 was 12035, checked in by bayral, 13 years ago

changing dot.net framework prerequisite from framework 4.0 to framework 4.0 client profile according to setup process download

File size: 1.7 KB
RevLine 
[7150]1<?xml version="1.0"?>
2<configuration>
[12015]3  <configSections>
[12016]4    <sectionGroup name="userSettings" type="System.Configuration.UserSettingsGroup, System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
5      <section name="Com.Piwigo.Wpf.Properties.Settings" type="System.Configuration.ClientSettingsSection, System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" allowExeDefinition="MachineToLocalUser" requirePermission="false"/>
[7150]6    </sectionGroup>
[12015]7  </configSections>
8  <startup>
[12035]9    <supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.0,Profile=Client"/>
[12015]10  </startup>
11  <userSettings>
12    <Com.Piwigo.Wpf.Properties.Settings>
13      <setting name="ServerNameData" serializeAs="String">
[12016]14        <value/>
[12015]15      </setting>
16      <setting name="UserNameData" serializeAs="String">
[12016]17        <value/>
[12015]18      </setting>
19      <setting name="PwdData" serializeAs="String">
[12016]20        <value/>
[12015]21      </setting>
22      <setting name="SaveSettingData" serializeAs="String">
23        <value>False</value>
24      </setting>
25    </Com.Piwigo.Wpf.Properties.Settings>
26  </userSettings>
27  <system.net>
28    <!-- proxy config if need, but normaly wu used the system setting ie internet explorer setting
29    <defaultProxy>
30      <proxy
31          usesystemdefault = "false"
32          proxyaddress = "http://proxyserver:80"
33          bypassonlocal = "true"
34          />
35      <bypasslist>
36        <add address="http://[a-z]+\.contoso\.com/" />
37      </bypasslist>
38    </defaultProxy>-->
39    <settings>
40      <servicePointManager expect100Continue="false"/> <!-- usefull when you obtain a error just like this : The remote server returned an error: (417) Expectation Failed.-->
41    </settings>
42  </system.net>
[7150]43</configuration>
Note: See TracBrowser for help on using the repository browser.