From 77a609758bb80bac9497d2e3988550f8be578407 Mon Sep 17 00:00:00 2001 From: Rory& Date: Mon, 23 Feb 2026 02:03:20 +0100 Subject: Initial commit --- .../Configuration/AssetCacheConfig.cs | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 ReferenceClientProxyImplementation/Configuration/AssetCacheConfig.cs (limited to 'ReferenceClientProxyImplementation/Configuration/AssetCacheConfig.cs') diff --git a/ReferenceClientProxyImplementation/Configuration/AssetCacheConfig.cs b/ReferenceClientProxyImplementation/Configuration/AssetCacheConfig.cs new file mode 100644 index 0000000..7360a0a --- /dev/null +++ b/ReferenceClientProxyImplementation/Configuration/AssetCacheConfig.cs @@ -0,0 +1,15 @@ +namespace ReferenceClientProxyImplementation.Configuration; + +public class AssetCacheConfig { + public bool MemoryCache { get; set; } = true; + public bool DiskCache { get; set; } = true; + public string DiskCachePath { get; set; } = "cache"; + public bool WipeOnStartup { get; set; } = false; + public string DiskCacheBaseDirectory { get; set; } = "./clientRepository"; + public List> ExecOnRevisionChange { get; set; } = []; + public bool DitchPatchedOnStartup { get; set; } = false; + public string BiomePath { get; set; } = "biome"; + public string PrettierPath { get; set; } = "prettier"; + + public string NodePath { get; set; } = "node"; +} \ No newline at end of file -- cgit 1.5.1