markus / ConvertService / ServiceController / Markus.Service.StationController / App.config @ 1e9c1261
이력 | 보기 | 이력해설 | 다운로드 (3.72 KB)
1 | 077fb153 | taeseongkim | <?xml version="1.0" encoding="utf-8"?> |
---|---|---|---|
2 | 5c387707 | semi | <configuration> |
3 | <configSections> |
||
4 | <!-- For more information on Entity Framework configuration, visit http://go.microsoft.com/fwlink/?LinkID=237468 --> |
||
5 | <section name="entityFramework" type="System.Data.Entity.Internal.ConfigFile.EntityFrameworkSection, EntityFramework, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" requirePermission="false" /> |
||
6 | </configSections> |
||
7 | <connectionStrings> |
||
8 | 077fb153 | taeseongkim | <add name="markusEntities" connectionString="metadata=res://*/MarkusModel.csdl|res://*/MarkusModel.ssdl|res://*/MarkusModel.msl;provider=System.Data.SqlClient;provider connection string="data source=
 0.67;initial catalog=markus;persist security info=True;user id=doftech;password=dof1073#;MultipleActiveResultSets=True;App=EntityFramework"" providerName="System.Data.EntityClient" /> |
9 | 5c387707 | semi | </connectionStrings> |
10 | <startup> |
||
11 | <supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.5" /> |
||
12 | </startup> |
||
13 | <runtime> |
||
14 | <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1"> |
||
15 | <!--모든 DLL을 Bin폴더에서 참조한다.--> |
||
16 | <probing privatePath="bin" /> |
||
17 | <!--<dependentAssembly> |
||
18 | <assemblyIdentity name="CommonServiceLocator" publicKeyToken="489b6accfaf20ef0" culture="neutral" /> |
||
19 | <bindingRedirect oldVersion="0.0.0.0-2.0.4.0" newVersion="2.0.4.0" /> |
||
20 | </dependentAssembly>--> |
||
21 | <dependentAssembly> |
||
22 | <assemblyIdentity name="System.Windows.Interactivity" publicKeyToken="31bf3856ad364e35" culture="neutral" /> |
||
23 | <bindingRedirect oldVersion="0.0.0.0-4.5.0.0" newVersion="4.5.0.0" /> |
||
24 | </dependentAssembly> |
||
25 | 077fb153 | taeseongkim | <dependentAssembly> |
26 | <assemblyIdentity name="Telerik.Windows.Controls" publicKeyToken="5803cfa389c90ce7" culture="neutral" /> |
||
27 | <bindingRedirect oldVersion="0.0.0.0-2018.1.122.40" newVersion="2018.1.122.40" /> |
||
28 | </dependentAssembly> |
||
29 | <dependentAssembly> |
||
30 | <assemblyIdentity name="Telerik.Windows.Data" publicKeyToken="5803cfa389c90ce7" culture="neutral" /> |
||
31 | <bindingRedirect oldVersion="0.0.0.0-2018.1.122.40" newVersion="2018.1.122.40" /> |
||
32 | </dependentAssembly> |
||
33 | <dependentAssembly> |
||
34 | <assemblyIdentity name="Telerik.Windows.Controls.Input" publicKeyToken="5803cfa389c90ce7" culture="neutral" /> |
||
35 | <bindingRedirect oldVersion="0.0.0.0-2018.1.122.40" newVersion="2018.1.122.40" /> |
||
36 | </dependentAssembly> |
||
37 | <dependentAssembly> |
||
38 | <assemblyIdentity name="Telerik.Windows.Controls.Navigation" publicKeyToken="5803cfa389c90ce7" culture="neutral" /> |
||
39 | <bindingRedirect oldVersion="0.0.0.0-2018.1.122.40" newVersion="2018.1.122.40" /> |
||
40 | </dependentAssembly> |
||
41 | <dependentAssembly> |
||
42 | <assemblyIdentity name="Telerik.Windows.Controls.GridView" publicKeyToken="5803cfa389c90ce7" culture="neutral" /> |
||
43 | <bindingRedirect oldVersion="0.0.0.0-2018.1.122.40" newVersion="2018.1.122.40" /> |
||
44 | </dependentAssembly> |
||
45 | 5c387707 | semi | </assemblyBinding> |
46 | </runtime> |
||
47 | <system.serviceModel> |
||
48 | <bindings> |
||
49 | <basicHttpBinding> |
||
50 | 919dee1b | semi | <binding name="BasicHttpBinding_IDataService" maxReceivedMessageSize="2147483646" /> |
51 | 5c387707 | semi | </basicHttpBinding> |
52 | </bindings> |
||
53 | <client> |
||
54 | 077fb153 | taeseongkim | <endpoint address="http://localhost:55508/DataService.svc" binding="basicHttpBinding" bindingConfiguration="BasicHttpBinding_IDataService" contract="DataService.IDataService" name="BasicHttpBinding_IDataService" /> |
55 | 5c387707 | semi | </client> |
56 | </system.serviceModel> |
||
57 | <entityFramework> |
||
58 | <defaultConnectionFactory type="System.Data.Entity.Infrastructure.SqlConnectionFactory, EntityFramework" /> |
||
59 | <providers> |
||
60 | <provider invariantName="System.Data.SqlClient" type="System.Data.Entity.SqlServer.SqlProviderServices, EntityFramework.SqlServer" /> |
||
61 | </providers> |
||
62 | </entityFramework> |
||
63 | </configuration> |