A sample Milos app.config file

<?xml version="1.0" encoding="utf-8" ?> <configuration> <!-- Do not change these settings so the app will run on your machine! --> <!-- You can override these settings by adding a file named developer.config with the settings for YOUR development environment --> <appSettings file="developer.config"> <!--add key="database:TrustedConnection" value="True"/--> <add key="database:UserName" value="MyUserName"/> <add key="database:Password" value="MyPassword"/> <add key="database:Server" value="(local)"/> <add key="database:Catalog" value="Northwind"/> <add key="database:StoredProcedurePrefix" value="milos_"/> <add key="database:AutoLoadSchemaInformation" value="No"/> <add key="DataServices" value="SqlDataService"/> <add key="AllowedDataMethod" value="StoredProcedures"/> <!-- Set the default parameter type to VARCHAR instead of NVARCHAR --> <add key="SqlServerParameterType" value="NotUnicode" /> <!-- 300 seconds = 5 minutes --> <add key="MinimumCommandTimeout" value="300" /> </appSettings> </configuration>


See the "How-To" help document for a list of all configuration settings



Last Updated: 7/31/2006