markus / ConvertService / ServiceController / Markus.Service.StationController / App.config @ 9d5b4bc2
이력 | 보기 | 이력해설 | 다운로드 (3.91 KB)
1 |
<?xml version="1.0" encoding="utf-8"?> |
---|---|
2 |
<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 |
<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 |
</connectionStrings> |
11 |
<startup> |
12 |
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.6.1"/> |
13 |
</startup> |
14 |
<runtime> |
15 |
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1"> |
16 |
<!--모든 DLL을 Bin폴더에서 참조한다.--> |
17 |
<probing privatePath="bin"/> |
18 |
<!--<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 |
<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 |
</dependentAssembly> |
26 |
<dependentAssembly> |
27 |
<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 |
</dependentAssembly> |
30 |
<dependentAssembly> |
31 |
<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 |
</dependentAssembly> |
34 |
<dependentAssembly> |
35 |
<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 |
</dependentAssembly> |
38 |
<dependentAssembly> |
39 |
<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 |
</dependentAssembly> |
42 |
<dependentAssembly> |
43 |
<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 |
</dependentAssembly> |
46 |
</assemblyBinding> |
47 |
</runtime> |
48 |
<system.serviceModel> |
49 |
<bindings> |
50 |
<basicHttpBinding> |
51 |
<binding name="BasicHttpBinding_IDataService" maxReceivedMessageSize="2147483646"/> |
52 |
</basicHttpBinding> |
53 |
</bindings> |
54 |
<client> |
55 |
<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 |
</client> |
58 |
</system.serviceModel> |
59 |
<entityFramework> |
60 |
<defaultConnectionFactory type="System.Data.Entity.Infrastructure.SqlConnectionFactory, EntityFramework"/> |
61 |
<providers> |
62 |
<provider invariantName="System.Data.SqlClient" type="System.Data.Entity.SqlServer.SqlProviderServices, EntityFramework.SqlServer"/> |
63 |
</providers> |
64 |
</entityFramework> |
65 |
</configuration> |