Beispiel #1
0
        public string GetTangerineCacheBundlePath()
        {
            var name = string
                       .Join("_", ProjectFilePath.Split(new[] { "\\", "/", ":" }, StringSplitOptions.RemoveEmptyEntries))
                       .ToLower(System.Globalization.CultureInfo.InvariantCulture);

            name = Path.ChangeExtension(name, "tancache");
            return(Path.Combine(WorkspaceConfig.GetDataPath(), name));
        }
Beispiel #2
0
        public static string GetCodeCachePath()
        {
            var name = string.Join("_", The.Workspace.ProjectFilePath.Split(new string[] { "\\", "/", ":" }, StringSplitOptions.RemoveEmptyEntries)).ToLower(CultureInfo.InvariantCulture);

            return(Path.Combine(WorkspaceConfig.GetDataPath(), name, "code_cooker_cache.json"));
        }