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
66Project ("{2150E333-8FDC-42A3-9474-1A3956D46DE8}" ) = "Build" , "Build" , "{6CEB3EDE-9F02-4F4F-BD8A-1B2939C1AE6E}"
77 Project Section (SolutionItems ) = preProject
88 ..\build \appsettings .license .txt = ..\build \appsettings .license .txt
9+ ..\build \build -core .sh = ..\build \build -core .sh
910 ..\build \build -sn .proj = ..\build \build -sn .proj
1011 ..\build \build .bat = ..\build \build .bat
1112 ..\build \build .proj = ..\build \build .proj
1213 ..\build \build .tasks = ..\build \build .tasks
1314 ..\build \copy .bat = ..\build \copy .bat
15+ ..\build \publish -core .sh = ..\build \publish -core .sh
1416 ..\README .md = ..\README .md
1517 ..\NuGet \ServiceStack .OrmLite .Firebird \servicestack .ormlite .firebird .nuspec = ..\NuGet \ServiceStack .OrmLite .Firebird \servicestack .ormlite .firebird .nuspec
1618 ..\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()
6969 return dbFactory ;
7070 }
7171
72- #if ! NETCORE
7372 public static OrmLiteConnectionFactory CreateMySqlDbFactory ( )
7473 {
7574 var dbFactory = new OrmLiteConnectionFactory ( Config . MySqlDb , MySqlDialect . Provider ) ;
7675 return dbFactory ;
7776 }
78- #endif
7977
8078 public static OrmLiteConnectionFactory CreatePostgreSqlDbFactory ( )
8179 {
@@ -137,10 +135,8 @@ private OrmLiteConnectionFactory Init()
137135 return Init ( Config . SqlServerBuildDb , SqlServerDialect . Provider ) ;
138136 case Dialect . SqlServer2012 :
139137 return Init ( Config . SqlServerBuildDb , SqlServer2012Dialect . Provider ) ;
140- #if ! NETCORE
141138 case Dialect . MySql :
142139 return Init ( Config . MySqlDb , MySqlDialect . Provider ) ;
143- #endif
144140 case Dialect . PostgreSql :
145141 return Init ( Config . PostgreSqlDb , PostgreSqlDialect . Provider ) ;
146142 case Dialect . SqlServerMdf :
You can’t perform that action at this time.
0 commit comments