@@ -52,12 +52,16 @@ echo D. Add a test configuration for SQLite (x86).
52
52
echo E. Add a test configuration for SQLite (x64). [not recommended]
53
53
echo F. Add a test configuration for PostgreSQL.
54
54
echo G. Add a test configuration for Oracle.
55
+ echo H. Add a test configuration for SQL Server Compact (x86).
56
+ echo I. Add a test configuration for SQL Server Compact (x64).
55
57
echo .
56
58
echo X. Exit to main menu.
57
59
echo .
58
60
59
- %BUILDTOOL% prompt ABCDEFGX
60
- if errorlevel 7 goto main-menu
61
+ %BUILDTOOL% prompt ABCDEFGHIX
62
+ if errorlevel 9 goto main-menu
63
+ if errorlevel 8 goto test-setup-sqlservercex64
64
+ if errorlevel 7 goto test-setup-sqlservercex86
61
65
if errorlevel 6 goto test-setup-oracle
62
66
if errorlevel 5 goto test-setup-postgresql
63
67
if errorlevel 4 goto test-setup-sqlitex64
@@ -73,6 +77,20 @@ set LIB_FILES=
73
77
set LIB_FILES2 =
74
78
goto test-setup-generic
75
79
80
+ :test-setup-sqlservercex86
81
+ set CONFIG_NAME = SqlServerCe32
82
+ set PLATFORM = AnyCPU
83
+ set LIB_FILES = lib\teamcity\SqlServerCe\*.dll
84
+ set LIB_FILES2 = lib\teamcity\SqlServerCe\X86\*.dll
85
+ goto test-setup-generic
86
+
87
+ :test-setup-sqlservercex64
88
+ set CONFIG_NAME = SqlServerCe64
89
+ set PLATFORM = AnyCPU
90
+ set LIB_FILES = lib\teamcity\sqlServerCe\*.dll
91
+ set LIB_FILES2 = lib\teamcity\sqlServerCe\AMD64\*.dll
92
+ goto test-setup-generic
93
+
76
94
:test-setup-firebirdx86
77
95
set CONFIG_NAME = FireBird
78
96
set PLATFORM = x86
@@ -259,14 +277,18 @@ echo F. NHibernate Trunk - PostgreSQL
259
277
echo G. NHibernate Trunk - Oracle (32-bit)
260
278
echo H. NHibernate Trunk - Oracle Managed (32-bit)
261
279
echo I. NHibernate Trunk - Oracle Managed (64-bit)
262
- echo J. NHibernate Trunk - SQL Server ODBC (32-bit)
280
+ echo J. NHibernate Trunk - SQL Server Compact (32-bit)
281
+ echo K. NHibernate Trunk - SQL Server Compact (64-bit)
282
+ echo L. NHibernate Trunk - SQL Server ODBC (32-bit)
263
283
echo .
264
284
echo X. Exit to main menu.
265
285
echo .
266
286
267
- %BUILDTOOL% prompt ABCDEFGHIJX
268
- if errorlevel 10 goto main-menu
269
- if errorlevel 9 goto teamcity-sqlServerOdbc
287
+ %BUILDTOOL% prompt ABCDEFGHIJKLX
288
+ if errorlevel 12 goto main-menu
289
+ if errorlevel 11 goto teamcity-sqlServerOdbc
290
+ if errorlevel 10 goto teamcity-sqlServerCe64
291
+ if errorlevel 9 goto teamcity-sqlServerCe32
270
292
if errorlevel 8 goto teamcity-oraclemanaged-64
271
293
if errorlevel 7 goto teamcity-oraclemanaged-32
272
294
if errorlevel 6 goto teamcity-oracle32
@@ -337,5 +359,17 @@ move "%CURRENT_CONFIGURATION%" "%CURRENT_CONFIGURATION%-backup" 2> nul
337
359
move " %CURRENT_CONFIGURATION% -backup" " %CURRENT_CONFIGURATION% " 2 > nul
338
360
goto main-menu
339
361
362
+ :teamcity-sqlServerCe32
363
+ move " %CURRENT_CONFIGURATION% " " %CURRENT_CONFIGURATION% -backup" 2 > nul
364
+ %NANT% /f:teamcity.build -D:skip.manual=true -D:CCNetLabel=-1 -D:config.teamcity=sqlServerCe32
365
+ move " %CURRENT_CONFIGURATION% -backup" " %CURRENT_CONFIGURATION% " 2 > nul
366
+ goto main-menu
367
+
368
+ :teamcity-sqlServerCe64
369
+ move " %CURRENT_CONFIGURATION% " " %CURRENT_CONFIGURATION% -backup" 2 > nul
370
+ %NANT% /f:teamcity.build -D:skip.manual=true -D:CCNetLabel=-1 -D:config.teamcity=sqlServerCe64
371
+ move " %CURRENT_CONFIGURATION% -backup" " %CURRENT_CONFIGURATION% " 2 > nul
372
+ goto main-menu
373
+
340
374
:end
341
375
popd
0 commit comments