49 lines
		
	
	
		
			2.3 KiB
		
	
	
	
		
			XML
		
	
	
	
	
	
			
		
		
	
	
			49 lines
		
	
	
		
			2.3 KiB
		
	
	
	
		
			XML
		
	
	
	
	
	
| <?xml version="1.0" encoding="utf-8" ?>
 | |
| <configuration>
 | |
|   <configSections>
 | |
|   </configSections>
 | |
|   <appSettings>
 | |
|     <add key="CslaAuthentication" value="Csla" />
 | |
|     <!--<add key="CslaDataPortalProxy" 
 | |
|       value="Csla.DataPortalClient.RemotingProxy, Csla"/>
 | |
|     <add key="CslaDataPortalUrl" 
 | |
|       value="http://localhost:3187/RemotingHost/RemotingPortal.rem"/>-->
 | |
|     <!--<add key="CslaDataPortalProxy" 
 | |
|       value="Csla.DataPortalClient.WebServicesProxy, Csla"/>
 | |
|     <add key="CslaDataPortalUrl" 
 | |
|       value="http://localhost:4334/WebServicesHost/WebServicePortal.asmx"/>-->
 | |
|     <!--<add key="CslaDataPortalProxy" 
 | |
| 			 value="EnterpriseServicesHost.EnterpriseServicesProxy, EnterpriseServicesHostcs"/>-->
 | |
|   </appSettings>
 | |
|   <connectionStrings>
 | |
|     <add name="PTracker" 
 | |
| 			 connectionString="Data Source=.\SQLEXPRESS;AttachDbFilename="C:\Visual Studio Projects\csla20\ProjectTracker20cs\PTracker.mdf";Integrated Security=True;User Instance=True"
 | |
| 			 providerName="System.Data.SqlClient" />
 | |
|     <add name="Security" 
 | |
| 			 connectionString="Data Source=.\SQLEXPRESS;AttachDbFilename="C:\Visual Studio Projects\csla20\ProjectTracker20cs\Security.mdf";Integrated Security=True;User Instance=True"
 | |
| 			 providerName="System.Data.SqlClient" />
 | |
|   </connectionStrings>
 | |
|   <system.diagnostics>
 | |
|     <sources>
 | |
|       <!-- This section defines the logging configuration for My.Application.Log -->
 | |
|       <source name="DefaultSource" switchName="DefaultSwitch">
 | |
|         <listeners>
 | |
|           <add name="FileLog"/>
 | |
|           <!-- Uncomment the below section to write to the Application Event Log -->
 | |
|           <!--<add name="EventLog"/>-->
 | |
|         </listeners>
 | |
|       </source>
 | |
|     </sources>
 | |
|     <switches>
 | |
|       <add name="DefaultSwitch" value="Information" />
 | |
|     </switches>
 | |
|     <sharedListeners>
 | |
|       <add name="FileLog"
 | |
| 				 type="Microsoft.VisualBasic.Logging.FileLogTraceListener, Microsoft.VisualBasic, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL"
 | |
| 				 initializeData="FileLogWriter"/>
 | |
|       <!-- Uncomment the below section and replace APPLICATION_NAME with the name of your application to write to the Application Event Log -->
 | |
|       <!--<add name="EventLog" type="System.Diagnostics.EventLogTraceListener" initializeData="APPLICATION_NAME"/> -->
 | |
|     </sharedListeners>
 | |
|   </system.diagnostics>
 | |
| </configuration>
 |