12 lines
362 B
C#
12 lines
362 B
C#
using System.IO;
|
|
|
|
namespace LibationFileManager
|
|
{
|
|
public static class SqliteStorage
|
|
{
|
|
// not customizable. don't move to config
|
|
private static string databasePath => Path.Combine(Configuration.Instance.LibationFiles, "LibationContext.db");
|
|
public static string ConnectionString => $"Data Source={databasePath};Foreign Keys=False;Pooling=False;";
|
|
}
|
|
}
|