aboutsummaryrefslogtreecommitdiffstats
path: root/Software/Visual_Studio/FSE/Tango.FSE.BL/DiskCacheManager.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Software/Visual_Studio/FSE/Tango.FSE.BL/DiskCacheManager.cs')
-rw-r--r--Software/Visual_Studio/FSE/Tango.FSE.BL/DiskCacheManager.cs6
1 files changed, 3 insertions, 3 deletions
diff --git a/Software/Visual_Studio/FSE/Tango.FSE.BL/DiskCacheManager.cs b/Software/Visual_Studio/FSE/Tango.FSE.BL/DiskCacheManager.cs
index 08f825730..ab9f2178e 100644
--- a/Software/Visual_Studio/FSE/Tango.FSE.BL/DiskCacheManager.cs
+++ b/Software/Visual_Studio/FSE/Tango.FSE.BL/DiskCacheManager.cs
@@ -21,7 +21,7 @@ namespace Tango.FSE.BL
protected override void Dispose(bool disposing)
{
-
+
}
public new void Dispose()
@@ -47,7 +47,7 @@ namespace Tango.FSE.BL
{
if (_default == null)
{
- _default = new DiskCacheManager(Path.Combine(Environment.GetFolderPath(Environment.SpecialFolder.ApplicationData), "Twine", "Tango", "Cache", Path.GetFileNameWithoutExtension(AppDomain.CurrentDomain.FriendlyName) + ".cache"));
+ _default = new DiskCacheManager(Path.Combine(Environment.GetFolderPath(Environment.SpecialFolder.ApplicationData), "Twine", "Tango", "Cache", "Tango FSE", Path.GetFileNameWithoutExtension(AppDomain.CurrentDomain.FriendlyName) + ".cache"));
}
return _default;
@@ -72,7 +72,7 @@ namespace Tango.FSE.BL
if (_context == null)
{
Directory.CreateDirectory(Path.GetDirectoryName(DatabasePath));
- _context = new DiskCacheContext(DatabasePath);
+ _context = new DiskCacheContext($"Filename={DatabasePath};Password=Twine13579");
}
return _context;