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