-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathApp.config
32 lines (32 loc) · 1.42 KB
/
App.config
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
<?xml version="1.0" encoding="utf-8"?>
<configuration>
<configSections>
<section name="RiskCaptureConfiguration" type="AppliedSystems.Configuration.XmlSerializerSectionHandler, AppliedSystems.Configuration" />
<section name="EventStoreMessageStorageConfiguration" type="AppliedSystems.Configuration.XmlSerializerSectionHandler, AppliedSystems.Configuration" />
</configSections>
<RiskCaptureConfiguration>
<Url>http://localhost/RiskCapture</Url>
</RiskCaptureConfiguration>
<EventStoreMessageStorageConfiguration>
<Url>tcp://admin:changeit@localhost:1113</Url>
<UserCredentials>
<User>admin</User>
<Password>changeit</Password>
</UserCredentials>
</EventStoreMessageStorageConfiguration>
<startup>
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.5.2" />
</startup>
<runtime>
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
<dependentAssembly>
<assemblyIdentity name="System.Web.Cors" publicKeyToken="31bf3856ad364e35" culture="neutral" />
<bindingRedirect oldVersion="0.0.0.0-5.2.3.0" newVersion="5.2.3.0" />
</dependentAssembly>
<dependentAssembly>
<assemblyIdentity name="Microsoft.AspNet.SignalR.Client" publicKeyToken="31bf3856ad364e35" culture="neutral" />
<bindingRedirect oldVersion="0.0.0.0-2.2.0.0" newVersion="2.2.0.0" />
</dependentAssembly>
</assemblyBinding>
</runtime>
</configuration>