├── .gitignore ├── LICENSE ├── README.md └── src ├── .editorconfig ├── .gitignore └── ThoughtStuff.Caching ├── Directory.Build.props ├── ThoughtStuff.Caching.Azure ├── AzureBlobTextCache.cs ├── AzureBlobTextCacheManager.cs ├── AzureCachingOptions.cs ├── BlobStorageService.cs ├── IBlobStorageService.cs ├── IObjectDictionaryConverter.cs ├── IZipArchiveBlobStorage.cs ├── ObjectDictionaryConverter.cs ├── ServiceCollectionExtensions.cs ├── ThoughtStuff.Caching.Azure.csproj └── ZipArchiveBlobStorage.cs ├── ThoughtStuff.Caching.Example ├── BigService.cs ├── ISlowExampleService.cs ├── IStockPriceService.cs ├── IWeatherService.cs ├── Pages │ ├── CacheManager.cshtml │ ├── CacheManager.cshtml.cs │ ├── Error.cshtml │ ├── Error.cshtml.cs │ ├── Index.cshtml │ ├── Index.cshtml.cs │ ├── Privacy.cshtml │ ├── Privacy.cshtml.cs │ ├── Shared │ │ ├── _Layout.cshtml │ │ ├── _Layout.cshtml.css │ │ └── _ValidationScriptsPartial.cshtml │ ├── StockPrice.cshtml │ ├── StockPrice.cshtml.cs │ ├── Weather.cshtml │ ├── Weather.cshtml.cs │ ├── _ViewImports.cshtml │ └── _ViewStart.cshtml ├── Program.cs ├── Properties │ └── launchSettings.json ├── SlowExampleService.cs ├── ThoughtStuff.Caching.Example.csproj ├── appsettings.Development.json ├── appsettings.json └── wwwroot │ ├── css │ └── site.css │ ├── favicon.ico │ ├── js │ └── site.js │ └── lib │ ├── bootstrap │ ├── LICENSE │ └── dist │ │ ├── css │ │ ├── bootstrap-grid.css │ │ ├── bootstrap-grid.css.map │ │ ├── bootstrap-grid.min.css │ │ ├── bootstrap-grid.min.css.map │ │ ├── bootstrap-grid.rtl.css │ │ ├── bootstrap-grid.rtl.css.map │ │ ├── bootstrap-grid.rtl.min.css │ │ ├── bootstrap-grid.rtl.min.css.map │ │ ├── bootstrap-reboot.css │ │ ├── bootstrap-reboot.css.map │ │ ├── bootstrap-reboot.min.css │ │ ├── bootstrap-reboot.min.css.map │ │ ├── bootstrap-reboot.rtl.css │ │ ├── bootstrap-reboot.rtl.css.map │ │ ├── bootstrap-reboot.rtl.min.css │ │ ├── bootstrap-reboot.rtl.min.css.map │ │ ├── bootstrap-utilities.css │ │ ├── bootstrap-utilities.css.map │ │ ├── bootstrap-utilities.min.css │ │ ├── bootstrap-utilities.min.css.map │ │ ├── bootstrap-utilities.rtl.css │ │ ├── bootstrap-utilities.rtl.css.map │ │ ├── bootstrap-utilities.rtl.min.css │ │ ├── bootstrap-utilities.rtl.min.css.map │ │ ├── bootstrap.css │ │ ├── bootstrap.css.map │ │ ├── bootstrap.min.css │ │ ├── bootstrap.min.css.map │ │ ├── bootstrap.rtl.css │ │ ├── bootstrap.rtl.css.map │ │ ├── bootstrap.rtl.min.css │ │ └── bootstrap.rtl.min.css.map │ │ └── js │ │ ├── bootstrap.bundle.js │ │ ├── bootstrap.bundle.js.map │ │ ├── bootstrap.bundle.min.js │ │ ├── bootstrap.bundle.min.js.map │ │ ├── bootstrap.esm.js │ │ ├── bootstrap.esm.js.map │ │ ├── bootstrap.esm.min.js │ │ ├── bootstrap.esm.min.js.map │ │ ├── bootstrap.js │ │ ├── bootstrap.js.map │ │ ├── bootstrap.min.js │ │ └── bootstrap.min.js.map │ ├── jquery-validation-unobtrusive │ ├── LICENSE.txt │ ├── jquery.validate.unobtrusive.js │ └── jquery.validate.unobtrusive.min.js │ ├── jquery-validation │ ├── LICENSE.md │ └── dist │ │ ├── additional-methods.js │ │ ├── additional-methods.min.js │ │ ├── jquery.validate.js │ │ └── jquery.validate.min.js │ └── jquery │ ├── LICENSE.txt │ └── dist │ ├── jquery.js │ ├── jquery.min.js │ └── jquery.min.map ├── ThoughtStuff.Caching.FileSystem ├── IObjectFileSerializer.cs ├── JsonFileSerializer.cs ├── LocalFileCache.cs ├── LocalFileCacheManager.cs ├── LocalFileCacheMetadata.cs ├── LocalFileCacheOptions.cs ├── ServiceCollectionExtensions.cs └── ThoughtStuff.Caching.FileSystem.csproj ├── ThoughtStuff.Caching.Tests ├── Azure │ ├── AzureBlobCacheIntegrationTest.cs │ ├── AzureBlobTextCacheManagerTest.cs │ ├── AzureBlobTextCacheTest.cs │ ├── BlobStorageServiceTest.cs │ ├── ObjectDictionaryConverterTest.cs │ └── ZipArchiveBlobStorageTest.cs ├── CacheLockProviderTest.cs ├── CacheTestAttribute.cs ├── CachingInterceptorTest.cs ├── DictionaryTextCacheManagerTest.cs ├── DictionaryTextCacheTest.cs ├── ExpirationTests.cs ├── FileSystem │ ├── FileSystemCacheIntegrationTest.cs │ ├── LocalFileCacheManagerTest.cs │ ├── LocalFileCacheServiceContractTest.cs │ └── LocalFileCacheTest.cs ├── GenericExtensionsTest.cs ├── JsonTypedCacheTest.cs ├── MemCacheTestAttribute.cs ├── MemoryCacheMangerTest.cs ├── MemoryCacheTypedCacheTest.cs ├── MethodCacheKeyGeneratorTest.cs ├── MethodCacheOptionLookupExtensions.cs ├── MethodCacheOptionLookupTest.cs ├── MethodExpressionExtensionsTest.cs ├── Testing │ ├── AutoMoqAttribute.cs │ ├── FileSystemUtilities.cs │ ├── HttpMocking.cs │ ├── InlineAutoMoqAttribute.cs │ └── MockMessageHandler.cs ├── TextCacheManagerTestBase.cs ├── TextCacheTestBase.cs ├── ThoughtStuff.Caching.Tests.csproj └── Usings.cs ├── ThoughtStuff.Caching.sln └── ThoughtStuff.Caching ├── AnyArgument.cs ├── CacheExpirationService.cs ├── CacheLockProvider.cs ├── CachingInterceptor.cs ├── CachingInternal.cs ├── Core ├── GenericExtensions.cs ├── ReflectionExtensions.cs ├── StringExtensions.cs └── StringUtilities.cs ├── DictionaryTextCache.cs ├── DictionaryTextCacheManager.cs ├── HardCodedDefaultCachePolicy.cs ├── ICacheBase.cs ├── ICacheEntry.cs ├── ICacheExpirationService.cs ├── ICacheLockProvider.cs ├── ICacheManager.cs ├── IDefaultCachePolicyService.cs ├── IManagedCache.cs ├── IMethodCacheKeyGenerator.cs ├── IMethodCacheOptionsLookup.cs ├── ITextCache.cs ├── ITextCacheEntry.cs ├── ITypedCache.cs ├── JsonTypedCache.cs ├── MemoryCacheManager.cs ├── MemoryCacheTypedCache.cs ├── MethodCacheKeyGenerator.cs ├── MethodCacheOptionsLookup.cs ├── MethodExpressionExtensions.cs ├── MethodInvocation.cs ├── MethodInvocationMatcher.cs ├── ServiceCollectionExtensions.cs ├── TextCacheExtensions.cs ├── ThoughtStuff.Caching.csproj └── TypedCacheExtensions.cs /.gitignore: -------------------------------------------------------------------------------- 1 | 2 | # Visual Studio cache directory 3 | .vs/ 4 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThoughtStuff/ThoughtStuff.Caching/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThoughtStuff/ThoughtStuff.Caching/HEAD/README.md -------------------------------------------------------------------------------- /src/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThoughtStuff/ThoughtStuff.Caching/HEAD/src/.editorconfig -------------------------------------------------------------------------------- /src/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThoughtStuff/ThoughtStuff.Caching/HEAD/src/.gitignore -------------------------------------------------------------------------------- /src/ThoughtStuff.Caching/Directory.Build.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThoughtStuff/ThoughtStuff.Caching/HEAD/src/ThoughtStuff.Caching/Directory.Build.props -------------------------------------------------------------------------------- /src/ThoughtStuff.Caching/ThoughtStuff.Caching.Azure/AzureBlobTextCache.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThoughtStuff/ThoughtStuff.Caching/HEAD/src/ThoughtStuff.Caching/ThoughtStuff.Caching.Azure/AzureBlobTextCache.cs -------------------------------------------------------------------------------- /src/ThoughtStuff.Caching/ThoughtStuff.Caching.Azure/AzureBlobTextCacheManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThoughtStuff/ThoughtStuff.Caching/HEAD/src/ThoughtStuff.Caching/ThoughtStuff.Caching.Azure/AzureBlobTextCacheManager.cs -------------------------------------------------------------------------------- /src/ThoughtStuff.Caching/ThoughtStuff.Caching.Azure/AzureCachingOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThoughtStuff/ThoughtStuff.Caching/HEAD/src/ThoughtStuff.Caching/ThoughtStuff.Caching.Azure/AzureCachingOptions.cs -------------------------------------------------------------------------------- /src/ThoughtStuff.Caching/ThoughtStuff.Caching.Azure/BlobStorageService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThoughtStuff/ThoughtStuff.Caching/HEAD/src/ThoughtStuff.Caching/ThoughtStuff.Caching.Azure/BlobStorageService.cs -------------------------------------------------------------------------------- /src/ThoughtStuff.Caching/ThoughtStuff.Caching.Azure/IBlobStorageService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThoughtStuff/ThoughtStuff.Caching/HEAD/src/ThoughtStuff.Caching/ThoughtStuff.Caching.Azure/IBlobStorageService.cs -------------------------------------------------------------------------------- /src/ThoughtStuff.Caching/ThoughtStuff.Caching.Azure/IObjectDictionaryConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThoughtStuff/ThoughtStuff.Caching/HEAD/src/ThoughtStuff.Caching/ThoughtStuff.Caching.Azure/IObjectDictionaryConverter.cs -------------------------------------------------------------------------------- /src/ThoughtStuff.Caching/ThoughtStuff.Caching.Azure/IZipArchiveBlobStorage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThoughtStuff/ThoughtStuff.Caching/HEAD/src/ThoughtStuff.Caching/ThoughtStuff.Caching.Azure/IZipArchiveBlobStorage.cs -------------------------------------------------------------------------------- /src/ThoughtStuff.Caching/ThoughtStuff.Caching.Azure/ObjectDictionaryConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThoughtStuff/ThoughtStuff.Caching/HEAD/src/ThoughtStuff.Caching/ThoughtStuff.Caching.Azure/ObjectDictionaryConverter.cs -------------------------------------------------------------------------------- /src/ThoughtStuff.Caching/ThoughtStuff.Caching.Azure/ServiceCollectionExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThoughtStuff/ThoughtStuff.Caching/HEAD/src/ThoughtStuff.Caching/ThoughtStuff.Caching.Azure/ServiceCollectionExtensions.cs -------------------------------------------------------------------------------- /src/ThoughtStuff.Caching/ThoughtStuff.Caching.Azure/ThoughtStuff.Caching.Azure.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThoughtStuff/ThoughtStuff.Caching/HEAD/src/ThoughtStuff.Caching/ThoughtStuff.Caching.Azure/ThoughtStuff.Caching.Azure.csproj -------------------------------------------------------------------------------- /src/ThoughtStuff.Caching/ThoughtStuff.Caching.Azure/ZipArchiveBlobStorage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThoughtStuff/ThoughtStuff.Caching/HEAD/src/ThoughtStuff.Caching/ThoughtStuff.Caching.Azure/ZipArchiveBlobStorage.cs -------------------------------------------------------------------------------- /src/ThoughtStuff.Caching/ThoughtStuff.Caching.Example/BigService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThoughtStuff/ThoughtStuff.Caching/HEAD/src/ThoughtStuff.Caching/ThoughtStuff.Caching.Example/BigService.cs -------------------------------------------------------------------------------- /src/ThoughtStuff.Caching/ThoughtStuff.Caching.Example/ISlowExampleService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThoughtStuff/ThoughtStuff.Caching/HEAD/src/ThoughtStuff.Caching/ThoughtStuff.Caching.Example/ISlowExampleService.cs -------------------------------------------------------------------------------- /src/ThoughtStuff.Caching/ThoughtStuff.Caching.Example/IStockPriceService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThoughtStuff/ThoughtStuff.Caching/HEAD/src/ThoughtStuff.Caching/ThoughtStuff.Caching.Example/IStockPriceService.cs -------------------------------------------------------------------------------- /src/ThoughtStuff.Caching/ThoughtStuff.Caching.Example/IWeatherService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThoughtStuff/ThoughtStuff.Caching/HEAD/src/ThoughtStuff.Caching/ThoughtStuff.Caching.Example/IWeatherService.cs -------------------------------------------------------------------------------- /src/ThoughtStuff.Caching/ThoughtStuff.Caching.Example/Pages/CacheManager.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThoughtStuff/ThoughtStuff.Caching/HEAD/src/ThoughtStuff.Caching/ThoughtStuff.Caching.Example/Pages/CacheManager.cshtml -------------------------------------------------------------------------------- /src/ThoughtStuff.Caching/ThoughtStuff.Caching.Example/Pages/CacheManager.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThoughtStuff/ThoughtStuff.Caching/HEAD/src/ThoughtStuff.Caching/ThoughtStuff.Caching.Example/Pages/CacheManager.cshtml.cs -------------------------------------------------------------------------------- /src/ThoughtStuff.Caching/ThoughtStuff.Caching.Example/Pages/Error.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThoughtStuff/ThoughtStuff.Caching/HEAD/src/ThoughtStuff.Caching/ThoughtStuff.Caching.Example/Pages/Error.cshtml -------------------------------------------------------------------------------- /src/ThoughtStuff.Caching/ThoughtStuff.Caching.Example/Pages/Error.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThoughtStuff/ThoughtStuff.Caching/HEAD/src/ThoughtStuff.Caching/ThoughtStuff.Caching.Example/Pages/Error.cshtml.cs -------------------------------------------------------------------------------- /src/ThoughtStuff.Caching/ThoughtStuff.Caching.Example/Pages/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThoughtStuff/ThoughtStuff.Caching/HEAD/src/ThoughtStuff.Caching/ThoughtStuff.Caching.Example/Pages/Index.cshtml -------------------------------------------------------------------------------- /src/ThoughtStuff.Caching/ThoughtStuff.Caching.Example/Pages/Index.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThoughtStuff/ThoughtStuff.Caching/HEAD/src/ThoughtStuff.Caching/ThoughtStuff.Caching.Example/Pages/Index.cshtml.cs -------------------------------------------------------------------------------- /src/ThoughtStuff.Caching/ThoughtStuff.Caching.Example/Pages/Privacy.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThoughtStuff/ThoughtStuff.Caching/HEAD/src/ThoughtStuff.Caching/ThoughtStuff.Caching.Example/Pages/Privacy.cshtml -------------------------------------------------------------------------------- /src/ThoughtStuff.Caching/ThoughtStuff.Caching.Example/Pages/Privacy.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThoughtStuff/ThoughtStuff.Caching/HEAD/src/ThoughtStuff.Caching/ThoughtStuff.Caching.Example/Pages/Privacy.cshtml.cs -------------------------------------------------------------------------------- /src/ThoughtStuff.Caching/ThoughtStuff.Caching.Example/Pages/Shared/_Layout.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThoughtStuff/ThoughtStuff.Caching/HEAD/src/ThoughtStuff.Caching/ThoughtStuff.Caching.Example/Pages/Shared/_Layout.cshtml -------------------------------------------------------------------------------- /src/ThoughtStuff.Caching/ThoughtStuff.Caching.Example/Pages/Shared/_Layout.cshtml.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThoughtStuff/ThoughtStuff.Caching/HEAD/src/ThoughtStuff.Caching/ThoughtStuff.Caching.Example/Pages/Shared/_Layout.cshtml.css -------------------------------------------------------------------------------- /src/ThoughtStuff.Caching/ThoughtStuff.Caching.Example/Pages/Shared/_ValidationScriptsPartial.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThoughtStuff/ThoughtStuff.Caching/HEAD/src/ThoughtStuff.Caching/ThoughtStuff.Caching.Example/Pages/Shared/_ValidationScriptsPartial.cshtml -------------------------------------------------------------------------------- /src/ThoughtStuff.Caching/ThoughtStuff.Caching.Example/Pages/StockPrice.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThoughtStuff/ThoughtStuff.Caching/HEAD/src/ThoughtStuff.Caching/ThoughtStuff.Caching.Example/Pages/StockPrice.cshtml -------------------------------------------------------------------------------- /src/ThoughtStuff.Caching/ThoughtStuff.Caching.Example/Pages/StockPrice.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThoughtStuff/ThoughtStuff.Caching/HEAD/src/ThoughtStuff.Caching/ThoughtStuff.Caching.Example/Pages/StockPrice.cshtml.cs -------------------------------------------------------------------------------- /src/ThoughtStuff.Caching/ThoughtStuff.Caching.Example/Pages/Weather.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThoughtStuff/ThoughtStuff.Caching/HEAD/src/ThoughtStuff.Caching/ThoughtStuff.Caching.Example/Pages/Weather.cshtml -------------------------------------------------------------------------------- /src/ThoughtStuff.Caching/ThoughtStuff.Caching.Example/Pages/Weather.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThoughtStuff/ThoughtStuff.Caching/HEAD/src/ThoughtStuff.Caching/ThoughtStuff.Caching.Example/Pages/Weather.cshtml.cs -------------------------------------------------------------------------------- /src/ThoughtStuff.Caching/ThoughtStuff.Caching.Example/Pages/_ViewImports.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThoughtStuff/ThoughtStuff.Caching/HEAD/src/ThoughtStuff.Caching/ThoughtStuff.Caching.Example/Pages/_ViewImports.cshtml -------------------------------------------------------------------------------- /src/ThoughtStuff.Caching/ThoughtStuff.Caching.Example/Pages/_ViewStart.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThoughtStuff/ThoughtStuff.Caching/HEAD/src/ThoughtStuff.Caching/ThoughtStuff.Caching.Example/Pages/_ViewStart.cshtml -------------------------------------------------------------------------------- /src/ThoughtStuff.Caching/ThoughtStuff.Caching.Example/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThoughtStuff/ThoughtStuff.Caching/HEAD/src/ThoughtStuff.Caching/ThoughtStuff.Caching.Example/Program.cs -------------------------------------------------------------------------------- /src/ThoughtStuff.Caching/ThoughtStuff.Caching.Example/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThoughtStuff/ThoughtStuff.Caching/HEAD/src/ThoughtStuff.Caching/ThoughtStuff.Caching.Example/Properties/launchSettings.json -------------------------------------------------------------------------------- /src/ThoughtStuff.Caching/ThoughtStuff.Caching.Example/SlowExampleService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThoughtStuff/ThoughtStuff.Caching/HEAD/src/ThoughtStuff.Caching/ThoughtStuff.Caching.Example/SlowExampleService.cs -------------------------------------------------------------------------------- /src/ThoughtStuff.Caching/ThoughtStuff.Caching.Example/ThoughtStuff.Caching.Example.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThoughtStuff/ThoughtStuff.Caching/HEAD/src/ThoughtStuff.Caching/ThoughtStuff.Caching.Example/ThoughtStuff.Caching.Example.csproj -------------------------------------------------------------------------------- /src/ThoughtStuff.Caching/ThoughtStuff.Caching.Example/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThoughtStuff/ThoughtStuff.Caching/HEAD/src/ThoughtStuff.Caching/ThoughtStuff.Caching.Example/appsettings.Development.json -------------------------------------------------------------------------------- /src/ThoughtStuff.Caching/ThoughtStuff.Caching.Example/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThoughtStuff/ThoughtStuff.Caching/HEAD/src/ThoughtStuff.Caching/ThoughtStuff.Caching.Example/appsettings.json -------------------------------------------------------------------------------- /src/ThoughtStuff.Caching/ThoughtStuff.Caching.Example/wwwroot/css/site.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThoughtStuff/ThoughtStuff.Caching/HEAD/src/ThoughtStuff.Caching/ThoughtStuff.Caching.Example/wwwroot/css/site.css -------------------------------------------------------------------------------- /src/ThoughtStuff.Caching/ThoughtStuff.Caching.Example/wwwroot/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThoughtStuff/ThoughtStuff.Caching/HEAD/src/ThoughtStuff.Caching/ThoughtStuff.Caching.Example/wwwroot/favicon.ico -------------------------------------------------------------------------------- /src/ThoughtStuff.Caching/ThoughtStuff.Caching.Example/wwwroot/js/site.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThoughtStuff/ThoughtStuff.Caching/HEAD/src/ThoughtStuff.Caching/ThoughtStuff.Caching.Example/wwwroot/js/site.js -------------------------------------------------------------------------------- /src/ThoughtStuff.Caching/ThoughtStuff.Caching.Example/wwwroot/lib/bootstrap/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThoughtStuff/ThoughtStuff.Caching/HEAD/src/ThoughtStuff.Caching/ThoughtStuff.Caching.Example/wwwroot/lib/bootstrap/LICENSE -------------------------------------------------------------------------------- /src/ThoughtStuff.Caching/ThoughtStuff.Caching.Example/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThoughtStuff/ThoughtStuff.Caching/HEAD/src/ThoughtStuff.Caching/ThoughtStuff.Caching.Example/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.css -------------------------------------------------------------------------------- /src/ThoughtStuff.Caching/ThoughtStuff.Caching.Example/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThoughtStuff/ThoughtStuff.Caching/HEAD/src/ThoughtStuff.Caching/ThoughtStuff.Caching.Example/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.css.map -------------------------------------------------------------------------------- /src/ThoughtStuff.Caching/ThoughtStuff.Caching.Example/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThoughtStuff/ThoughtStuff.Caching/HEAD/src/ThoughtStuff.Caching/ThoughtStuff.Caching.Example/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.min.css -------------------------------------------------------------------------------- /src/ThoughtStuff.Caching/ThoughtStuff.Caching.Example/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThoughtStuff/ThoughtStuff.Caching/HEAD/src/ThoughtStuff.Caching/ThoughtStuff.Caching.Example/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.min.css.map -------------------------------------------------------------------------------- /src/ThoughtStuff.Caching/ThoughtStuff.Caching.Example/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.rtl.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThoughtStuff/ThoughtStuff.Caching/HEAD/src/ThoughtStuff.Caching/ThoughtStuff.Caching.Example/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.rtl.css -------------------------------------------------------------------------------- /src/ThoughtStuff.Caching/ThoughtStuff.Caching.Example/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.rtl.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThoughtStuff/ThoughtStuff.Caching/HEAD/src/ThoughtStuff.Caching/ThoughtStuff.Caching.Example/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.rtl.css.map -------------------------------------------------------------------------------- /src/ThoughtStuff.Caching/ThoughtStuff.Caching.Example/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThoughtStuff/ThoughtStuff.Caching/HEAD/src/ThoughtStuff.Caching/ThoughtStuff.Caching.Example/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css -------------------------------------------------------------------------------- /src/ThoughtStuff.Caching/ThoughtStuff.Caching.Example/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThoughtStuff/ThoughtStuff.Caching/HEAD/src/ThoughtStuff.Caching/ThoughtStuff.Caching.Example/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css.map -------------------------------------------------------------------------------- /src/ThoughtStuff.Caching/ThoughtStuff.Caching.Example/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThoughtStuff/ThoughtStuff.Caching/HEAD/src/ThoughtStuff.Caching/ThoughtStuff.Caching.Example/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.css -------------------------------------------------------------------------------- /src/ThoughtStuff.Caching/ThoughtStuff.Caching.Example/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThoughtStuff/ThoughtStuff.Caching/HEAD/src/ThoughtStuff.Caching/ThoughtStuff.Caching.Example/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.css.map -------------------------------------------------------------------------------- /src/ThoughtStuff.Caching/ThoughtStuff.Caching.Example/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThoughtStuff/ThoughtStuff.Caching/HEAD/src/ThoughtStuff.Caching/ThoughtStuff.Caching.Example/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.min.css -------------------------------------------------------------------------------- /src/ThoughtStuff.Caching/ThoughtStuff.Caching.Example/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThoughtStuff/ThoughtStuff.Caching/HEAD/src/ThoughtStuff.Caching/ThoughtStuff.Caching.Example/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.min.css.map -------------------------------------------------------------------------------- /src/ThoughtStuff.Caching/ThoughtStuff.Caching.Example/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.rtl.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThoughtStuff/ThoughtStuff.Caching/HEAD/src/ThoughtStuff.Caching/ThoughtStuff.Caching.Example/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.rtl.css -------------------------------------------------------------------------------- /src/ThoughtStuff.Caching/ThoughtStuff.Caching.Example/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.rtl.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThoughtStuff/ThoughtStuff.Caching/HEAD/src/ThoughtStuff.Caching/ThoughtStuff.Caching.Example/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.rtl.css.map -------------------------------------------------------------------------------- /src/ThoughtStuff.Caching/ThoughtStuff.Caching.Example/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThoughtStuff/ThoughtStuff.Caching/HEAD/src/ThoughtStuff.Caching/ThoughtStuff.Caching.Example/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css -------------------------------------------------------------------------------- /src/ThoughtStuff.Caching/ThoughtStuff.Caching.Example/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThoughtStuff/ThoughtStuff.Caching/HEAD/src/ThoughtStuff.Caching/ThoughtStuff.Caching.Example/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css.map -------------------------------------------------------------------------------- /src/ThoughtStuff.Caching/ThoughtStuff.Caching.Example/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThoughtStuff/ThoughtStuff.Caching/HEAD/src/ThoughtStuff.Caching/ThoughtStuff.Caching.Example/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.css -------------------------------------------------------------------------------- /src/ThoughtStuff.Caching/ThoughtStuff.Caching.Example/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThoughtStuff/ThoughtStuff.Caching/HEAD/src/ThoughtStuff.Caching/ThoughtStuff.Caching.Example/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.css.map -------------------------------------------------------------------------------- /src/ThoughtStuff.Caching/ThoughtStuff.Caching.Example/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThoughtStuff/ThoughtStuff.Caching/HEAD/src/ThoughtStuff.Caching/ThoughtStuff.Caching.Example/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.min.css -------------------------------------------------------------------------------- /src/ThoughtStuff.Caching/ThoughtStuff.Caching.Example/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThoughtStuff/ThoughtStuff.Caching/HEAD/src/ThoughtStuff.Caching/ThoughtStuff.Caching.Example/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.min.css.map -------------------------------------------------------------------------------- /src/ThoughtStuff.Caching/ThoughtStuff.Caching.Example/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.rtl.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThoughtStuff/ThoughtStuff.Caching/HEAD/src/ThoughtStuff.Caching/ThoughtStuff.Caching.Example/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.rtl.css -------------------------------------------------------------------------------- /src/ThoughtStuff.Caching/ThoughtStuff.Caching.Example/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.rtl.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThoughtStuff/ThoughtStuff.Caching/HEAD/src/ThoughtStuff.Caching/ThoughtStuff.Caching.Example/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.rtl.css.map -------------------------------------------------------------------------------- /src/ThoughtStuff.Caching/ThoughtStuff.Caching.Example/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThoughtStuff/ThoughtStuff.Caching/HEAD/src/ThoughtStuff.Caching/ThoughtStuff.Caching.Example/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css -------------------------------------------------------------------------------- /src/ThoughtStuff.Caching/ThoughtStuff.Caching.Example/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThoughtStuff/ThoughtStuff.Caching/HEAD/src/ThoughtStuff.Caching/ThoughtStuff.Caching.Example/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css.map -------------------------------------------------------------------------------- /src/ThoughtStuff.Caching/ThoughtStuff.Caching.Example/wwwroot/lib/bootstrap/dist/css/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThoughtStuff/ThoughtStuff.Caching/HEAD/src/ThoughtStuff.Caching/ThoughtStuff.Caching.Example/wwwroot/lib/bootstrap/dist/css/bootstrap.css -------------------------------------------------------------------------------- /src/ThoughtStuff.Caching/ThoughtStuff.Caching.Example/wwwroot/lib/bootstrap/dist/css/bootstrap.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThoughtStuff/ThoughtStuff.Caching/HEAD/src/ThoughtStuff.Caching/ThoughtStuff.Caching.Example/wwwroot/lib/bootstrap/dist/css/bootstrap.css.map -------------------------------------------------------------------------------- /src/ThoughtStuff.Caching/ThoughtStuff.Caching.Example/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThoughtStuff/ThoughtStuff.Caching/HEAD/src/ThoughtStuff.Caching/ThoughtStuff.Caching.Example/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css -------------------------------------------------------------------------------- /src/ThoughtStuff.Caching/ThoughtStuff.Caching.Example/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThoughtStuff/ThoughtStuff.Caching/HEAD/src/ThoughtStuff.Caching/ThoughtStuff.Caching.Example/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css.map -------------------------------------------------------------------------------- /src/ThoughtStuff.Caching/ThoughtStuff.Caching.Example/wwwroot/lib/bootstrap/dist/css/bootstrap.rtl.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThoughtStuff/ThoughtStuff.Caching/HEAD/src/ThoughtStuff.Caching/ThoughtStuff.Caching.Example/wwwroot/lib/bootstrap/dist/css/bootstrap.rtl.css -------------------------------------------------------------------------------- /src/ThoughtStuff.Caching/ThoughtStuff.Caching.Example/wwwroot/lib/bootstrap/dist/css/bootstrap.rtl.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThoughtStuff/ThoughtStuff.Caching/HEAD/src/ThoughtStuff.Caching/ThoughtStuff.Caching.Example/wwwroot/lib/bootstrap/dist/css/bootstrap.rtl.css.map -------------------------------------------------------------------------------- /src/ThoughtStuff.Caching/ThoughtStuff.Caching.Example/wwwroot/lib/bootstrap/dist/css/bootstrap.rtl.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThoughtStuff/ThoughtStuff.Caching/HEAD/src/ThoughtStuff.Caching/ThoughtStuff.Caching.Example/wwwroot/lib/bootstrap/dist/css/bootstrap.rtl.min.css -------------------------------------------------------------------------------- /src/ThoughtStuff.Caching/ThoughtStuff.Caching.Example/wwwroot/lib/bootstrap/dist/css/bootstrap.rtl.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThoughtStuff/ThoughtStuff.Caching/HEAD/src/ThoughtStuff.Caching/ThoughtStuff.Caching.Example/wwwroot/lib/bootstrap/dist/css/bootstrap.rtl.min.css.map -------------------------------------------------------------------------------- /src/ThoughtStuff.Caching/ThoughtStuff.Caching.Example/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThoughtStuff/ThoughtStuff.Caching/HEAD/src/ThoughtStuff.Caching/ThoughtStuff.Caching.Example/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.js -------------------------------------------------------------------------------- /src/ThoughtStuff.Caching/ThoughtStuff.Caching.Example/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThoughtStuff/ThoughtStuff.Caching/HEAD/src/ThoughtStuff.Caching/ThoughtStuff.Caching.Example/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.js.map -------------------------------------------------------------------------------- /src/ThoughtStuff.Caching/ThoughtStuff.Caching.Example/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThoughtStuff/ThoughtStuff.Caching/HEAD/src/ThoughtStuff.Caching/ThoughtStuff.Caching.Example/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.min.js -------------------------------------------------------------------------------- /src/ThoughtStuff.Caching/ThoughtStuff.Caching.Example/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThoughtStuff/ThoughtStuff.Caching/HEAD/src/ThoughtStuff.Caching/ThoughtStuff.Caching.Example/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.min.js.map -------------------------------------------------------------------------------- /src/ThoughtStuff.Caching/ThoughtStuff.Caching.Example/wwwroot/lib/bootstrap/dist/js/bootstrap.esm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThoughtStuff/ThoughtStuff.Caching/HEAD/src/ThoughtStuff.Caching/ThoughtStuff.Caching.Example/wwwroot/lib/bootstrap/dist/js/bootstrap.esm.js -------------------------------------------------------------------------------- /src/ThoughtStuff.Caching/ThoughtStuff.Caching.Example/wwwroot/lib/bootstrap/dist/js/bootstrap.esm.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThoughtStuff/ThoughtStuff.Caching/HEAD/src/ThoughtStuff.Caching/ThoughtStuff.Caching.Example/wwwroot/lib/bootstrap/dist/js/bootstrap.esm.js.map -------------------------------------------------------------------------------- /src/ThoughtStuff.Caching/ThoughtStuff.Caching.Example/wwwroot/lib/bootstrap/dist/js/bootstrap.esm.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThoughtStuff/ThoughtStuff.Caching/HEAD/src/ThoughtStuff.Caching/ThoughtStuff.Caching.Example/wwwroot/lib/bootstrap/dist/js/bootstrap.esm.min.js -------------------------------------------------------------------------------- /src/ThoughtStuff.Caching/ThoughtStuff.Caching.Example/wwwroot/lib/bootstrap/dist/js/bootstrap.esm.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThoughtStuff/ThoughtStuff.Caching/HEAD/src/ThoughtStuff.Caching/ThoughtStuff.Caching.Example/wwwroot/lib/bootstrap/dist/js/bootstrap.esm.min.js.map -------------------------------------------------------------------------------- /src/ThoughtStuff.Caching/ThoughtStuff.Caching.Example/wwwroot/lib/bootstrap/dist/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThoughtStuff/ThoughtStuff.Caching/HEAD/src/ThoughtStuff.Caching/ThoughtStuff.Caching.Example/wwwroot/lib/bootstrap/dist/js/bootstrap.js -------------------------------------------------------------------------------- /src/ThoughtStuff.Caching/ThoughtStuff.Caching.Example/wwwroot/lib/bootstrap/dist/js/bootstrap.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThoughtStuff/ThoughtStuff.Caching/HEAD/src/ThoughtStuff.Caching/ThoughtStuff.Caching.Example/wwwroot/lib/bootstrap/dist/js/bootstrap.js.map -------------------------------------------------------------------------------- /src/ThoughtStuff.Caching/ThoughtStuff.Caching.Example/wwwroot/lib/bootstrap/dist/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThoughtStuff/ThoughtStuff.Caching/HEAD/src/ThoughtStuff.Caching/ThoughtStuff.Caching.Example/wwwroot/lib/bootstrap/dist/js/bootstrap.min.js -------------------------------------------------------------------------------- /src/ThoughtStuff.Caching/ThoughtStuff.Caching.Example/wwwroot/lib/bootstrap/dist/js/bootstrap.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThoughtStuff/ThoughtStuff.Caching/HEAD/src/ThoughtStuff.Caching/ThoughtStuff.Caching.Example/wwwroot/lib/bootstrap/dist/js/bootstrap.min.js.map -------------------------------------------------------------------------------- /src/ThoughtStuff.Caching/ThoughtStuff.Caching.Example/wwwroot/lib/jquery-validation-unobtrusive/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThoughtStuff/ThoughtStuff.Caching/HEAD/src/ThoughtStuff.Caching/ThoughtStuff.Caching.Example/wwwroot/lib/jquery-validation-unobtrusive/LICENSE.txt -------------------------------------------------------------------------------- /src/ThoughtStuff.Caching/ThoughtStuff.Caching.Example/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThoughtStuff/ThoughtStuff.Caching/HEAD/src/ThoughtStuff.Caching/ThoughtStuff.Caching.Example/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js -------------------------------------------------------------------------------- /src/ThoughtStuff.Caching/ThoughtStuff.Caching.Example/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThoughtStuff/ThoughtStuff.Caching/HEAD/src/ThoughtStuff.Caching/ThoughtStuff.Caching.Example/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.min.js -------------------------------------------------------------------------------- /src/ThoughtStuff.Caching/ThoughtStuff.Caching.Example/wwwroot/lib/jquery-validation/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThoughtStuff/ThoughtStuff.Caching/HEAD/src/ThoughtStuff.Caching/ThoughtStuff.Caching.Example/wwwroot/lib/jquery-validation/LICENSE.md -------------------------------------------------------------------------------- /src/ThoughtStuff.Caching/ThoughtStuff.Caching.Example/wwwroot/lib/jquery-validation/dist/additional-methods.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThoughtStuff/ThoughtStuff.Caching/HEAD/src/ThoughtStuff.Caching/ThoughtStuff.Caching.Example/wwwroot/lib/jquery-validation/dist/additional-methods.js -------------------------------------------------------------------------------- /src/ThoughtStuff.Caching/ThoughtStuff.Caching.Example/wwwroot/lib/jquery-validation/dist/additional-methods.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThoughtStuff/ThoughtStuff.Caching/HEAD/src/ThoughtStuff.Caching/ThoughtStuff.Caching.Example/wwwroot/lib/jquery-validation/dist/additional-methods.min.js -------------------------------------------------------------------------------- /src/ThoughtStuff.Caching/ThoughtStuff.Caching.Example/wwwroot/lib/jquery-validation/dist/jquery.validate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThoughtStuff/ThoughtStuff.Caching/HEAD/src/ThoughtStuff.Caching/ThoughtStuff.Caching.Example/wwwroot/lib/jquery-validation/dist/jquery.validate.js -------------------------------------------------------------------------------- /src/ThoughtStuff.Caching/ThoughtStuff.Caching.Example/wwwroot/lib/jquery-validation/dist/jquery.validate.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThoughtStuff/ThoughtStuff.Caching/HEAD/src/ThoughtStuff.Caching/ThoughtStuff.Caching.Example/wwwroot/lib/jquery-validation/dist/jquery.validate.min.js -------------------------------------------------------------------------------- /src/ThoughtStuff.Caching/ThoughtStuff.Caching.Example/wwwroot/lib/jquery/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThoughtStuff/ThoughtStuff.Caching/HEAD/src/ThoughtStuff.Caching/ThoughtStuff.Caching.Example/wwwroot/lib/jquery/LICENSE.txt -------------------------------------------------------------------------------- /src/ThoughtStuff.Caching/ThoughtStuff.Caching.Example/wwwroot/lib/jquery/dist/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThoughtStuff/ThoughtStuff.Caching/HEAD/src/ThoughtStuff.Caching/ThoughtStuff.Caching.Example/wwwroot/lib/jquery/dist/jquery.js -------------------------------------------------------------------------------- /src/ThoughtStuff.Caching/ThoughtStuff.Caching.Example/wwwroot/lib/jquery/dist/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThoughtStuff/ThoughtStuff.Caching/HEAD/src/ThoughtStuff.Caching/ThoughtStuff.Caching.Example/wwwroot/lib/jquery/dist/jquery.min.js -------------------------------------------------------------------------------- /src/ThoughtStuff.Caching/ThoughtStuff.Caching.Example/wwwroot/lib/jquery/dist/jquery.min.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThoughtStuff/ThoughtStuff.Caching/HEAD/src/ThoughtStuff.Caching/ThoughtStuff.Caching.Example/wwwroot/lib/jquery/dist/jquery.min.map -------------------------------------------------------------------------------- /src/ThoughtStuff.Caching/ThoughtStuff.Caching.FileSystem/IObjectFileSerializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThoughtStuff/ThoughtStuff.Caching/HEAD/src/ThoughtStuff.Caching/ThoughtStuff.Caching.FileSystem/IObjectFileSerializer.cs -------------------------------------------------------------------------------- /src/ThoughtStuff.Caching/ThoughtStuff.Caching.FileSystem/JsonFileSerializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThoughtStuff/ThoughtStuff.Caching/HEAD/src/ThoughtStuff.Caching/ThoughtStuff.Caching.FileSystem/JsonFileSerializer.cs -------------------------------------------------------------------------------- /src/ThoughtStuff.Caching/ThoughtStuff.Caching.FileSystem/LocalFileCache.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThoughtStuff/ThoughtStuff.Caching/HEAD/src/ThoughtStuff.Caching/ThoughtStuff.Caching.FileSystem/LocalFileCache.cs -------------------------------------------------------------------------------- /src/ThoughtStuff.Caching/ThoughtStuff.Caching.FileSystem/LocalFileCacheManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThoughtStuff/ThoughtStuff.Caching/HEAD/src/ThoughtStuff.Caching/ThoughtStuff.Caching.FileSystem/LocalFileCacheManager.cs -------------------------------------------------------------------------------- /src/ThoughtStuff.Caching/ThoughtStuff.Caching.FileSystem/LocalFileCacheMetadata.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThoughtStuff/ThoughtStuff.Caching/HEAD/src/ThoughtStuff.Caching/ThoughtStuff.Caching.FileSystem/LocalFileCacheMetadata.cs -------------------------------------------------------------------------------- /src/ThoughtStuff.Caching/ThoughtStuff.Caching.FileSystem/LocalFileCacheOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThoughtStuff/ThoughtStuff.Caching/HEAD/src/ThoughtStuff.Caching/ThoughtStuff.Caching.FileSystem/LocalFileCacheOptions.cs -------------------------------------------------------------------------------- /src/ThoughtStuff.Caching/ThoughtStuff.Caching.FileSystem/ServiceCollectionExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThoughtStuff/ThoughtStuff.Caching/HEAD/src/ThoughtStuff.Caching/ThoughtStuff.Caching.FileSystem/ServiceCollectionExtensions.cs -------------------------------------------------------------------------------- /src/ThoughtStuff.Caching/ThoughtStuff.Caching.FileSystem/ThoughtStuff.Caching.FileSystem.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThoughtStuff/ThoughtStuff.Caching/HEAD/src/ThoughtStuff.Caching/ThoughtStuff.Caching.FileSystem/ThoughtStuff.Caching.FileSystem.csproj -------------------------------------------------------------------------------- /src/ThoughtStuff.Caching/ThoughtStuff.Caching.Tests/Azure/AzureBlobCacheIntegrationTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThoughtStuff/ThoughtStuff.Caching/HEAD/src/ThoughtStuff.Caching/ThoughtStuff.Caching.Tests/Azure/AzureBlobCacheIntegrationTest.cs -------------------------------------------------------------------------------- /src/ThoughtStuff.Caching/ThoughtStuff.Caching.Tests/Azure/AzureBlobTextCacheManagerTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThoughtStuff/ThoughtStuff.Caching/HEAD/src/ThoughtStuff.Caching/ThoughtStuff.Caching.Tests/Azure/AzureBlobTextCacheManagerTest.cs -------------------------------------------------------------------------------- /src/ThoughtStuff.Caching/ThoughtStuff.Caching.Tests/Azure/AzureBlobTextCacheTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThoughtStuff/ThoughtStuff.Caching/HEAD/src/ThoughtStuff.Caching/ThoughtStuff.Caching.Tests/Azure/AzureBlobTextCacheTest.cs -------------------------------------------------------------------------------- /src/ThoughtStuff.Caching/ThoughtStuff.Caching.Tests/Azure/BlobStorageServiceTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThoughtStuff/ThoughtStuff.Caching/HEAD/src/ThoughtStuff.Caching/ThoughtStuff.Caching.Tests/Azure/BlobStorageServiceTest.cs -------------------------------------------------------------------------------- /src/ThoughtStuff.Caching/ThoughtStuff.Caching.Tests/Azure/ObjectDictionaryConverterTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThoughtStuff/ThoughtStuff.Caching/HEAD/src/ThoughtStuff.Caching/ThoughtStuff.Caching.Tests/Azure/ObjectDictionaryConverterTest.cs -------------------------------------------------------------------------------- /src/ThoughtStuff.Caching/ThoughtStuff.Caching.Tests/Azure/ZipArchiveBlobStorageTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThoughtStuff/ThoughtStuff.Caching/HEAD/src/ThoughtStuff.Caching/ThoughtStuff.Caching.Tests/Azure/ZipArchiveBlobStorageTest.cs -------------------------------------------------------------------------------- /src/ThoughtStuff.Caching/ThoughtStuff.Caching.Tests/CacheLockProviderTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThoughtStuff/ThoughtStuff.Caching/HEAD/src/ThoughtStuff.Caching/ThoughtStuff.Caching.Tests/CacheLockProviderTest.cs -------------------------------------------------------------------------------- /src/ThoughtStuff.Caching/ThoughtStuff.Caching.Tests/CacheTestAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThoughtStuff/ThoughtStuff.Caching/HEAD/src/ThoughtStuff.Caching/ThoughtStuff.Caching.Tests/CacheTestAttribute.cs -------------------------------------------------------------------------------- /src/ThoughtStuff.Caching/ThoughtStuff.Caching.Tests/CachingInterceptorTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThoughtStuff/ThoughtStuff.Caching/HEAD/src/ThoughtStuff.Caching/ThoughtStuff.Caching.Tests/CachingInterceptorTest.cs -------------------------------------------------------------------------------- /src/ThoughtStuff.Caching/ThoughtStuff.Caching.Tests/DictionaryTextCacheManagerTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThoughtStuff/ThoughtStuff.Caching/HEAD/src/ThoughtStuff.Caching/ThoughtStuff.Caching.Tests/DictionaryTextCacheManagerTest.cs -------------------------------------------------------------------------------- /src/ThoughtStuff.Caching/ThoughtStuff.Caching.Tests/DictionaryTextCacheTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThoughtStuff/ThoughtStuff.Caching/HEAD/src/ThoughtStuff.Caching/ThoughtStuff.Caching.Tests/DictionaryTextCacheTest.cs -------------------------------------------------------------------------------- /src/ThoughtStuff.Caching/ThoughtStuff.Caching.Tests/ExpirationTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThoughtStuff/ThoughtStuff.Caching/HEAD/src/ThoughtStuff.Caching/ThoughtStuff.Caching.Tests/ExpirationTests.cs -------------------------------------------------------------------------------- /src/ThoughtStuff.Caching/ThoughtStuff.Caching.Tests/FileSystem/FileSystemCacheIntegrationTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThoughtStuff/ThoughtStuff.Caching/HEAD/src/ThoughtStuff.Caching/ThoughtStuff.Caching.Tests/FileSystem/FileSystemCacheIntegrationTest.cs -------------------------------------------------------------------------------- /src/ThoughtStuff.Caching/ThoughtStuff.Caching.Tests/FileSystem/LocalFileCacheManagerTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThoughtStuff/ThoughtStuff.Caching/HEAD/src/ThoughtStuff.Caching/ThoughtStuff.Caching.Tests/FileSystem/LocalFileCacheManagerTest.cs -------------------------------------------------------------------------------- /src/ThoughtStuff.Caching/ThoughtStuff.Caching.Tests/FileSystem/LocalFileCacheServiceContractTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThoughtStuff/ThoughtStuff.Caching/HEAD/src/ThoughtStuff.Caching/ThoughtStuff.Caching.Tests/FileSystem/LocalFileCacheServiceContractTest.cs -------------------------------------------------------------------------------- /src/ThoughtStuff.Caching/ThoughtStuff.Caching.Tests/FileSystem/LocalFileCacheTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThoughtStuff/ThoughtStuff.Caching/HEAD/src/ThoughtStuff.Caching/ThoughtStuff.Caching.Tests/FileSystem/LocalFileCacheTest.cs -------------------------------------------------------------------------------- /src/ThoughtStuff.Caching/ThoughtStuff.Caching.Tests/GenericExtensionsTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThoughtStuff/ThoughtStuff.Caching/HEAD/src/ThoughtStuff.Caching/ThoughtStuff.Caching.Tests/GenericExtensionsTest.cs -------------------------------------------------------------------------------- /src/ThoughtStuff.Caching/ThoughtStuff.Caching.Tests/JsonTypedCacheTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThoughtStuff/ThoughtStuff.Caching/HEAD/src/ThoughtStuff.Caching/ThoughtStuff.Caching.Tests/JsonTypedCacheTest.cs -------------------------------------------------------------------------------- /src/ThoughtStuff.Caching/ThoughtStuff.Caching.Tests/MemCacheTestAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThoughtStuff/ThoughtStuff.Caching/HEAD/src/ThoughtStuff.Caching/ThoughtStuff.Caching.Tests/MemCacheTestAttribute.cs -------------------------------------------------------------------------------- /src/ThoughtStuff.Caching/ThoughtStuff.Caching.Tests/MemoryCacheMangerTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThoughtStuff/ThoughtStuff.Caching/HEAD/src/ThoughtStuff.Caching/ThoughtStuff.Caching.Tests/MemoryCacheMangerTest.cs -------------------------------------------------------------------------------- /src/ThoughtStuff.Caching/ThoughtStuff.Caching.Tests/MemoryCacheTypedCacheTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThoughtStuff/ThoughtStuff.Caching/HEAD/src/ThoughtStuff.Caching/ThoughtStuff.Caching.Tests/MemoryCacheTypedCacheTest.cs -------------------------------------------------------------------------------- /src/ThoughtStuff.Caching/ThoughtStuff.Caching.Tests/MethodCacheKeyGeneratorTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThoughtStuff/ThoughtStuff.Caching/HEAD/src/ThoughtStuff.Caching/ThoughtStuff.Caching.Tests/MethodCacheKeyGeneratorTest.cs -------------------------------------------------------------------------------- /src/ThoughtStuff.Caching/ThoughtStuff.Caching.Tests/MethodCacheOptionLookupExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThoughtStuff/ThoughtStuff.Caching/HEAD/src/ThoughtStuff.Caching/ThoughtStuff.Caching.Tests/MethodCacheOptionLookupExtensions.cs -------------------------------------------------------------------------------- /src/ThoughtStuff.Caching/ThoughtStuff.Caching.Tests/MethodCacheOptionLookupTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThoughtStuff/ThoughtStuff.Caching/HEAD/src/ThoughtStuff.Caching/ThoughtStuff.Caching.Tests/MethodCacheOptionLookupTest.cs -------------------------------------------------------------------------------- /src/ThoughtStuff.Caching/ThoughtStuff.Caching.Tests/MethodExpressionExtensionsTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThoughtStuff/ThoughtStuff.Caching/HEAD/src/ThoughtStuff.Caching/ThoughtStuff.Caching.Tests/MethodExpressionExtensionsTest.cs -------------------------------------------------------------------------------- /src/ThoughtStuff.Caching/ThoughtStuff.Caching.Tests/Testing/AutoMoqAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThoughtStuff/ThoughtStuff.Caching/HEAD/src/ThoughtStuff.Caching/ThoughtStuff.Caching.Tests/Testing/AutoMoqAttribute.cs -------------------------------------------------------------------------------- /src/ThoughtStuff.Caching/ThoughtStuff.Caching.Tests/Testing/FileSystemUtilities.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThoughtStuff/ThoughtStuff.Caching/HEAD/src/ThoughtStuff.Caching/ThoughtStuff.Caching.Tests/Testing/FileSystemUtilities.cs -------------------------------------------------------------------------------- /src/ThoughtStuff.Caching/ThoughtStuff.Caching.Tests/Testing/HttpMocking.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThoughtStuff/ThoughtStuff.Caching/HEAD/src/ThoughtStuff.Caching/ThoughtStuff.Caching.Tests/Testing/HttpMocking.cs -------------------------------------------------------------------------------- /src/ThoughtStuff.Caching/ThoughtStuff.Caching.Tests/Testing/InlineAutoMoqAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThoughtStuff/ThoughtStuff.Caching/HEAD/src/ThoughtStuff.Caching/ThoughtStuff.Caching.Tests/Testing/InlineAutoMoqAttribute.cs -------------------------------------------------------------------------------- /src/ThoughtStuff.Caching/ThoughtStuff.Caching.Tests/Testing/MockMessageHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThoughtStuff/ThoughtStuff.Caching/HEAD/src/ThoughtStuff.Caching/ThoughtStuff.Caching.Tests/Testing/MockMessageHandler.cs -------------------------------------------------------------------------------- /src/ThoughtStuff.Caching/ThoughtStuff.Caching.Tests/TextCacheManagerTestBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThoughtStuff/ThoughtStuff.Caching/HEAD/src/ThoughtStuff.Caching/ThoughtStuff.Caching.Tests/TextCacheManagerTestBase.cs -------------------------------------------------------------------------------- /src/ThoughtStuff.Caching/ThoughtStuff.Caching.Tests/TextCacheTestBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThoughtStuff/ThoughtStuff.Caching/HEAD/src/ThoughtStuff.Caching/ThoughtStuff.Caching.Tests/TextCacheTestBase.cs -------------------------------------------------------------------------------- /src/ThoughtStuff.Caching/ThoughtStuff.Caching.Tests/ThoughtStuff.Caching.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThoughtStuff/ThoughtStuff.Caching/HEAD/src/ThoughtStuff.Caching/ThoughtStuff.Caching.Tests/ThoughtStuff.Caching.Tests.csproj -------------------------------------------------------------------------------- /src/ThoughtStuff.Caching/ThoughtStuff.Caching.Tests/Usings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThoughtStuff/ThoughtStuff.Caching/HEAD/src/ThoughtStuff.Caching/ThoughtStuff.Caching.Tests/Usings.cs -------------------------------------------------------------------------------- /src/ThoughtStuff.Caching/ThoughtStuff.Caching.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThoughtStuff/ThoughtStuff.Caching/HEAD/src/ThoughtStuff.Caching/ThoughtStuff.Caching.sln -------------------------------------------------------------------------------- /src/ThoughtStuff.Caching/ThoughtStuff.Caching/AnyArgument.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThoughtStuff/ThoughtStuff.Caching/HEAD/src/ThoughtStuff.Caching/ThoughtStuff.Caching/AnyArgument.cs -------------------------------------------------------------------------------- /src/ThoughtStuff.Caching/ThoughtStuff.Caching/CacheExpirationService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThoughtStuff/ThoughtStuff.Caching/HEAD/src/ThoughtStuff.Caching/ThoughtStuff.Caching/CacheExpirationService.cs -------------------------------------------------------------------------------- /src/ThoughtStuff.Caching/ThoughtStuff.Caching/CacheLockProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThoughtStuff/ThoughtStuff.Caching/HEAD/src/ThoughtStuff.Caching/ThoughtStuff.Caching/CacheLockProvider.cs -------------------------------------------------------------------------------- /src/ThoughtStuff.Caching/ThoughtStuff.Caching/CachingInterceptor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThoughtStuff/ThoughtStuff.Caching/HEAD/src/ThoughtStuff.Caching/ThoughtStuff.Caching/CachingInterceptor.cs -------------------------------------------------------------------------------- /src/ThoughtStuff.Caching/ThoughtStuff.Caching/CachingInternal.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThoughtStuff/ThoughtStuff.Caching/HEAD/src/ThoughtStuff.Caching/ThoughtStuff.Caching/CachingInternal.cs -------------------------------------------------------------------------------- /src/ThoughtStuff.Caching/ThoughtStuff.Caching/Core/GenericExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThoughtStuff/ThoughtStuff.Caching/HEAD/src/ThoughtStuff.Caching/ThoughtStuff.Caching/Core/GenericExtensions.cs -------------------------------------------------------------------------------- /src/ThoughtStuff.Caching/ThoughtStuff.Caching/Core/ReflectionExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThoughtStuff/ThoughtStuff.Caching/HEAD/src/ThoughtStuff.Caching/ThoughtStuff.Caching/Core/ReflectionExtensions.cs -------------------------------------------------------------------------------- /src/ThoughtStuff.Caching/ThoughtStuff.Caching/Core/StringExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThoughtStuff/ThoughtStuff.Caching/HEAD/src/ThoughtStuff.Caching/ThoughtStuff.Caching/Core/StringExtensions.cs -------------------------------------------------------------------------------- /src/ThoughtStuff.Caching/ThoughtStuff.Caching/Core/StringUtilities.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThoughtStuff/ThoughtStuff.Caching/HEAD/src/ThoughtStuff.Caching/ThoughtStuff.Caching/Core/StringUtilities.cs -------------------------------------------------------------------------------- /src/ThoughtStuff.Caching/ThoughtStuff.Caching/DictionaryTextCache.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThoughtStuff/ThoughtStuff.Caching/HEAD/src/ThoughtStuff.Caching/ThoughtStuff.Caching/DictionaryTextCache.cs -------------------------------------------------------------------------------- /src/ThoughtStuff.Caching/ThoughtStuff.Caching/DictionaryTextCacheManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThoughtStuff/ThoughtStuff.Caching/HEAD/src/ThoughtStuff.Caching/ThoughtStuff.Caching/DictionaryTextCacheManager.cs -------------------------------------------------------------------------------- /src/ThoughtStuff.Caching/ThoughtStuff.Caching/HardCodedDefaultCachePolicy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThoughtStuff/ThoughtStuff.Caching/HEAD/src/ThoughtStuff.Caching/ThoughtStuff.Caching/HardCodedDefaultCachePolicy.cs -------------------------------------------------------------------------------- /src/ThoughtStuff.Caching/ThoughtStuff.Caching/ICacheBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThoughtStuff/ThoughtStuff.Caching/HEAD/src/ThoughtStuff.Caching/ThoughtStuff.Caching/ICacheBase.cs -------------------------------------------------------------------------------- /src/ThoughtStuff.Caching/ThoughtStuff.Caching/ICacheEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThoughtStuff/ThoughtStuff.Caching/HEAD/src/ThoughtStuff.Caching/ThoughtStuff.Caching/ICacheEntry.cs -------------------------------------------------------------------------------- /src/ThoughtStuff.Caching/ThoughtStuff.Caching/ICacheExpirationService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThoughtStuff/ThoughtStuff.Caching/HEAD/src/ThoughtStuff.Caching/ThoughtStuff.Caching/ICacheExpirationService.cs -------------------------------------------------------------------------------- /src/ThoughtStuff.Caching/ThoughtStuff.Caching/ICacheLockProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThoughtStuff/ThoughtStuff.Caching/HEAD/src/ThoughtStuff.Caching/ThoughtStuff.Caching/ICacheLockProvider.cs -------------------------------------------------------------------------------- /src/ThoughtStuff.Caching/ThoughtStuff.Caching/ICacheManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThoughtStuff/ThoughtStuff.Caching/HEAD/src/ThoughtStuff.Caching/ThoughtStuff.Caching/ICacheManager.cs -------------------------------------------------------------------------------- /src/ThoughtStuff.Caching/ThoughtStuff.Caching/IDefaultCachePolicyService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThoughtStuff/ThoughtStuff.Caching/HEAD/src/ThoughtStuff.Caching/ThoughtStuff.Caching/IDefaultCachePolicyService.cs -------------------------------------------------------------------------------- /src/ThoughtStuff.Caching/ThoughtStuff.Caching/IManagedCache.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThoughtStuff/ThoughtStuff.Caching/HEAD/src/ThoughtStuff.Caching/ThoughtStuff.Caching/IManagedCache.cs -------------------------------------------------------------------------------- /src/ThoughtStuff.Caching/ThoughtStuff.Caching/IMethodCacheKeyGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThoughtStuff/ThoughtStuff.Caching/HEAD/src/ThoughtStuff.Caching/ThoughtStuff.Caching/IMethodCacheKeyGenerator.cs -------------------------------------------------------------------------------- /src/ThoughtStuff.Caching/ThoughtStuff.Caching/IMethodCacheOptionsLookup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThoughtStuff/ThoughtStuff.Caching/HEAD/src/ThoughtStuff.Caching/ThoughtStuff.Caching/IMethodCacheOptionsLookup.cs -------------------------------------------------------------------------------- /src/ThoughtStuff.Caching/ThoughtStuff.Caching/ITextCache.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThoughtStuff/ThoughtStuff.Caching/HEAD/src/ThoughtStuff.Caching/ThoughtStuff.Caching/ITextCache.cs -------------------------------------------------------------------------------- /src/ThoughtStuff.Caching/ThoughtStuff.Caching/ITextCacheEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThoughtStuff/ThoughtStuff.Caching/HEAD/src/ThoughtStuff.Caching/ThoughtStuff.Caching/ITextCacheEntry.cs -------------------------------------------------------------------------------- /src/ThoughtStuff.Caching/ThoughtStuff.Caching/ITypedCache.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThoughtStuff/ThoughtStuff.Caching/HEAD/src/ThoughtStuff.Caching/ThoughtStuff.Caching/ITypedCache.cs -------------------------------------------------------------------------------- /src/ThoughtStuff.Caching/ThoughtStuff.Caching/JsonTypedCache.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThoughtStuff/ThoughtStuff.Caching/HEAD/src/ThoughtStuff.Caching/ThoughtStuff.Caching/JsonTypedCache.cs -------------------------------------------------------------------------------- /src/ThoughtStuff.Caching/ThoughtStuff.Caching/MemoryCacheManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThoughtStuff/ThoughtStuff.Caching/HEAD/src/ThoughtStuff.Caching/ThoughtStuff.Caching/MemoryCacheManager.cs -------------------------------------------------------------------------------- /src/ThoughtStuff.Caching/ThoughtStuff.Caching/MemoryCacheTypedCache.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThoughtStuff/ThoughtStuff.Caching/HEAD/src/ThoughtStuff.Caching/ThoughtStuff.Caching/MemoryCacheTypedCache.cs -------------------------------------------------------------------------------- /src/ThoughtStuff.Caching/ThoughtStuff.Caching/MethodCacheKeyGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThoughtStuff/ThoughtStuff.Caching/HEAD/src/ThoughtStuff.Caching/ThoughtStuff.Caching/MethodCacheKeyGenerator.cs -------------------------------------------------------------------------------- /src/ThoughtStuff.Caching/ThoughtStuff.Caching/MethodCacheOptionsLookup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThoughtStuff/ThoughtStuff.Caching/HEAD/src/ThoughtStuff.Caching/ThoughtStuff.Caching/MethodCacheOptionsLookup.cs -------------------------------------------------------------------------------- /src/ThoughtStuff.Caching/ThoughtStuff.Caching/MethodExpressionExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThoughtStuff/ThoughtStuff.Caching/HEAD/src/ThoughtStuff.Caching/ThoughtStuff.Caching/MethodExpressionExtensions.cs -------------------------------------------------------------------------------- /src/ThoughtStuff.Caching/ThoughtStuff.Caching/MethodInvocation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThoughtStuff/ThoughtStuff.Caching/HEAD/src/ThoughtStuff.Caching/ThoughtStuff.Caching/MethodInvocation.cs -------------------------------------------------------------------------------- /src/ThoughtStuff.Caching/ThoughtStuff.Caching/MethodInvocationMatcher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThoughtStuff/ThoughtStuff.Caching/HEAD/src/ThoughtStuff.Caching/ThoughtStuff.Caching/MethodInvocationMatcher.cs -------------------------------------------------------------------------------- /src/ThoughtStuff.Caching/ThoughtStuff.Caching/ServiceCollectionExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThoughtStuff/ThoughtStuff.Caching/HEAD/src/ThoughtStuff.Caching/ThoughtStuff.Caching/ServiceCollectionExtensions.cs -------------------------------------------------------------------------------- /src/ThoughtStuff.Caching/ThoughtStuff.Caching/TextCacheExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThoughtStuff/ThoughtStuff.Caching/HEAD/src/ThoughtStuff.Caching/ThoughtStuff.Caching/TextCacheExtensions.cs -------------------------------------------------------------------------------- /src/ThoughtStuff.Caching/ThoughtStuff.Caching/ThoughtStuff.Caching.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThoughtStuff/ThoughtStuff.Caching/HEAD/src/ThoughtStuff.Caching/ThoughtStuff.Caching/ThoughtStuff.Caching.csproj -------------------------------------------------------------------------------- /src/ThoughtStuff.Caching/ThoughtStuff.Caching/TypedCacheExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThoughtStuff/ThoughtStuff.Caching/HEAD/src/ThoughtStuff.Caching/ThoughtStuff.Caching/TypedCacheExtensions.cs --------------------------------------------------------------------------------