code analysis and cleanup (#1411)

* cleanup scanner project

* cleanup infrastructure projects

* cleanup ffmpeg project

* cleanup core project

* cleanup app project

* cleanup main project

* update dependencies

* code cleanup
This commit is contained in:
Jason Dove
2023-09-03 06:23:42 -05:00
committed by GitHub
parent 6414471ace
commit 245c4ec359
308 changed files with 1438 additions and 1032 deletions
+9 -4
View File
@@ -1,7 +1,12 @@
using ErsatzTV.Infrastructure.Sqlite;
namespace ErsatzTV;
public record Provider(string Name, string Assembly)
public record Provider(string Name, string Assembly)
{
public static Provider Sqlite = new (nameof(Sqlite), typeof(Infrastructure.Sqlite.Marker).Assembly.GetName().Name!);
public static Provider MySql = new (nameof(MySql), typeof(Infrastructure.MySql.Marker).Assembly.GetName().Name!);
}
public static readonly Provider Sqlite = new(nameof(Sqlite), typeof(Marker).Assembly.GetName().Name!);
public static readonly Provider MySql = new(
nameof(MySql),
typeof(Infrastructure.MySql.Marker).Assembly.GetName().Name!);
}