1- [ assembly: System . CLSCompliantAttribute ( true ) ]
2- [ assembly: System . Runtime . InteropServices . ComVisibleAttribute ( false ) ]
3- [ assembly: System . Runtime . InteropServices . GuidAttribute ( "9f949414-f078-49bf-b50e-a3859c18fb6e" ) ]
4-
1+ [ assembly: System . CLSCompliant ( true ) ]
2+ [ assembly: System . Reflection . AssemblyMetadata ( "RepositoryUrl" , "https://github.com/DbUp/dbup-sqlite.git" ) ]
3+ [ assembly: System . Runtime . InteropServices . ComVisible ( false ) ]
4+ [ assembly: System . Runtime . InteropServices . Guid ( "9f949414-f078-49bf-b50e-a3859c18fb6e" ) ]
5+ [ assembly: System . Runtime . Versioning . TargetFramework ( ".NETStandard,Version=v2.0" , FrameworkDisplayName = ".NET Standard 2.0" ) ]
56public static class SqliteExtensions
67{
78 public static DbUp . Builder . UpgradeEngineBuilder JournalToSqliteTable ( this DbUp . Builder . UpgradeEngineBuilder builder , string table ) { }
8- public static DbUp . Builder . UpgradeEngineBuilder SqliteDatabase ( this DbUp . Builder . SupportedDatabases supported , string connectionString ) { }
99 public static DbUp . Builder . UpgradeEngineBuilder SqliteDatabase ( this DbUp . Builder . SupportedDatabases supported , DbUp . Sqlite . Helpers . SharedConnection sharedConnection ) { }
10+ public static DbUp . Builder . UpgradeEngineBuilder SqliteDatabase ( this DbUp . Builder . SupportedDatabases supported , string connectionString ) { }
1011}
1112namespace DbUp . Sqlite
1213{
13- public class SqliteConnectionManager : DbUp . Engine . Transactions . DatabaseConnectionManager , DbUp . Engine . Transactions . IConnectionManager
14+ public class SqliteConnectionManager : DbUp . Engine . Transactions . DatabaseConnectionManager
1415 {
15- public SqliteConnectionManager ( string connectionString ) { }
1616 public SqliteConnectionManager ( DbUp . Sqlite . Helpers . SharedConnection sharedConnection ) { }
17+ public SqliteConnectionManager ( string connectionString ) { }
1718 public override System . Collections . Generic . IEnumerable < string > SplitScriptIntoCommands ( string scriptContents ) { }
1819 }
19- public class SqliteObjectParser : DbUp . Support . SqlObjectParser , DbUp . Engine . ISqlObjectParser
20+ public class SqliteObjectParser : DbUp . Support . SqlObjectParser
2021 {
2122 public SqliteObjectParser ( ) { }
2223 }
@@ -25,13 +26,13 @@ public class SqlitePreprocessor : DbUp.Engine.IScriptPreprocessor
2526 public SqlitePreprocessor ( ) { }
2627 public string Process ( string contents ) { }
2728 }
28- public class SqliteScriptExecutor : DbUp . Support . ScriptExecutor , DbUp . Engine . IScriptExecutor
29+ public class SqliteScriptExecutor : DbUp . Support . ScriptExecutor
2930 {
3031 public SqliteScriptExecutor ( System . Func < DbUp . Engine . Transactions . IConnectionManager > connectionManagerFactory , System . Func < DbUp . Engine . Output . IUpgradeLog > log , string schema , System . Func < bool > variablesEnabled , System . Collections . Generic . IEnumerable < DbUp . Engine . IScriptPreprocessor > scriptPreprocessors , System . Func < DbUp . Engine . IJournal > journalFactory ) { }
3132 protected override void ExecuteCommandsWithinExceptionHandler ( int index , DbUp . Engine . SqlScript script , System . Action executeCommand ) { }
3233 protected override string GetVerifySchemaSql ( string schema ) { }
3334 }
34- public class SqliteTableJournal : DbUp . Support . TableJournal , DbUp . Engine . IJournal
35+ public class SqliteTableJournal : DbUp . Support . TableJournal
3536 {
3637 public SqliteTableJournal ( System . Func < DbUp . Engine . Transactions . IConnectionManager > connectionManager , System . Func < DbUp . Engine . Output . IUpgradeLog > logger , string table ) { }
3738 protected override string CreateSchemaTableSql ( string quotedPrimaryKeyName ) { }
@@ -73,4 +74,4 @@ public TemporarySqliteDatabase(string name) { }
7374 public DbUp . Helpers . AdHocSqlRunner SqlRunner { get ; }
7475 public void Dispose ( ) { }
7576 }
76- }
77+ }
0 commit comments