├── .editorconfig ├── .gitattributes ├── .github └── workflows │ ├── dotnet.yml │ ├── functional.yml │ └── publish.yml ├── .gitignore ├── LICENSE.md ├── NuGet.Config ├── README.md ├── ReleaseNotes.md ├── Sleet.sln ├── appveyor.yml ├── doc ├── badges.md ├── ci-server.md ├── client-settings.md ├── commands.md ├── external-search.md ├── feed-type-azure.md ├── feed-type-local.md ├── feed-type-s3.md ├── images │ ├── private-feed-s3-arch.svg │ ├── private-feed-s3-behavior.png │ ├── private-feed-s3-cloudfront-create.png │ ├── private-feed-s3-lambda-create.png │ └── private-feed-s3-lambda-deploy-auth.png ├── index.md ├── private-feed-s3.md └── symbol-server.md ├── src ├── Sleet │ ├── Common │ │ ├── CmdUtils.cs │ │ └── ExceptionUtils.cs │ ├── ConsoleLogger.cs │ ├── Constants.cs │ ├── CreateConfigAppCommand.cs │ ├── DeleteAppCommand.cs │ ├── DestroyAppCommand.cs │ ├── DownloadAppCommand.cs │ ├── FeedSettingsAppCommand.cs │ ├── InitAppCommand.cs │ ├── Program.cs │ ├── PushAppCommand.cs │ ├── RecreateAppCommand.cs │ ├── RetentionAppCommand.cs │ ├── RetentionPruneAppCommand.cs │ ├── RetentionSettingsAppCommand.cs │ ├── Sleet.csproj │ ├── SleetExe.nuspec │ ├── StatsAppCommand.cs │ ├── Util.cs │ ├── ValidateAppCommand.cs │ └── runtimeconfig.template.json └── SleetLib │ ├── AssemblyVersionHelper.cs │ ├── CatalogIndexEntry.cs │ ├── Commands │ ├── CreateConfigCommand.cs │ ├── DeleteCommand.cs │ ├── DestroyCommand.cs │ ├── DownloadCommand.cs │ ├── FeedSettingsCommand.cs │ ├── InitCommand.cs │ ├── PushCommand.cs │ ├── RecreateCommand.cs │ ├── RetentionPruneCommand.cs │ ├── RetentionPruneCommandContext.cs │ ├── RetentionSettingsCommand.cs │ ├── StatsCommand.cs │ └── ValidateCommand.cs │ ├── Common │ ├── ExceptionUtilsSleetLib.cs │ ├── HashCodeCombiner.cs │ ├── JsonLDTokenComparer.cs │ ├── PackageDiff.cs │ ├── PackageSet.cs │ ├── PackageSets.cs │ ├── SleetFileComparer.cs │ └── TaskUtils.cs │ ├── ExternalSearchHandler.cs │ ├── FileSystem │ ├── AmazonS3File.cs │ ├── AmazonS3FileSystem.cs │ ├── AmazonS3FileSystemAbstraction.cs │ ├── AmazonS3FileSystemLock.cs │ ├── AzureBlobLease.cs │ ├── AzureFile.cs │ ├── AzureFileSystem.cs │ ├── AzureFileSystemLock.cs │ ├── FileBase.cs │ ├── FileSystemBase.cs │ ├── FileSystemFactory.cs │ ├── FileSystemLockBase.cs │ ├── FileSystemStorageType.cs │ ├── ISleetFile.cs │ ├── ISleetFileSystem.cs │ ├── ISleetFileSystemLock.cs │ ├── LocalCache.cs │ ├── PhysicalFile.cs │ ├── PhysicalFileSystem.cs │ ├── PhysicalFileSystemLock.cs │ └── SleetUriPair.cs │ ├── LocalSettings.cs │ ├── Logging │ ├── IPerfTracker.cs │ ├── NullPerfTracker.cs │ ├── PerfEntryBase.cs │ ├── PerfEntryWrapper.cs │ ├── PerfFileEntry.cs │ ├── PerfSummaryEntry.cs │ ├── PerfTracker.cs │ └── SleetPerfGroup.cs │ ├── Models │ ├── FeedCapability.cs │ └── FeedRequirements.cs │ ├── PackageInput.cs │ ├── Services │ ├── AssetIndexEntry.cs │ ├── AssetIndexFile.cs │ ├── AutoComplete.cs │ ├── Badges.cs │ ├── Catalog.cs │ ├── FlatContainer.cs │ ├── IndexFileBase.cs │ ├── PackageIndex.cs │ ├── PackageIndexFile.cs │ ├── Registrations.cs │ ├── Search.cs │ ├── ServiceNames.cs │ ├── Symbols.cs │ └── VirtualCatalog.cs │ ├── SleetContext.cs │ ├── SleetLib.csproj │ ├── SleetOperation.cs │ ├── SleetOperations.cs │ ├── SourceSettings.cs │ ├── TemplateUtility.cs │ ├── Utility │ ├── AmazonS3Utility.cs │ ├── AzureUtility.cs │ ├── BadgeUtility.cs │ ├── CatalogUtility.cs │ ├── Extensions.cs │ ├── FeedSettingsUtility.cs │ ├── JsonUtility.cs │ ├── OperationsUtility.cs │ ├── PathUtility.cs │ ├── PrintUtility.cs │ ├── RetentionUtility.cs │ ├── SettingsUtility.cs │ ├── SleetUtility.cs │ ├── SourceUtility.cs │ ├── SymbolsIndexUtility.cs │ ├── SymbolsUtility.cs │ ├── UpgradeUtility.cs │ ├── UriUtility.cs │ └── Utility.cs │ ├── compiler │ └── resources │ │ ├── contextCatalog.json │ │ ├── contextCatalogPage.json │ │ ├── contextPackage.json │ │ ├── contextRegistration.json │ │ ├── contextServiceIndex.json │ │ ├── contextSleet.json │ │ ├── templateAutoComplete.json │ │ ├── templateCatalogIndex.json │ │ ├── templateSearch.json │ │ ├── templateServiceIndex.json │ │ └── templateSettings.json │ └── def │ ├── IAddRemovePackages.cs │ ├── IApplyOperations.cs │ ├── IFeedSettingHandler.cs │ ├── IPackageIdLookup.cs │ ├── IPackagesLookup.cs │ ├── IRootIndex.cs │ ├── ISleetService.cs │ ├── ISymbolsAddRemovePackages.cs │ ├── ISymbolsPackageIdLookup.cs │ ├── ISymbolsPackagesLookup.cs │ └── IValidatableService.cs └── test ├── Sleet.AmazonS3.Tests ├── AmazonS3FileSystemTests.cs ├── AmazonS3NuGetIntegrationTests.cs ├── AmazonS3TestContext.cs ├── BasicTests.cs ├── Sleet.AmazonS3.Tests.csproj └── SubFeedTests.cs ├── Sleet.Azure.Tests ├── AzureFileSystemTests.cs ├── AzureNuGetIntegrationTests.cs ├── AzureTestContext.cs ├── BasicTests.cs ├── Sleet.Azure.Tests.csproj └── SubFeedTests.cs ├── Sleet.CliTool.Tests ├── BasicTests.cs └── Sleet.CliTool.Tests.csproj ├── Sleet.CmdExe.Tests ├── BasicTests.cs ├── DynamicSettingsTests.cs ├── ExeUtils.cs └── Sleet.CmdExe.Tests.csproj ├── Sleet.Integration.Tests ├── LocalFeedTests.cs ├── NuGetReaderTests.cs ├── Sleet.Integration.Tests.csproj ├── TestHttpSource.cs ├── TestHttpSourceResourceProvider.cs └── TestUtility.cs ├── Sleet.Test.Common ├── BaseURITestUtil.cs ├── CmdRunner.cs ├── Sleet.Test.Common.csproj ├── SleetTestContext.cs └── XunitAttributes.cs └── SleetLib.Tests ├── AddRemoveTests.cs ├── AssetIndexFileTests.cs ├── BadgeFileTests.cs ├── BadgeUtilityTests.cs ├── BaseUriTests.cs ├── CatalogTests.cs ├── ConfigTests.cs ├── CreateConfigCommandTests.cs ├── DestroyTests.cs ├── DownloadTests.cs ├── ExtensionsTests.cs ├── ExternalSearchTests.cs ├── FeedCapabilityTests.cs ├── FeedRequirementsTests.cs ├── FeedSettingsCommandTests.cs ├── FeedSettingsUtilityTests.cs ├── FeedTests.cs ├── FileSystemFactoryTests.cs ├── FileSystemLockTests.cs ├── FileSystemTests.cs ├── InitCommandTests.cs ├── JsonUtilityTests.cs ├── LocalSettingsTests.cs ├── PackageIndexFileTests.cs ├── PathUtilityTests.cs ├── PhysicalFileSystemTests.cs ├── PushCommandTests.cs ├── RecreateCommandTests.cs ├── RetentionPruneCommandTests.cs ├── RetentionSettingsCommandTests.cs ├── RetentionUtilityTests.cs ├── SettingsUtilityTests.cs ├── SleetLib.Tests.csproj ├── SleetTestContext.cs ├── SleetUtilityTests.cs ├── SourceUtilityTests.cs ├── SubFeedTests.cs ├── SymbolsTests.cs ├── TestUtility.cs ├── UpgradeUtilityTests.cs ├── UriUtilityTests.cs └── compiler └── resources ├── SymbolsTestAdll ├── SymbolsTestApdb ├── SymbolsTestBdll └── SymbolsTestBpdb /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emgarten/Sleet/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emgarten/Sleet/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/workflows/dotnet.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emgarten/Sleet/HEAD/.github/workflows/dotnet.yml -------------------------------------------------------------------------------- /.github/workflows/functional.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emgarten/Sleet/HEAD/.github/workflows/functional.yml -------------------------------------------------------------------------------- /.github/workflows/publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emgarten/Sleet/HEAD/.github/workflows/publish.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emgarten/Sleet/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emgarten/Sleet/HEAD/LICENSE.md -------------------------------------------------------------------------------- /NuGet.Config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emgarten/Sleet/HEAD/NuGet.Config -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emgarten/Sleet/HEAD/README.md -------------------------------------------------------------------------------- /ReleaseNotes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emgarten/Sleet/HEAD/ReleaseNotes.md -------------------------------------------------------------------------------- /Sleet.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emgarten/Sleet/HEAD/Sleet.sln -------------------------------------------------------------------------------- /appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emgarten/Sleet/HEAD/appveyor.yml -------------------------------------------------------------------------------- /doc/badges.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emgarten/Sleet/HEAD/doc/badges.md -------------------------------------------------------------------------------- /doc/ci-server.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emgarten/Sleet/HEAD/doc/ci-server.md -------------------------------------------------------------------------------- /doc/client-settings.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emgarten/Sleet/HEAD/doc/client-settings.md -------------------------------------------------------------------------------- /doc/commands.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emgarten/Sleet/HEAD/doc/commands.md -------------------------------------------------------------------------------- /doc/external-search.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emgarten/Sleet/HEAD/doc/external-search.md -------------------------------------------------------------------------------- /doc/feed-type-azure.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emgarten/Sleet/HEAD/doc/feed-type-azure.md -------------------------------------------------------------------------------- /doc/feed-type-local.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emgarten/Sleet/HEAD/doc/feed-type-local.md -------------------------------------------------------------------------------- /doc/feed-type-s3.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emgarten/Sleet/HEAD/doc/feed-type-s3.md -------------------------------------------------------------------------------- /doc/images/private-feed-s3-arch.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emgarten/Sleet/HEAD/doc/images/private-feed-s3-arch.svg -------------------------------------------------------------------------------- /doc/images/private-feed-s3-behavior.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emgarten/Sleet/HEAD/doc/images/private-feed-s3-behavior.png -------------------------------------------------------------------------------- /doc/images/private-feed-s3-cloudfront-create.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emgarten/Sleet/HEAD/doc/images/private-feed-s3-cloudfront-create.png -------------------------------------------------------------------------------- /doc/images/private-feed-s3-lambda-create.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emgarten/Sleet/HEAD/doc/images/private-feed-s3-lambda-create.png -------------------------------------------------------------------------------- /doc/images/private-feed-s3-lambda-deploy-auth.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emgarten/Sleet/HEAD/doc/images/private-feed-s3-lambda-deploy-auth.png -------------------------------------------------------------------------------- /doc/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emgarten/Sleet/HEAD/doc/index.md -------------------------------------------------------------------------------- /doc/private-feed-s3.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emgarten/Sleet/HEAD/doc/private-feed-s3.md -------------------------------------------------------------------------------- /doc/symbol-server.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emgarten/Sleet/HEAD/doc/symbol-server.md -------------------------------------------------------------------------------- /src/Sleet/Common/CmdUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emgarten/Sleet/HEAD/src/Sleet/Common/CmdUtils.cs -------------------------------------------------------------------------------- /src/Sleet/Common/ExceptionUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emgarten/Sleet/HEAD/src/Sleet/Common/ExceptionUtils.cs -------------------------------------------------------------------------------- /src/Sleet/ConsoleLogger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emgarten/Sleet/HEAD/src/Sleet/ConsoleLogger.cs -------------------------------------------------------------------------------- /src/Sleet/Constants.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emgarten/Sleet/HEAD/src/Sleet/Constants.cs -------------------------------------------------------------------------------- /src/Sleet/CreateConfigAppCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emgarten/Sleet/HEAD/src/Sleet/CreateConfigAppCommand.cs -------------------------------------------------------------------------------- /src/Sleet/DeleteAppCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emgarten/Sleet/HEAD/src/Sleet/DeleteAppCommand.cs -------------------------------------------------------------------------------- /src/Sleet/DestroyAppCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emgarten/Sleet/HEAD/src/Sleet/DestroyAppCommand.cs -------------------------------------------------------------------------------- /src/Sleet/DownloadAppCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emgarten/Sleet/HEAD/src/Sleet/DownloadAppCommand.cs -------------------------------------------------------------------------------- /src/Sleet/FeedSettingsAppCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emgarten/Sleet/HEAD/src/Sleet/FeedSettingsAppCommand.cs -------------------------------------------------------------------------------- /src/Sleet/InitAppCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emgarten/Sleet/HEAD/src/Sleet/InitAppCommand.cs -------------------------------------------------------------------------------- /src/Sleet/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emgarten/Sleet/HEAD/src/Sleet/Program.cs -------------------------------------------------------------------------------- /src/Sleet/PushAppCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emgarten/Sleet/HEAD/src/Sleet/PushAppCommand.cs -------------------------------------------------------------------------------- /src/Sleet/RecreateAppCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emgarten/Sleet/HEAD/src/Sleet/RecreateAppCommand.cs -------------------------------------------------------------------------------- /src/Sleet/RetentionAppCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emgarten/Sleet/HEAD/src/Sleet/RetentionAppCommand.cs -------------------------------------------------------------------------------- /src/Sleet/RetentionPruneAppCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emgarten/Sleet/HEAD/src/Sleet/RetentionPruneAppCommand.cs -------------------------------------------------------------------------------- /src/Sleet/RetentionSettingsAppCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emgarten/Sleet/HEAD/src/Sleet/RetentionSettingsAppCommand.cs -------------------------------------------------------------------------------- /src/Sleet/Sleet.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emgarten/Sleet/HEAD/src/Sleet/Sleet.csproj -------------------------------------------------------------------------------- /src/Sleet/SleetExe.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emgarten/Sleet/HEAD/src/Sleet/SleetExe.nuspec -------------------------------------------------------------------------------- /src/Sleet/StatsAppCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emgarten/Sleet/HEAD/src/Sleet/StatsAppCommand.cs -------------------------------------------------------------------------------- /src/Sleet/Util.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emgarten/Sleet/HEAD/src/Sleet/Util.cs -------------------------------------------------------------------------------- /src/Sleet/ValidateAppCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emgarten/Sleet/HEAD/src/Sleet/ValidateAppCommand.cs -------------------------------------------------------------------------------- /src/Sleet/runtimeconfig.template.json: -------------------------------------------------------------------------------- 1 | { 2 | "rollForwardOnNoCandidateFx": 2 3 | } -------------------------------------------------------------------------------- /src/SleetLib/AssemblyVersionHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emgarten/Sleet/HEAD/src/SleetLib/AssemblyVersionHelper.cs -------------------------------------------------------------------------------- /src/SleetLib/CatalogIndexEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emgarten/Sleet/HEAD/src/SleetLib/CatalogIndexEntry.cs -------------------------------------------------------------------------------- /src/SleetLib/Commands/CreateConfigCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emgarten/Sleet/HEAD/src/SleetLib/Commands/CreateConfigCommand.cs -------------------------------------------------------------------------------- /src/SleetLib/Commands/DeleteCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emgarten/Sleet/HEAD/src/SleetLib/Commands/DeleteCommand.cs -------------------------------------------------------------------------------- /src/SleetLib/Commands/DestroyCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emgarten/Sleet/HEAD/src/SleetLib/Commands/DestroyCommand.cs -------------------------------------------------------------------------------- /src/SleetLib/Commands/DownloadCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emgarten/Sleet/HEAD/src/SleetLib/Commands/DownloadCommand.cs -------------------------------------------------------------------------------- /src/SleetLib/Commands/FeedSettingsCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emgarten/Sleet/HEAD/src/SleetLib/Commands/FeedSettingsCommand.cs -------------------------------------------------------------------------------- /src/SleetLib/Commands/InitCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emgarten/Sleet/HEAD/src/SleetLib/Commands/InitCommand.cs -------------------------------------------------------------------------------- /src/SleetLib/Commands/PushCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emgarten/Sleet/HEAD/src/SleetLib/Commands/PushCommand.cs -------------------------------------------------------------------------------- /src/SleetLib/Commands/RecreateCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emgarten/Sleet/HEAD/src/SleetLib/Commands/RecreateCommand.cs -------------------------------------------------------------------------------- /src/SleetLib/Commands/RetentionPruneCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emgarten/Sleet/HEAD/src/SleetLib/Commands/RetentionPruneCommand.cs -------------------------------------------------------------------------------- /src/SleetLib/Commands/RetentionPruneCommandContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emgarten/Sleet/HEAD/src/SleetLib/Commands/RetentionPruneCommandContext.cs -------------------------------------------------------------------------------- /src/SleetLib/Commands/RetentionSettingsCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emgarten/Sleet/HEAD/src/SleetLib/Commands/RetentionSettingsCommand.cs -------------------------------------------------------------------------------- /src/SleetLib/Commands/StatsCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emgarten/Sleet/HEAD/src/SleetLib/Commands/StatsCommand.cs -------------------------------------------------------------------------------- /src/SleetLib/Commands/ValidateCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emgarten/Sleet/HEAD/src/SleetLib/Commands/ValidateCommand.cs -------------------------------------------------------------------------------- /src/SleetLib/Common/ExceptionUtilsSleetLib.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emgarten/Sleet/HEAD/src/SleetLib/Common/ExceptionUtilsSleetLib.cs -------------------------------------------------------------------------------- /src/SleetLib/Common/HashCodeCombiner.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emgarten/Sleet/HEAD/src/SleetLib/Common/HashCodeCombiner.cs -------------------------------------------------------------------------------- /src/SleetLib/Common/JsonLDTokenComparer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emgarten/Sleet/HEAD/src/SleetLib/Common/JsonLDTokenComparer.cs -------------------------------------------------------------------------------- /src/SleetLib/Common/PackageDiff.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emgarten/Sleet/HEAD/src/SleetLib/Common/PackageDiff.cs -------------------------------------------------------------------------------- /src/SleetLib/Common/PackageSet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emgarten/Sleet/HEAD/src/SleetLib/Common/PackageSet.cs -------------------------------------------------------------------------------- /src/SleetLib/Common/PackageSets.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emgarten/Sleet/HEAD/src/SleetLib/Common/PackageSets.cs -------------------------------------------------------------------------------- /src/SleetLib/Common/SleetFileComparer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emgarten/Sleet/HEAD/src/SleetLib/Common/SleetFileComparer.cs -------------------------------------------------------------------------------- /src/SleetLib/Common/TaskUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emgarten/Sleet/HEAD/src/SleetLib/Common/TaskUtils.cs -------------------------------------------------------------------------------- /src/SleetLib/ExternalSearchHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emgarten/Sleet/HEAD/src/SleetLib/ExternalSearchHandler.cs -------------------------------------------------------------------------------- /src/SleetLib/FileSystem/AmazonS3File.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emgarten/Sleet/HEAD/src/SleetLib/FileSystem/AmazonS3File.cs -------------------------------------------------------------------------------- /src/SleetLib/FileSystem/AmazonS3FileSystem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emgarten/Sleet/HEAD/src/SleetLib/FileSystem/AmazonS3FileSystem.cs -------------------------------------------------------------------------------- /src/SleetLib/FileSystem/AmazonS3FileSystemAbstraction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emgarten/Sleet/HEAD/src/SleetLib/FileSystem/AmazonS3FileSystemAbstraction.cs -------------------------------------------------------------------------------- /src/SleetLib/FileSystem/AmazonS3FileSystemLock.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emgarten/Sleet/HEAD/src/SleetLib/FileSystem/AmazonS3FileSystemLock.cs -------------------------------------------------------------------------------- /src/SleetLib/FileSystem/AzureBlobLease.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emgarten/Sleet/HEAD/src/SleetLib/FileSystem/AzureBlobLease.cs -------------------------------------------------------------------------------- /src/SleetLib/FileSystem/AzureFile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emgarten/Sleet/HEAD/src/SleetLib/FileSystem/AzureFile.cs -------------------------------------------------------------------------------- /src/SleetLib/FileSystem/AzureFileSystem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emgarten/Sleet/HEAD/src/SleetLib/FileSystem/AzureFileSystem.cs -------------------------------------------------------------------------------- /src/SleetLib/FileSystem/AzureFileSystemLock.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emgarten/Sleet/HEAD/src/SleetLib/FileSystem/AzureFileSystemLock.cs -------------------------------------------------------------------------------- /src/SleetLib/FileSystem/FileBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emgarten/Sleet/HEAD/src/SleetLib/FileSystem/FileBase.cs -------------------------------------------------------------------------------- /src/SleetLib/FileSystem/FileSystemBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emgarten/Sleet/HEAD/src/SleetLib/FileSystem/FileSystemBase.cs -------------------------------------------------------------------------------- /src/SleetLib/FileSystem/FileSystemFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emgarten/Sleet/HEAD/src/SleetLib/FileSystem/FileSystemFactory.cs -------------------------------------------------------------------------------- /src/SleetLib/FileSystem/FileSystemLockBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emgarten/Sleet/HEAD/src/SleetLib/FileSystem/FileSystemLockBase.cs -------------------------------------------------------------------------------- /src/SleetLib/FileSystem/FileSystemStorageType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emgarten/Sleet/HEAD/src/SleetLib/FileSystem/FileSystemStorageType.cs -------------------------------------------------------------------------------- /src/SleetLib/FileSystem/ISleetFile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emgarten/Sleet/HEAD/src/SleetLib/FileSystem/ISleetFile.cs -------------------------------------------------------------------------------- /src/SleetLib/FileSystem/ISleetFileSystem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emgarten/Sleet/HEAD/src/SleetLib/FileSystem/ISleetFileSystem.cs -------------------------------------------------------------------------------- /src/SleetLib/FileSystem/ISleetFileSystemLock.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emgarten/Sleet/HEAD/src/SleetLib/FileSystem/ISleetFileSystemLock.cs -------------------------------------------------------------------------------- /src/SleetLib/FileSystem/LocalCache.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emgarten/Sleet/HEAD/src/SleetLib/FileSystem/LocalCache.cs -------------------------------------------------------------------------------- /src/SleetLib/FileSystem/PhysicalFile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emgarten/Sleet/HEAD/src/SleetLib/FileSystem/PhysicalFile.cs -------------------------------------------------------------------------------- /src/SleetLib/FileSystem/PhysicalFileSystem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emgarten/Sleet/HEAD/src/SleetLib/FileSystem/PhysicalFileSystem.cs -------------------------------------------------------------------------------- /src/SleetLib/FileSystem/PhysicalFileSystemLock.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emgarten/Sleet/HEAD/src/SleetLib/FileSystem/PhysicalFileSystemLock.cs -------------------------------------------------------------------------------- /src/SleetLib/FileSystem/SleetUriPair.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emgarten/Sleet/HEAD/src/SleetLib/FileSystem/SleetUriPair.cs -------------------------------------------------------------------------------- /src/SleetLib/LocalSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emgarten/Sleet/HEAD/src/SleetLib/LocalSettings.cs -------------------------------------------------------------------------------- /src/SleetLib/Logging/IPerfTracker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emgarten/Sleet/HEAD/src/SleetLib/Logging/IPerfTracker.cs -------------------------------------------------------------------------------- /src/SleetLib/Logging/NullPerfTracker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emgarten/Sleet/HEAD/src/SleetLib/Logging/NullPerfTracker.cs -------------------------------------------------------------------------------- /src/SleetLib/Logging/PerfEntryBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emgarten/Sleet/HEAD/src/SleetLib/Logging/PerfEntryBase.cs -------------------------------------------------------------------------------- /src/SleetLib/Logging/PerfEntryWrapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emgarten/Sleet/HEAD/src/SleetLib/Logging/PerfEntryWrapper.cs -------------------------------------------------------------------------------- /src/SleetLib/Logging/PerfFileEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emgarten/Sleet/HEAD/src/SleetLib/Logging/PerfFileEntry.cs -------------------------------------------------------------------------------- /src/SleetLib/Logging/PerfSummaryEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emgarten/Sleet/HEAD/src/SleetLib/Logging/PerfSummaryEntry.cs -------------------------------------------------------------------------------- /src/SleetLib/Logging/PerfTracker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emgarten/Sleet/HEAD/src/SleetLib/Logging/PerfTracker.cs -------------------------------------------------------------------------------- /src/SleetLib/Logging/SleetPerfGroup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emgarten/Sleet/HEAD/src/SleetLib/Logging/SleetPerfGroup.cs -------------------------------------------------------------------------------- /src/SleetLib/Models/FeedCapability.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emgarten/Sleet/HEAD/src/SleetLib/Models/FeedCapability.cs -------------------------------------------------------------------------------- /src/SleetLib/Models/FeedRequirements.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emgarten/Sleet/HEAD/src/SleetLib/Models/FeedRequirements.cs -------------------------------------------------------------------------------- /src/SleetLib/PackageInput.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emgarten/Sleet/HEAD/src/SleetLib/PackageInput.cs -------------------------------------------------------------------------------- /src/SleetLib/Services/AssetIndexEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emgarten/Sleet/HEAD/src/SleetLib/Services/AssetIndexEntry.cs -------------------------------------------------------------------------------- /src/SleetLib/Services/AssetIndexFile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emgarten/Sleet/HEAD/src/SleetLib/Services/AssetIndexFile.cs -------------------------------------------------------------------------------- /src/SleetLib/Services/AutoComplete.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emgarten/Sleet/HEAD/src/SleetLib/Services/AutoComplete.cs -------------------------------------------------------------------------------- /src/SleetLib/Services/Badges.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emgarten/Sleet/HEAD/src/SleetLib/Services/Badges.cs -------------------------------------------------------------------------------- /src/SleetLib/Services/Catalog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emgarten/Sleet/HEAD/src/SleetLib/Services/Catalog.cs -------------------------------------------------------------------------------- /src/SleetLib/Services/FlatContainer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emgarten/Sleet/HEAD/src/SleetLib/Services/FlatContainer.cs -------------------------------------------------------------------------------- /src/SleetLib/Services/IndexFileBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emgarten/Sleet/HEAD/src/SleetLib/Services/IndexFileBase.cs -------------------------------------------------------------------------------- /src/SleetLib/Services/PackageIndex.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emgarten/Sleet/HEAD/src/SleetLib/Services/PackageIndex.cs -------------------------------------------------------------------------------- /src/SleetLib/Services/PackageIndexFile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emgarten/Sleet/HEAD/src/SleetLib/Services/PackageIndexFile.cs -------------------------------------------------------------------------------- /src/SleetLib/Services/Registrations.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emgarten/Sleet/HEAD/src/SleetLib/Services/Registrations.cs -------------------------------------------------------------------------------- /src/SleetLib/Services/Search.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emgarten/Sleet/HEAD/src/SleetLib/Services/Search.cs -------------------------------------------------------------------------------- /src/SleetLib/Services/ServiceNames.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emgarten/Sleet/HEAD/src/SleetLib/Services/ServiceNames.cs -------------------------------------------------------------------------------- /src/SleetLib/Services/Symbols.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emgarten/Sleet/HEAD/src/SleetLib/Services/Symbols.cs -------------------------------------------------------------------------------- /src/SleetLib/Services/VirtualCatalog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emgarten/Sleet/HEAD/src/SleetLib/Services/VirtualCatalog.cs -------------------------------------------------------------------------------- /src/SleetLib/SleetContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emgarten/Sleet/HEAD/src/SleetLib/SleetContext.cs -------------------------------------------------------------------------------- /src/SleetLib/SleetLib.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emgarten/Sleet/HEAD/src/SleetLib/SleetLib.csproj -------------------------------------------------------------------------------- /src/SleetLib/SleetOperation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emgarten/Sleet/HEAD/src/SleetLib/SleetOperation.cs -------------------------------------------------------------------------------- /src/SleetLib/SleetOperations.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emgarten/Sleet/HEAD/src/SleetLib/SleetOperations.cs -------------------------------------------------------------------------------- /src/SleetLib/SourceSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emgarten/Sleet/HEAD/src/SleetLib/SourceSettings.cs -------------------------------------------------------------------------------- /src/SleetLib/TemplateUtility.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emgarten/Sleet/HEAD/src/SleetLib/TemplateUtility.cs -------------------------------------------------------------------------------- /src/SleetLib/Utility/AmazonS3Utility.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emgarten/Sleet/HEAD/src/SleetLib/Utility/AmazonS3Utility.cs -------------------------------------------------------------------------------- /src/SleetLib/Utility/AzureUtility.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emgarten/Sleet/HEAD/src/SleetLib/Utility/AzureUtility.cs -------------------------------------------------------------------------------- /src/SleetLib/Utility/BadgeUtility.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emgarten/Sleet/HEAD/src/SleetLib/Utility/BadgeUtility.cs -------------------------------------------------------------------------------- /src/SleetLib/Utility/CatalogUtility.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emgarten/Sleet/HEAD/src/SleetLib/Utility/CatalogUtility.cs -------------------------------------------------------------------------------- /src/SleetLib/Utility/Extensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emgarten/Sleet/HEAD/src/SleetLib/Utility/Extensions.cs -------------------------------------------------------------------------------- /src/SleetLib/Utility/FeedSettingsUtility.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emgarten/Sleet/HEAD/src/SleetLib/Utility/FeedSettingsUtility.cs -------------------------------------------------------------------------------- /src/SleetLib/Utility/JsonUtility.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emgarten/Sleet/HEAD/src/SleetLib/Utility/JsonUtility.cs -------------------------------------------------------------------------------- /src/SleetLib/Utility/OperationsUtility.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emgarten/Sleet/HEAD/src/SleetLib/Utility/OperationsUtility.cs -------------------------------------------------------------------------------- /src/SleetLib/Utility/PathUtility.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emgarten/Sleet/HEAD/src/SleetLib/Utility/PathUtility.cs -------------------------------------------------------------------------------- /src/SleetLib/Utility/PrintUtility.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emgarten/Sleet/HEAD/src/SleetLib/Utility/PrintUtility.cs -------------------------------------------------------------------------------- /src/SleetLib/Utility/RetentionUtility.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emgarten/Sleet/HEAD/src/SleetLib/Utility/RetentionUtility.cs -------------------------------------------------------------------------------- /src/SleetLib/Utility/SettingsUtility.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emgarten/Sleet/HEAD/src/SleetLib/Utility/SettingsUtility.cs -------------------------------------------------------------------------------- /src/SleetLib/Utility/SleetUtility.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emgarten/Sleet/HEAD/src/SleetLib/Utility/SleetUtility.cs -------------------------------------------------------------------------------- /src/SleetLib/Utility/SourceUtility.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emgarten/Sleet/HEAD/src/SleetLib/Utility/SourceUtility.cs -------------------------------------------------------------------------------- /src/SleetLib/Utility/SymbolsIndexUtility.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emgarten/Sleet/HEAD/src/SleetLib/Utility/SymbolsIndexUtility.cs -------------------------------------------------------------------------------- /src/SleetLib/Utility/SymbolsUtility.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emgarten/Sleet/HEAD/src/SleetLib/Utility/SymbolsUtility.cs -------------------------------------------------------------------------------- /src/SleetLib/Utility/UpgradeUtility.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emgarten/Sleet/HEAD/src/SleetLib/Utility/UpgradeUtility.cs -------------------------------------------------------------------------------- /src/SleetLib/Utility/UriUtility.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emgarten/Sleet/HEAD/src/SleetLib/Utility/UriUtility.cs -------------------------------------------------------------------------------- /src/SleetLib/Utility/Utility.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emgarten/Sleet/HEAD/src/SleetLib/Utility/Utility.cs -------------------------------------------------------------------------------- /src/SleetLib/compiler/resources/contextCatalog.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emgarten/Sleet/HEAD/src/SleetLib/compiler/resources/contextCatalog.json -------------------------------------------------------------------------------- /src/SleetLib/compiler/resources/contextCatalogPage.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emgarten/Sleet/HEAD/src/SleetLib/compiler/resources/contextCatalogPage.json -------------------------------------------------------------------------------- /src/SleetLib/compiler/resources/contextPackage.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emgarten/Sleet/HEAD/src/SleetLib/compiler/resources/contextPackage.json -------------------------------------------------------------------------------- /src/SleetLib/compiler/resources/contextRegistration.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emgarten/Sleet/HEAD/src/SleetLib/compiler/resources/contextRegistration.json -------------------------------------------------------------------------------- /src/SleetLib/compiler/resources/contextServiceIndex.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emgarten/Sleet/HEAD/src/SleetLib/compiler/resources/contextServiceIndex.json -------------------------------------------------------------------------------- /src/SleetLib/compiler/resources/contextSleet.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emgarten/Sleet/HEAD/src/SleetLib/compiler/resources/contextSleet.json -------------------------------------------------------------------------------- /src/SleetLib/compiler/resources/templateAutoComplete.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emgarten/Sleet/HEAD/src/SleetLib/compiler/resources/templateAutoComplete.json -------------------------------------------------------------------------------- /src/SleetLib/compiler/resources/templateCatalogIndex.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emgarten/Sleet/HEAD/src/SleetLib/compiler/resources/templateCatalogIndex.json -------------------------------------------------------------------------------- /src/SleetLib/compiler/resources/templateSearch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emgarten/Sleet/HEAD/src/SleetLib/compiler/resources/templateSearch.json -------------------------------------------------------------------------------- /src/SleetLib/compiler/resources/templateServiceIndex.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emgarten/Sleet/HEAD/src/SleetLib/compiler/resources/templateServiceIndex.json -------------------------------------------------------------------------------- /src/SleetLib/compiler/resources/templateSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emgarten/Sleet/HEAD/src/SleetLib/compiler/resources/templateSettings.json -------------------------------------------------------------------------------- /src/SleetLib/def/IAddRemovePackages.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emgarten/Sleet/HEAD/src/SleetLib/def/IAddRemovePackages.cs -------------------------------------------------------------------------------- /src/SleetLib/def/IApplyOperations.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emgarten/Sleet/HEAD/src/SleetLib/def/IApplyOperations.cs -------------------------------------------------------------------------------- /src/SleetLib/def/IFeedSettingHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emgarten/Sleet/HEAD/src/SleetLib/def/IFeedSettingHandler.cs -------------------------------------------------------------------------------- /src/SleetLib/def/IPackageIdLookup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emgarten/Sleet/HEAD/src/SleetLib/def/IPackageIdLookup.cs -------------------------------------------------------------------------------- /src/SleetLib/def/IPackagesLookup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emgarten/Sleet/HEAD/src/SleetLib/def/IPackagesLookup.cs -------------------------------------------------------------------------------- /src/SleetLib/def/IRootIndex.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emgarten/Sleet/HEAD/src/SleetLib/def/IRootIndex.cs -------------------------------------------------------------------------------- /src/SleetLib/def/ISleetService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emgarten/Sleet/HEAD/src/SleetLib/def/ISleetService.cs -------------------------------------------------------------------------------- /src/SleetLib/def/ISymbolsAddRemovePackages.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emgarten/Sleet/HEAD/src/SleetLib/def/ISymbolsAddRemovePackages.cs -------------------------------------------------------------------------------- /src/SleetLib/def/ISymbolsPackageIdLookup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emgarten/Sleet/HEAD/src/SleetLib/def/ISymbolsPackageIdLookup.cs -------------------------------------------------------------------------------- /src/SleetLib/def/ISymbolsPackagesLookup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emgarten/Sleet/HEAD/src/SleetLib/def/ISymbolsPackagesLookup.cs -------------------------------------------------------------------------------- /src/SleetLib/def/IValidatableService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emgarten/Sleet/HEAD/src/SleetLib/def/IValidatableService.cs -------------------------------------------------------------------------------- /test/Sleet.AmazonS3.Tests/AmazonS3FileSystemTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emgarten/Sleet/HEAD/test/Sleet.AmazonS3.Tests/AmazonS3FileSystemTests.cs -------------------------------------------------------------------------------- /test/Sleet.AmazonS3.Tests/AmazonS3NuGetIntegrationTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emgarten/Sleet/HEAD/test/Sleet.AmazonS3.Tests/AmazonS3NuGetIntegrationTests.cs -------------------------------------------------------------------------------- /test/Sleet.AmazonS3.Tests/AmazonS3TestContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emgarten/Sleet/HEAD/test/Sleet.AmazonS3.Tests/AmazonS3TestContext.cs -------------------------------------------------------------------------------- /test/Sleet.AmazonS3.Tests/BasicTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emgarten/Sleet/HEAD/test/Sleet.AmazonS3.Tests/BasicTests.cs -------------------------------------------------------------------------------- /test/Sleet.AmazonS3.Tests/Sleet.AmazonS3.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emgarten/Sleet/HEAD/test/Sleet.AmazonS3.Tests/Sleet.AmazonS3.Tests.csproj -------------------------------------------------------------------------------- /test/Sleet.AmazonS3.Tests/SubFeedTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emgarten/Sleet/HEAD/test/Sleet.AmazonS3.Tests/SubFeedTests.cs -------------------------------------------------------------------------------- /test/Sleet.Azure.Tests/AzureFileSystemTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emgarten/Sleet/HEAD/test/Sleet.Azure.Tests/AzureFileSystemTests.cs -------------------------------------------------------------------------------- /test/Sleet.Azure.Tests/AzureNuGetIntegrationTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emgarten/Sleet/HEAD/test/Sleet.Azure.Tests/AzureNuGetIntegrationTests.cs -------------------------------------------------------------------------------- /test/Sleet.Azure.Tests/AzureTestContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emgarten/Sleet/HEAD/test/Sleet.Azure.Tests/AzureTestContext.cs -------------------------------------------------------------------------------- /test/Sleet.Azure.Tests/BasicTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emgarten/Sleet/HEAD/test/Sleet.Azure.Tests/BasicTests.cs -------------------------------------------------------------------------------- /test/Sleet.Azure.Tests/Sleet.Azure.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emgarten/Sleet/HEAD/test/Sleet.Azure.Tests/Sleet.Azure.Tests.csproj -------------------------------------------------------------------------------- /test/Sleet.Azure.Tests/SubFeedTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emgarten/Sleet/HEAD/test/Sleet.Azure.Tests/SubFeedTests.cs -------------------------------------------------------------------------------- /test/Sleet.CliTool.Tests/BasicTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emgarten/Sleet/HEAD/test/Sleet.CliTool.Tests/BasicTests.cs -------------------------------------------------------------------------------- /test/Sleet.CliTool.Tests/Sleet.CliTool.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emgarten/Sleet/HEAD/test/Sleet.CliTool.Tests/Sleet.CliTool.Tests.csproj -------------------------------------------------------------------------------- /test/Sleet.CmdExe.Tests/BasicTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emgarten/Sleet/HEAD/test/Sleet.CmdExe.Tests/BasicTests.cs -------------------------------------------------------------------------------- /test/Sleet.CmdExe.Tests/DynamicSettingsTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emgarten/Sleet/HEAD/test/Sleet.CmdExe.Tests/DynamicSettingsTests.cs -------------------------------------------------------------------------------- /test/Sleet.CmdExe.Tests/ExeUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emgarten/Sleet/HEAD/test/Sleet.CmdExe.Tests/ExeUtils.cs -------------------------------------------------------------------------------- /test/Sleet.CmdExe.Tests/Sleet.CmdExe.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emgarten/Sleet/HEAD/test/Sleet.CmdExe.Tests/Sleet.CmdExe.Tests.csproj -------------------------------------------------------------------------------- /test/Sleet.Integration.Tests/LocalFeedTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emgarten/Sleet/HEAD/test/Sleet.Integration.Tests/LocalFeedTests.cs -------------------------------------------------------------------------------- /test/Sleet.Integration.Tests/NuGetReaderTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emgarten/Sleet/HEAD/test/Sleet.Integration.Tests/NuGetReaderTests.cs -------------------------------------------------------------------------------- /test/Sleet.Integration.Tests/Sleet.Integration.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emgarten/Sleet/HEAD/test/Sleet.Integration.Tests/Sleet.Integration.Tests.csproj -------------------------------------------------------------------------------- /test/Sleet.Integration.Tests/TestHttpSource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emgarten/Sleet/HEAD/test/Sleet.Integration.Tests/TestHttpSource.cs -------------------------------------------------------------------------------- /test/Sleet.Integration.Tests/TestHttpSourceResourceProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emgarten/Sleet/HEAD/test/Sleet.Integration.Tests/TestHttpSourceResourceProvider.cs -------------------------------------------------------------------------------- /test/Sleet.Integration.Tests/TestUtility.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emgarten/Sleet/HEAD/test/Sleet.Integration.Tests/TestUtility.cs -------------------------------------------------------------------------------- /test/Sleet.Test.Common/BaseURITestUtil.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emgarten/Sleet/HEAD/test/Sleet.Test.Common/BaseURITestUtil.cs -------------------------------------------------------------------------------- /test/Sleet.Test.Common/CmdRunner.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emgarten/Sleet/HEAD/test/Sleet.Test.Common/CmdRunner.cs -------------------------------------------------------------------------------- /test/Sleet.Test.Common/Sleet.Test.Common.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emgarten/Sleet/HEAD/test/Sleet.Test.Common/Sleet.Test.Common.csproj -------------------------------------------------------------------------------- /test/Sleet.Test.Common/SleetTestContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emgarten/Sleet/HEAD/test/Sleet.Test.Common/SleetTestContext.cs -------------------------------------------------------------------------------- /test/Sleet.Test.Common/XunitAttributes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emgarten/Sleet/HEAD/test/Sleet.Test.Common/XunitAttributes.cs -------------------------------------------------------------------------------- /test/SleetLib.Tests/AddRemoveTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emgarten/Sleet/HEAD/test/SleetLib.Tests/AddRemoveTests.cs -------------------------------------------------------------------------------- /test/SleetLib.Tests/AssetIndexFileTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emgarten/Sleet/HEAD/test/SleetLib.Tests/AssetIndexFileTests.cs -------------------------------------------------------------------------------- /test/SleetLib.Tests/BadgeFileTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emgarten/Sleet/HEAD/test/SleetLib.Tests/BadgeFileTests.cs -------------------------------------------------------------------------------- /test/SleetLib.Tests/BadgeUtilityTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emgarten/Sleet/HEAD/test/SleetLib.Tests/BadgeUtilityTests.cs -------------------------------------------------------------------------------- /test/SleetLib.Tests/BaseUriTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emgarten/Sleet/HEAD/test/SleetLib.Tests/BaseUriTests.cs -------------------------------------------------------------------------------- /test/SleetLib.Tests/CatalogTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emgarten/Sleet/HEAD/test/SleetLib.Tests/CatalogTests.cs -------------------------------------------------------------------------------- /test/SleetLib.Tests/ConfigTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emgarten/Sleet/HEAD/test/SleetLib.Tests/ConfigTests.cs -------------------------------------------------------------------------------- /test/SleetLib.Tests/CreateConfigCommandTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emgarten/Sleet/HEAD/test/SleetLib.Tests/CreateConfigCommandTests.cs -------------------------------------------------------------------------------- /test/SleetLib.Tests/DestroyTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emgarten/Sleet/HEAD/test/SleetLib.Tests/DestroyTests.cs -------------------------------------------------------------------------------- /test/SleetLib.Tests/DownloadTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emgarten/Sleet/HEAD/test/SleetLib.Tests/DownloadTests.cs -------------------------------------------------------------------------------- /test/SleetLib.Tests/ExtensionsTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emgarten/Sleet/HEAD/test/SleetLib.Tests/ExtensionsTests.cs -------------------------------------------------------------------------------- /test/SleetLib.Tests/ExternalSearchTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emgarten/Sleet/HEAD/test/SleetLib.Tests/ExternalSearchTests.cs -------------------------------------------------------------------------------- /test/SleetLib.Tests/FeedCapabilityTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emgarten/Sleet/HEAD/test/SleetLib.Tests/FeedCapabilityTests.cs -------------------------------------------------------------------------------- /test/SleetLib.Tests/FeedRequirementsTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emgarten/Sleet/HEAD/test/SleetLib.Tests/FeedRequirementsTests.cs -------------------------------------------------------------------------------- /test/SleetLib.Tests/FeedSettingsCommandTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emgarten/Sleet/HEAD/test/SleetLib.Tests/FeedSettingsCommandTests.cs -------------------------------------------------------------------------------- /test/SleetLib.Tests/FeedSettingsUtilityTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emgarten/Sleet/HEAD/test/SleetLib.Tests/FeedSettingsUtilityTests.cs -------------------------------------------------------------------------------- /test/SleetLib.Tests/FeedTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emgarten/Sleet/HEAD/test/SleetLib.Tests/FeedTests.cs -------------------------------------------------------------------------------- /test/SleetLib.Tests/FileSystemFactoryTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emgarten/Sleet/HEAD/test/SleetLib.Tests/FileSystemFactoryTests.cs -------------------------------------------------------------------------------- /test/SleetLib.Tests/FileSystemLockTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emgarten/Sleet/HEAD/test/SleetLib.Tests/FileSystemLockTests.cs -------------------------------------------------------------------------------- /test/SleetLib.Tests/FileSystemTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emgarten/Sleet/HEAD/test/SleetLib.Tests/FileSystemTests.cs -------------------------------------------------------------------------------- /test/SleetLib.Tests/InitCommandTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emgarten/Sleet/HEAD/test/SleetLib.Tests/InitCommandTests.cs -------------------------------------------------------------------------------- /test/SleetLib.Tests/JsonUtilityTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emgarten/Sleet/HEAD/test/SleetLib.Tests/JsonUtilityTests.cs -------------------------------------------------------------------------------- /test/SleetLib.Tests/LocalSettingsTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emgarten/Sleet/HEAD/test/SleetLib.Tests/LocalSettingsTests.cs -------------------------------------------------------------------------------- /test/SleetLib.Tests/PackageIndexFileTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emgarten/Sleet/HEAD/test/SleetLib.Tests/PackageIndexFileTests.cs -------------------------------------------------------------------------------- /test/SleetLib.Tests/PathUtilityTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emgarten/Sleet/HEAD/test/SleetLib.Tests/PathUtilityTests.cs -------------------------------------------------------------------------------- /test/SleetLib.Tests/PhysicalFileSystemTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emgarten/Sleet/HEAD/test/SleetLib.Tests/PhysicalFileSystemTests.cs -------------------------------------------------------------------------------- /test/SleetLib.Tests/PushCommandTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emgarten/Sleet/HEAD/test/SleetLib.Tests/PushCommandTests.cs -------------------------------------------------------------------------------- /test/SleetLib.Tests/RecreateCommandTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emgarten/Sleet/HEAD/test/SleetLib.Tests/RecreateCommandTests.cs -------------------------------------------------------------------------------- /test/SleetLib.Tests/RetentionPruneCommandTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emgarten/Sleet/HEAD/test/SleetLib.Tests/RetentionPruneCommandTests.cs -------------------------------------------------------------------------------- /test/SleetLib.Tests/RetentionSettingsCommandTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emgarten/Sleet/HEAD/test/SleetLib.Tests/RetentionSettingsCommandTests.cs -------------------------------------------------------------------------------- /test/SleetLib.Tests/RetentionUtilityTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emgarten/Sleet/HEAD/test/SleetLib.Tests/RetentionUtilityTests.cs -------------------------------------------------------------------------------- /test/SleetLib.Tests/SettingsUtilityTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emgarten/Sleet/HEAD/test/SleetLib.Tests/SettingsUtilityTests.cs -------------------------------------------------------------------------------- /test/SleetLib.Tests/SleetLib.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emgarten/Sleet/HEAD/test/SleetLib.Tests/SleetLib.Tests.csproj -------------------------------------------------------------------------------- /test/SleetLib.Tests/SleetTestContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emgarten/Sleet/HEAD/test/SleetLib.Tests/SleetTestContext.cs -------------------------------------------------------------------------------- /test/SleetLib.Tests/SleetUtilityTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emgarten/Sleet/HEAD/test/SleetLib.Tests/SleetUtilityTests.cs -------------------------------------------------------------------------------- /test/SleetLib.Tests/SourceUtilityTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emgarten/Sleet/HEAD/test/SleetLib.Tests/SourceUtilityTests.cs -------------------------------------------------------------------------------- /test/SleetLib.Tests/SubFeedTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emgarten/Sleet/HEAD/test/SleetLib.Tests/SubFeedTests.cs -------------------------------------------------------------------------------- /test/SleetLib.Tests/SymbolsTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emgarten/Sleet/HEAD/test/SleetLib.Tests/SymbolsTests.cs -------------------------------------------------------------------------------- /test/SleetLib.Tests/TestUtility.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emgarten/Sleet/HEAD/test/SleetLib.Tests/TestUtility.cs -------------------------------------------------------------------------------- /test/SleetLib.Tests/UpgradeUtilityTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emgarten/Sleet/HEAD/test/SleetLib.Tests/UpgradeUtilityTests.cs -------------------------------------------------------------------------------- /test/SleetLib.Tests/UriUtilityTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emgarten/Sleet/HEAD/test/SleetLib.Tests/UriUtilityTests.cs -------------------------------------------------------------------------------- /test/SleetLib.Tests/compiler/resources/SymbolsTestAdll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emgarten/Sleet/HEAD/test/SleetLib.Tests/compiler/resources/SymbolsTestAdll -------------------------------------------------------------------------------- /test/SleetLib.Tests/compiler/resources/SymbolsTestApdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emgarten/Sleet/HEAD/test/SleetLib.Tests/compiler/resources/SymbolsTestApdb -------------------------------------------------------------------------------- /test/SleetLib.Tests/compiler/resources/SymbolsTestBdll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emgarten/Sleet/HEAD/test/SleetLib.Tests/compiler/resources/SymbolsTestBdll -------------------------------------------------------------------------------- /test/SleetLib.Tests/compiler/resources/SymbolsTestBpdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emgarten/Sleet/HEAD/test/SleetLib.Tests/compiler/resources/SymbolsTestBpdb --------------------------------------------------------------------------------