mirror of
https://github.com/rmcrackan/Libation.git
synced 2026-02-15 16:41:13 -05:00
Make fields readonly Remove unnecessary casts Format document Remove unnecessary usings Sort usings Use file-level namespaces Order modifiers
11 lines
362 B
C#
11 lines
362 B
C#
using System.IO;
|
|
|
|
namespace LibationFileManager;
|
|
|
|
public static class SqliteStorage
|
|
{
|
|
// not customizable. don't move to config
|
|
public static string DatabasePath => Path.Combine(Configuration.Instance.LibationFiles.Location, "LibationContext.db");
|
|
public static string ConnectionString => $"Data Source={DatabasePath};Foreign Keys=False;Pooling=False;";
|
|
}
|