This repository was archived by the owner on Dec 24, 2022. It is now read-only.
File tree Expand file tree Collapse file tree 2 files changed +2
-4
lines changed
tests/ServiceStack.OrmLite.Tests Expand file tree Collapse file tree 2 files changed +2
-4
lines changed Original file line number Diff line number Diff line change @@ -6,11 +6,13 @@ MinimumVisualStudioVersion = 10.0.40219.1
6
6
Project ("{2150E333-8FDC-42A3-9474-1A3956D46DE8}" ) = "Build" , "Build" , "{6CEB3EDE-9F02-4F4F-BD8A-1B2939C1AE6E}"
7
7
Project Section (SolutionItems ) = preProject
8
8
..\build \appsettings .license .txt = ..\build \appsettings .license .txt
9
+ ..\build \build -core .sh = ..\build \build -core .sh
9
10
..\build \build -sn .proj = ..\build \build -sn .proj
10
11
..\build \build .bat = ..\build \build .bat
11
12
..\build \build .proj = ..\build \build .proj
12
13
..\build \build .tasks = ..\build \build .tasks
13
14
..\build \copy .bat = ..\build \copy .bat
15
+ ..\build \publish -core .sh = ..\build \publish -core .sh
14
16
..\README .md = ..\README .md
15
17
..\NuGet \ServiceStack .OrmLite .Firebird \servicestack .ormlite .firebird .nuspec = ..\NuGet \ServiceStack .OrmLite .Firebird \servicestack .ormlite .firebird .nuspec
16
18
..\NuGet \ServiceStack .OrmLite .MySql \servicestack .ormlite .mysql .nuspec = ..\NuGet \ServiceStack .OrmLite .MySql \servicestack .ormlite .mysql .nuspec
Original file line number Diff line number Diff line change @@ -69,13 +69,11 @@ public static OrmLiteConnectionFactory CreateSqlServerDbFactory()
69
69
return dbFactory ;
70
70
}
71
71
72
- #if ! NETCORE
73
72
public static OrmLiteConnectionFactory CreateMySqlDbFactory ( )
74
73
{
75
74
var dbFactory = new OrmLiteConnectionFactory ( Config . MySqlDb , MySqlDialect . Provider ) ;
76
75
return dbFactory ;
77
76
}
78
- #endif
79
77
80
78
public static OrmLiteConnectionFactory CreatePostgreSqlDbFactory ( )
81
79
{
@@ -137,10 +135,8 @@ private OrmLiteConnectionFactory Init()
137
135
return Init ( Config . SqlServerBuildDb , SqlServerDialect . Provider ) ;
138
136
case Dialect . SqlServer2012 :
139
137
return Init ( Config . SqlServerBuildDb , SqlServer2012Dialect . Provider ) ;
140
- #if ! NETCORE
141
138
case Dialect . MySql :
142
139
return Init ( Config . MySqlDb , MySqlDialect . Provider ) ;
143
- #endif
144
140
case Dialect . PostgreSql :
145
141
return Init ( Config . PostgreSqlDb , PostgreSqlDialect . Provider ) ;
146
142
case Dialect . SqlServerMdf :
You can’t perform that action at this time.
0 commit comments