##############################################################################
# This is a sample configuration for command line generation of a project.
# The following options need to be passed on the command line:
#
# orm.exe settings=C:\settings.txt logfile=C:\output.log
#
# The log file will be overwritten ech time the application is run.
#
#
# Exit codes:
# 0 No Error
# -1 Invalid Command Line Arguments
# -2 Schema Validation Errors
# -3 Exception occured
#
##############################################################################
# Name of the server\instance or IP address\instance
Server=localhost
# Name of the database
Database=Northwind
# Use the login identity for authentication
# Setting this to true will ignore username/password fields.
UseWindowsAuthentication=true
# Username for SQL Server authentication
Username=sa
# Password for SQL Server authentication
Password=password
# Absolute path to the solution
# Note:
# Paths with spaces should be wrapped in quotes
# The directory sould exist
SolutionPath="D:\Northwind\Northwind.sln"
# Project namespace
ProjectNamespace=NorthwindBiz
# Fleg to enable the generation of the test app
# This will not normally be needed
GenerateTestApp=false
# How to handle read-only files that need to be overwritten
# Valid options are:
# Overwrite
# Ignore
# RaiseError
ReadOnly=RaiseError
# Language to generate the project in
# Valid options are:
# VB
# CS
Language=VB
# What to log to the log file
# Valid options are:
# Verbose
# ErrorsOnly
LogLevel=Verbose