We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9bc2490 commit 79a50faCopy full SHA for 79a50fa
appveyor.yml
@@ -0,0 +1,15 @@
1
+version: 5.1.0.{build}
2
+image: Visual Studio 2017
3
+environment:
4
+ matrix:
5
+ - DB: SqlServer2008
6
+ CONNECTION_STRING: Server=(local)\SQL2017;User ID=sa;Password=Password12!;initial catalog=nhibernate;
7
+ - DB: PostgreSQL
8
+ CONNECTION_STRING: Host=localhost;Port=5432;Username=postgres;Password=Password12!;Database=nhibernate;Enlist=true;
9
+services:
10
+- mssql2017
11
+- postgresql
12
+build: off
13
+test_script:
14
+- cmd: powershell -noprofile -command "& ./build.ps1 -TaskList Set-Configuration,Test -properties @{\"Database\" = \"%DB%\";\"ConnectionString\"=\"%CONNECTION_STRING%\"}"
15
+deploy: off
0 commit comments