├── .context └── TSAConfig.gdntsa ├── .editorconfig ├── .gitattributes ├── .github ├── CONTRIBUTING.md ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md └── pull_request_template.md ├── .gitignore ├── CHANGELOG.md ├── CODE-OF-CONDUCT.md ├── Directory.Build.props ├── Directory.Build.targets ├── Directory.Packages.props ├── Install-dotnet.ps1 ├── LICENSE.txt ├── LibraryManager.Settings.targets ├── LibraryManager.sln ├── Localize └── LocProject.json ├── NOTICE.txt ├── README.md ├── SECURITY.md ├── art ├── context-menu-config.png ├── context-menu-project.png ├── libmanjsontyping.gif └── light-bulbs.png ├── azure-pipelines.yml ├── azure-pipelines ├── Convert-PDB.ps1 ├── LibraryManager-Release-Official.yml ├── azure-pipeline.microbuild.after.yml ├── azure-pipeline.microbuild.before.yml ├── build.yml ├── common-release.yml └── official.yml ├── common └── tools │ └── VsctToXliff │ ├── App.config │ ├── Program.cs │ ├── Properties │ └── AssemblyInfo.cs │ ├── Utilities.cs │ ├── VsctFile.cs │ ├── VsctToXliff.csproj │ ├── VsctToXliff.sln │ └── XliffFile.cs ├── global.json ├── nuget.config ├── setup └── Microsoft.Web.LibraryManager.vsmanproj ├── src ├── .editorconfig ├── .globalconfig ├── LibraryManager.Build │ ├── Contracts │ │ ├── Dependencies.cs │ │ ├── HostInteraction.cs │ │ └── Logger.cs │ ├── Microsoft.Web.LibraryManager.Build.csproj │ ├── Microsoft.Web.LibraryManager.Build.props │ ├── Microsoft.Web.LibraryManager.Build.targets │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── RestoreTask.cs │ └── Third-party-notice.txt ├── LibraryManager.Contracts │ ├── Caching │ │ └── ICacheService.cs │ ├── CancellationHelpers.cs │ ├── CompletionSet.cs │ ├── Configuration │ │ └── ISettings.cs │ ├── Error.cs │ ├── FileHelpers.cs │ ├── FileMapping.cs │ ├── GlobalSuppressions.cs │ ├── IDependencies.cs │ ├── IError.cs │ ├── IHostInteraction.cs │ ├── ILibrary.cs │ ├── ILibraryCatalog.cs │ ├── ILibraryGroup.cs │ ├── ILibraryInstallationState.cs │ ├── ILogger.cs │ ├── IProvider.cs │ ├── IProviderFactory.cs │ ├── IWebRequestHandler.cs │ ├── InvalidLibraryException.cs │ ├── LibraryInstallationGoalState.cs │ ├── Microsoft.Web.LibraryManager.Contracts.csproj │ ├── MultilingualResources │ │ ├── Microsoft.Web.LibraryManager.Contracts.cs.xlf │ │ ├── Microsoft.Web.LibraryManager.Contracts.de.xlf │ │ ├── Microsoft.Web.LibraryManager.Contracts.es.xlf │ │ ├── Microsoft.Web.LibraryManager.Contracts.fr.xlf │ │ ├── Microsoft.Web.LibraryManager.Contracts.it.xlf │ │ ├── Microsoft.Web.LibraryManager.Contracts.ja.xlf │ │ ├── Microsoft.Web.LibraryManager.Contracts.ko.xlf │ │ ├── Microsoft.Web.LibraryManager.Contracts.pl.xlf │ │ ├── Microsoft.Web.LibraryManager.Contracts.pt-BR.xlf │ │ ├── Microsoft.Web.LibraryManager.Contracts.ru.xlf │ │ ├── Microsoft.Web.LibraryManager.Contracts.tr.xlf │ │ ├── Microsoft.Web.LibraryManager.Contracts.zh-Hans.xlf │ │ └── Microsoft.Web.LibraryManager.Contracts.zh-Hant.xlf │ ├── OperationResult.cs │ ├── OperationType.cs │ ├── PredefinedErrors.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── ResourceDownloadException.cs │ └── Resources │ │ ├── Text.Designer.cs │ │ ├── Text.cs.resx │ │ ├── Text.de.resx │ │ ├── Text.es.resx │ │ ├── Text.fr.resx │ │ ├── Text.it.resx │ │ ├── Text.ja.resx │ │ ├── Text.ko.resx │ │ ├── Text.pl.resx │ │ ├── Text.pt-BR.resx │ │ ├── Text.resx │ │ ├── Text.ru.resx │ │ ├── Text.tr.resx │ │ ├── Text.zh-Hans.resx │ │ ├── Text.zh-Hant.resx │ │ └── loc │ │ ├── cs │ │ └── Resources │ │ │ └── Text.resx.lcl │ │ ├── de │ │ └── Resources │ │ │ └── Text.resx.lcl │ │ ├── es │ │ └── Resources │ │ │ └── Text.resx.lcl │ │ ├── fr │ │ └── Resources │ │ │ └── Text.resx.lcl │ │ ├── it │ │ └── Resources │ │ │ └── Text.resx.lcl │ │ ├── ja │ │ └── Resources │ │ │ └── Text.resx.lcl │ │ ├── ko │ │ └── Resources │ │ │ └── Text.resx.lcl │ │ ├── pl │ │ └── Resources │ │ │ └── Text.resx.lcl │ │ ├── pt-BR │ │ └── Resources │ │ │ └── Text.resx.lcl │ │ ├── ru │ │ └── Resources │ │ │ └── Text.resx.lcl │ │ ├── tr │ │ └── Resources │ │ │ └── Text.resx.lcl │ │ ├── zh-Hans │ │ └── Resources │ │ │ └── Text.resx.lcl │ │ └── zh-Hant │ │ └── Resources │ │ └── Text.resx.lcl ├── LibraryManager.Vsix │ ├── Commands │ │ ├── CleanCommand.cs │ │ ├── CommandTable │ │ │ ├── LocalizationFiles │ │ │ │ ├── VSCommandTable.cs.xlf │ │ │ │ ├── VSCommandTable.de.xlf │ │ │ │ ├── VSCommandTable.en.xlf │ │ │ │ ├── VSCommandTable.es.xlf │ │ │ │ ├── VSCommandTable.fr.xlf │ │ │ │ ├── VSCommandTable.it.xlf │ │ │ │ ├── VSCommandTable.ja.xlf │ │ │ │ ├── VSCommandTable.ko.xlf │ │ │ │ ├── VSCommandTable.pl.xlf │ │ │ │ ├── VSCommandTable.pt-BR.xlf │ │ │ │ ├── VSCommandTable.ru.xlf │ │ │ │ ├── VSCommandTable.tr.xlf │ │ │ │ ├── VSCommandTable.zh-Hans.xlf │ │ │ │ └── VSCommandTable.zh-Hant.xlf │ │ │ ├── VSCommandTable.cs.vsct │ │ │ ├── VSCommandTable.de.vsct │ │ │ ├── VSCommandTable.en.cs │ │ │ ├── VSCommandTable.en.vsct │ │ │ ├── VSCommandTable.es.vsct │ │ │ ├── VSCommandTable.fr.vsct │ │ │ ├── VSCommandTable.it.vsct │ │ │ ├── VSCommandTable.ja.vsct │ │ │ ├── VSCommandTable.ko.vsct │ │ │ ├── VSCommandTable.pl.vsct │ │ │ ├── VSCommandTable.pt-BR.vsct │ │ │ ├── VSCommandTable.ru.vsct │ │ │ ├── VSCommandTable.tr.vsct │ │ │ ├── VSCommandTable.zh-Hans.vsct │ │ │ └── VSCommandTable.zh-Hant.vsct │ │ ├── InstallLibraryCommand.cs │ │ ├── ManageLibrariesCommand.cs │ │ ├── RestoreCommand.cs │ │ ├── RestoreOnBuildCommand.cs │ │ └── RestoreSolutionCommand.cs │ ├── Constants.cs │ ├── Contracts │ │ ├── Dependencies.cs │ │ ├── DependenciesFactory.cs │ │ ├── HostInteraction.cs │ │ ├── IDependenciesFactory.cs │ │ ├── Logger.cs │ │ └── PerProjectLogger.cs │ ├── ErrorList │ │ ├── DisplayError.cs │ │ ├── ErrorListPropagator.cs │ │ ├── SinkManager.cs │ │ ├── TableDataSource.cs │ │ └── TableEntriesSnapshot.cs │ ├── Json │ │ ├── Completion │ │ │ ├── BaseCompletionProvider.cs │ │ │ ├── CompletionController.cs │ │ │ ├── CompletionElementProvider.cs │ │ │ ├── FileMappingRootCompletionProvider.cs │ │ │ ├── FilesCompletionProvider.cs │ │ │ ├── LibraryIdCompletionProvider.cs │ │ │ ├── PathCompletionProvider.cs │ │ │ ├── ProviderCompletionProvider.cs │ │ │ ├── SimpleCompletionEntry.cs │ │ │ └── VersionCompletionEntry.cs │ │ ├── JsonHelpers.cs │ │ ├── SuggestedActions │ │ │ ├── SuggestedActionProvider.cs │ │ │ ├── UninstallSuggestedActions.cs │ │ │ ├── UpdateSuggestedAction.cs │ │ │ └── UpdateSuggestedActionSet.cs │ │ └── TextviewCreationListener.cs │ ├── LibraryManagerPackage.cs │ ├── Microsoft.Web.LibraryManager.Vsix.csproj │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── Resources │ │ ├── Icon.png │ │ ├── Text.Designer.cs │ │ ├── Text.cs.resx │ │ ├── Text.de.resx │ │ ├── Text.es.resx │ │ ├── Text.fr.resx │ │ ├── Text.it.resx │ │ ├── Text.ja.resx │ │ ├── Text.ko.resx │ │ ├── Text.pl.resx │ │ ├── Text.pt-BR.resx │ │ ├── Text.resx │ │ ├── Text.ru.resx │ │ ├── Text.tr.resx │ │ ├── Text.zh-Hans.resx │ │ ├── Text.zh-Hant.resx │ │ └── loc │ │ │ ├── cs │ │ │ ├── Commands │ │ │ │ └── CommandTable │ │ │ │ │ └── LocalizationFiles │ │ │ │ │ └── VSCommandTable.xlf.lcl │ │ │ ├── Resources │ │ │ │ └── Text.resx.lcl │ │ │ └── source.extension.resx.lcl │ │ │ ├── de │ │ │ ├── Commands │ │ │ │ └── CommandTable │ │ │ │ │ └── LocalizationFiles │ │ │ │ │ └── VSCommandTable.xlf.lcl │ │ │ ├── Resources │ │ │ │ └── Text.resx.lcl │ │ │ └── source.extension.resx.lcl │ │ │ ├── es │ │ │ ├── Commands │ │ │ │ └── CommandTable │ │ │ │ │ └── LocalizationFiles │ │ │ │ │ └── VSCommandTable.xlf.lcl │ │ │ ├── Resources │ │ │ │ └── Text.resx.lcl │ │ │ └── source.extension.resx.lcl │ │ │ ├── fr │ │ │ ├── Commands │ │ │ │ └── CommandTable │ │ │ │ │ └── LocalizationFiles │ │ │ │ │ └── VSCommandTable.xlf.lcl │ │ │ ├── Resources │ │ │ │ └── Text.resx.lcl │ │ │ └── source.extension.resx.lcl │ │ │ ├── it │ │ │ ├── Commands │ │ │ │ └── CommandTable │ │ │ │ │ └── LocalizationFiles │ │ │ │ │ └── VSCommandTable.xlf.lcl │ │ │ ├── Resources │ │ │ │ └── Text.resx.lcl │ │ │ └── source.extension.resx.lcl │ │ │ ├── ja │ │ │ ├── Commands │ │ │ │ └── CommandTable │ │ │ │ │ └── LocalizationFiles │ │ │ │ │ └── VSCommandTable.xlf.lcl │ │ │ ├── Resources │ │ │ │ └── Text.resx.lcl │ │ │ └── source.extension.resx.lcl │ │ │ ├── ko │ │ │ ├── Commands │ │ │ │ └── CommandTable │ │ │ │ │ └── LocalizationFiles │ │ │ │ │ └── VSCommandTable.xlf.lcl │ │ │ ├── Resources │ │ │ │ └── Text.resx.lcl │ │ │ └── source.extension.resx.lcl │ │ │ ├── pl │ │ │ ├── Commands │ │ │ │ └── CommandTable │ │ │ │ │ └── LocalizationFiles │ │ │ │ │ └── VSCommandTable.xlf.lcl │ │ │ ├── Resources │ │ │ │ └── Text.resx.lcl │ │ │ └── source.extension.resx.lcl │ │ │ ├── pt-BR │ │ │ ├── Commands │ │ │ │ └── CommandTable │ │ │ │ │ └── LocalizationFiles │ │ │ │ │ └── VSCommandTable.xlf.lcl │ │ │ ├── Resources │ │ │ │ └── Text.resx.lcl │ │ │ └── source.extension.resx.lcl │ │ │ ├── ru │ │ │ ├── Commands │ │ │ │ └── CommandTable │ │ │ │ │ └── LocalizationFiles │ │ │ │ │ └── VSCommandTable.xlf.lcl │ │ │ ├── Resources │ │ │ │ └── Text.resx.lcl │ │ │ └── source.extension.resx.lcl │ │ │ ├── tr │ │ │ ├── Commands │ │ │ │ └── CommandTable │ │ │ │ │ └── LocalizationFiles │ │ │ │ │ └── VSCommandTable.xlf.lcl │ │ │ ├── Resources │ │ │ │ └── Text.resx.lcl │ │ │ └── source.extension.resx.lcl │ │ │ ├── zh-Hans │ │ │ ├── Commands │ │ │ │ └── CommandTable │ │ │ │ │ └── LocalizationFiles │ │ │ │ │ └── VSCommandTable.xlf.lcl │ │ │ ├── Resources │ │ │ │ └── Text.resx.lcl │ │ │ └── source.extension.resx.lcl │ │ │ └── zh-Hant │ │ │ ├── Commands │ │ │ └── CommandTable │ │ │ │ └── LocalizationFiles │ │ │ │ └── VSCommandTable.xlf.lcl │ │ │ ├── Resources │ │ │ └── Text.resx.lcl │ │ │ └── source.extension.resx.lcl │ ├── Search │ │ ├── ISearchService.cs │ │ ├── LocationSearchService.cs │ │ └── ProviderCatalogSearchService.cs │ ├── Shared │ │ ├── DefaultSolutionEvents.cs │ │ ├── ILibraryCommandService.cs │ │ ├── ITaskStatusCenterService.cs │ │ ├── LibraryCommandService.cs │ │ ├── TaskStatusCenterService.cs │ │ ├── Telemetry.cs │ │ ├── VsHelpers.cs │ │ └── WpfUtil.cs │ ├── UI │ │ ├── Controls │ │ │ ├── AutomationPeers │ │ │ │ └── TextControlTypeAutomationPeer.cs │ │ │ ├── BindingProxy.cs │ │ │ ├── CompletionEntry.cs │ │ │ ├── EditorTooltip.xaml │ │ │ ├── EditorTooltip.xaml.cs │ │ │ ├── PackageContentsTreeView.xaml │ │ │ ├── PackageContentsTreeView.xaml.cs │ │ │ ├── PackageContentsTreeViewAutomationPeer.cs │ │ │ ├── Search │ │ │ │ ├── LibraryGroupToSearchItemAdapter.cs │ │ │ │ ├── LogicalOrConverter.cs │ │ │ │ ├── PackageSearchUtil.cs │ │ │ │ └── Wrapper.cs │ │ │ ├── TextBoxWithSearch.xaml │ │ │ └── TextBoxWithSearch.xaml.cs │ │ ├── Converters │ │ │ ├── BoldingConverter.cs │ │ │ ├── CheckBoxAutomationNameConverter.cs │ │ │ ├── EnumToBoolConverter.cs │ │ │ ├── HintTextConverter.cs │ │ │ ├── NotConverter.cs │ │ │ ├── VisibleIfNonNullConverter.cs │ │ │ └── WatermarkVisibilityConverter.cs │ │ ├── Extensions │ │ │ └── RemoveCharacterExtension.cs │ │ ├── IInstallDialog.cs │ │ ├── InstallDialog.xaml │ │ ├── InstallDialog.xaml.cs │ │ ├── InstallDialogProvider.cs │ │ ├── Models │ │ │ ├── ActionCommand.cs │ │ │ ├── BindableBase.cs │ │ │ ├── FileSelection.cs │ │ │ ├── FileSelectionType.cs │ │ │ ├── InstallDialogViewModel.cs │ │ │ ├── LibraryIdViewModel.cs │ │ │ ├── LibraryNameBinding.cs │ │ │ ├── PackageItem.cs │ │ │ ├── PackageItemType.cs │ │ │ ├── SearchTextBoxViewModel.cs │ │ │ ├── SelectedProviderBinding.cs │ │ │ └── TargetLocationViewModel.cs │ │ └── Theming │ │ │ ├── Shared.xaml │ │ │ ├── Theme.cs │ │ │ ├── ThemedWindow.cs │ │ │ ├── VsThemedComboBox.xaml │ │ │ ├── VsThemedToolTip.xaml │ │ │ └── VsThemedTreeView.xaml │ ├── source.extension.cs │ ├── source.extension.cs.resx │ ├── source.extension.de.resx │ ├── source.extension.en.resx │ ├── source.extension.es.resx │ ├── source.extension.fr.resx │ ├── source.extension.it.resx │ ├── source.extension.ja.resx │ ├── source.extension.ko.resx │ ├── source.extension.pl.resx │ ├── source.extension.pt-BR.resx │ ├── source.extension.ru.resx │ ├── source.extension.tr.resx │ ├── source.extension.vsixmanifest │ ├── source.extension.zh-Hans.resx │ └── source.extension.zh-Hant.resx ├── LibraryManager │ ├── Cache │ │ ├── CacheFileMetadata.cs │ │ ├── CacheService.cs │ │ └── WebRequestHandler.cs │ ├── Configuration │ │ ├── Constants.cs │ │ ├── ProxySettings.cs │ │ └── Settings.cs │ ├── FileConflict.cs │ ├── FileIdentifier.cs │ ├── Helpers │ │ ├── CancellationHelpers.cs │ │ ├── Extensions.cs │ │ └── LibraryStateTypeConverter.cs │ ├── Json │ │ ├── FileMapping.cs │ │ ├── LibraryInstallationStateOnDisk.cs │ │ ├── LibraryStateToFileConverter.cs │ │ ├── ManifestOnDisk.cs │ │ └── ManifestToFileConverter.cs │ ├── LibrariesValidator.cs │ ├── LibraryInstallationState.cs │ ├── LibraryNaming │ │ ├── ILibraryNamingScheme.cs │ │ ├── LibraryIdToNameAndVersionConverter.cs │ │ ├── SimpleLibraryNamingScheme.cs │ │ └── VersionedLibraryNamingScheme.cs │ ├── Logging │ │ └── LogMessageGenerator.cs │ ├── Manifest.cs │ ├── ManifestConstants.cs │ ├── Microsoft.Web.LibraryManager.csproj │ ├── Minimatch │ │ └── Minimatcher.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── Providers │ │ ├── BaseProvider.cs │ │ ├── Cdnjs │ │ │ ├── CdnjsCatalog.cs │ │ │ ├── CdnjsLibrary.cs │ │ │ ├── CdnjsLibraryGroup.cs │ │ │ ├── CdnjsProvider.cs │ │ │ └── CdnjsProviderFactory.cs │ │ ├── FileSystem │ │ │ ├── FileSystemCatalog.cs │ │ │ ├── FileSystemLibrary.cs │ │ │ ├── FileSystemLibraryGroup.cs │ │ │ ├── FileSystemProvider.cs │ │ │ └── FileSystemProviderFactory.cs │ │ ├── Unpkg │ │ │ ├── INpmPackageInfoFactory.cs │ │ │ ├── INpmPackageSearch.cs │ │ │ ├── NpmPackageInfo.cs │ │ │ ├── NpmPackageInfoFactory.cs │ │ │ ├── NpmPackageSearch.cs │ │ │ ├── UnpkgCatalog.cs │ │ │ ├── UnpkgLibrary.cs │ │ │ ├── UnpkgLibraryGroup.cs │ │ │ ├── UnpkgProvider.cs │ │ │ └── UnpkgProviderFactory.cs │ │ └── jsDelivr │ │ │ ├── JsDelivrCatalog.cs │ │ │ ├── JsDelivrLibrary.cs │ │ │ ├── JsDelivrLibraryGroup.cs │ │ │ ├── JsDelivrProviderFactory.cs │ │ │ └── jsDelivrProvider.cs │ ├── RelativePathEqualityComparer.cs │ ├── Resources │ │ ├── Text.Designer.cs │ │ ├── Text.cs.resx │ │ ├── Text.de.resx │ │ ├── Text.es.resx │ │ ├── Text.fr.resx │ │ ├── Text.it.resx │ │ ├── Text.ja.resx │ │ ├── Text.ko.resx │ │ ├── Text.pl.resx │ │ ├── Text.pt-BR.resx │ │ ├── Text.resx │ │ ├── Text.ru.resx │ │ ├── Text.tr.resx │ │ ├── Text.zh-Hans.resx │ │ ├── Text.zh-Hant.resx │ │ └── loc │ │ │ ├── cs │ │ │ └── Resources │ │ │ │ └── Text.resx.lcl │ │ │ ├── de │ │ │ └── Resources │ │ │ │ └── Text.resx.lcl │ │ │ ├── es │ │ │ └── Resources │ │ │ │ └── Text.resx.lcl │ │ │ ├── fr │ │ │ └── Resources │ │ │ │ └── Text.resx.lcl │ │ │ ├── it │ │ │ └── Resources │ │ │ │ └── Text.resx.lcl │ │ │ ├── ja │ │ │ └── Resources │ │ │ │ └── Text.resx.lcl │ │ │ ├── ko │ │ │ └── Resources │ │ │ │ └── Text.resx.lcl │ │ │ ├── pl │ │ │ └── Resources │ │ │ │ └── Text.resx.lcl │ │ │ ├── pt-BR │ │ │ └── Resources │ │ │ │ └── Text.resx.lcl │ │ │ ├── ru │ │ │ └── Resources │ │ │ │ └── Text.resx.lcl │ │ │ ├── tr │ │ │ └── Resources │ │ │ │ └── Text.resx.lcl │ │ │ ├── zh-Hans │ │ │ └── Resources │ │ │ │ └── Text.resx.lcl │ │ │ └── zh-Hant │ │ │ └── Resources │ │ │ └── Text.resx.lcl │ ├── SemanticVersion.cs │ └── Utilities │ │ ├── EncryptionUtility.cs │ │ ├── FileGlobbingUtility.cs │ │ └── ParallelUtility.cs ├── PackageIcon.png ├── libman │ ├── Commands │ │ ├── BaseCommand.cs │ │ ├── CacheCleanCommand.cs │ │ ├── CacheCommand.cs │ │ ├── CacheListCommand.cs │ │ ├── CleanCommand.cs │ │ ├── ConfigCommand.cs │ │ ├── InitCommand.cs │ │ ├── InstallCommand.cs │ │ ├── LibmanApp.cs │ │ ├── RestoreCommand.cs │ │ ├── UninstallCommand.cs │ │ └── UpdateCommand.cs │ ├── Contracts │ │ ├── ConsoleLogger.cs │ │ ├── Dependencies.cs │ │ ├── HostInteraction.cs │ │ ├── IHostInteractionInternal.cs │ │ └── IInputReader.cs │ ├── DotNetToolSettings.xml │ ├── EnvironmentSettings.cs │ ├── ExitCode.cs │ ├── GlobalSuppressions.cs │ ├── HostEnvironment.cs │ ├── IHostEnvironment.cs │ ├── ILibraryInstallationStateExtensions.cs │ ├── LibraryResolver.cs │ ├── ManifestRestorer.cs │ ├── Program.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── Resources │ │ ├── Text.Designer.cs │ │ ├── Text.cs.resx │ │ ├── Text.de.resx │ │ ├── Text.es.resx │ │ ├── Text.fr.resx │ │ ├── Text.it.resx │ │ ├── Text.ja.resx │ │ ├── Text.ko.resx │ │ ├── Text.pl.resx │ │ ├── Text.pt-BR.resx │ │ ├── Text.resx │ │ ├── Text.ru.resx │ │ ├── Text.tr.resx │ │ ├── Text.zh-Hans.resx │ │ ├── Text.zh-Hant.resx │ │ └── loc │ │ │ ├── cs │ │ │ └── Resources │ │ │ │ └── Text.resx.lcl │ │ │ ├── de │ │ │ └── Resources │ │ │ │ └── Text.resx.lcl │ │ │ ├── es │ │ │ └── Resources │ │ │ │ └── Text.resx.lcl │ │ │ ├── fr │ │ │ └── Resources │ │ │ │ └── Text.resx.lcl │ │ │ ├── it │ │ │ └── Resources │ │ │ │ └── Text.resx.lcl │ │ │ ├── ja │ │ │ └── Resources │ │ │ │ └── Text.resx.lcl │ │ │ ├── ko │ │ │ └── Resources │ │ │ │ └── Text.resx.lcl │ │ │ ├── pl │ │ │ └── Resources │ │ │ │ └── Text.resx.lcl │ │ │ ├── pt-BR │ │ │ └── Resources │ │ │ │ └── Text.resx.lcl │ │ │ ├── ru │ │ │ └── Resources │ │ │ │ └── Text.resx.lcl │ │ │ ├── tr │ │ │ └── Resources │ │ │ │ └── Text.resx.lcl │ │ │ ├── zh-Hans │ │ │ └── Resources │ │ │ │ └── Text.resx.lcl │ │ │ └── zh-Hant │ │ │ └── Resources │ │ │ └── Text.resx.lcl │ ├── libman.csproj │ └── runtimeconfig.template.json └── schema │ └── libman.json ├── test ├── Directory.Build.props ├── LibraryManager.Build.IntegrationTest │ ├── BuildTestBase.cs │ ├── Microsoft.Web.LibraryManager.Build.IntegrationTest.csproj │ ├── RestoreTests.cs │ └── TestSolution │ │ ├── Directory.Build.props │ │ ├── Directory.Build.targets │ │ ├── Directory.Packages.props │ │ ├── Libman.Build.TestApp.sln │ │ ├── Libman.Build.TestApp │ │ ├── Libman.Build.TestApp.csproj │ │ ├── Program.cs │ │ ├── Properties │ │ │ └── launchSettings.json │ │ ├── appsettings.Development.json │ │ └── appsettings.json │ │ └── nuget.config ├── LibraryManager.Build.Test │ ├── Microsoft.Web.LibraryManager.Build.Test.csproj │ ├── MockEngine.cs │ ├── RestoreTaskTest.cs │ └── TaskItem.cs ├── LibraryManager.Contracts.Test │ ├── Microsoft.Web.LibraryManager.Contracts.Test.csproj │ └── OperationResultTests.cs ├── LibraryManager.Mocks │ ├── Dependencies.cs │ ├── Error.cs │ ├── HostInteraction.cs │ ├── Library.cs │ ├── LibraryCatalog.cs │ ├── LibraryGroup.cs │ ├── LibraryInstallationState.cs │ ├── Logger.cs │ ├── Microsoft.Web.LibraryManager.Mocks.csproj │ ├── Provider.cs │ ├── ProviderFactory.cs │ ├── Settings.cs │ └── WebRequestHandler.cs ├── LibraryManager.Test │ ├── .editorconfig │ ├── CacheServiceTest.cs │ ├── Configuration │ │ ├── ProxySettingsTest.cs │ │ └── SettingsTest.cs │ ├── ErrorTest.cs │ ├── ExtensionsTest.cs │ ├── FileHelperTest.cs │ ├── FileHelpersTest.cs │ ├── InvalidLibraryExceptionTest.cs │ ├── Json │ │ └── LibraryStateToFileConverterTests.cs │ ├── LibrariesValidatorTest.cs │ ├── LibraryIdToNameAndVersionConverterTest.cs │ ├── LibraryInstallationStateTest.cs │ ├── ManifestTest.cs │ ├── Microsoft.Web.LibraryManager.Test.csproj │ ├── PathEqualityComparerTest.cs │ ├── Providers │ │ ├── BaseProviderTest.cs │ │ ├── Cdnjs │ │ │ ├── CdnjsCatalogTest.cs │ │ │ ├── CdnjsProviderFactoryTest.cs │ │ │ └── CdnjsProviderTest.cs │ │ ├── FileSystem │ │ │ ├── FileSystemCatalogTest.cs │ │ │ ├── FileSystemProviderFactoryTest.cs │ │ │ └── FileSystemProviderTest.cs │ │ ├── JsDelivr │ │ │ ├── JsDelivrCatalogTest.cs │ │ │ ├── JsDelivrProviderFactoryTest.cs │ │ │ └── JsDelivrProviderTest.cs │ │ └── Unpkg │ │ │ ├── NpmPackageInfoFactoryTest.cs │ │ │ ├── NpmPackageInfoTest.cs │ │ │ ├── NpmPackageSearchTest.cs │ │ │ ├── UnpkgCatalogTest.cs │ │ │ ├── UnpkgProviderFactoryTest.cs │ │ │ └── UnpkgProviderTest.cs │ ├── SemanticVersionTest.cs │ ├── SimpleLibraryNamingSchemeTest.cs │ ├── TestUtilities │ │ ├── AssertExtensions.cs │ │ └── StringUtility.cs │ ├── TestUtils.cs │ ├── Utilities │ │ ├── FileGlobbingUtilityTests.cs │ │ └── ParallelUtilityTests.cs │ └── VersionedLibraryNamingSchemeTest.cs ├── LibraryManager.Vsix.IntegrationTest │ ├── FileSaveRestoreTests.cs │ ├── Helpers │ │ ├── CompletionHelper.cs │ │ ├── FileIOHelper.cs │ │ └── HelperWrapper.cs │ ├── InstallDialogTests.cs │ ├── LibmanCompletionTests.cs │ ├── Microsoft.Web.LibraryManager.Vsix.IntegrationTest.csproj │ ├── Services │ │ ├── InstallDialogTestExtension.cs │ │ ├── InstallDialogTestService.cs │ │ └── InstallDialogVerifier.cs │ ├── SuggestedActionTests.cs │ ├── Suppressions.cs │ ├── TestSolution │ │ ├── LooseFiles │ │ │ └── filesystem.js │ │ ├── TestProjectCore20 │ │ │ ├── Program.cs │ │ │ ├── Properties │ │ │ │ └── launchSettings.json │ │ │ ├── Startup.cs │ │ │ ├── TestProjectCore20.csproj │ │ │ ├── libman.json │ │ │ └── wwwroot │ │ │ │ └── js │ │ │ │ ├── site.js │ │ │ │ └── site.min.js │ │ └── TestSolution.sln │ └── VisualStudioLibmanHostTests.cs ├── LibraryManager.Vsix.Test │ ├── JSONHelpersTest.cs │ ├── Microsoft.Web.LibraryManager.Vsix.Test.csproj │ ├── Mocks │ │ └── NullSearchService.cs │ ├── Search │ │ ├── LocationSearchServiceTests.cs │ │ └── ProviderCatalogSearchServiceTests.cs │ ├── Shared │ │ └── LibraryCommandServiceTest.cs │ └── UI │ │ ├── Converters │ │ ├── CheckBoxAutomationNameConverterTests.cs │ │ └── WatermarkVisibilityConverterTests.cs │ │ └── Models │ │ ├── InstallDialogViewModelTest.cs │ │ ├── LibraryIdViewModelTests.cs │ │ └── TargetLocationViewModelTests.cs ├── TestGlobalSuppressions.cs ├── libman.IntegrationTest │ ├── CliBaseTest.cs │ ├── InstallTests.cs │ ├── RestoreTests.cs │ ├── TestFiles │ │ ├── EmptyFile.css │ │ ├── EmptyFile.js │ │ ├── EmptyFile.min.css │ │ └── EmptyFile.min.js │ └── libman.IntegrationTest.csproj └── libman.Test │ ├── BaseCommandTests.cs │ ├── CommandTestBase.cs │ ├── HostInteractionTests.cs │ ├── LibmanCacheCleanTests.cs │ ├── LibmanCacheListTest.cs │ ├── LibmanCleanTest.cs │ ├── LibmanConfigTest.cs │ ├── LibmanInitTests.cs │ ├── LibmanInstallTest.cs │ ├── LibmanRestoreTest.cs │ ├── LibmanUninstallTest.cs │ ├── LibmanUpdateTest.cs │ ├── LibraryResolverTest.cs │ ├── Mocks │ ├── HostEnvironment.cs │ └── HostInteractionInternal.cs │ ├── SampleTestCommand.cs │ ├── StringNewLineHelper.cs │ ├── TestEnvironmentHelper.cs │ ├── TestInputReader.cs │ ├── TestLogger.cs │ └── libman.Test.csproj └── version.json /.context/TSAConfig.gdntsa: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/.context/TSAConfig.gdntsa -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/.github/CONTRIBUTING.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CODE-OF-CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/CODE-OF-CONDUCT.md -------------------------------------------------------------------------------- /Directory.Build.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/Directory.Build.props -------------------------------------------------------------------------------- /Directory.Build.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/Directory.Build.targets -------------------------------------------------------------------------------- /Directory.Packages.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/Directory.Packages.props -------------------------------------------------------------------------------- /Install-dotnet.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/Install-dotnet.ps1 -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /LibraryManager.Settings.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/LibraryManager.Settings.targets -------------------------------------------------------------------------------- /LibraryManager.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/LibraryManager.sln -------------------------------------------------------------------------------- /Localize/LocProject.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/Localize/LocProject.json -------------------------------------------------------------------------------- /NOTICE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/NOTICE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/SECURITY.md -------------------------------------------------------------------------------- /art/context-menu-config.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/art/context-menu-config.png -------------------------------------------------------------------------------- /art/context-menu-project.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/art/context-menu-project.png -------------------------------------------------------------------------------- /art/libmanjsontyping.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/art/libmanjsontyping.gif -------------------------------------------------------------------------------- /art/light-bulbs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/art/light-bulbs.png -------------------------------------------------------------------------------- /azure-pipelines.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/azure-pipelines.yml -------------------------------------------------------------------------------- /azure-pipelines/Convert-PDB.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/azure-pipelines/Convert-PDB.ps1 -------------------------------------------------------------------------------- /azure-pipelines/LibraryManager-Release-Official.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/azure-pipelines/LibraryManager-Release-Official.yml -------------------------------------------------------------------------------- /azure-pipelines/azure-pipeline.microbuild.after.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/azure-pipelines/azure-pipeline.microbuild.after.yml -------------------------------------------------------------------------------- /azure-pipelines/azure-pipeline.microbuild.before.yml: -------------------------------------------------------------------------------- 1 | steps: [] -------------------------------------------------------------------------------- /azure-pipelines/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/azure-pipelines/build.yml -------------------------------------------------------------------------------- /azure-pipelines/common-release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/azure-pipelines/common-release.yml -------------------------------------------------------------------------------- /azure-pipelines/official.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/azure-pipelines/official.yml -------------------------------------------------------------------------------- /common/tools/VsctToXliff/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/common/tools/VsctToXliff/App.config -------------------------------------------------------------------------------- /common/tools/VsctToXliff/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/common/tools/VsctToXliff/Program.cs -------------------------------------------------------------------------------- /common/tools/VsctToXliff/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/common/tools/VsctToXliff/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /common/tools/VsctToXliff/Utilities.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/common/tools/VsctToXliff/Utilities.cs -------------------------------------------------------------------------------- /common/tools/VsctToXliff/VsctFile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/common/tools/VsctToXliff/VsctFile.cs -------------------------------------------------------------------------------- /common/tools/VsctToXliff/VsctToXliff.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/common/tools/VsctToXliff/VsctToXliff.csproj -------------------------------------------------------------------------------- /common/tools/VsctToXliff/VsctToXliff.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/common/tools/VsctToXliff/VsctToXliff.sln -------------------------------------------------------------------------------- /common/tools/VsctToXliff/XliffFile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/common/tools/VsctToXliff/XliffFile.cs -------------------------------------------------------------------------------- /global.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/global.json -------------------------------------------------------------------------------- /nuget.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/nuget.config -------------------------------------------------------------------------------- /setup/Microsoft.Web.LibraryManager.vsmanproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/setup/Microsoft.Web.LibraryManager.vsmanproj -------------------------------------------------------------------------------- /src/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/src/.editorconfig -------------------------------------------------------------------------------- /src/.globalconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/src/.globalconfig -------------------------------------------------------------------------------- /src/LibraryManager.Build/Contracts/Dependencies.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/src/LibraryManager.Build/Contracts/Dependencies.cs -------------------------------------------------------------------------------- /src/LibraryManager.Build/Contracts/HostInteraction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/src/LibraryManager.Build/Contracts/HostInteraction.cs -------------------------------------------------------------------------------- /src/LibraryManager.Build/Contracts/Logger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/src/LibraryManager.Build/Contracts/Logger.cs -------------------------------------------------------------------------------- /src/LibraryManager.Build/Microsoft.Web.LibraryManager.Build.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/src/LibraryManager.Build/Microsoft.Web.LibraryManager.Build.csproj -------------------------------------------------------------------------------- /src/LibraryManager.Build/Microsoft.Web.LibraryManager.Build.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/src/LibraryManager.Build/Microsoft.Web.LibraryManager.Build.props -------------------------------------------------------------------------------- /src/LibraryManager.Build/Microsoft.Web.LibraryManager.Build.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/src/LibraryManager.Build/Microsoft.Web.LibraryManager.Build.targets -------------------------------------------------------------------------------- /src/LibraryManager.Build/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/src/LibraryManager.Build/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/LibraryManager.Build/RestoreTask.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/src/LibraryManager.Build/RestoreTask.cs -------------------------------------------------------------------------------- /src/LibraryManager.Build/Third-party-notice.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/src/LibraryManager.Build/Third-party-notice.txt -------------------------------------------------------------------------------- /src/LibraryManager.Contracts/Caching/ICacheService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/src/LibraryManager.Contracts/Caching/ICacheService.cs -------------------------------------------------------------------------------- /src/LibraryManager.Contracts/CancellationHelpers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/src/LibraryManager.Contracts/CancellationHelpers.cs -------------------------------------------------------------------------------- /src/LibraryManager.Contracts/CompletionSet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/src/LibraryManager.Contracts/CompletionSet.cs -------------------------------------------------------------------------------- /src/LibraryManager.Contracts/Configuration/ISettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/src/LibraryManager.Contracts/Configuration/ISettings.cs -------------------------------------------------------------------------------- /src/LibraryManager.Contracts/Error.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/src/LibraryManager.Contracts/Error.cs -------------------------------------------------------------------------------- /src/LibraryManager.Contracts/FileHelpers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/src/LibraryManager.Contracts/FileHelpers.cs -------------------------------------------------------------------------------- /src/LibraryManager.Contracts/FileMapping.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/src/LibraryManager.Contracts/FileMapping.cs -------------------------------------------------------------------------------- /src/LibraryManager.Contracts/GlobalSuppressions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/src/LibraryManager.Contracts/GlobalSuppressions.cs -------------------------------------------------------------------------------- /src/LibraryManager.Contracts/IDependencies.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/src/LibraryManager.Contracts/IDependencies.cs -------------------------------------------------------------------------------- /src/LibraryManager.Contracts/IError.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/src/LibraryManager.Contracts/IError.cs -------------------------------------------------------------------------------- /src/LibraryManager.Contracts/IHostInteraction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/src/LibraryManager.Contracts/IHostInteraction.cs -------------------------------------------------------------------------------- /src/LibraryManager.Contracts/ILibrary.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/src/LibraryManager.Contracts/ILibrary.cs -------------------------------------------------------------------------------- /src/LibraryManager.Contracts/ILibraryCatalog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/src/LibraryManager.Contracts/ILibraryCatalog.cs -------------------------------------------------------------------------------- /src/LibraryManager.Contracts/ILibraryGroup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/src/LibraryManager.Contracts/ILibraryGroup.cs -------------------------------------------------------------------------------- /src/LibraryManager.Contracts/ILibraryInstallationState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/src/LibraryManager.Contracts/ILibraryInstallationState.cs -------------------------------------------------------------------------------- /src/LibraryManager.Contracts/ILogger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/src/LibraryManager.Contracts/ILogger.cs -------------------------------------------------------------------------------- /src/LibraryManager.Contracts/IProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/src/LibraryManager.Contracts/IProvider.cs -------------------------------------------------------------------------------- /src/LibraryManager.Contracts/IProviderFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/src/LibraryManager.Contracts/IProviderFactory.cs -------------------------------------------------------------------------------- /src/LibraryManager.Contracts/IWebRequestHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/src/LibraryManager.Contracts/IWebRequestHandler.cs -------------------------------------------------------------------------------- /src/LibraryManager.Contracts/InvalidLibraryException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/src/LibraryManager.Contracts/InvalidLibraryException.cs -------------------------------------------------------------------------------- /src/LibraryManager.Contracts/LibraryInstallationGoalState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/src/LibraryManager.Contracts/LibraryInstallationGoalState.cs -------------------------------------------------------------------------------- /src/LibraryManager.Contracts/Microsoft.Web.LibraryManager.Contracts.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/src/LibraryManager.Contracts/Microsoft.Web.LibraryManager.Contracts.csproj -------------------------------------------------------------------------------- /src/LibraryManager.Contracts/MultilingualResources/Microsoft.Web.LibraryManager.Contracts.cs.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/src/LibraryManager.Contracts/MultilingualResources/Microsoft.Web.LibraryManager.Contracts.cs.xlf -------------------------------------------------------------------------------- /src/LibraryManager.Contracts/MultilingualResources/Microsoft.Web.LibraryManager.Contracts.de.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/src/LibraryManager.Contracts/MultilingualResources/Microsoft.Web.LibraryManager.Contracts.de.xlf -------------------------------------------------------------------------------- /src/LibraryManager.Contracts/MultilingualResources/Microsoft.Web.LibraryManager.Contracts.es.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/src/LibraryManager.Contracts/MultilingualResources/Microsoft.Web.LibraryManager.Contracts.es.xlf -------------------------------------------------------------------------------- /src/LibraryManager.Contracts/MultilingualResources/Microsoft.Web.LibraryManager.Contracts.fr.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/src/LibraryManager.Contracts/MultilingualResources/Microsoft.Web.LibraryManager.Contracts.fr.xlf -------------------------------------------------------------------------------- /src/LibraryManager.Contracts/MultilingualResources/Microsoft.Web.LibraryManager.Contracts.it.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/src/LibraryManager.Contracts/MultilingualResources/Microsoft.Web.LibraryManager.Contracts.it.xlf -------------------------------------------------------------------------------- /src/LibraryManager.Contracts/MultilingualResources/Microsoft.Web.LibraryManager.Contracts.ja.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/src/LibraryManager.Contracts/MultilingualResources/Microsoft.Web.LibraryManager.Contracts.ja.xlf -------------------------------------------------------------------------------- /src/LibraryManager.Contracts/MultilingualResources/Microsoft.Web.LibraryManager.Contracts.ko.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/src/LibraryManager.Contracts/MultilingualResources/Microsoft.Web.LibraryManager.Contracts.ko.xlf -------------------------------------------------------------------------------- /src/LibraryManager.Contracts/MultilingualResources/Microsoft.Web.LibraryManager.Contracts.pl.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/src/LibraryManager.Contracts/MultilingualResources/Microsoft.Web.LibraryManager.Contracts.pl.xlf -------------------------------------------------------------------------------- /src/LibraryManager.Contracts/MultilingualResources/Microsoft.Web.LibraryManager.Contracts.pt-BR.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/src/LibraryManager.Contracts/MultilingualResources/Microsoft.Web.LibraryManager.Contracts.pt-BR.xlf -------------------------------------------------------------------------------- /src/LibraryManager.Contracts/MultilingualResources/Microsoft.Web.LibraryManager.Contracts.ru.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/src/LibraryManager.Contracts/MultilingualResources/Microsoft.Web.LibraryManager.Contracts.ru.xlf -------------------------------------------------------------------------------- /src/LibraryManager.Contracts/MultilingualResources/Microsoft.Web.LibraryManager.Contracts.tr.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/src/LibraryManager.Contracts/MultilingualResources/Microsoft.Web.LibraryManager.Contracts.tr.xlf -------------------------------------------------------------------------------- /src/LibraryManager.Contracts/MultilingualResources/Microsoft.Web.LibraryManager.Contracts.zh-Hans.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/src/LibraryManager.Contracts/MultilingualResources/Microsoft.Web.LibraryManager.Contracts.zh-Hans.xlf -------------------------------------------------------------------------------- /src/LibraryManager.Contracts/MultilingualResources/Microsoft.Web.LibraryManager.Contracts.zh-Hant.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/src/LibraryManager.Contracts/MultilingualResources/Microsoft.Web.LibraryManager.Contracts.zh-Hant.xlf -------------------------------------------------------------------------------- /src/LibraryManager.Contracts/OperationResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/src/LibraryManager.Contracts/OperationResult.cs -------------------------------------------------------------------------------- /src/LibraryManager.Contracts/OperationType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/src/LibraryManager.Contracts/OperationType.cs -------------------------------------------------------------------------------- /src/LibraryManager.Contracts/PredefinedErrors.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/src/LibraryManager.Contracts/PredefinedErrors.cs -------------------------------------------------------------------------------- /src/LibraryManager.Contracts/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/src/LibraryManager.Contracts/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/LibraryManager.Contracts/ResourceDownloadException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/src/LibraryManager.Contracts/ResourceDownloadException.cs -------------------------------------------------------------------------------- /src/LibraryManager.Contracts/Resources/Text.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/src/LibraryManager.Contracts/Resources/Text.Designer.cs -------------------------------------------------------------------------------- /src/LibraryManager.Contracts/Resources/Text.cs.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/src/LibraryManager.Contracts/Resources/Text.cs.resx -------------------------------------------------------------------------------- /src/LibraryManager.Contracts/Resources/Text.de.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/src/LibraryManager.Contracts/Resources/Text.de.resx -------------------------------------------------------------------------------- /src/LibraryManager.Contracts/Resources/Text.es.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/src/LibraryManager.Contracts/Resources/Text.es.resx -------------------------------------------------------------------------------- /src/LibraryManager.Contracts/Resources/Text.fr.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/src/LibraryManager.Contracts/Resources/Text.fr.resx -------------------------------------------------------------------------------- /src/LibraryManager.Contracts/Resources/Text.it.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/src/LibraryManager.Contracts/Resources/Text.it.resx -------------------------------------------------------------------------------- /src/LibraryManager.Contracts/Resources/Text.ja.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/src/LibraryManager.Contracts/Resources/Text.ja.resx -------------------------------------------------------------------------------- /src/LibraryManager.Contracts/Resources/Text.ko.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/src/LibraryManager.Contracts/Resources/Text.ko.resx -------------------------------------------------------------------------------- /src/LibraryManager.Contracts/Resources/Text.pl.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/src/LibraryManager.Contracts/Resources/Text.pl.resx -------------------------------------------------------------------------------- /src/LibraryManager.Contracts/Resources/Text.pt-BR.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/src/LibraryManager.Contracts/Resources/Text.pt-BR.resx -------------------------------------------------------------------------------- /src/LibraryManager.Contracts/Resources/Text.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/src/LibraryManager.Contracts/Resources/Text.resx -------------------------------------------------------------------------------- /src/LibraryManager.Contracts/Resources/Text.ru.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/src/LibraryManager.Contracts/Resources/Text.ru.resx -------------------------------------------------------------------------------- /src/LibraryManager.Contracts/Resources/Text.tr.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/src/LibraryManager.Contracts/Resources/Text.tr.resx -------------------------------------------------------------------------------- /src/LibraryManager.Contracts/Resources/Text.zh-Hans.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/src/LibraryManager.Contracts/Resources/Text.zh-Hans.resx -------------------------------------------------------------------------------- /src/LibraryManager.Contracts/Resources/Text.zh-Hant.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/src/LibraryManager.Contracts/Resources/Text.zh-Hant.resx -------------------------------------------------------------------------------- /src/LibraryManager.Contracts/Resources/loc/cs/Resources/Text.resx.lcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/src/LibraryManager.Contracts/Resources/loc/cs/Resources/Text.resx.lcl -------------------------------------------------------------------------------- /src/LibraryManager.Contracts/Resources/loc/de/Resources/Text.resx.lcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/src/LibraryManager.Contracts/Resources/loc/de/Resources/Text.resx.lcl -------------------------------------------------------------------------------- /src/LibraryManager.Contracts/Resources/loc/es/Resources/Text.resx.lcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/src/LibraryManager.Contracts/Resources/loc/es/Resources/Text.resx.lcl -------------------------------------------------------------------------------- /src/LibraryManager.Contracts/Resources/loc/fr/Resources/Text.resx.lcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/src/LibraryManager.Contracts/Resources/loc/fr/Resources/Text.resx.lcl -------------------------------------------------------------------------------- /src/LibraryManager.Contracts/Resources/loc/it/Resources/Text.resx.lcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/src/LibraryManager.Contracts/Resources/loc/it/Resources/Text.resx.lcl -------------------------------------------------------------------------------- /src/LibraryManager.Contracts/Resources/loc/ja/Resources/Text.resx.lcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/src/LibraryManager.Contracts/Resources/loc/ja/Resources/Text.resx.lcl -------------------------------------------------------------------------------- /src/LibraryManager.Contracts/Resources/loc/ko/Resources/Text.resx.lcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/src/LibraryManager.Contracts/Resources/loc/ko/Resources/Text.resx.lcl -------------------------------------------------------------------------------- /src/LibraryManager.Contracts/Resources/loc/pl/Resources/Text.resx.lcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/src/LibraryManager.Contracts/Resources/loc/pl/Resources/Text.resx.lcl -------------------------------------------------------------------------------- /src/LibraryManager.Contracts/Resources/loc/pt-BR/Resources/Text.resx.lcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/src/LibraryManager.Contracts/Resources/loc/pt-BR/Resources/Text.resx.lcl -------------------------------------------------------------------------------- /src/LibraryManager.Contracts/Resources/loc/ru/Resources/Text.resx.lcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/src/LibraryManager.Contracts/Resources/loc/ru/Resources/Text.resx.lcl -------------------------------------------------------------------------------- /src/LibraryManager.Contracts/Resources/loc/tr/Resources/Text.resx.lcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/src/LibraryManager.Contracts/Resources/loc/tr/Resources/Text.resx.lcl -------------------------------------------------------------------------------- /src/LibraryManager.Contracts/Resources/loc/zh-Hans/Resources/Text.resx.lcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/src/LibraryManager.Contracts/Resources/loc/zh-Hans/Resources/Text.resx.lcl -------------------------------------------------------------------------------- /src/LibraryManager.Contracts/Resources/loc/zh-Hant/Resources/Text.resx.lcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/src/LibraryManager.Contracts/Resources/loc/zh-Hant/Resources/Text.resx.lcl -------------------------------------------------------------------------------- /src/LibraryManager.Vsix/Commands/CleanCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/src/LibraryManager.Vsix/Commands/CleanCommand.cs -------------------------------------------------------------------------------- /src/LibraryManager.Vsix/Commands/CommandTable/LocalizationFiles/VSCommandTable.cs.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/src/LibraryManager.Vsix/Commands/CommandTable/LocalizationFiles/VSCommandTable.cs.xlf -------------------------------------------------------------------------------- /src/LibraryManager.Vsix/Commands/CommandTable/LocalizationFiles/VSCommandTable.de.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/src/LibraryManager.Vsix/Commands/CommandTable/LocalizationFiles/VSCommandTable.de.xlf -------------------------------------------------------------------------------- /src/LibraryManager.Vsix/Commands/CommandTable/LocalizationFiles/VSCommandTable.en.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/src/LibraryManager.Vsix/Commands/CommandTable/LocalizationFiles/VSCommandTable.en.xlf -------------------------------------------------------------------------------- /src/LibraryManager.Vsix/Commands/CommandTable/LocalizationFiles/VSCommandTable.es.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/src/LibraryManager.Vsix/Commands/CommandTable/LocalizationFiles/VSCommandTable.es.xlf -------------------------------------------------------------------------------- /src/LibraryManager.Vsix/Commands/CommandTable/LocalizationFiles/VSCommandTable.fr.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/src/LibraryManager.Vsix/Commands/CommandTable/LocalizationFiles/VSCommandTable.fr.xlf -------------------------------------------------------------------------------- /src/LibraryManager.Vsix/Commands/CommandTable/LocalizationFiles/VSCommandTable.it.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/src/LibraryManager.Vsix/Commands/CommandTable/LocalizationFiles/VSCommandTable.it.xlf -------------------------------------------------------------------------------- /src/LibraryManager.Vsix/Commands/CommandTable/LocalizationFiles/VSCommandTable.ja.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/src/LibraryManager.Vsix/Commands/CommandTable/LocalizationFiles/VSCommandTable.ja.xlf -------------------------------------------------------------------------------- /src/LibraryManager.Vsix/Commands/CommandTable/LocalizationFiles/VSCommandTable.ko.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/src/LibraryManager.Vsix/Commands/CommandTable/LocalizationFiles/VSCommandTable.ko.xlf -------------------------------------------------------------------------------- /src/LibraryManager.Vsix/Commands/CommandTable/LocalizationFiles/VSCommandTable.pl.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/src/LibraryManager.Vsix/Commands/CommandTable/LocalizationFiles/VSCommandTable.pl.xlf -------------------------------------------------------------------------------- /src/LibraryManager.Vsix/Commands/CommandTable/LocalizationFiles/VSCommandTable.pt-BR.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/src/LibraryManager.Vsix/Commands/CommandTable/LocalizationFiles/VSCommandTable.pt-BR.xlf -------------------------------------------------------------------------------- /src/LibraryManager.Vsix/Commands/CommandTable/LocalizationFiles/VSCommandTable.ru.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/src/LibraryManager.Vsix/Commands/CommandTable/LocalizationFiles/VSCommandTable.ru.xlf -------------------------------------------------------------------------------- /src/LibraryManager.Vsix/Commands/CommandTable/LocalizationFiles/VSCommandTable.tr.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/src/LibraryManager.Vsix/Commands/CommandTable/LocalizationFiles/VSCommandTable.tr.xlf -------------------------------------------------------------------------------- /src/LibraryManager.Vsix/Commands/CommandTable/LocalizationFiles/VSCommandTable.zh-Hans.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/src/LibraryManager.Vsix/Commands/CommandTable/LocalizationFiles/VSCommandTable.zh-Hans.xlf -------------------------------------------------------------------------------- /src/LibraryManager.Vsix/Commands/CommandTable/LocalizationFiles/VSCommandTable.zh-Hant.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/src/LibraryManager.Vsix/Commands/CommandTable/LocalizationFiles/VSCommandTable.zh-Hant.xlf -------------------------------------------------------------------------------- /src/LibraryManager.Vsix/Commands/CommandTable/VSCommandTable.cs.vsct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/src/LibraryManager.Vsix/Commands/CommandTable/VSCommandTable.cs.vsct -------------------------------------------------------------------------------- /src/LibraryManager.Vsix/Commands/CommandTable/VSCommandTable.de.vsct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/src/LibraryManager.Vsix/Commands/CommandTable/VSCommandTable.de.vsct -------------------------------------------------------------------------------- /src/LibraryManager.Vsix/Commands/CommandTable/VSCommandTable.en.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/src/LibraryManager.Vsix/Commands/CommandTable/VSCommandTable.en.cs -------------------------------------------------------------------------------- /src/LibraryManager.Vsix/Commands/CommandTable/VSCommandTable.en.vsct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/src/LibraryManager.Vsix/Commands/CommandTable/VSCommandTable.en.vsct -------------------------------------------------------------------------------- /src/LibraryManager.Vsix/Commands/CommandTable/VSCommandTable.es.vsct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/src/LibraryManager.Vsix/Commands/CommandTable/VSCommandTable.es.vsct -------------------------------------------------------------------------------- /src/LibraryManager.Vsix/Commands/CommandTable/VSCommandTable.fr.vsct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/src/LibraryManager.Vsix/Commands/CommandTable/VSCommandTable.fr.vsct -------------------------------------------------------------------------------- /src/LibraryManager.Vsix/Commands/CommandTable/VSCommandTable.it.vsct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/src/LibraryManager.Vsix/Commands/CommandTable/VSCommandTable.it.vsct -------------------------------------------------------------------------------- /src/LibraryManager.Vsix/Commands/CommandTable/VSCommandTable.ja.vsct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/src/LibraryManager.Vsix/Commands/CommandTable/VSCommandTable.ja.vsct -------------------------------------------------------------------------------- /src/LibraryManager.Vsix/Commands/CommandTable/VSCommandTable.ko.vsct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/src/LibraryManager.Vsix/Commands/CommandTable/VSCommandTable.ko.vsct -------------------------------------------------------------------------------- /src/LibraryManager.Vsix/Commands/CommandTable/VSCommandTable.pl.vsct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/src/LibraryManager.Vsix/Commands/CommandTable/VSCommandTable.pl.vsct -------------------------------------------------------------------------------- /src/LibraryManager.Vsix/Commands/CommandTable/VSCommandTable.pt-BR.vsct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/src/LibraryManager.Vsix/Commands/CommandTable/VSCommandTable.pt-BR.vsct -------------------------------------------------------------------------------- /src/LibraryManager.Vsix/Commands/CommandTable/VSCommandTable.ru.vsct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/src/LibraryManager.Vsix/Commands/CommandTable/VSCommandTable.ru.vsct -------------------------------------------------------------------------------- /src/LibraryManager.Vsix/Commands/CommandTable/VSCommandTable.tr.vsct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/src/LibraryManager.Vsix/Commands/CommandTable/VSCommandTable.tr.vsct -------------------------------------------------------------------------------- /src/LibraryManager.Vsix/Commands/CommandTable/VSCommandTable.zh-Hans.vsct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/src/LibraryManager.Vsix/Commands/CommandTable/VSCommandTable.zh-Hans.vsct -------------------------------------------------------------------------------- /src/LibraryManager.Vsix/Commands/CommandTable/VSCommandTable.zh-Hant.vsct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/src/LibraryManager.Vsix/Commands/CommandTable/VSCommandTable.zh-Hant.vsct -------------------------------------------------------------------------------- /src/LibraryManager.Vsix/Commands/InstallLibraryCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/src/LibraryManager.Vsix/Commands/InstallLibraryCommand.cs -------------------------------------------------------------------------------- /src/LibraryManager.Vsix/Commands/ManageLibrariesCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/src/LibraryManager.Vsix/Commands/ManageLibrariesCommand.cs -------------------------------------------------------------------------------- /src/LibraryManager.Vsix/Commands/RestoreCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/src/LibraryManager.Vsix/Commands/RestoreCommand.cs -------------------------------------------------------------------------------- /src/LibraryManager.Vsix/Commands/RestoreOnBuildCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/src/LibraryManager.Vsix/Commands/RestoreOnBuildCommand.cs -------------------------------------------------------------------------------- /src/LibraryManager.Vsix/Commands/RestoreSolutionCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/src/LibraryManager.Vsix/Commands/RestoreSolutionCommand.cs -------------------------------------------------------------------------------- /src/LibraryManager.Vsix/Constants.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/src/LibraryManager.Vsix/Constants.cs -------------------------------------------------------------------------------- /src/LibraryManager.Vsix/Contracts/Dependencies.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/src/LibraryManager.Vsix/Contracts/Dependencies.cs -------------------------------------------------------------------------------- /src/LibraryManager.Vsix/Contracts/DependenciesFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/src/LibraryManager.Vsix/Contracts/DependenciesFactory.cs -------------------------------------------------------------------------------- /src/LibraryManager.Vsix/Contracts/HostInteraction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/src/LibraryManager.Vsix/Contracts/HostInteraction.cs -------------------------------------------------------------------------------- /src/LibraryManager.Vsix/Contracts/IDependenciesFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/src/LibraryManager.Vsix/Contracts/IDependenciesFactory.cs -------------------------------------------------------------------------------- /src/LibraryManager.Vsix/Contracts/Logger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/src/LibraryManager.Vsix/Contracts/Logger.cs -------------------------------------------------------------------------------- /src/LibraryManager.Vsix/Contracts/PerProjectLogger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/src/LibraryManager.Vsix/Contracts/PerProjectLogger.cs -------------------------------------------------------------------------------- /src/LibraryManager.Vsix/ErrorList/DisplayError.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/src/LibraryManager.Vsix/ErrorList/DisplayError.cs -------------------------------------------------------------------------------- /src/LibraryManager.Vsix/ErrorList/ErrorListPropagator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/src/LibraryManager.Vsix/ErrorList/ErrorListPropagator.cs -------------------------------------------------------------------------------- /src/LibraryManager.Vsix/ErrorList/SinkManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/src/LibraryManager.Vsix/ErrorList/SinkManager.cs -------------------------------------------------------------------------------- /src/LibraryManager.Vsix/ErrorList/TableDataSource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/src/LibraryManager.Vsix/ErrorList/TableDataSource.cs -------------------------------------------------------------------------------- /src/LibraryManager.Vsix/ErrorList/TableEntriesSnapshot.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/src/LibraryManager.Vsix/ErrorList/TableEntriesSnapshot.cs -------------------------------------------------------------------------------- /src/LibraryManager.Vsix/Json/Completion/BaseCompletionProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/src/LibraryManager.Vsix/Json/Completion/BaseCompletionProvider.cs -------------------------------------------------------------------------------- /src/LibraryManager.Vsix/Json/Completion/CompletionController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/src/LibraryManager.Vsix/Json/Completion/CompletionController.cs -------------------------------------------------------------------------------- /src/LibraryManager.Vsix/Json/Completion/CompletionElementProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/src/LibraryManager.Vsix/Json/Completion/CompletionElementProvider.cs -------------------------------------------------------------------------------- /src/LibraryManager.Vsix/Json/Completion/FileMappingRootCompletionProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/src/LibraryManager.Vsix/Json/Completion/FileMappingRootCompletionProvider.cs -------------------------------------------------------------------------------- /src/LibraryManager.Vsix/Json/Completion/FilesCompletionProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/src/LibraryManager.Vsix/Json/Completion/FilesCompletionProvider.cs -------------------------------------------------------------------------------- /src/LibraryManager.Vsix/Json/Completion/LibraryIdCompletionProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/src/LibraryManager.Vsix/Json/Completion/LibraryIdCompletionProvider.cs -------------------------------------------------------------------------------- /src/LibraryManager.Vsix/Json/Completion/PathCompletionProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/src/LibraryManager.Vsix/Json/Completion/PathCompletionProvider.cs -------------------------------------------------------------------------------- /src/LibraryManager.Vsix/Json/Completion/ProviderCompletionProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/src/LibraryManager.Vsix/Json/Completion/ProviderCompletionProvider.cs -------------------------------------------------------------------------------- /src/LibraryManager.Vsix/Json/Completion/SimpleCompletionEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/src/LibraryManager.Vsix/Json/Completion/SimpleCompletionEntry.cs -------------------------------------------------------------------------------- /src/LibraryManager.Vsix/Json/Completion/VersionCompletionEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/src/LibraryManager.Vsix/Json/Completion/VersionCompletionEntry.cs -------------------------------------------------------------------------------- /src/LibraryManager.Vsix/Json/JsonHelpers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/src/LibraryManager.Vsix/Json/JsonHelpers.cs -------------------------------------------------------------------------------- /src/LibraryManager.Vsix/Json/SuggestedActions/SuggestedActionProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/src/LibraryManager.Vsix/Json/SuggestedActions/SuggestedActionProvider.cs -------------------------------------------------------------------------------- /src/LibraryManager.Vsix/Json/SuggestedActions/UninstallSuggestedActions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/src/LibraryManager.Vsix/Json/SuggestedActions/UninstallSuggestedActions.cs -------------------------------------------------------------------------------- /src/LibraryManager.Vsix/Json/SuggestedActions/UpdateSuggestedAction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/src/LibraryManager.Vsix/Json/SuggestedActions/UpdateSuggestedAction.cs -------------------------------------------------------------------------------- /src/LibraryManager.Vsix/Json/SuggestedActions/UpdateSuggestedActionSet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/src/LibraryManager.Vsix/Json/SuggestedActions/UpdateSuggestedActionSet.cs -------------------------------------------------------------------------------- /src/LibraryManager.Vsix/Json/TextviewCreationListener.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/src/LibraryManager.Vsix/Json/TextviewCreationListener.cs -------------------------------------------------------------------------------- /src/LibraryManager.Vsix/LibraryManagerPackage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/src/LibraryManager.Vsix/LibraryManagerPackage.cs -------------------------------------------------------------------------------- /src/LibraryManager.Vsix/Microsoft.Web.LibraryManager.Vsix.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/src/LibraryManager.Vsix/Microsoft.Web.LibraryManager.Vsix.csproj -------------------------------------------------------------------------------- /src/LibraryManager.Vsix/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/src/LibraryManager.Vsix/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/LibraryManager.Vsix/Resources/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/src/LibraryManager.Vsix/Resources/Icon.png -------------------------------------------------------------------------------- /src/LibraryManager.Vsix/Resources/Text.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/src/LibraryManager.Vsix/Resources/Text.Designer.cs -------------------------------------------------------------------------------- /src/LibraryManager.Vsix/Resources/Text.cs.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/src/LibraryManager.Vsix/Resources/Text.cs.resx -------------------------------------------------------------------------------- /src/LibraryManager.Vsix/Resources/Text.de.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/src/LibraryManager.Vsix/Resources/Text.de.resx -------------------------------------------------------------------------------- /src/LibraryManager.Vsix/Resources/Text.es.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/src/LibraryManager.Vsix/Resources/Text.es.resx -------------------------------------------------------------------------------- /src/LibraryManager.Vsix/Resources/Text.fr.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/src/LibraryManager.Vsix/Resources/Text.fr.resx -------------------------------------------------------------------------------- /src/LibraryManager.Vsix/Resources/Text.it.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/src/LibraryManager.Vsix/Resources/Text.it.resx -------------------------------------------------------------------------------- /src/LibraryManager.Vsix/Resources/Text.ja.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/src/LibraryManager.Vsix/Resources/Text.ja.resx -------------------------------------------------------------------------------- /src/LibraryManager.Vsix/Resources/Text.ko.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/src/LibraryManager.Vsix/Resources/Text.ko.resx -------------------------------------------------------------------------------- /src/LibraryManager.Vsix/Resources/Text.pl.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/src/LibraryManager.Vsix/Resources/Text.pl.resx -------------------------------------------------------------------------------- /src/LibraryManager.Vsix/Resources/Text.pt-BR.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/src/LibraryManager.Vsix/Resources/Text.pt-BR.resx -------------------------------------------------------------------------------- /src/LibraryManager.Vsix/Resources/Text.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/src/LibraryManager.Vsix/Resources/Text.resx -------------------------------------------------------------------------------- /src/LibraryManager.Vsix/Resources/Text.ru.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/src/LibraryManager.Vsix/Resources/Text.ru.resx -------------------------------------------------------------------------------- /src/LibraryManager.Vsix/Resources/Text.tr.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/src/LibraryManager.Vsix/Resources/Text.tr.resx -------------------------------------------------------------------------------- /src/LibraryManager.Vsix/Resources/Text.zh-Hans.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/src/LibraryManager.Vsix/Resources/Text.zh-Hans.resx -------------------------------------------------------------------------------- /src/LibraryManager.Vsix/Resources/Text.zh-Hant.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/src/LibraryManager.Vsix/Resources/Text.zh-Hant.resx -------------------------------------------------------------------------------- /src/LibraryManager.Vsix/Resources/loc/cs/Commands/CommandTable/LocalizationFiles/VSCommandTable.xlf.lcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/src/LibraryManager.Vsix/Resources/loc/cs/Commands/CommandTable/LocalizationFiles/VSCommandTable.xlf.lcl -------------------------------------------------------------------------------- /src/LibraryManager.Vsix/Resources/loc/cs/Resources/Text.resx.lcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/src/LibraryManager.Vsix/Resources/loc/cs/Resources/Text.resx.lcl -------------------------------------------------------------------------------- /src/LibraryManager.Vsix/Resources/loc/cs/source.extension.resx.lcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/src/LibraryManager.Vsix/Resources/loc/cs/source.extension.resx.lcl -------------------------------------------------------------------------------- /src/LibraryManager.Vsix/Resources/loc/de/Commands/CommandTable/LocalizationFiles/VSCommandTable.xlf.lcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/src/LibraryManager.Vsix/Resources/loc/de/Commands/CommandTable/LocalizationFiles/VSCommandTable.xlf.lcl -------------------------------------------------------------------------------- /src/LibraryManager.Vsix/Resources/loc/de/Resources/Text.resx.lcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/src/LibraryManager.Vsix/Resources/loc/de/Resources/Text.resx.lcl -------------------------------------------------------------------------------- /src/LibraryManager.Vsix/Resources/loc/de/source.extension.resx.lcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/src/LibraryManager.Vsix/Resources/loc/de/source.extension.resx.lcl -------------------------------------------------------------------------------- /src/LibraryManager.Vsix/Resources/loc/es/Commands/CommandTable/LocalizationFiles/VSCommandTable.xlf.lcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/src/LibraryManager.Vsix/Resources/loc/es/Commands/CommandTable/LocalizationFiles/VSCommandTable.xlf.lcl -------------------------------------------------------------------------------- /src/LibraryManager.Vsix/Resources/loc/es/Resources/Text.resx.lcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/src/LibraryManager.Vsix/Resources/loc/es/Resources/Text.resx.lcl -------------------------------------------------------------------------------- /src/LibraryManager.Vsix/Resources/loc/es/source.extension.resx.lcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/src/LibraryManager.Vsix/Resources/loc/es/source.extension.resx.lcl -------------------------------------------------------------------------------- /src/LibraryManager.Vsix/Resources/loc/fr/Commands/CommandTable/LocalizationFiles/VSCommandTable.xlf.lcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/src/LibraryManager.Vsix/Resources/loc/fr/Commands/CommandTable/LocalizationFiles/VSCommandTable.xlf.lcl -------------------------------------------------------------------------------- /src/LibraryManager.Vsix/Resources/loc/fr/Resources/Text.resx.lcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/src/LibraryManager.Vsix/Resources/loc/fr/Resources/Text.resx.lcl -------------------------------------------------------------------------------- /src/LibraryManager.Vsix/Resources/loc/fr/source.extension.resx.lcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/src/LibraryManager.Vsix/Resources/loc/fr/source.extension.resx.lcl -------------------------------------------------------------------------------- /src/LibraryManager.Vsix/Resources/loc/it/Commands/CommandTable/LocalizationFiles/VSCommandTable.xlf.lcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/src/LibraryManager.Vsix/Resources/loc/it/Commands/CommandTable/LocalizationFiles/VSCommandTable.xlf.lcl -------------------------------------------------------------------------------- /src/LibraryManager.Vsix/Resources/loc/it/Resources/Text.resx.lcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/src/LibraryManager.Vsix/Resources/loc/it/Resources/Text.resx.lcl -------------------------------------------------------------------------------- /src/LibraryManager.Vsix/Resources/loc/it/source.extension.resx.lcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/src/LibraryManager.Vsix/Resources/loc/it/source.extension.resx.lcl -------------------------------------------------------------------------------- /src/LibraryManager.Vsix/Resources/loc/ja/Commands/CommandTable/LocalizationFiles/VSCommandTable.xlf.lcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/src/LibraryManager.Vsix/Resources/loc/ja/Commands/CommandTable/LocalizationFiles/VSCommandTable.xlf.lcl -------------------------------------------------------------------------------- /src/LibraryManager.Vsix/Resources/loc/ja/Resources/Text.resx.lcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/src/LibraryManager.Vsix/Resources/loc/ja/Resources/Text.resx.lcl -------------------------------------------------------------------------------- /src/LibraryManager.Vsix/Resources/loc/ja/source.extension.resx.lcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/src/LibraryManager.Vsix/Resources/loc/ja/source.extension.resx.lcl -------------------------------------------------------------------------------- /src/LibraryManager.Vsix/Resources/loc/ko/Commands/CommandTable/LocalizationFiles/VSCommandTable.xlf.lcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/src/LibraryManager.Vsix/Resources/loc/ko/Commands/CommandTable/LocalizationFiles/VSCommandTable.xlf.lcl -------------------------------------------------------------------------------- /src/LibraryManager.Vsix/Resources/loc/ko/Resources/Text.resx.lcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/src/LibraryManager.Vsix/Resources/loc/ko/Resources/Text.resx.lcl -------------------------------------------------------------------------------- /src/LibraryManager.Vsix/Resources/loc/ko/source.extension.resx.lcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/src/LibraryManager.Vsix/Resources/loc/ko/source.extension.resx.lcl -------------------------------------------------------------------------------- /src/LibraryManager.Vsix/Resources/loc/pl/Commands/CommandTable/LocalizationFiles/VSCommandTable.xlf.lcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/src/LibraryManager.Vsix/Resources/loc/pl/Commands/CommandTable/LocalizationFiles/VSCommandTable.xlf.lcl -------------------------------------------------------------------------------- /src/LibraryManager.Vsix/Resources/loc/pl/Resources/Text.resx.lcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/src/LibraryManager.Vsix/Resources/loc/pl/Resources/Text.resx.lcl -------------------------------------------------------------------------------- /src/LibraryManager.Vsix/Resources/loc/pl/source.extension.resx.lcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/src/LibraryManager.Vsix/Resources/loc/pl/source.extension.resx.lcl -------------------------------------------------------------------------------- /src/LibraryManager.Vsix/Resources/loc/pt-BR/Commands/CommandTable/LocalizationFiles/VSCommandTable.xlf.lcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/src/LibraryManager.Vsix/Resources/loc/pt-BR/Commands/CommandTable/LocalizationFiles/VSCommandTable.xlf.lcl -------------------------------------------------------------------------------- /src/LibraryManager.Vsix/Resources/loc/pt-BR/Resources/Text.resx.lcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/src/LibraryManager.Vsix/Resources/loc/pt-BR/Resources/Text.resx.lcl -------------------------------------------------------------------------------- /src/LibraryManager.Vsix/Resources/loc/pt-BR/source.extension.resx.lcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/src/LibraryManager.Vsix/Resources/loc/pt-BR/source.extension.resx.lcl -------------------------------------------------------------------------------- /src/LibraryManager.Vsix/Resources/loc/ru/Commands/CommandTable/LocalizationFiles/VSCommandTable.xlf.lcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/src/LibraryManager.Vsix/Resources/loc/ru/Commands/CommandTable/LocalizationFiles/VSCommandTable.xlf.lcl -------------------------------------------------------------------------------- /src/LibraryManager.Vsix/Resources/loc/ru/Resources/Text.resx.lcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/src/LibraryManager.Vsix/Resources/loc/ru/Resources/Text.resx.lcl -------------------------------------------------------------------------------- /src/LibraryManager.Vsix/Resources/loc/ru/source.extension.resx.lcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/src/LibraryManager.Vsix/Resources/loc/ru/source.extension.resx.lcl -------------------------------------------------------------------------------- /src/LibraryManager.Vsix/Resources/loc/tr/Commands/CommandTable/LocalizationFiles/VSCommandTable.xlf.lcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/src/LibraryManager.Vsix/Resources/loc/tr/Commands/CommandTable/LocalizationFiles/VSCommandTable.xlf.lcl -------------------------------------------------------------------------------- /src/LibraryManager.Vsix/Resources/loc/tr/Resources/Text.resx.lcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/src/LibraryManager.Vsix/Resources/loc/tr/Resources/Text.resx.lcl -------------------------------------------------------------------------------- /src/LibraryManager.Vsix/Resources/loc/tr/source.extension.resx.lcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/src/LibraryManager.Vsix/Resources/loc/tr/source.extension.resx.lcl -------------------------------------------------------------------------------- /src/LibraryManager.Vsix/Resources/loc/zh-Hans/Commands/CommandTable/LocalizationFiles/VSCommandTable.xlf.lcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/src/LibraryManager.Vsix/Resources/loc/zh-Hans/Commands/CommandTable/LocalizationFiles/VSCommandTable.xlf.lcl -------------------------------------------------------------------------------- /src/LibraryManager.Vsix/Resources/loc/zh-Hans/Resources/Text.resx.lcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/src/LibraryManager.Vsix/Resources/loc/zh-Hans/Resources/Text.resx.lcl -------------------------------------------------------------------------------- /src/LibraryManager.Vsix/Resources/loc/zh-Hans/source.extension.resx.lcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/src/LibraryManager.Vsix/Resources/loc/zh-Hans/source.extension.resx.lcl -------------------------------------------------------------------------------- /src/LibraryManager.Vsix/Resources/loc/zh-Hant/Commands/CommandTable/LocalizationFiles/VSCommandTable.xlf.lcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/src/LibraryManager.Vsix/Resources/loc/zh-Hant/Commands/CommandTable/LocalizationFiles/VSCommandTable.xlf.lcl -------------------------------------------------------------------------------- /src/LibraryManager.Vsix/Resources/loc/zh-Hant/Resources/Text.resx.lcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/src/LibraryManager.Vsix/Resources/loc/zh-Hant/Resources/Text.resx.lcl -------------------------------------------------------------------------------- /src/LibraryManager.Vsix/Resources/loc/zh-Hant/source.extension.resx.lcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/src/LibraryManager.Vsix/Resources/loc/zh-Hant/source.extension.resx.lcl -------------------------------------------------------------------------------- /src/LibraryManager.Vsix/Search/ISearchService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/src/LibraryManager.Vsix/Search/ISearchService.cs -------------------------------------------------------------------------------- /src/LibraryManager.Vsix/Search/LocationSearchService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/src/LibraryManager.Vsix/Search/LocationSearchService.cs -------------------------------------------------------------------------------- /src/LibraryManager.Vsix/Search/ProviderCatalogSearchService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/src/LibraryManager.Vsix/Search/ProviderCatalogSearchService.cs -------------------------------------------------------------------------------- /src/LibraryManager.Vsix/Shared/DefaultSolutionEvents.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/src/LibraryManager.Vsix/Shared/DefaultSolutionEvents.cs -------------------------------------------------------------------------------- /src/LibraryManager.Vsix/Shared/ILibraryCommandService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/src/LibraryManager.Vsix/Shared/ILibraryCommandService.cs -------------------------------------------------------------------------------- /src/LibraryManager.Vsix/Shared/ITaskStatusCenterService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/src/LibraryManager.Vsix/Shared/ITaskStatusCenterService.cs -------------------------------------------------------------------------------- /src/LibraryManager.Vsix/Shared/LibraryCommandService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/src/LibraryManager.Vsix/Shared/LibraryCommandService.cs -------------------------------------------------------------------------------- /src/LibraryManager.Vsix/Shared/TaskStatusCenterService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/src/LibraryManager.Vsix/Shared/TaskStatusCenterService.cs -------------------------------------------------------------------------------- /src/LibraryManager.Vsix/Shared/Telemetry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/src/LibraryManager.Vsix/Shared/Telemetry.cs -------------------------------------------------------------------------------- /src/LibraryManager.Vsix/Shared/VsHelpers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/src/LibraryManager.Vsix/Shared/VsHelpers.cs -------------------------------------------------------------------------------- /src/LibraryManager.Vsix/Shared/WpfUtil.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/src/LibraryManager.Vsix/Shared/WpfUtil.cs -------------------------------------------------------------------------------- /src/LibraryManager.Vsix/UI/Controls/AutomationPeers/TextControlTypeAutomationPeer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/src/LibraryManager.Vsix/UI/Controls/AutomationPeers/TextControlTypeAutomationPeer.cs -------------------------------------------------------------------------------- /src/LibraryManager.Vsix/UI/Controls/BindingProxy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/src/LibraryManager.Vsix/UI/Controls/BindingProxy.cs -------------------------------------------------------------------------------- /src/LibraryManager.Vsix/UI/Controls/CompletionEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/src/LibraryManager.Vsix/UI/Controls/CompletionEntry.cs -------------------------------------------------------------------------------- /src/LibraryManager.Vsix/UI/Controls/EditorTooltip.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/src/LibraryManager.Vsix/UI/Controls/EditorTooltip.xaml -------------------------------------------------------------------------------- /src/LibraryManager.Vsix/UI/Controls/EditorTooltip.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/src/LibraryManager.Vsix/UI/Controls/EditorTooltip.xaml.cs -------------------------------------------------------------------------------- /src/LibraryManager.Vsix/UI/Controls/PackageContentsTreeView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/src/LibraryManager.Vsix/UI/Controls/PackageContentsTreeView.xaml -------------------------------------------------------------------------------- /src/LibraryManager.Vsix/UI/Controls/PackageContentsTreeView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/src/LibraryManager.Vsix/UI/Controls/PackageContentsTreeView.xaml.cs -------------------------------------------------------------------------------- /src/LibraryManager.Vsix/UI/Controls/PackageContentsTreeViewAutomationPeer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/src/LibraryManager.Vsix/UI/Controls/PackageContentsTreeViewAutomationPeer.cs -------------------------------------------------------------------------------- /src/LibraryManager.Vsix/UI/Controls/Search/LibraryGroupToSearchItemAdapter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/src/LibraryManager.Vsix/UI/Controls/Search/LibraryGroupToSearchItemAdapter.cs -------------------------------------------------------------------------------- /src/LibraryManager.Vsix/UI/Controls/Search/LogicalOrConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/src/LibraryManager.Vsix/UI/Controls/Search/LogicalOrConverter.cs -------------------------------------------------------------------------------- /src/LibraryManager.Vsix/UI/Controls/Search/PackageSearchUtil.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/src/LibraryManager.Vsix/UI/Controls/Search/PackageSearchUtil.cs -------------------------------------------------------------------------------- /src/LibraryManager.Vsix/UI/Controls/Search/Wrapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/src/LibraryManager.Vsix/UI/Controls/Search/Wrapper.cs -------------------------------------------------------------------------------- /src/LibraryManager.Vsix/UI/Controls/TextBoxWithSearch.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/src/LibraryManager.Vsix/UI/Controls/TextBoxWithSearch.xaml -------------------------------------------------------------------------------- /src/LibraryManager.Vsix/UI/Controls/TextBoxWithSearch.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/src/LibraryManager.Vsix/UI/Controls/TextBoxWithSearch.xaml.cs -------------------------------------------------------------------------------- /src/LibraryManager.Vsix/UI/Converters/BoldingConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/src/LibraryManager.Vsix/UI/Converters/BoldingConverter.cs -------------------------------------------------------------------------------- /src/LibraryManager.Vsix/UI/Converters/CheckBoxAutomationNameConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/src/LibraryManager.Vsix/UI/Converters/CheckBoxAutomationNameConverter.cs -------------------------------------------------------------------------------- /src/LibraryManager.Vsix/UI/Converters/EnumToBoolConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/src/LibraryManager.Vsix/UI/Converters/EnumToBoolConverter.cs -------------------------------------------------------------------------------- /src/LibraryManager.Vsix/UI/Converters/HintTextConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/src/LibraryManager.Vsix/UI/Converters/HintTextConverter.cs -------------------------------------------------------------------------------- /src/LibraryManager.Vsix/UI/Converters/NotConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/src/LibraryManager.Vsix/UI/Converters/NotConverter.cs -------------------------------------------------------------------------------- /src/LibraryManager.Vsix/UI/Converters/VisibleIfNonNullConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/src/LibraryManager.Vsix/UI/Converters/VisibleIfNonNullConverter.cs -------------------------------------------------------------------------------- /src/LibraryManager.Vsix/UI/Converters/WatermarkVisibilityConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/src/LibraryManager.Vsix/UI/Converters/WatermarkVisibilityConverter.cs -------------------------------------------------------------------------------- /src/LibraryManager.Vsix/UI/Extensions/RemoveCharacterExtension.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/src/LibraryManager.Vsix/UI/Extensions/RemoveCharacterExtension.cs -------------------------------------------------------------------------------- /src/LibraryManager.Vsix/UI/IInstallDialog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/src/LibraryManager.Vsix/UI/IInstallDialog.cs -------------------------------------------------------------------------------- /src/LibraryManager.Vsix/UI/InstallDialog.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/src/LibraryManager.Vsix/UI/InstallDialog.xaml -------------------------------------------------------------------------------- /src/LibraryManager.Vsix/UI/InstallDialog.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/src/LibraryManager.Vsix/UI/InstallDialog.xaml.cs -------------------------------------------------------------------------------- /src/LibraryManager.Vsix/UI/InstallDialogProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/src/LibraryManager.Vsix/UI/InstallDialogProvider.cs -------------------------------------------------------------------------------- /src/LibraryManager.Vsix/UI/Models/ActionCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/src/LibraryManager.Vsix/UI/Models/ActionCommand.cs -------------------------------------------------------------------------------- /src/LibraryManager.Vsix/UI/Models/BindableBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/src/LibraryManager.Vsix/UI/Models/BindableBase.cs -------------------------------------------------------------------------------- /src/LibraryManager.Vsix/UI/Models/FileSelection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/src/LibraryManager.Vsix/UI/Models/FileSelection.cs -------------------------------------------------------------------------------- /src/LibraryManager.Vsix/UI/Models/FileSelectionType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/src/LibraryManager.Vsix/UI/Models/FileSelectionType.cs -------------------------------------------------------------------------------- /src/LibraryManager.Vsix/UI/Models/InstallDialogViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/src/LibraryManager.Vsix/UI/Models/InstallDialogViewModel.cs -------------------------------------------------------------------------------- /src/LibraryManager.Vsix/UI/Models/LibraryIdViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/src/LibraryManager.Vsix/UI/Models/LibraryIdViewModel.cs -------------------------------------------------------------------------------- /src/LibraryManager.Vsix/UI/Models/LibraryNameBinding.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/src/LibraryManager.Vsix/UI/Models/LibraryNameBinding.cs -------------------------------------------------------------------------------- /src/LibraryManager.Vsix/UI/Models/PackageItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/src/LibraryManager.Vsix/UI/Models/PackageItem.cs -------------------------------------------------------------------------------- /src/LibraryManager.Vsix/UI/Models/PackageItemType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/src/LibraryManager.Vsix/UI/Models/PackageItemType.cs -------------------------------------------------------------------------------- /src/LibraryManager.Vsix/UI/Models/SearchTextBoxViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/src/LibraryManager.Vsix/UI/Models/SearchTextBoxViewModel.cs -------------------------------------------------------------------------------- /src/LibraryManager.Vsix/UI/Models/SelectedProviderBinding.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/src/LibraryManager.Vsix/UI/Models/SelectedProviderBinding.cs -------------------------------------------------------------------------------- /src/LibraryManager.Vsix/UI/Models/TargetLocationViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/src/LibraryManager.Vsix/UI/Models/TargetLocationViewModel.cs -------------------------------------------------------------------------------- /src/LibraryManager.Vsix/UI/Theming/Shared.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/src/LibraryManager.Vsix/UI/Theming/Shared.xaml -------------------------------------------------------------------------------- /src/LibraryManager.Vsix/UI/Theming/Theme.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/src/LibraryManager.Vsix/UI/Theming/Theme.cs -------------------------------------------------------------------------------- /src/LibraryManager.Vsix/UI/Theming/ThemedWindow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/src/LibraryManager.Vsix/UI/Theming/ThemedWindow.cs -------------------------------------------------------------------------------- /src/LibraryManager.Vsix/UI/Theming/VsThemedComboBox.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/src/LibraryManager.Vsix/UI/Theming/VsThemedComboBox.xaml -------------------------------------------------------------------------------- /src/LibraryManager.Vsix/UI/Theming/VsThemedToolTip.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/src/LibraryManager.Vsix/UI/Theming/VsThemedToolTip.xaml -------------------------------------------------------------------------------- /src/LibraryManager.Vsix/UI/Theming/VsThemedTreeView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/src/LibraryManager.Vsix/UI/Theming/VsThemedTreeView.xaml -------------------------------------------------------------------------------- /src/LibraryManager.Vsix/source.extension.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/src/LibraryManager.Vsix/source.extension.cs -------------------------------------------------------------------------------- /src/LibraryManager.Vsix/source.extension.cs.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/src/LibraryManager.Vsix/source.extension.cs.resx -------------------------------------------------------------------------------- /src/LibraryManager.Vsix/source.extension.de.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/src/LibraryManager.Vsix/source.extension.de.resx -------------------------------------------------------------------------------- /src/LibraryManager.Vsix/source.extension.en.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/src/LibraryManager.Vsix/source.extension.en.resx -------------------------------------------------------------------------------- /src/LibraryManager.Vsix/source.extension.es.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/src/LibraryManager.Vsix/source.extension.es.resx -------------------------------------------------------------------------------- /src/LibraryManager.Vsix/source.extension.fr.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/src/LibraryManager.Vsix/source.extension.fr.resx -------------------------------------------------------------------------------- /src/LibraryManager.Vsix/source.extension.it.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/src/LibraryManager.Vsix/source.extension.it.resx -------------------------------------------------------------------------------- /src/LibraryManager.Vsix/source.extension.ja.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/src/LibraryManager.Vsix/source.extension.ja.resx -------------------------------------------------------------------------------- /src/LibraryManager.Vsix/source.extension.ko.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/src/LibraryManager.Vsix/source.extension.ko.resx -------------------------------------------------------------------------------- /src/LibraryManager.Vsix/source.extension.pl.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/src/LibraryManager.Vsix/source.extension.pl.resx -------------------------------------------------------------------------------- /src/LibraryManager.Vsix/source.extension.pt-BR.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/src/LibraryManager.Vsix/source.extension.pt-BR.resx -------------------------------------------------------------------------------- /src/LibraryManager.Vsix/source.extension.ru.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/src/LibraryManager.Vsix/source.extension.ru.resx -------------------------------------------------------------------------------- /src/LibraryManager.Vsix/source.extension.tr.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/src/LibraryManager.Vsix/source.extension.tr.resx -------------------------------------------------------------------------------- /src/LibraryManager.Vsix/source.extension.vsixmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/src/LibraryManager.Vsix/source.extension.vsixmanifest -------------------------------------------------------------------------------- /src/LibraryManager.Vsix/source.extension.zh-Hans.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/src/LibraryManager.Vsix/source.extension.zh-Hans.resx -------------------------------------------------------------------------------- /src/LibraryManager.Vsix/source.extension.zh-Hant.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/src/LibraryManager.Vsix/source.extension.zh-Hant.resx -------------------------------------------------------------------------------- /src/LibraryManager/Cache/CacheFileMetadata.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/src/LibraryManager/Cache/CacheFileMetadata.cs -------------------------------------------------------------------------------- /src/LibraryManager/Cache/CacheService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/src/LibraryManager/Cache/CacheService.cs -------------------------------------------------------------------------------- /src/LibraryManager/Cache/WebRequestHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/src/LibraryManager/Cache/WebRequestHandler.cs -------------------------------------------------------------------------------- /src/LibraryManager/Configuration/Constants.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/src/LibraryManager/Configuration/Constants.cs -------------------------------------------------------------------------------- /src/LibraryManager/Configuration/ProxySettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/src/LibraryManager/Configuration/ProxySettings.cs -------------------------------------------------------------------------------- /src/LibraryManager/Configuration/Settings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/src/LibraryManager/Configuration/Settings.cs -------------------------------------------------------------------------------- /src/LibraryManager/FileConflict.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/src/LibraryManager/FileConflict.cs -------------------------------------------------------------------------------- /src/LibraryManager/FileIdentifier.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/src/LibraryManager/FileIdentifier.cs -------------------------------------------------------------------------------- /src/LibraryManager/Helpers/CancellationHelpers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/src/LibraryManager/Helpers/CancellationHelpers.cs -------------------------------------------------------------------------------- /src/LibraryManager/Helpers/Extensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/src/LibraryManager/Helpers/Extensions.cs -------------------------------------------------------------------------------- /src/LibraryManager/Helpers/LibraryStateTypeConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/src/LibraryManager/Helpers/LibraryStateTypeConverter.cs -------------------------------------------------------------------------------- /src/LibraryManager/Json/FileMapping.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/src/LibraryManager/Json/FileMapping.cs -------------------------------------------------------------------------------- /src/LibraryManager/Json/LibraryInstallationStateOnDisk.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/src/LibraryManager/Json/LibraryInstallationStateOnDisk.cs -------------------------------------------------------------------------------- /src/LibraryManager/Json/LibraryStateToFileConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/src/LibraryManager/Json/LibraryStateToFileConverter.cs -------------------------------------------------------------------------------- /src/LibraryManager/Json/ManifestOnDisk.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/src/LibraryManager/Json/ManifestOnDisk.cs -------------------------------------------------------------------------------- /src/LibraryManager/Json/ManifestToFileConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/src/LibraryManager/Json/ManifestToFileConverter.cs -------------------------------------------------------------------------------- /src/LibraryManager/LibrariesValidator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/src/LibraryManager/LibrariesValidator.cs -------------------------------------------------------------------------------- /src/LibraryManager/LibraryInstallationState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/src/LibraryManager/LibraryInstallationState.cs -------------------------------------------------------------------------------- /src/LibraryManager/LibraryNaming/ILibraryNamingScheme.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/src/LibraryManager/LibraryNaming/ILibraryNamingScheme.cs -------------------------------------------------------------------------------- /src/LibraryManager/LibraryNaming/LibraryIdToNameAndVersionConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/src/LibraryManager/LibraryNaming/LibraryIdToNameAndVersionConverter.cs -------------------------------------------------------------------------------- /src/LibraryManager/LibraryNaming/SimpleLibraryNamingScheme.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/src/LibraryManager/LibraryNaming/SimpleLibraryNamingScheme.cs -------------------------------------------------------------------------------- /src/LibraryManager/LibraryNaming/VersionedLibraryNamingScheme.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/src/LibraryManager/LibraryNaming/VersionedLibraryNamingScheme.cs -------------------------------------------------------------------------------- /src/LibraryManager/Logging/LogMessageGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/src/LibraryManager/Logging/LogMessageGenerator.cs -------------------------------------------------------------------------------- /src/LibraryManager/Manifest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/src/LibraryManager/Manifest.cs -------------------------------------------------------------------------------- /src/LibraryManager/ManifestConstants.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/src/LibraryManager/ManifestConstants.cs -------------------------------------------------------------------------------- /src/LibraryManager/Microsoft.Web.LibraryManager.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/src/LibraryManager/Microsoft.Web.LibraryManager.csproj -------------------------------------------------------------------------------- /src/LibraryManager/Minimatch/Minimatcher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/src/LibraryManager/Minimatch/Minimatcher.cs -------------------------------------------------------------------------------- /src/LibraryManager/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/src/LibraryManager/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/LibraryManager/Providers/BaseProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/src/LibraryManager/Providers/BaseProvider.cs -------------------------------------------------------------------------------- /src/LibraryManager/Providers/Cdnjs/CdnjsCatalog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/src/LibraryManager/Providers/Cdnjs/CdnjsCatalog.cs -------------------------------------------------------------------------------- /src/LibraryManager/Providers/Cdnjs/CdnjsLibrary.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/src/LibraryManager/Providers/Cdnjs/CdnjsLibrary.cs -------------------------------------------------------------------------------- /src/LibraryManager/Providers/Cdnjs/CdnjsLibraryGroup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/src/LibraryManager/Providers/Cdnjs/CdnjsLibraryGroup.cs -------------------------------------------------------------------------------- /src/LibraryManager/Providers/Cdnjs/CdnjsProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/src/LibraryManager/Providers/Cdnjs/CdnjsProvider.cs -------------------------------------------------------------------------------- /src/LibraryManager/Providers/Cdnjs/CdnjsProviderFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/src/LibraryManager/Providers/Cdnjs/CdnjsProviderFactory.cs -------------------------------------------------------------------------------- /src/LibraryManager/Providers/FileSystem/FileSystemCatalog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/src/LibraryManager/Providers/FileSystem/FileSystemCatalog.cs -------------------------------------------------------------------------------- /src/LibraryManager/Providers/FileSystem/FileSystemLibrary.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/src/LibraryManager/Providers/FileSystem/FileSystemLibrary.cs -------------------------------------------------------------------------------- /src/LibraryManager/Providers/FileSystem/FileSystemLibraryGroup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/src/LibraryManager/Providers/FileSystem/FileSystemLibraryGroup.cs -------------------------------------------------------------------------------- /src/LibraryManager/Providers/FileSystem/FileSystemProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/src/LibraryManager/Providers/FileSystem/FileSystemProvider.cs -------------------------------------------------------------------------------- /src/LibraryManager/Providers/FileSystem/FileSystemProviderFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/src/LibraryManager/Providers/FileSystem/FileSystemProviderFactory.cs -------------------------------------------------------------------------------- /src/LibraryManager/Providers/Unpkg/INpmPackageInfoFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/src/LibraryManager/Providers/Unpkg/INpmPackageInfoFactory.cs -------------------------------------------------------------------------------- /src/LibraryManager/Providers/Unpkg/INpmPackageSearch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/src/LibraryManager/Providers/Unpkg/INpmPackageSearch.cs -------------------------------------------------------------------------------- /src/LibraryManager/Providers/Unpkg/NpmPackageInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/src/LibraryManager/Providers/Unpkg/NpmPackageInfo.cs -------------------------------------------------------------------------------- /src/LibraryManager/Providers/Unpkg/NpmPackageInfoFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/src/LibraryManager/Providers/Unpkg/NpmPackageInfoFactory.cs -------------------------------------------------------------------------------- /src/LibraryManager/Providers/Unpkg/NpmPackageSearch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/src/LibraryManager/Providers/Unpkg/NpmPackageSearch.cs -------------------------------------------------------------------------------- /src/LibraryManager/Providers/Unpkg/UnpkgCatalog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/src/LibraryManager/Providers/Unpkg/UnpkgCatalog.cs -------------------------------------------------------------------------------- /src/LibraryManager/Providers/Unpkg/UnpkgLibrary.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/src/LibraryManager/Providers/Unpkg/UnpkgLibrary.cs -------------------------------------------------------------------------------- /src/LibraryManager/Providers/Unpkg/UnpkgLibraryGroup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/src/LibraryManager/Providers/Unpkg/UnpkgLibraryGroup.cs -------------------------------------------------------------------------------- /src/LibraryManager/Providers/Unpkg/UnpkgProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/src/LibraryManager/Providers/Unpkg/UnpkgProvider.cs -------------------------------------------------------------------------------- /src/LibraryManager/Providers/Unpkg/UnpkgProviderFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/src/LibraryManager/Providers/Unpkg/UnpkgProviderFactory.cs -------------------------------------------------------------------------------- /src/LibraryManager/Providers/jsDelivr/JsDelivrCatalog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/src/LibraryManager/Providers/jsDelivr/JsDelivrCatalog.cs -------------------------------------------------------------------------------- /src/LibraryManager/Providers/jsDelivr/JsDelivrLibrary.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/src/LibraryManager/Providers/jsDelivr/JsDelivrLibrary.cs -------------------------------------------------------------------------------- /src/LibraryManager/Providers/jsDelivr/JsDelivrLibraryGroup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/src/LibraryManager/Providers/jsDelivr/JsDelivrLibraryGroup.cs -------------------------------------------------------------------------------- /src/LibraryManager/Providers/jsDelivr/JsDelivrProviderFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/src/LibraryManager/Providers/jsDelivr/JsDelivrProviderFactory.cs -------------------------------------------------------------------------------- /src/LibraryManager/Providers/jsDelivr/jsDelivrProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/src/LibraryManager/Providers/jsDelivr/jsDelivrProvider.cs -------------------------------------------------------------------------------- /src/LibraryManager/RelativePathEqualityComparer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/src/LibraryManager/RelativePathEqualityComparer.cs -------------------------------------------------------------------------------- /src/LibraryManager/Resources/Text.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/src/LibraryManager/Resources/Text.Designer.cs -------------------------------------------------------------------------------- /src/LibraryManager/Resources/Text.cs.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/src/LibraryManager/Resources/Text.cs.resx -------------------------------------------------------------------------------- /src/LibraryManager/Resources/Text.de.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/src/LibraryManager/Resources/Text.de.resx -------------------------------------------------------------------------------- /src/LibraryManager/Resources/Text.es.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/src/LibraryManager/Resources/Text.es.resx -------------------------------------------------------------------------------- /src/LibraryManager/Resources/Text.fr.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/src/LibraryManager/Resources/Text.fr.resx -------------------------------------------------------------------------------- /src/LibraryManager/Resources/Text.it.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/src/LibraryManager/Resources/Text.it.resx -------------------------------------------------------------------------------- /src/LibraryManager/Resources/Text.ja.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/src/LibraryManager/Resources/Text.ja.resx -------------------------------------------------------------------------------- /src/LibraryManager/Resources/Text.ko.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/src/LibraryManager/Resources/Text.ko.resx -------------------------------------------------------------------------------- /src/LibraryManager/Resources/Text.pl.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/src/LibraryManager/Resources/Text.pl.resx -------------------------------------------------------------------------------- /src/LibraryManager/Resources/Text.pt-BR.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/src/LibraryManager/Resources/Text.pt-BR.resx -------------------------------------------------------------------------------- /src/LibraryManager/Resources/Text.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/src/LibraryManager/Resources/Text.resx -------------------------------------------------------------------------------- /src/LibraryManager/Resources/Text.ru.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/src/LibraryManager/Resources/Text.ru.resx -------------------------------------------------------------------------------- /src/LibraryManager/Resources/Text.tr.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/src/LibraryManager/Resources/Text.tr.resx -------------------------------------------------------------------------------- /src/LibraryManager/Resources/Text.zh-Hans.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/src/LibraryManager/Resources/Text.zh-Hans.resx -------------------------------------------------------------------------------- /src/LibraryManager/Resources/Text.zh-Hant.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/src/LibraryManager/Resources/Text.zh-Hant.resx -------------------------------------------------------------------------------- /src/LibraryManager/Resources/loc/cs/Resources/Text.resx.lcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/src/LibraryManager/Resources/loc/cs/Resources/Text.resx.lcl -------------------------------------------------------------------------------- /src/LibraryManager/Resources/loc/de/Resources/Text.resx.lcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/src/LibraryManager/Resources/loc/de/Resources/Text.resx.lcl -------------------------------------------------------------------------------- /src/LibraryManager/Resources/loc/es/Resources/Text.resx.lcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/src/LibraryManager/Resources/loc/es/Resources/Text.resx.lcl -------------------------------------------------------------------------------- /src/LibraryManager/Resources/loc/fr/Resources/Text.resx.lcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/src/LibraryManager/Resources/loc/fr/Resources/Text.resx.lcl -------------------------------------------------------------------------------- /src/LibraryManager/Resources/loc/it/Resources/Text.resx.lcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/src/LibraryManager/Resources/loc/it/Resources/Text.resx.lcl -------------------------------------------------------------------------------- /src/LibraryManager/Resources/loc/ja/Resources/Text.resx.lcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/src/LibraryManager/Resources/loc/ja/Resources/Text.resx.lcl -------------------------------------------------------------------------------- /src/LibraryManager/Resources/loc/ko/Resources/Text.resx.lcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/src/LibraryManager/Resources/loc/ko/Resources/Text.resx.lcl -------------------------------------------------------------------------------- /src/LibraryManager/Resources/loc/pl/Resources/Text.resx.lcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/src/LibraryManager/Resources/loc/pl/Resources/Text.resx.lcl -------------------------------------------------------------------------------- /src/LibraryManager/Resources/loc/pt-BR/Resources/Text.resx.lcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/src/LibraryManager/Resources/loc/pt-BR/Resources/Text.resx.lcl -------------------------------------------------------------------------------- /src/LibraryManager/Resources/loc/ru/Resources/Text.resx.lcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/src/LibraryManager/Resources/loc/ru/Resources/Text.resx.lcl -------------------------------------------------------------------------------- /src/LibraryManager/Resources/loc/tr/Resources/Text.resx.lcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/src/LibraryManager/Resources/loc/tr/Resources/Text.resx.lcl -------------------------------------------------------------------------------- /src/LibraryManager/Resources/loc/zh-Hans/Resources/Text.resx.lcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/src/LibraryManager/Resources/loc/zh-Hans/Resources/Text.resx.lcl -------------------------------------------------------------------------------- /src/LibraryManager/Resources/loc/zh-Hant/Resources/Text.resx.lcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/src/LibraryManager/Resources/loc/zh-Hant/Resources/Text.resx.lcl -------------------------------------------------------------------------------- /src/LibraryManager/SemanticVersion.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/src/LibraryManager/SemanticVersion.cs -------------------------------------------------------------------------------- /src/LibraryManager/Utilities/EncryptionUtility.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/src/LibraryManager/Utilities/EncryptionUtility.cs -------------------------------------------------------------------------------- /src/LibraryManager/Utilities/FileGlobbingUtility.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/src/LibraryManager/Utilities/FileGlobbingUtility.cs -------------------------------------------------------------------------------- /src/LibraryManager/Utilities/ParallelUtility.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/src/LibraryManager/Utilities/ParallelUtility.cs -------------------------------------------------------------------------------- /src/PackageIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/src/PackageIcon.png -------------------------------------------------------------------------------- /src/libman/Commands/BaseCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/src/libman/Commands/BaseCommand.cs -------------------------------------------------------------------------------- /src/libman/Commands/CacheCleanCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/src/libman/Commands/CacheCleanCommand.cs -------------------------------------------------------------------------------- /src/libman/Commands/CacheCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/src/libman/Commands/CacheCommand.cs -------------------------------------------------------------------------------- /src/libman/Commands/CacheListCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/src/libman/Commands/CacheListCommand.cs -------------------------------------------------------------------------------- /src/libman/Commands/CleanCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/src/libman/Commands/CleanCommand.cs -------------------------------------------------------------------------------- /src/libman/Commands/ConfigCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/src/libman/Commands/ConfigCommand.cs -------------------------------------------------------------------------------- /src/libman/Commands/InitCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/src/libman/Commands/InitCommand.cs -------------------------------------------------------------------------------- /src/libman/Commands/InstallCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/src/libman/Commands/InstallCommand.cs -------------------------------------------------------------------------------- /src/libman/Commands/LibmanApp.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/src/libman/Commands/LibmanApp.cs -------------------------------------------------------------------------------- /src/libman/Commands/RestoreCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/src/libman/Commands/RestoreCommand.cs -------------------------------------------------------------------------------- /src/libman/Commands/UninstallCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/src/libman/Commands/UninstallCommand.cs -------------------------------------------------------------------------------- /src/libman/Commands/UpdateCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/src/libman/Commands/UpdateCommand.cs -------------------------------------------------------------------------------- /src/libman/Contracts/ConsoleLogger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/src/libman/Contracts/ConsoleLogger.cs -------------------------------------------------------------------------------- /src/libman/Contracts/Dependencies.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/src/libman/Contracts/Dependencies.cs -------------------------------------------------------------------------------- /src/libman/Contracts/HostInteraction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/src/libman/Contracts/HostInteraction.cs -------------------------------------------------------------------------------- /src/libman/Contracts/IHostInteractionInternal.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/src/libman/Contracts/IHostInteractionInternal.cs -------------------------------------------------------------------------------- /src/libman/Contracts/IInputReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/src/libman/Contracts/IInputReader.cs -------------------------------------------------------------------------------- /src/libman/DotNetToolSettings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/src/libman/DotNetToolSettings.xml -------------------------------------------------------------------------------- /src/libman/EnvironmentSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/src/libman/EnvironmentSettings.cs -------------------------------------------------------------------------------- /src/libman/ExitCode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/src/libman/ExitCode.cs -------------------------------------------------------------------------------- /src/libman/GlobalSuppressions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/src/libman/GlobalSuppressions.cs -------------------------------------------------------------------------------- /src/libman/HostEnvironment.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/src/libman/HostEnvironment.cs -------------------------------------------------------------------------------- /src/libman/IHostEnvironment.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/src/libman/IHostEnvironment.cs -------------------------------------------------------------------------------- /src/libman/ILibraryInstallationStateExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/src/libman/ILibraryInstallationStateExtensions.cs -------------------------------------------------------------------------------- /src/libman/LibraryResolver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/src/libman/LibraryResolver.cs -------------------------------------------------------------------------------- /src/libman/ManifestRestorer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/src/libman/ManifestRestorer.cs -------------------------------------------------------------------------------- /src/libman/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/src/libman/Program.cs -------------------------------------------------------------------------------- /src/libman/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/src/libman/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/libman/Resources/Text.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/src/libman/Resources/Text.Designer.cs -------------------------------------------------------------------------------- /src/libman/Resources/Text.cs.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/src/libman/Resources/Text.cs.resx -------------------------------------------------------------------------------- /src/libman/Resources/Text.de.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/src/libman/Resources/Text.de.resx -------------------------------------------------------------------------------- /src/libman/Resources/Text.es.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/src/libman/Resources/Text.es.resx -------------------------------------------------------------------------------- /src/libman/Resources/Text.fr.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/src/libman/Resources/Text.fr.resx -------------------------------------------------------------------------------- /src/libman/Resources/Text.it.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/src/libman/Resources/Text.it.resx -------------------------------------------------------------------------------- /src/libman/Resources/Text.ja.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/src/libman/Resources/Text.ja.resx -------------------------------------------------------------------------------- /src/libman/Resources/Text.ko.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/src/libman/Resources/Text.ko.resx -------------------------------------------------------------------------------- /src/libman/Resources/Text.pl.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/src/libman/Resources/Text.pl.resx -------------------------------------------------------------------------------- /src/libman/Resources/Text.pt-BR.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/src/libman/Resources/Text.pt-BR.resx -------------------------------------------------------------------------------- /src/libman/Resources/Text.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/src/libman/Resources/Text.resx -------------------------------------------------------------------------------- /src/libman/Resources/Text.ru.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/src/libman/Resources/Text.ru.resx -------------------------------------------------------------------------------- /src/libman/Resources/Text.tr.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/src/libman/Resources/Text.tr.resx -------------------------------------------------------------------------------- /src/libman/Resources/Text.zh-Hans.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/src/libman/Resources/Text.zh-Hans.resx -------------------------------------------------------------------------------- /src/libman/Resources/Text.zh-Hant.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/src/libman/Resources/Text.zh-Hant.resx -------------------------------------------------------------------------------- /src/libman/Resources/loc/cs/Resources/Text.resx.lcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/src/libman/Resources/loc/cs/Resources/Text.resx.lcl -------------------------------------------------------------------------------- /src/libman/Resources/loc/de/Resources/Text.resx.lcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/src/libman/Resources/loc/de/Resources/Text.resx.lcl -------------------------------------------------------------------------------- /src/libman/Resources/loc/es/Resources/Text.resx.lcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/src/libman/Resources/loc/es/Resources/Text.resx.lcl -------------------------------------------------------------------------------- /src/libman/Resources/loc/fr/Resources/Text.resx.lcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/src/libman/Resources/loc/fr/Resources/Text.resx.lcl -------------------------------------------------------------------------------- /src/libman/Resources/loc/it/Resources/Text.resx.lcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/src/libman/Resources/loc/it/Resources/Text.resx.lcl -------------------------------------------------------------------------------- /src/libman/Resources/loc/ja/Resources/Text.resx.lcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/src/libman/Resources/loc/ja/Resources/Text.resx.lcl -------------------------------------------------------------------------------- /src/libman/Resources/loc/ko/Resources/Text.resx.lcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/src/libman/Resources/loc/ko/Resources/Text.resx.lcl -------------------------------------------------------------------------------- /src/libman/Resources/loc/pl/Resources/Text.resx.lcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/src/libman/Resources/loc/pl/Resources/Text.resx.lcl -------------------------------------------------------------------------------- /src/libman/Resources/loc/pt-BR/Resources/Text.resx.lcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/src/libman/Resources/loc/pt-BR/Resources/Text.resx.lcl -------------------------------------------------------------------------------- /src/libman/Resources/loc/ru/Resources/Text.resx.lcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/src/libman/Resources/loc/ru/Resources/Text.resx.lcl -------------------------------------------------------------------------------- /src/libman/Resources/loc/tr/Resources/Text.resx.lcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/src/libman/Resources/loc/tr/Resources/Text.resx.lcl -------------------------------------------------------------------------------- /src/libman/Resources/loc/zh-Hans/Resources/Text.resx.lcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/src/libman/Resources/loc/zh-Hans/Resources/Text.resx.lcl -------------------------------------------------------------------------------- /src/libman/Resources/loc/zh-Hant/Resources/Text.resx.lcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/src/libman/Resources/loc/zh-Hant/Resources/Text.resx.lcl -------------------------------------------------------------------------------- /src/libman/libman.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/src/libman/libman.csproj -------------------------------------------------------------------------------- /src/libman/runtimeconfig.template.json: -------------------------------------------------------------------------------- 1 | { 2 | "rollForwardOnNoCandidateFx": 2 3 | } 4 | -------------------------------------------------------------------------------- /src/schema/libman.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/src/schema/libman.json -------------------------------------------------------------------------------- /test/Directory.Build.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/test/Directory.Build.props -------------------------------------------------------------------------------- /test/LibraryManager.Build.IntegrationTest/BuildTestBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/test/LibraryManager.Build.IntegrationTest/BuildTestBase.cs -------------------------------------------------------------------------------- /test/LibraryManager.Build.IntegrationTest/Microsoft.Web.LibraryManager.Build.IntegrationTest.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/test/LibraryManager.Build.IntegrationTest/Microsoft.Web.LibraryManager.Build.IntegrationTest.csproj -------------------------------------------------------------------------------- /test/LibraryManager.Build.IntegrationTest/RestoreTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/test/LibraryManager.Build.IntegrationTest/RestoreTests.cs -------------------------------------------------------------------------------- /test/LibraryManager.Build.IntegrationTest/TestSolution/Directory.Build.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/test/LibraryManager.Build.IntegrationTest/TestSolution/Directory.Build.props -------------------------------------------------------------------------------- /test/LibraryManager.Build.IntegrationTest/TestSolution/Directory.Build.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/test/LibraryManager.Build.IntegrationTest/TestSolution/Directory.Build.targets -------------------------------------------------------------------------------- /test/LibraryManager.Build.IntegrationTest/TestSolution/Directory.Packages.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/test/LibraryManager.Build.IntegrationTest/TestSolution/Directory.Packages.props -------------------------------------------------------------------------------- /test/LibraryManager.Build.IntegrationTest/TestSolution/Libman.Build.TestApp.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/test/LibraryManager.Build.IntegrationTest/TestSolution/Libman.Build.TestApp.sln -------------------------------------------------------------------------------- /test/LibraryManager.Build.IntegrationTest/TestSolution/Libman.Build.TestApp/Libman.Build.TestApp.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/test/LibraryManager.Build.IntegrationTest/TestSolution/Libman.Build.TestApp/Libman.Build.TestApp.csproj -------------------------------------------------------------------------------- /test/LibraryManager.Build.IntegrationTest/TestSolution/Libman.Build.TestApp/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/test/LibraryManager.Build.IntegrationTest/TestSolution/Libman.Build.TestApp/Program.cs -------------------------------------------------------------------------------- /test/LibraryManager.Build.IntegrationTest/TestSolution/Libman.Build.TestApp/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/test/LibraryManager.Build.IntegrationTest/TestSolution/Libman.Build.TestApp/Properties/launchSettings.json -------------------------------------------------------------------------------- /test/LibraryManager.Build.IntegrationTest/TestSolution/Libman.Build.TestApp/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/test/LibraryManager.Build.IntegrationTest/TestSolution/Libman.Build.TestApp/appsettings.Development.json -------------------------------------------------------------------------------- /test/LibraryManager.Build.IntegrationTest/TestSolution/Libman.Build.TestApp/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/test/LibraryManager.Build.IntegrationTest/TestSolution/Libman.Build.TestApp/appsettings.json -------------------------------------------------------------------------------- /test/LibraryManager.Build.IntegrationTest/TestSolution/nuget.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/test/LibraryManager.Build.IntegrationTest/TestSolution/nuget.config -------------------------------------------------------------------------------- /test/LibraryManager.Build.Test/Microsoft.Web.LibraryManager.Build.Test.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/test/LibraryManager.Build.Test/Microsoft.Web.LibraryManager.Build.Test.csproj -------------------------------------------------------------------------------- /test/LibraryManager.Build.Test/MockEngine.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/test/LibraryManager.Build.Test/MockEngine.cs -------------------------------------------------------------------------------- /test/LibraryManager.Build.Test/RestoreTaskTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/test/LibraryManager.Build.Test/RestoreTaskTest.cs -------------------------------------------------------------------------------- /test/LibraryManager.Build.Test/TaskItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/test/LibraryManager.Build.Test/TaskItem.cs -------------------------------------------------------------------------------- /test/LibraryManager.Contracts.Test/Microsoft.Web.LibraryManager.Contracts.Test.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/test/LibraryManager.Contracts.Test/Microsoft.Web.LibraryManager.Contracts.Test.csproj -------------------------------------------------------------------------------- /test/LibraryManager.Contracts.Test/OperationResultTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/test/LibraryManager.Contracts.Test/OperationResultTests.cs -------------------------------------------------------------------------------- /test/LibraryManager.Mocks/Dependencies.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/test/LibraryManager.Mocks/Dependencies.cs -------------------------------------------------------------------------------- /test/LibraryManager.Mocks/Error.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/test/LibraryManager.Mocks/Error.cs -------------------------------------------------------------------------------- /test/LibraryManager.Mocks/HostInteraction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/test/LibraryManager.Mocks/HostInteraction.cs -------------------------------------------------------------------------------- /test/LibraryManager.Mocks/Library.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/test/LibraryManager.Mocks/Library.cs -------------------------------------------------------------------------------- /test/LibraryManager.Mocks/LibraryCatalog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/test/LibraryManager.Mocks/LibraryCatalog.cs -------------------------------------------------------------------------------- /test/LibraryManager.Mocks/LibraryGroup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/test/LibraryManager.Mocks/LibraryGroup.cs -------------------------------------------------------------------------------- /test/LibraryManager.Mocks/LibraryInstallationState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/test/LibraryManager.Mocks/LibraryInstallationState.cs -------------------------------------------------------------------------------- /test/LibraryManager.Mocks/Logger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/test/LibraryManager.Mocks/Logger.cs -------------------------------------------------------------------------------- /test/LibraryManager.Mocks/Microsoft.Web.LibraryManager.Mocks.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/test/LibraryManager.Mocks/Microsoft.Web.LibraryManager.Mocks.csproj -------------------------------------------------------------------------------- /test/LibraryManager.Mocks/Provider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/test/LibraryManager.Mocks/Provider.cs -------------------------------------------------------------------------------- /test/LibraryManager.Mocks/ProviderFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/test/LibraryManager.Mocks/ProviderFactory.cs -------------------------------------------------------------------------------- /test/LibraryManager.Mocks/Settings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/test/LibraryManager.Mocks/Settings.cs -------------------------------------------------------------------------------- /test/LibraryManager.Mocks/WebRequestHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/test/LibraryManager.Mocks/WebRequestHandler.cs -------------------------------------------------------------------------------- /test/LibraryManager.Test/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/test/LibraryManager.Test/.editorconfig -------------------------------------------------------------------------------- /test/LibraryManager.Test/CacheServiceTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/test/LibraryManager.Test/CacheServiceTest.cs -------------------------------------------------------------------------------- /test/LibraryManager.Test/Configuration/ProxySettingsTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/test/LibraryManager.Test/Configuration/ProxySettingsTest.cs -------------------------------------------------------------------------------- /test/LibraryManager.Test/Configuration/SettingsTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/test/LibraryManager.Test/Configuration/SettingsTest.cs -------------------------------------------------------------------------------- /test/LibraryManager.Test/ErrorTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/test/LibraryManager.Test/ErrorTest.cs -------------------------------------------------------------------------------- /test/LibraryManager.Test/ExtensionsTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/test/LibraryManager.Test/ExtensionsTest.cs -------------------------------------------------------------------------------- /test/LibraryManager.Test/FileHelperTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/test/LibraryManager.Test/FileHelperTest.cs -------------------------------------------------------------------------------- /test/LibraryManager.Test/FileHelpersTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/test/LibraryManager.Test/FileHelpersTest.cs -------------------------------------------------------------------------------- /test/LibraryManager.Test/InvalidLibraryExceptionTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/test/LibraryManager.Test/InvalidLibraryExceptionTest.cs -------------------------------------------------------------------------------- /test/LibraryManager.Test/Json/LibraryStateToFileConverterTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/test/LibraryManager.Test/Json/LibraryStateToFileConverterTests.cs -------------------------------------------------------------------------------- /test/LibraryManager.Test/LibrariesValidatorTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/test/LibraryManager.Test/LibrariesValidatorTest.cs -------------------------------------------------------------------------------- /test/LibraryManager.Test/LibraryIdToNameAndVersionConverterTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/test/LibraryManager.Test/LibraryIdToNameAndVersionConverterTest.cs -------------------------------------------------------------------------------- /test/LibraryManager.Test/LibraryInstallationStateTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/test/LibraryManager.Test/LibraryInstallationStateTest.cs -------------------------------------------------------------------------------- /test/LibraryManager.Test/ManifestTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/test/LibraryManager.Test/ManifestTest.cs -------------------------------------------------------------------------------- /test/LibraryManager.Test/Microsoft.Web.LibraryManager.Test.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/test/LibraryManager.Test/Microsoft.Web.LibraryManager.Test.csproj -------------------------------------------------------------------------------- /test/LibraryManager.Test/PathEqualityComparerTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/test/LibraryManager.Test/PathEqualityComparerTest.cs -------------------------------------------------------------------------------- /test/LibraryManager.Test/Providers/BaseProviderTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/test/LibraryManager.Test/Providers/BaseProviderTest.cs -------------------------------------------------------------------------------- /test/LibraryManager.Test/Providers/Cdnjs/CdnjsCatalogTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/test/LibraryManager.Test/Providers/Cdnjs/CdnjsCatalogTest.cs -------------------------------------------------------------------------------- /test/LibraryManager.Test/Providers/Cdnjs/CdnjsProviderFactoryTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/test/LibraryManager.Test/Providers/Cdnjs/CdnjsProviderFactoryTest.cs -------------------------------------------------------------------------------- /test/LibraryManager.Test/Providers/Cdnjs/CdnjsProviderTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/test/LibraryManager.Test/Providers/Cdnjs/CdnjsProviderTest.cs -------------------------------------------------------------------------------- /test/LibraryManager.Test/Providers/FileSystem/FileSystemCatalogTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/test/LibraryManager.Test/Providers/FileSystem/FileSystemCatalogTest.cs -------------------------------------------------------------------------------- /test/LibraryManager.Test/Providers/FileSystem/FileSystemProviderFactoryTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/test/LibraryManager.Test/Providers/FileSystem/FileSystemProviderFactoryTest.cs -------------------------------------------------------------------------------- /test/LibraryManager.Test/Providers/FileSystem/FileSystemProviderTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/test/LibraryManager.Test/Providers/FileSystem/FileSystemProviderTest.cs -------------------------------------------------------------------------------- /test/LibraryManager.Test/Providers/JsDelivr/JsDelivrCatalogTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/test/LibraryManager.Test/Providers/JsDelivr/JsDelivrCatalogTest.cs -------------------------------------------------------------------------------- /test/LibraryManager.Test/Providers/JsDelivr/JsDelivrProviderFactoryTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/test/LibraryManager.Test/Providers/JsDelivr/JsDelivrProviderFactoryTest.cs -------------------------------------------------------------------------------- /test/LibraryManager.Test/Providers/JsDelivr/JsDelivrProviderTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/test/LibraryManager.Test/Providers/JsDelivr/JsDelivrProviderTest.cs -------------------------------------------------------------------------------- /test/LibraryManager.Test/Providers/Unpkg/NpmPackageInfoFactoryTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/test/LibraryManager.Test/Providers/Unpkg/NpmPackageInfoFactoryTest.cs -------------------------------------------------------------------------------- /test/LibraryManager.Test/Providers/Unpkg/NpmPackageInfoTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/test/LibraryManager.Test/Providers/Unpkg/NpmPackageInfoTest.cs -------------------------------------------------------------------------------- /test/LibraryManager.Test/Providers/Unpkg/NpmPackageSearchTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/test/LibraryManager.Test/Providers/Unpkg/NpmPackageSearchTest.cs -------------------------------------------------------------------------------- /test/LibraryManager.Test/Providers/Unpkg/UnpkgCatalogTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/test/LibraryManager.Test/Providers/Unpkg/UnpkgCatalogTest.cs -------------------------------------------------------------------------------- /test/LibraryManager.Test/Providers/Unpkg/UnpkgProviderFactoryTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/test/LibraryManager.Test/Providers/Unpkg/UnpkgProviderFactoryTest.cs -------------------------------------------------------------------------------- /test/LibraryManager.Test/Providers/Unpkg/UnpkgProviderTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/test/LibraryManager.Test/Providers/Unpkg/UnpkgProviderTest.cs -------------------------------------------------------------------------------- /test/LibraryManager.Test/SemanticVersionTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/test/LibraryManager.Test/SemanticVersionTest.cs -------------------------------------------------------------------------------- /test/LibraryManager.Test/SimpleLibraryNamingSchemeTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/test/LibraryManager.Test/SimpleLibraryNamingSchemeTest.cs -------------------------------------------------------------------------------- /test/LibraryManager.Test/TestUtilities/AssertExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/test/LibraryManager.Test/TestUtilities/AssertExtensions.cs -------------------------------------------------------------------------------- /test/LibraryManager.Test/TestUtilities/StringUtility.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/test/LibraryManager.Test/TestUtilities/StringUtility.cs -------------------------------------------------------------------------------- /test/LibraryManager.Test/TestUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/test/LibraryManager.Test/TestUtils.cs -------------------------------------------------------------------------------- /test/LibraryManager.Test/Utilities/FileGlobbingUtilityTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/test/LibraryManager.Test/Utilities/FileGlobbingUtilityTests.cs -------------------------------------------------------------------------------- /test/LibraryManager.Test/Utilities/ParallelUtilityTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/test/LibraryManager.Test/Utilities/ParallelUtilityTests.cs -------------------------------------------------------------------------------- /test/LibraryManager.Test/VersionedLibraryNamingSchemeTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/test/LibraryManager.Test/VersionedLibraryNamingSchemeTest.cs -------------------------------------------------------------------------------- /test/LibraryManager.Vsix.IntegrationTest/FileSaveRestoreTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/test/LibraryManager.Vsix.IntegrationTest/FileSaveRestoreTests.cs -------------------------------------------------------------------------------- /test/LibraryManager.Vsix.IntegrationTest/Helpers/CompletionHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/test/LibraryManager.Vsix.IntegrationTest/Helpers/CompletionHelper.cs -------------------------------------------------------------------------------- /test/LibraryManager.Vsix.IntegrationTest/Helpers/FileIOHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/test/LibraryManager.Vsix.IntegrationTest/Helpers/FileIOHelper.cs -------------------------------------------------------------------------------- /test/LibraryManager.Vsix.IntegrationTest/Helpers/HelperWrapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/test/LibraryManager.Vsix.IntegrationTest/Helpers/HelperWrapper.cs -------------------------------------------------------------------------------- /test/LibraryManager.Vsix.IntegrationTest/InstallDialogTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/test/LibraryManager.Vsix.IntegrationTest/InstallDialogTests.cs -------------------------------------------------------------------------------- /test/LibraryManager.Vsix.IntegrationTest/LibmanCompletionTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/test/LibraryManager.Vsix.IntegrationTest/LibmanCompletionTests.cs -------------------------------------------------------------------------------- /test/LibraryManager.Vsix.IntegrationTest/Microsoft.Web.LibraryManager.Vsix.IntegrationTest.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/test/LibraryManager.Vsix.IntegrationTest/Microsoft.Web.LibraryManager.Vsix.IntegrationTest.csproj -------------------------------------------------------------------------------- /test/LibraryManager.Vsix.IntegrationTest/Services/InstallDialogTestExtension.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/test/LibraryManager.Vsix.IntegrationTest/Services/InstallDialogTestExtension.cs -------------------------------------------------------------------------------- /test/LibraryManager.Vsix.IntegrationTest/Services/InstallDialogTestService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/test/LibraryManager.Vsix.IntegrationTest/Services/InstallDialogTestService.cs -------------------------------------------------------------------------------- /test/LibraryManager.Vsix.IntegrationTest/Services/InstallDialogVerifier.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/test/LibraryManager.Vsix.IntegrationTest/Services/InstallDialogVerifier.cs -------------------------------------------------------------------------------- /test/LibraryManager.Vsix.IntegrationTest/SuggestedActionTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/test/LibraryManager.Vsix.IntegrationTest/SuggestedActionTests.cs -------------------------------------------------------------------------------- /test/LibraryManager.Vsix.IntegrationTest/Suppressions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/test/LibraryManager.Vsix.IntegrationTest/Suppressions.cs -------------------------------------------------------------------------------- /test/LibraryManager.Vsix.IntegrationTest/TestSolution/LooseFiles/filesystem.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/LibraryManager.Vsix.IntegrationTest/TestSolution/TestProjectCore20/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/test/LibraryManager.Vsix.IntegrationTest/TestSolution/TestProjectCore20/Program.cs -------------------------------------------------------------------------------- /test/LibraryManager.Vsix.IntegrationTest/TestSolution/TestProjectCore20/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/test/LibraryManager.Vsix.IntegrationTest/TestSolution/TestProjectCore20/Properties/launchSettings.json -------------------------------------------------------------------------------- /test/LibraryManager.Vsix.IntegrationTest/TestSolution/TestProjectCore20/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/test/LibraryManager.Vsix.IntegrationTest/TestSolution/TestProjectCore20/Startup.cs -------------------------------------------------------------------------------- /test/LibraryManager.Vsix.IntegrationTest/TestSolution/TestProjectCore20/TestProjectCore20.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/test/LibraryManager.Vsix.IntegrationTest/TestSolution/TestProjectCore20/TestProjectCore20.csproj -------------------------------------------------------------------------------- /test/LibraryManager.Vsix.IntegrationTest/TestSolution/TestProjectCore20/libman.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/test/LibraryManager.Vsix.IntegrationTest/TestSolution/TestProjectCore20/libman.json -------------------------------------------------------------------------------- /test/LibraryManager.Vsix.IntegrationTest/TestSolution/TestProjectCore20/wwwroot/js/site.js: -------------------------------------------------------------------------------- 1 | // Write your Javascript code. 2 | -------------------------------------------------------------------------------- /test/LibraryManager.Vsix.IntegrationTest/TestSolution/TestProjectCore20/wwwroot/js/site.min.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/LibraryManager.Vsix.IntegrationTest/TestSolution/TestSolution.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/test/LibraryManager.Vsix.IntegrationTest/TestSolution/TestSolution.sln -------------------------------------------------------------------------------- /test/LibraryManager.Vsix.IntegrationTest/VisualStudioLibmanHostTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/test/LibraryManager.Vsix.IntegrationTest/VisualStudioLibmanHostTests.cs -------------------------------------------------------------------------------- /test/LibraryManager.Vsix.Test/JSONHelpersTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/test/LibraryManager.Vsix.Test/JSONHelpersTest.cs -------------------------------------------------------------------------------- /test/LibraryManager.Vsix.Test/Microsoft.Web.LibraryManager.Vsix.Test.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/test/LibraryManager.Vsix.Test/Microsoft.Web.LibraryManager.Vsix.Test.csproj -------------------------------------------------------------------------------- /test/LibraryManager.Vsix.Test/Mocks/NullSearchService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/test/LibraryManager.Vsix.Test/Mocks/NullSearchService.cs -------------------------------------------------------------------------------- /test/LibraryManager.Vsix.Test/Search/LocationSearchServiceTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/test/LibraryManager.Vsix.Test/Search/LocationSearchServiceTests.cs -------------------------------------------------------------------------------- /test/LibraryManager.Vsix.Test/Search/ProviderCatalogSearchServiceTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/test/LibraryManager.Vsix.Test/Search/ProviderCatalogSearchServiceTests.cs -------------------------------------------------------------------------------- /test/LibraryManager.Vsix.Test/Shared/LibraryCommandServiceTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/test/LibraryManager.Vsix.Test/Shared/LibraryCommandServiceTest.cs -------------------------------------------------------------------------------- /test/LibraryManager.Vsix.Test/UI/Converters/CheckBoxAutomationNameConverterTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/test/LibraryManager.Vsix.Test/UI/Converters/CheckBoxAutomationNameConverterTests.cs -------------------------------------------------------------------------------- /test/LibraryManager.Vsix.Test/UI/Converters/WatermarkVisibilityConverterTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/test/LibraryManager.Vsix.Test/UI/Converters/WatermarkVisibilityConverterTests.cs -------------------------------------------------------------------------------- /test/LibraryManager.Vsix.Test/UI/Models/InstallDialogViewModelTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/test/LibraryManager.Vsix.Test/UI/Models/InstallDialogViewModelTest.cs -------------------------------------------------------------------------------- /test/LibraryManager.Vsix.Test/UI/Models/LibraryIdViewModelTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/test/LibraryManager.Vsix.Test/UI/Models/LibraryIdViewModelTests.cs -------------------------------------------------------------------------------- /test/LibraryManager.Vsix.Test/UI/Models/TargetLocationViewModelTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/test/LibraryManager.Vsix.Test/UI/Models/TargetLocationViewModelTests.cs -------------------------------------------------------------------------------- /test/TestGlobalSuppressions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/test/TestGlobalSuppressions.cs -------------------------------------------------------------------------------- /test/libman.IntegrationTest/CliBaseTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/test/libman.IntegrationTest/CliBaseTest.cs -------------------------------------------------------------------------------- /test/libman.IntegrationTest/InstallTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/test/libman.IntegrationTest/InstallTests.cs -------------------------------------------------------------------------------- /test/libman.IntegrationTest/RestoreTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/test/libman.IntegrationTest/RestoreTests.cs -------------------------------------------------------------------------------- /test/libman.IntegrationTest/TestFiles/EmptyFile.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/libman.IntegrationTest/TestFiles/EmptyFile.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/libman.IntegrationTest/TestFiles/EmptyFile.min.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/libman.IntegrationTest/TestFiles/EmptyFile.min.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/libman.IntegrationTest/libman.IntegrationTest.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/test/libman.IntegrationTest/libman.IntegrationTest.csproj -------------------------------------------------------------------------------- /test/libman.Test/BaseCommandTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/test/libman.Test/BaseCommandTests.cs -------------------------------------------------------------------------------- /test/libman.Test/CommandTestBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/test/libman.Test/CommandTestBase.cs -------------------------------------------------------------------------------- /test/libman.Test/HostInteractionTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/test/libman.Test/HostInteractionTests.cs -------------------------------------------------------------------------------- /test/libman.Test/LibmanCacheCleanTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/test/libman.Test/LibmanCacheCleanTests.cs -------------------------------------------------------------------------------- /test/libman.Test/LibmanCacheListTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/test/libman.Test/LibmanCacheListTest.cs -------------------------------------------------------------------------------- /test/libman.Test/LibmanCleanTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/test/libman.Test/LibmanCleanTest.cs -------------------------------------------------------------------------------- /test/libman.Test/LibmanConfigTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/test/libman.Test/LibmanConfigTest.cs -------------------------------------------------------------------------------- /test/libman.Test/LibmanInitTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/test/libman.Test/LibmanInitTests.cs -------------------------------------------------------------------------------- /test/libman.Test/LibmanInstallTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/test/libman.Test/LibmanInstallTest.cs -------------------------------------------------------------------------------- /test/libman.Test/LibmanRestoreTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/test/libman.Test/LibmanRestoreTest.cs -------------------------------------------------------------------------------- /test/libman.Test/LibmanUninstallTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/test/libman.Test/LibmanUninstallTest.cs -------------------------------------------------------------------------------- /test/libman.Test/LibmanUpdateTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/test/libman.Test/LibmanUpdateTest.cs -------------------------------------------------------------------------------- /test/libman.Test/LibraryResolverTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/test/libman.Test/LibraryResolverTest.cs -------------------------------------------------------------------------------- /test/libman.Test/Mocks/HostEnvironment.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/test/libman.Test/Mocks/HostEnvironment.cs -------------------------------------------------------------------------------- /test/libman.Test/Mocks/HostInteractionInternal.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/test/libman.Test/Mocks/HostInteractionInternal.cs -------------------------------------------------------------------------------- /test/libman.Test/SampleTestCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/test/libman.Test/SampleTestCommand.cs -------------------------------------------------------------------------------- /test/libman.Test/StringNewLineHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/test/libman.Test/StringNewLineHelper.cs -------------------------------------------------------------------------------- /test/libman.Test/TestEnvironmentHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/test/libman.Test/TestEnvironmentHelper.cs -------------------------------------------------------------------------------- /test/libman.Test/TestInputReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/test/libman.Test/TestInputReader.cs -------------------------------------------------------------------------------- /test/libman.Test/TestLogger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/test/libman.Test/TestLogger.cs -------------------------------------------------------------------------------- /test/libman.Test/libman.Test.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/test/libman.Test/libman.Test.csproj -------------------------------------------------------------------------------- /version.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/LibraryManager/HEAD/version.json --------------------------------------------------------------------------------