├── .config ├── 1espt │ └── PipelineAutobaseliningConfig.yml ├── guardian │ └── .gdnbaselines └── tsaoptions.json ├── .editorconfig ├── .gitattributes ├── .github └── ISSUE_TEMPLATE │ ├── Bug_Report.yml │ ├── Documentation_Issue.yml │ ├── Feature_Request.yml │ ├── PULL_REQUEST_TEMPLATE.md │ └── config.yml ├── .gitignore ├── .vscode └── settings.json ├── CODEOWNERS ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── SECURITY.md ├── SUPPORT.md ├── Tools └── PowershellModule │ ├── doc │ ├── PowerShell │ │ ├── Add-WinGetManifest.md │ │ ├── Find-WinGetManifest.md │ │ ├── Get-WinGetManifest.md │ │ ├── New-WinGetSource.md │ │ ├── Remove-WinGetManifest.md │ │ └── Update-WinGetSource.md │ ├── README.md │ └── WingetRestSource.md │ └── src │ ├── Library │ ├── Add-AzureResourceGroup.ps1 │ ├── Add-WinGetManifest.ps1 │ ├── Connect-ToAzure.ps1 │ ├── Find-WinGetManifest.ps1 │ ├── Get-WinGetManifest.ps1 │ ├── New-ARMObjects.ps1 │ ├── New-ARMParameterObjects.ps1 │ ├── New-MicrosoftEntraIdApp.ps1 │ ├── New-WinGetSource.ps1 │ ├── Remove-WinGetManifest.ps1 │ ├── Test-ARMTemplates.ps1 │ ├── Test-ConnectionToAzure.ps1 │ ├── Test-PowerShellModuleExist.ps1 │ ├── Test-WinGetManifest.ps1 │ ├── Update-WinGetSource.ps1 │ └── WinGetManifest.ps1 │ ├── Microsoft.WinGet.RestSource.psd1 │ └── Microsoft.WinGet.RestSource.psm1 ├── documentation ├── WinGet-1.0.0.yaml ├── WinGet-1.1.0.yaml ├── WinGet-1.10.0.yaml ├── WinGet-1.4.0.yaml ├── WinGet-1.5.0.yaml ├── WinGet-1.6.0.yaml ├── WinGet-1.7.0.yaml └── WinGet-1.9.0.yaml ├── pipelines ├── publish-powershell-module.yml ├── templates │ ├── copy-and-publish-powershell.yml │ ├── copy.yml │ ├── publish.yml │ ├── restore-build-publish-test.yml │ ├── run-integrationtests.yml │ ├── run-unittests.yml │ └── sign-azure-function.yml ├── winget-cli-restsource-ci-pr.yml └── winget-cli-restsource-ci.yml ├── scripts └── Release │ ├── managedsak_onetime_setup.ps1 │ ├── passwordlessRole.json │ ├── rotate_function_keys.ps1 │ ├── saksecret_refresh.ps1 │ ├── service_principals_roles.ps1 │ ├── set_keyvaultsecret.ps1 │ └── winget_rotate_cosmosDB.ps1 └── src ├── Microsoft.WindowsPackageManager.Rest ├── Diagnostics │ ├── AzureFunctionLogger.cs │ ├── DiagnosticEvent.cs │ ├── DiagnosticsHelper.cs │ ├── GenevaLogger.cs │ ├── GenevaMetrics.cs │ └── LoggingContext.cs ├── Interfaces │ └── IFunctionInput.cs ├── Microsoft.WindowsPackageManager.Rest.csproj ├── Models │ ├── CommitContextAndReferenceInput.cs │ ├── ContextAndReferenceInput.cs │ ├── ReferenceType.cs │ ├── SourceResultOutputHelper.cs │ └── SourceResultType.cs └── Utils │ ├── AzureFunctionHelper.cs │ ├── JsonHelper.cs │ ├── RequestBodyHelper.cs │ └── RetryHelper.cs ├── NuGet.config ├── WinGet.RestSource.AppConfig ├── FeatureFlag.cs ├── IWinGetAppConfig.cs ├── README.md ├── WinGet.RestSource.AppConfig.csproj └── WinGetAppConfig.cs ├── WinGet.RestSource.Functions ├── Common │ ├── ActionResultHelper.cs │ └── ApiObjectResult.cs ├── Constants │ ├── AzureFunctionEnvironment.cs │ └── FunctionConstants.cs ├── Extensions │ └── DurableOrchestrationExtensions.cs ├── Geneva │ ├── Constants.cs │ └── Metrics.cs ├── InstallerFunctions.cs ├── LocaleFunctions.cs ├── ManifestSearchFunctions.cs ├── PackageFunctions.cs ├── PackageManifestFunctions.cs ├── Properties │ ├── AssemblyInfo.cs │ └── launchSettings.json ├── ServerFunctions.cs ├── SourceFunctions.cs ├── Startup.cs ├── VersionFunctions.cs ├── WinGet.RestSource.Functions.csproj ├── generate_self_sign_cert.ps1 ├── host.json └── local.settings.template.json ├── WinGet.RestSource.Fuzzing ├── Fuzzer.cs ├── OneFuzzConfig.json └── WinGet.RestSource.Fuzzing.csproj ├── WinGet.RestSource.Infrastructure ├── Deployment.targets ├── Parameters │ ├── AppConfig │ │ ├── appconfig.int.centus.json │ │ ├── appconfig.int.westus.json │ │ ├── appconfig.pme.centus.json │ │ ├── appconfig.pme.westus.json │ │ ├── appconfig.ppe.centus.json │ │ ├── appconfig.ppe.westus.json │ │ └── appconfig.test.westus.json │ ├── AppServicePlan_Geneva │ │ ├── asp_geneva.int.centus.json │ │ ├── asp_geneva.int.westus.json │ │ ├── asp_geneva.pme.centus.json │ │ ├── asp_geneva.pme.westus.json │ │ ├── asp_geneva.ppe.centus.json │ │ ├── asp_geneva.ppe.westus.json │ │ └── asp_geneva.test.westus.json │ ├── ApplicationInsights │ │ ├── applicationinsights.int.json │ │ ├── applicationinsights.pme.json │ │ ├── applicationinsights.ppe.json │ │ └── applicationinsights.test.json │ ├── AzureFunction │ │ ├── azurefunction.deployment.json │ │ ├── azurefunction.int.centus.json │ │ ├── azurefunction.int.westus.json │ │ ├── azurefunction.pme.centus.json │ │ ├── azurefunction.pme.westus.json │ │ ├── azurefunction.ppe.centus.json │ │ ├── azurefunction.ppe.westus.json │ │ └── azurefunction.test.westus.json │ ├── CosmosDB │ │ ├── cosmosdb-sql-container.int.json │ │ ├── cosmosdb-sql-container.pme.json │ │ ├── cosmosdb-sql-container.ppe.json │ │ ├── cosmosdb-sql-container.test.json │ │ ├── cosmosdb-sql.int.json │ │ ├── cosmosdb-sql.pme.json │ │ ├── cosmosdb-sql.ppe.json │ │ ├── cosmosdb-sql.test.json │ │ ├── cosmosdb.int.json │ │ ├── cosmosdb.pme.json │ │ ├── cosmosdb.ppe.json │ │ └── cosmosdb.test.json │ ├── FrontDoor │ │ ├── frontdoor.int.json │ │ ├── frontdoor.pme.json │ │ ├── frontdoor.ppe.json │ │ └── frontdoor.test.json │ ├── KeyVault │ │ ├── keyvault.int.json │ │ ├── keyvault.pme.json │ │ ├── keyvault.ppe.json │ │ └── keyvault.test.json │ ├── KeyVaultConfiguration │ │ ├── keyvaultconfiguration.int.json │ │ ├── keyvaultconfiguration.pme.json │ │ ├── keyvaultconfiguration.ppe.json │ │ └── keyvaultconfiguration.test.json │ ├── Roles │ │ ├── roles.int.json │ │ ├── roles.pme.json │ │ ├── roles.ppe.json │ │ └── roles.test.json │ └── StorageAccount │ │ ├── storageaccount.int.centus.json │ │ ├── storageaccount.int.westus.json │ │ ├── storageaccount.pme.centus.json │ │ ├── storageaccount.pme.westus.json │ │ ├── storageaccount.ppe.centus.json │ │ ├── storageaccount.ppe.westus.json │ │ └── storageaccount.test.westus.json ├── README.MD ├── Templates │ ├── ApiManagement │ │ └── apimanagement.json │ ├── AppConfig │ │ └── appconfig.json │ ├── AppServicePlan │ │ └── asp.json │ ├── AppServicePlan_Geneva │ │ └── asp_geneva.json │ ├── ApplicationInsights │ │ ├── applicationinsights.json │ │ └── loganalytics.json │ ├── AzureFunction │ │ └── azurefunction.json │ ├── CosmosDB │ │ ├── cosmosdb-sql-container.json │ │ ├── cosmosdb-sql.json │ │ └── cosmosdb.json │ ├── FrontDoor │ │ └── frontdoor.json │ ├── KeyVault │ │ └── keyvault.json │ ├── KeyVaultConfiguration │ │ └── keyvaultconfiguration.json │ └── StorageAccount │ │ └── storageaccount.json └── WinGet.RestSource.Infrastructure.deployproj ├── WinGet.RestSource.IntegrationTest ├── Common │ ├── BaseTestData.cs │ ├── EndPointRequest.cs │ ├── Fixtures │ │ ├── IntegrationTestCollection.cs │ │ └── IntegrationTestFixture.cs │ ├── Helpers │ │ ├── ManifestSearchTestHelper.cs │ │ ├── PackageTestHelper.cs │ │ └── SearchResponseTestHelper.cs │ ├── IStorageCleanup.cs │ ├── IStorageSetup.cs │ ├── StorageCleanup.cs │ ├── StorageSetup.cs │ └── TestCollateral.cs ├── Model │ └── ConfigSettings.cs ├── Test.runsettings.template.json ├── TestCollateral │ ├── Manifests │ │ ├── azure-cli-search.json │ │ ├── code-lite-search.json │ │ ├── fake-manifest-placeholder.json │ │ ├── powertoys-search.json │ │ ├── powertoys.json │ │ └── vs-code-search.json │ └── RequestFiles │ │ ├── match-type-exact.json │ │ ├── match-type-non-existent.json │ │ ├── match-type-startswith.json │ │ └── match-type-substring.json ├── Tests │ └── Functions │ │ ├── ManifestSearchFunctionsTests.cs │ │ ├── PackageFunctionsTests.cs │ │ ├── PackageManifestFunctionsTests.cs │ │ └── TestData │ │ ├── ManifestSearchFunctionDataFactory.cs │ │ ├── ManifestSearchFunctionTestData.cs │ │ ├── PackageManifestVersionTestData.cs │ │ ├── PackageTestData.cs │ │ ├── PackageVersionTestData.cs │ │ └── TestDataConstants.cs └── WinGet.RestSource.IntegrationTest.csproj ├── WinGet.RestSource.PowershellSupport ├── AddDllSearchDirectory.cs ├── WinGet.RestSource.PowershellSupport.csproj └── YamlToRestConverter.cs ├── WinGet.RestSource.UnitTest ├── Common │ ├── Mocks │ │ └── MoqHTTPRequest.cs │ ├── TestCollateralHelper.cs │ └── TestUtils.cs ├── Test.runsettings.template.json ├── TestCollateral │ ├── CosmosPackageManifests │ │ └── manifests.json │ ├── Database │ │ └── testIndex.db │ ├── TestManifests │ │ ├── Atest.test.0.0.0.1.yaml │ │ ├── Etest.test.0.0.0.1.yaml │ │ ├── Rtest.test.0.0.0.1.yaml │ │ └── Rtest.test.0.0.0.2.yaml │ └── TestMultiManifest │ │ ├── Multifile.MsixTest.installer.yaml │ │ ├── Multifile.MsixTest.locale.en-US.yaml │ │ └── Multifile.MsixTest.yaml ├── Tests │ ├── AzFunctions │ │ └── SourceFunctionsTests.cs │ ├── Functions │ │ └── Common │ │ │ └── ApiObjectResultTest.cs │ ├── PowerShellSupport │ │ └── YamlToRestConverterTests.cs │ ├── RestSource │ │ ├── Cosmos │ │ │ └── CosmosDataStoreTests.cs │ │ ├── Helpers │ │ │ └── RestSourceTriggerFunctionsTests.cs │ │ ├── Operation │ │ │ ├── RebuildTests.cs │ │ │ └── UpdateTests.cs │ │ └── Sql │ │ │ └── SqlReaderTests.cs │ ├── Utils │ │ └── Common │ │ │ ├── EnvironmentVariables.cs │ │ │ └── FormatJSONTest.cs │ └── WindowsPackageManager.Rest │ │ └── Utils │ │ ├── JSONHelpersTests.cs │ │ └── RetryHelperTests.cs └── WinGet.RestSource.UnitTest.csproj ├── WinGet.RestSource.Utils ├── Common │ ├── ApiContinuationToken.cs │ ├── ApiDataPage.cs │ ├── FormatJSON.cs │ ├── HeaderProcessor.cs │ ├── IApiDataStore.cs │ ├── Parser.cs │ ├── PredicateBuilder.cs │ ├── StringEncoder.cs │ └── UnsupportedAndRequiredFieldsHelper.cs ├── Constants │ ├── ApiConstants.cs │ ├── CosmosConnectionConstants.cs │ ├── Enumerations │ │ ├── AuthenticationType.cs │ │ ├── MatchType.cs │ │ └── PackageMatchFields.cs │ ├── ErrorConstants.cs │ ├── FunctionSettingsConstants.cs │ ├── HeaderConstants.cs │ └── QueryConstants.cs ├── Exceptions │ ├── CosmosDatabaseException.cs │ ├── DefaultException.cs │ ├── ForbiddenException.cs │ └── InvalidArgumentException.cs ├── Extensions │ └── HttpClientExtensions.cs ├── Models │ ├── ApiResponse.cs │ ├── Arrays │ │ ├── Agreements.cs │ │ ├── ApiVersions.cs │ │ ├── AppsAndFeaturesEntries.cs │ │ ├── AppsAndFeaturesEntryVersions.cs │ │ ├── Capabilities.cs │ │ ├── Commands.cs │ │ ├── Dependencies.cs │ │ ├── Documentations.cs │ │ ├── ExpectedReturnCodes.cs │ │ ├── FileExtensions.cs │ │ ├── Icons.cs │ │ ├── InstallModes.cs │ │ ├── InstallationMetadataFiles.cs │ │ ├── InstallerSuccessCodes.cs │ │ ├── Markets.cs │ │ ├── NestedInstallerFiles.cs │ │ ├── PackageDependency.cs │ │ ├── PackageFamilyNames.cs │ │ ├── PackageMatchFields.cs │ │ ├── Platform.cs │ │ ├── ProductCodes.cs │ │ ├── Protocols.cs │ │ ├── QueryParameters.cs │ │ ├── RestrictedCapabilities.cs │ │ ├── SearchRequestPackageMatchFilter.cs │ │ ├── SearchVersions.cs │ │ ├── Tags.cs │ │ ├── UnsupportedArguments.cs │ │ └── UnsupportedOSArchitectures.cs │ ├── Core │ │ ├── ApiArray.cs │ │ ├── IApiData.cs │ │ └── IApiObject.cs │ ├── Errors │ │ └── InternalRestError.cs │ ├── ExtendedSchemas │ │ ├── VersionExtended.cs │ │ └── VersionsExtended.cs │ ├── GetPackageManifestApiResponse.cs │ ├── ManifestSearch.cs │ ├── Objects │ │ ├── AppsAndFeatures.cs │ │ ├── Authentication.cs │ │ ├── Dependencies.cs │ │ ├── Documentation.cs │ │ ├── ExpectedReturnCode.cs │ │ ├── Icon.cs │ │ ├── InstallationMetadata.cs │ │ ├── InstallationMetadataFile.cs │ │ ├── InstallerSwitches.cs │ │ ├── Markets.cs │ │ ├── MicrosoftEntraIdAuthenticationInfo.cs │ │ ├── NestedInstallerFile.cs │ │ ├── PackageDependency.cs │ │ ├── SearchRequestMatch.cs │ │ ├── SearchRequestPackageMatchFilter.cs │ │ ├── SearchVersion.cs │ │ ├── SourceAgreement.cs │ │ └── SourceAgreementExtended.cs │ ├── Schemas │ │ ├── DefaultLocale.cs │ │ ├── Information.cs │ │ ├── Installer.cs │ │ ├── Installers.cs │ │ ├── Locale.cs │ │ ├── Locales.cs │ │ ├── ManifestSearchRequest.cs │ │ ├── ManifestSearchResponse.cs │ │ ├── Package.cs │ │ ├── PackageManifest.cs │ │ ├── Version.cs │ │ └── Versions.cs │ └── SearchApiResponse.cs ├── Utils │ └── PackageManifestUtils.cs ├── Validators │ ├── ApiDataValidator.cs │ ├── DateTimeValidators │ │ ├── ApiDateTimeValidator.cs │ │ └── ReleaseDateValidator.cs │ ├── EnumValidators │ │ ├── ApiEnumValidator.cs │ │ ├── ArchitectureValidator.cs │ │ ├── AuthenticationTypeValidator.cs │ │ ├── ElevationRequirementValidator.cs │ │ ├── ExpectedReturnCodeResponseValidator.cs │ │ ├── FileTypeValidator.cs │ │ ├── IconFileTypeValidator.cs │ │ ├── IconResolutionValidator.cs │ │ ├── IconThemeValidator.cs │ │ ├── InstallModeValidator.cs │ │ ├── InstallerTypeValidator.cs │ │ ├── MatchTypeValidator.cs │ │ ├── NestedInstallerTypeValidator.cs │ │ ├── PackageMatchFieldValidator.cs │ │ ├── PlatformValidator.cs │ │ ├── RepairBehaviorValidator.cs │ │ ├── ScopeValidator.cs │ │ ├── UnsupportedArgumentValidator.cs │ │ ├── UnsupportedOSArchitecturesValidator.cs │ │ └── UpgradeBehaviorValidator.cs │ └── StringValidators │ │ ├── AgreementLabelValidator.cs │ │ ├── AgreementValidator.cs │ │ ├── AgreementsIdentifierValidator.cs │ │ ├── ApiStringValidator.cs │ │ ├── ApiVersionValidator.cs │ │ ├── AppsAndFeaturesEntryVersionValidator.cs │ │ ├── AuthorValidator.cs │ │ ├── CapabilitiesValidator.cs │ │ ├── ChannelValidator.cs │ │ ├── CommandsValidator.cs │ │ ├── ContinuationTokenValidator.cs │ │ ├── CopyrightValidator.cs │ │ ├── CustomSwitchValidator.cs │ │ ├── DefaultInstallLocationValidator.cs │ │ ├── DependenciesValidator.cs │ │ ├── DescriptionValidator.cs │ │ ├── DisplayAndPublisherNameValidator.cs │ │ ├── DisplayNameValidator.cs │ │ ├── DocumentLabelValidator.cs │ │ ├── FileExtensionsValidator.cs │ │ ├── IApiStringValidator.cs │ │ ├── InstallationMetadataFileRelativeFilePathValidator.cs │ │ ├── InstallationNotesValidator.cs │ │ ├── InstallerIdentifierValidator.cs │ │ ├── InvocationParameterValidator.cs │ │ ├── KeyWordValidator.cs │ │ ├── LicenseValidator.cs │ │ ├── LocaleValidator.cs │ │ ├── MSStoreProductIdentifierValidator.cs │ │ ├── MarketValidator.cs │ │ ├── MicrosoftEntraIdResourceScopeValidator.cs │ │ ├── MicrosoftEntraIdResourceValidator.cs │ │ ├── MinimumOSVersionValidator.cs │ │ ├── NestedInstallerFileRelativeFilePathValidator.cs │ │ ├── PackageDependencyVersionValidator.cs │ │ ├── PackageFamilyNameValidator.cs │ │ ├── PackageIdentifierValidator.cs │ │ ├── PackageNameValidator.cs │ │ ├── PackageVersionValidator.cs │ │ ├── PortableCommandAliasValidator.cs │ │ ├── ProductCodeValidator.cs │ │ ├── ProtocolsValidator.cs │ │ ├── PublisherValidator.cs │ │ ├── ReleaseNotesValidator.cs │ │ ├── Sha256Validator.cs │ │ ├── ShortDescriptionValidator.cs │ │ ├── SourceIdentifierValidator.cs │ │ ├── SwitchValidator.cs │ │ ├── TagValidator.cs │ │ └── UrlValidator.cs └── WinGet.RestSource.Utils.csproj ├── WinGet.RestSource.sln ├── WinGet.RestSource ├── Cosmos │ ├── CosmosDataStore.cs │ ├── CosmosDatabase.cs │ ├── CosmosDocument.cs │ ├── CosmosPackageManifest.cs │ └── PredicateGenerator.cs ├── Exceptions │ └── RestSourceCallException.cs ├── Factories │ ├── RebuildFactory.cs │ └── UpdateFactory.cs ├── Helpers │ └── RestSourceTriggerFunctions.cs ├── Interfaces │ ├── ICosmosDatabase.cs │ ├── ICosmosIdDocument.cs │ ├── IRebuild.cs │ ├── IRestSourceTriggerFunction.cs │ └── IUpdate.cs ├── Operations │ ├── Rebuild.cs │ └── Update.cs ├── Properties │ └── AssemblyInfo.cs ├── Sql │ ├── SqlPackage.cs │ ├── SqlReader.cs │ └── SqlVersion.cs └── WinGet.RestSource.csproj └── stylecop.json /.config/1espt/PipelineAutobaseliningConfig.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winget-cli-restsource/HEAD/.config/1espt/PipelineAutobaseliningConfig.yml -------------------------------------------------------------------------------- /.config/guardian/.gdnbaselines: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winget-cli-restsource/HEAD/.config/guardian/.gdnbaselines -------------------------------------------------------------------------------- /.config/tsaoptions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winget-cli-restsource/HEAD/.config/tsaoptions.json -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winget-cli-restsource/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winget-cli-restsource/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/Bug_Report.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winget-cli-restsource/HEAD/.github/ISSUE_TEMPLATE/Bug_Report.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/Documentation_Issue.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winget-cli-restsource/HEAD/.github/ISSUE_TEMPLATE/Documentation_Issue.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/Feature_Request.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winget-cli-restsource/HEAD/.github/ISSUE_TEMPLATE/Feature_Request.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winget-cli-restsource/HEAD/.github/ISSUE_TEMPLATE/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winget-cli-restsource/HEAD/.github/ISSUE_TEMPLATE/config.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winget-cli-restsource/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winget-cli-restsource/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /CODEOWNERS: -------------------------------------------------------------------------------- 1 | * @microsoft/windows-package-manager-admins 2 | -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winget-cli-restsource/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winget-cli-restsource/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winget-cli-restsource/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winget-cli-restsource/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winget-cli-restsource/HEAD/SECURITY.md -------------------------------------------------------------------------------- /SUPPORT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winget-cli-restsource/HEAD/SUPPORT.md -------------------------------------------------------------------------------- /Tools/PowershellModule/doc/PowerShell/Add-WinGetManifest.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winget-cli-restsource/HEAD/Tools/PowershellModule/doc/PowerShell/Add-WinGetManifest.md -------------------------------------------------------------------------------- /Tools/PowershellModule/doc/PowerShell/Find-WinGetManifest.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winget-cli-restsource/HEAD/Tools/PowershellModule/doc/PowerShell/Find-WinGetManifest.md -------------------------------------------------------------------------------- /Tools/PowershellModule/doc/PowerShell/Get-WinGetManifest.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winget-cli-restsource/HEAD/Tools/PowershellModule/doc/PowerShell/Get-WinGetManifest.md -------------------------------------------------------------------------------- /Tools/PowershellModule/doc/PowerShell/New-WinGetSource.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winget-cli-restsource/HEAD/Tools/PowershellModule/doc/PowerShell/New-WinGetSource.md -------------------------------------------------------------------------------- /Tools/PowershellModule/doc/PowerShell/Remove-WinGetManifest.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winget-cli-restsource/HEAD/Tools/PowershellModule/doc/PowerShell/Remove-WinGetManifest.md -------------------------------------------------------------------------------- /Tools/PowershellModule/doc/PowerShell/Update-WinGetSource.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winget-cli-restsource/HEAD/Tools/PowershellModule/doc/PowerShell/Update-WinGetSource.md -------------------------------------------------------------------------------- /Tools/PowershellModule/doc/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winget-cli-restsource/HEAD/Tools/PowershellModule/doc/README.md -------------------------------------------------------------------------------- /Tools/PowershellModule/doc/WingetRestSource.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winget-cli-restsource/HEAD/Tools/PowershellModule/doc/WingetRestSource.md -------------------------------------------------------------------------------- /Tools/PowershellModule/src/Library/Add-AzureResourceGroup.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winget-cli-restsource/HEAD/Tools/PowershellModule/src/Library/Add-AzureResourceGroup.ps1 -------------------------------------------------------------------------------- /Tools/PowershellModule/src/Library/Add-WinGetManifest.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winget-cli-restsource/HEAD/Tools/PowershellModule/src/Library/Add-WinGetManifest.ps1 -------------------------------------------------------------------------------- /Tools/PowershellModule/src/Library/Connect-ToAzure.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winget-cli-restsource/HEAD/Tools/PowershellModule/src/Library/Connect-ToAzure.ps1 -------------------------------------------------------------------------------- /Tools/PowershellModule/src/Library/Find-WinGetManifest.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winget-cli-restsource/HEAD/Tools/PowershellModule/src/Library/Find-WinGetManifest.ps1 -------------------------------------------------------------------------------- /Tools/PowershellModule/src/Library/Get-WinGetManifest.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winget-cli-restsource/HEAD/Tools/PowershellModule/src/Library/Get-WinGetManifest.ps1 -------------------------------------------------------------------------------- /Tools/PowershellModule/src/Library/New-ARMObjects.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winget-cli-restsource/HEAD/Tools/PowershellModule/src/Library/New-ARMObjects.ps1 -------------------------------------------------------------------------------- /Tools/PowershellModule/src/Library/New-ARMParameterObjects.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winget-cli-restsource/HEAD/Tools/PowershellModule/src/Library/New-ARMParameterObjects.ps1 -------------------------------------------------------------------------------- /Tools/PowershellModule/src/Library/New-MicrosoftEntraIdApp.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winget-cli-restsource/HEAD/Tools/PowershellModule/src/Library/New-MicrosoftEntraIdApp.ps1 -------------------------------------------------------------------------------- /Tools/PowershellModule/src/Library/New-WinGetSource.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winget-cli-restsource/HEAD/Tools/PowershellModule/src/Library/New-WinGetSource.ps1 -------------------------------------------------------------------------------- /Tools/PowershellModule/src/Library/Remove-WinGetManifest.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winget-cli-restsource/HEAD/Tools/PowershellModule/src/Library/Remove-WinGetManifest.ps1 -------------------------------------------------------------------------------- /Tools/PowershellModule/src/Library/Test-ARMTemplates.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winget-cli-restsource/HEAD/Tools/PowershellModule/src/Library/Test-ARMTemplates.ps1 -------------------------------------------------------------------------------- /Tools/PowershellModule/src/Library/Test-ConnectionToAzure.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winget-cli-restsource/HEAD/Tools/PowershellModule/src/Library/Test-ConnectionToAzure.ps1 -------------------------------------------------------------------------------- /Tools/PowershellModule/src/Library/Test-PowerShellModuleExist.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winget-cli-restsource/HEAD/Tools/PowershellModule/src/Library/Test-PowerShellModuleExist.ps1 -------------------------------------------------------------------------------- /Tools/PowershellModule/src/Library/Test-WinGetManifest.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winget-cli-restsource/HEAD/Tools/PowershellModule/src/Library/Test-WinGetManifest.ps1 -------------------------------------------------------------------------------- /Tools/PowershellModule/src/Library/Update-WinGetSource.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winget-cli-restsource/HEAD/Tools/PowershellModule/src/Library/Update-WinGetSource.ps1 -------------------------------------------------------------------------------- /Tools/PowershellModule/src/Library/WinGetManifest.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winget-cli-restsource/HEAD/Tools/PowershellModule/src/Library/WinGetManifest.ps1 -------------------------------------------------------------------------------- /Tools/PowershellModule/src/Microsoft.WinGet.RestSource.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winget-cli-restsource/HEAD/Tools/PowershellModule/src/Microsoft.WinGet.RestSource.psd1 -------------------------------------------------------------------------------- /Tools/PowershellModule/src/Microsoft.WinGet.RestSource.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winget-cli-restsource/HEAD/Tools/PowershellModule/src/Microsoft.WinGet.RestSource.psm1 -------------------------------------------------------------------------------- /documentation/WinGet-1.0.0.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winget-cli-restsource/HEAD/documentation/WinGet-1.0.0.yaml -------------------------------------------------------------------------------- /documentation/WinGet-1.1.0.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winget-cli-restsource/HEAD/documentation/WinGet-1.1.0.yaml -------------------------------------------------------------------------------- /documentation/WinGet-1.10.0.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winget-cli-restsource/HEAD/documentation/WinGet-1.10.0.yaml -------------------------------------------------------------------------------- /documentation/WinGet-1.4.0.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winget-cli-restsource/HEAD/documentation/WinGet-1.4.0.yaml -------------------------------------------------------------------------------- /documentation/WinGet-1.5.0.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winget-cli-restsource/HEAD/documentation/WinGet-1.5.0.yaml -------------------------------------------------------------------------------- /documentation/WinGet-1.6.0.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winget-cli-restsource/HEAD/documentation/WinGet-1.6.0.yaml -------------------------------------------------------------------------------- /documentation/WinGet-1.7.0.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winget-cli-restsource/HEAD/documentation/WinGet-1.7.0.yaml -------------------------------------------------------------------------------- /documentation/WinGet-1.9.0.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winget-cli-restsource/HEAD/documentation/WinGet-1.9.0.yaml -------------------------------------------------------------------------------- /pipelines/publish-powershell-module.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winget-cli-restsource/HEAD/pipelines/publish-powershell-module.yml -------------------------------------------------------------------------------- /pipelines/templates/copy-and-publish-powershell.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winget-cli-restsource/HEAD/pipelines/templates/copy-and-publish-powershell.yml -------------------------------------------------------------------------------- /pipelines/templates/copy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winget-cli-restsource/HEAD/pipelines/templates/copy.yml -------------------------------------------------------------------------------- /pipelines/templates/publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winget-cli-restsource/HEAD/pipelines/templates/publish.yml -------------------------------------------------------------------------------- /pipelines/templates/restore-build-publish-test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winget-cli-restsource/HEAD/pipelines/templates/restore-build-publish-test.yml -------------------------------------------------------------------------------- /pipelines/templates/run-integrationtests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winget-cli-restsource/HEAD/pipelines/templates/run-integrationtests.yml -------------------------------------------------------------------------------- /pipelines/templates/run-unittests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winget-cli-restsource/HEAD/pipelines/templates/run-unittests.yml -------------------------------------------------------------------------------- /pipelines/templates/sign-azure-function.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winget-cli-restsource/HEAD/pipelines/templates/sign-azure-function.yml -------------------------------------------------------------------------------- /pipelines/winget-cli-restsource-ci-pr.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winget-cli-restsource/HEAD/pipelines/winget-cli-restsource-ci-pr.yml -------------------------------------------------------------------------------- /pipelines/winget-cli-restsource-ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winget-cli-restsource/HEAD/pipelines/winget-cli-restsource-ci.yml -------------------------------------------------------------------------------- /scripts/Release/managedsak_onetime_setup.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winget-cli-restsource/HEAD/scripts/Release/managedsak_onetime_setup.ps1 -------------------------------------------------------------------------------- /scripts/Release/passwordlessRole.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winget-cli-restsource/HEAD/scripts/Release/passwordlessRole.json -------------------------------------------------------------------------------- /scripts/Release/rotate_function_keys.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winget-cli-restsource/HEAD/scripts/Release/rotate_function_keys.ps1 -------------------------------------------------------------------------------- /scripts/Release/saksecret_refresh.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winget-cli-restsource/HEAD/scripts/Release/saksecret_refresh.ps1 -------------------------------------------------------------------------------- /scripts/Release/service_principals_roles.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winget-cli-restsource/HEAD/scripts/Release/service_principals_roles.ps1 -------------------------------------------------------------------------------- /scripts/Release/set_keyvaultsecret.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winget-cli-restsource/HEAD/scripts/Release/set_keyvaultsecret.ps1 -------------------------------------------------------------------------------- /scripts/Release/winget_rotate_cosmosDB.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winget-cli-restsource/HEAD/scripts/Release/winget_rotate_cosmosDB.ps1 -------------------------------------------------------------------------------- /src/Microsoft.WindowsPackageManager.Rest/Diagnostics/AzureFunctionLogger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winget-cli-restsource/HEAD/src/Microsoft.WindowsPackageManager.Rest/Diagnostics/AzureFunctionLogger.cs -------------------------------------------------------------------------------- /src/Microsoft.WindowsPackageManager.Rest/Diagnostics/DiagnosticEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winget-cli-restsource/HEAD/src/Microsoft.WindowsPackageManager.Rest/Diagnostics/DiagnosticEvent.cs -------------------------------------------------------------------------------- /src/Microsoft.WindowsPackageManager.Rest/Diagnostics/DiagnosticsHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winget-cli-restsource/HEAD/src/Microsoft.WindowsPackageManager.Rest/Diagnostics/DiagnosticsHelper.cs -------------------------------------------------------------------------------- /src/Microsoft.WindowsPackageManager.Rest/Diagnostics/GenevaLogger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winget-cli-restsource/HEAD/src/Microsoft.WindowsPackageManager.Rest/Diagnostics/GenevaLogger.cs -------------------------------------------------------------------------------- /src/Microsoft.WindowsPackageManager.Rest/Diagnostics/GenevaMetrics.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winget-cli-restsource/HEAD/src/Microsoft.WindowsPackageManager.Rest/Diagnostics/GenevaMetrics.cs -------------------------------------------------------------------------------- /src/Microsoft.WindowsPackageManager.Rest/Diagnostics/LoggingContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winget-cli-restsource/HEAD/src/Microsoft.WindowsPackageManager.Rest/Diagnostics/LoggingContext.cs -------------------------------------------------------------------------------- /src/Microsoft.WindowsPackageManager.Rest/Interfaces/IFunctionInput.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winget-cli-restsource/HEAD/src/Microsoft.WindowsPackageManager.Rest/Interfaces/IFunctionInput.cs -------------------------------------------------------------------------------- /src/Microsoft.WindowsPackageManager.Rest/Microsoft.WindowsPackageManager.Rest.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winget-cli-restsource/HEAD/src/Microsoft.WindowsPackageManager.Rest/Microsoft.WindowsPackageManager.Rest.csproj -------------------------------------------------------------------------------- /src/Microsoft.WindowsPackageManager.Rest/Models/CommitContextAndReferenceInput.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winget-cli-restsource/HEAD/src/Microsoft.WindowsPackageManager.Rest/Models/CommitContextAndReferenceInput.cs -------------------------------------------------------------------------------- /src/Microsoft.WindowsPackageManager.Rest/Models/ContextAndReferenceInput.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winget-cli-restsource/HEAD/src/Microsoft.WindowsPackageManager.Rest/Models/ContextAndReferenceInput.cs -------------------------------------------------------------------------------- /src/Microsoft.WindowsPackageManager.Rest/Models/ReferenceType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winget-cli-restsource/HEAD/src/Microsoft.WindowsPackageManager.Rest/Models/ReferenceType.cs -------------------------------------------------------------------------------- /src/Microsoft.WindowsPackageManager.Rest/Models/SourceResultOutputHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winget-cli-restsource/HEAD/src/Microsoft.WindowsPackageManager.Rest/Models/SourceResultOutputHelper.cs -------------------------------------------------------------------------------- /src/Microsoft.WindowsPackageManager.Rest/Models/SourceResultType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winget-cli-restsource/HEAD/src/Microsoft.WindowsPackageManager.Rest/Models/SourceResultType.cs -------------------------------------------------------------------------------- /src/Microsoft.WindowsPackageManager.Rest/Utils/AzureFunctionHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winget-cli-restsource/HEAD/src/Microsoft.WindowsPackageManager.Rest/Utils/AzureFunctionHelper.cs -------------------------------------------------------------------------------- /src/Microsoft.WindowsPackageManager.Rest/Utils/JsonHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winget-cli-restsource/HEAD/src/Microsoft.WindowsPackageManager.Rest/Utils/JsonHelper.cs -------------------------------------------------------------------------------- /src/Microsoft.WindowsPackageManager.Rest/Utils/RequestBodyHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winget-cli-restsource/HEAD/src/Microsoft.WindowsPackageManager.Rest/Utils/RequestBodyHelper.cs -------------------------------------------------------------------------------- /src/Microsoft.WindowsPackageManager.Rest/Utils/RetryHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winget-cli-restsource/HEAD/src/Microsoft.WindowsPackageManager.Rest/Utils/RetryHelper.cs -------------------------------------------------------------------------------- /src/NuGet.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winget-cli-restsource/HEAD/src/NuGet.config -------------------------------------------------------------------------------- /src/WinGet.RestSource.AppConfig/FeatureFlag.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winget-cli-restsource/HEAD/src/WinGet.RestSource.AppConfig/FeatureFlag.cs -------------------------------------------------------------------------------- /src/WinGet.RestSource.AppConfig/IWinGetAppConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winget-cli-restsource/HEAD/src/WinGet.RestSource.AppConfig/IWinGetAppConfig.cs -------------------------------------------------------------------------------- /src/WinGet.RestSource.AppConfig/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winget-cli-restsource/HEAD/src/WinGet.RestSource.AppConfig/README.md -------------------------------------------------------------------------------- /src/WinGet.RestSource.AppConfig/WinGet.RestSource.AppConfig.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winget-cli-restsource/HEAD/src/WinGet.RestSource.AppConfig/WinGet.RestSource.AppConfig.csproj -------------------------------------------------------------------------------- /src/WinGet.RestSource.AppConfig/WinGetAppConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winget-cli-restsource/HEAD/src/WinGet.RestSource.AppConfig/WinGetAppConfig.cs -------------------------------------------------------------------------------- /src/WinGet.RestSource.Functions/Common/ActionResultHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winget-cli-restsource/HEAD/src/WinGet.RestSource.Functions/Common/ActionResultHelper.cs -------------------------------------------------------------------------------- /src/WinGet.RestSource.Functions/Common/ApiObjectResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winget-cli-restsource/HEAD/src/WinGet.RestSource.Functions/Common/ApiObjectResult.cs -------------------------------------------------------------------------------- /src/WinGet.RestSource.Functions/Constants/AzureFunctionEnvironment.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winget-cli-restsource/HEAD/src/WinGet.RestSource.Functions/Constants/AzureFunctionEnvironment.cs -------------------------------------------------------------------------------- /src/WinGet.RestSource.Functions/Constants/FunctionConstants.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winget-cli-restsource/HEAD/src/WinGet.RestSource.Functions/Constants/FunctionConstants.cs -------------------------------------------------------------------------------- /src/WinGet.RestSource.Functions/Extensions/DurableOrchestrationExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winget-cli-restsource/HEAD/src/WinGet.RestSource.Functions/Extensions/DurableOrchestrationExtensions.cs -------------------------------------------------------------------------------- /src/WinGet.RestSource.Functions/Geneva/Constants.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winget-cli-restsource/HEAD/src/WinGet.RestSource.Functions/Geneva/Constants.cs -------------------------------------------------------------------------------- /src/WinGet.RestSource.Functions/Geneva/Metrics.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winget-cli-restsource/HEAD/src/WinGet.RestSource.Functions/Geneva/Metrics.cs -------------------------------------------------------------------------------- /src/WinGet.RestSource.Functions/InstallerFunctions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winget-cli-restsource/HEAD/src/WinGet.RestSource.Functions/InstallerFunctions.cs -------------------------------------------------------------------------------- /src/WinGet.RestSource.Functions/LocaleFunctions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winget-cli-restsource/HEAD/src/WinGet.RestSource.Functions/LocaleFunctions.cs -------------------------------------------------------------------------------- /src/WinGet.RestSource.Functions/ManifestSearchFunctions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winget-cli-restsource/HEAD/src/WinGet.RestSource.Functions/ManifestSearchFunctions.cs -------------------------------------------------------------------------------- /src/WinGet.RestSource.Functions/PackageFunctions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winget-cli-restsource/HEAD/src/WinGet.RestSource.Functions/PackageFunctions.cs -------------------------------------------------------------------------------- /src/WinGet.RestSource.Functions/PackageManifestFunctions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winget-cli-restsource/HEAD/src/WinGet.RestSource.Functions/PackageManifestFunctions.cs -------------------------------------------------------------------------------- /src/WinGet.RestSource.Functions/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winget-cli-restsource/HEAD/src/WinGet.RestSource.Functions/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/WinGet.RestSource.Functions/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winget-cli-restsource/HEAD/src/WinGet.RestSource.Functions/Properties/launchSettings.json -------------------------------------------------------------------------------- /src/WinGet.RestSource.Functions/ServerFunctions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winget-cli-restsource/HEAD/src/WinGet.RestSource.Functions/ServerFunctions.cs -------------------------------------------------------------------------------- /src/WinGet.RestSource.Functions/SourceFunctions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winget-cli-restsource/HEAD/src/WinGet.RestSource.Functions/SourceFunctions.cs -------------------------------------------------------------------------------- /src/WinGet.RestSource.Functions/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winget-cli-restsource/HEAD/src/WinGet.RestSource.Functions/Startup.cs -------------------------------------------------------------------------------- /src/WinGet.RestSource.Functions/VersionFunctions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winget-cli-restsource/HEAD/src/WinGet.RestSource.Functions/VersionFunctions.cs -------------------------------------------------------------------------------- /src/WinGet.RestSource.Functions/WinGet.RestSource.Functions.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winget-cli-restsource/HEAD/src/WinGet.RestSource.Functions/WinGet.RestSource.Functions.csproj -------------------------------------------------------------------------------- /src/WinGet.RestSource.Functions/generate_self_sign_cert.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winget-cli-restsource/HEAD/src/WinGet.RestSource.Functions/generate_self_sign_cert.ps1 -------------------------------------------------------------------------------- /src/WinGet.RestSource.Functions/host.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winget-cli-restsource/HEAD/src/WinGet.RestSource.Functions/host.json -------------------------------------------------------------------------------- /src/WinGet.RestSource.Functions/local.settings.template.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winget-cli-restsource/HEAD/src/WinGet.RestSource.Functions/local.settings.template.json -------------------------------------------------------------------------------- /src/WinGet.RestSource.Fuzzing/Fuzzer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winget-cli-restsource/HEAD/src/WinGet.RestSource.Fuzzing/Fuzzer.cs -------------------------------------------------------------------------------- /src/WinGet.RestSource.Fuzzing/OneFuzzConfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winget-cli-restsource/HEAD/src/WinGet.RestSource.Fuzzing/OneFuzzConfig.json -------------------------------------------------------------------------------- /src/WinGet.RestSource.Fuzzing/WinGet.RestSource.Fuzzing.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winget-cli-restsource/HEAD/src/WinGet.RestSource.Fuzzing/WinGet.RestSource.Fuzzing.csproj -------------------------------------------------------------------------------- /src/WinGet.RestSource.Infrastructure/Deployment.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winget-cli-restsource/HEAD/src/WinGet.RestSource.Infrastructure/Deployment.targets -------------------------------------------------------------------------------- /src/WinGet.RestSource.Infrastructure/Parameters/AppConfig/appconfig.int.centus.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winget-cli-restsource/HEAD/src/WinGet.RestSource.Infrastructure/Parameters/AppConfig/appconfig.int.centus.json -------------------------------------------------------------------------------- /src/WinGet.RestSource.Infrastructure/Parameters/AppConfig/appconfig.int.westus.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winget-cli-restsource/HEAD/src/WinGet.RestSource.Infrastructure/Parameters/AppConfig/appconfig.int.westus.json -------------------------------------------------------------------------------- /src/WinGet.RestSource.Infrastructure/Parameters/AppConfig/appconfig.pme.centus.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winget-cli-restsource/HEAD/src/WinGet.RestSource.Infrastructure/Parameters/AppConfig/appconfig.pme.centus.json -------------------------------------------------------------------------------- /src/WinGet.RestSource.Infrastructure/Parameters/AppConfig/appconfig.pme.westus.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winget-cli-restsource/HEAD/src/WinGet.RestSource.Infrastructure/Parameters/AppConfig/appconfig.pme.westus.json -------------------------------------------------------------------------------- /src/WinGet.RestSource.Infrastructure/Parameters/AppConfig/appconfig.ppe.centus.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winget-cli-restsource/HEAD/src/WinGet.RestSource.Infrastructure/Parameters/AppConfig/appconfig.ppe.centus.json -------------------------------------------------------------------------------- /src/WinGet.RestSource.Infrastructure/Parameters/AppConfig/appconfig.ppe.westus.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winget-cli-restsource/HEAD/src/WinGet.RestSource.Infrastructure/Parameters/AppConfig/appconfig.ppe.westus.json -------------------------------------------------------------------------------- /src/WinGet.RestSource.Infrastructure/Parameters/AppConfig/appconfig.test.westus.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winget-cli-restsource/HEAD/src/WinGet.RestSource.Infrastructure/Parameters/AppConfig/appconfig.test.westus.json -------------------------------------------------------------------------------- /src/WinGet.RestSource.Infrastructure/Parameters/AppServicePlan_Geneva/asp_geneva.int.centus.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winget-cli-restsource/HEAD/src/WinGet.RestSource.Infrastructure/Parameters/AppServicePlan_Geneva/asp_geneva.int.centus.json -------------------------------------------------------------------------------- /src/WinGet.RestSource.Infrastructure/Parameters/AppServicePlan_Geneva/asp_geneva.int.westus.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winget-cli-restsource/HEAD/src/WinGet.RestSource.Infrastructure/Parameters/AppServicePlan_Geneva/asp_geneva.int.westus.json -------------------------------------------------------------------------------- /src/WinGet.RestSource.Infrastructure/Parameters/AppServicePlan_Geneva/asp_geneva.pme.centus.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winget-cli-restsource/HEAD/src/WinGet.RestSource.Infrastructure/Parameters/AppServicePlan_Geneva/asp_geneva.pme.centus.json -------------------------------------------------------------------------------- /src/WinGet.RestSource.Infrastructure/Parameters/AppServicePlan_Geneva/asp_geneva.pme.westus.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winget-cli-restsource/HEAD/src/WinGet.RestSource.Infrastructure/Parameters/AppServicePlan_Geneva/asp_geneva.pme.westus.json -------------------------------------------------------------------------------- /src/WinGet.RestSource.Infrastructure/Parameters/AppServicePlan_Geneva/asp_geneva.ppe.centus.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winget-cli-restsource/HEAD/src/WinGet.RestSource.Infrastructure/Parameters/AppServicePlan_Geneva/asp_geneva.ppe.centus.json -------------------------------------------------------------------------------- /src/WinGet.RestSource.Infrastructure/Parameters/AppServicePlan_Geneva/asp_geneva.ppe.westus.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winget-cli-restsource/HEAD/src/WinGet.RestSource.Infrastructure/Parameters/AppServicePlan_Geneva/asp_geneva.ppe.westus.json -------------------------------------------------------------------------------- /src/WinGet.RestSource.Infrastructure/Parameters/AppServicePlan_Geneva/asp_geneva.test.westus.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winget-cli-restsource/HEAD/src/WinGet.RestSource.Infrastructure/Parameters/AppServicePlan_Geneva/asp_geneva.test.westus.json -------------------------------------------------------------------------------- /src/WinGet.RestSource.Infrastructure/Parameters/ApplicationInsights/applicationinsights.int.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winget-cli-restsource/HEAD/src/WinGet.RestSource.Infrastructure/Parameters/ApplicationInsights/applicationinsights.int.json -------------------------------------------------------------------------------- /src/WinGet.RestSource.Infrastructure/Parameters/ApplicationInsights/applicationinsights.pme.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winget-cli-restsource/HEAD/src/WinGet.RestSource.Infrastructure/Parameters/ApplicationInsights/applicationinsights.pme.json -------------------------------------------------------------------------------- /src/WinGet.RestSource.Infrastructure/Parameters/ApplicationInsights/applicationinsights.ppe.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winget-cli-restsource/HEAD/src/WinGet.RestSource.Infrastructure/Parameters/ApplicationInsights/applicationinsights.ppe.json -------------------------------------------------------------------------------- /src/WinGet.RestSource.Infrastructure/Parameters/ApplicationInsights/applicationinsights.test.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winget-cli-restsource/HEAD/src/WinGet.RestSource.Infrastructure/Parameters/ApplicationInsights/applicationinsights.test.json -------------------------------------------------------------------------------- /src/WinGet.RestSource.Infrastructure/Parameters/AzureFunction/azurefunction.deployment.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winget-cli-restsource/HEAD/src/WinGet.RestSource.Infrastructure/Parameters/AzureFunction/azurefunction.deployment.json -------------------------------------------------------------------------------- /src/WinGet.RestSource.Infrastructure/Parameters/AzureFunction/azurefunction.int.centus.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winget-cli-restsource/HEAD/src/WinGet.RestSource.Infrastructure/Parameters/AzureFunction/azurefunction.int.centus.json -------------------------------------------------------------------------------- /src/WinGet.RestSource.Infrastructure/Parameters/AzureFunction/azurefunction.int.westus.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winget-cli-restsource/HEAD/src/WinGet.RestSource.Infrastructure/Parameters/AzureFunction/azurefunction.int.westus.json -------------------------------------------------------------------------------- /src/WinGet.RestSource.Infrastructure/Parameters/AzureFunction/azurefunction.pme.centus.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winget-cli-restsource/HEAD/src/WinGet.RestSource.Infrastructure/Parameters/AzureFunction/azurefunction.pme.centus.json -------------------------------------------------------------------------------- /src/WinGet.RestSource.Infrastructure/Parameters/AzureFunction/azurefunction.pme.westus.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winget-cli-restsource/HEAD/src/WinGet.RestSource.Infrastructure/Parameters/AzureFunction/azurefunction.pme.westus.json -------------------------------------------------------------------------------- /src/WinGet.RestSource.Infrastructure/Parameters/AzureFunction/azurefunction.ppe.centus.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winget-cli-restsource/HEAD/src/WinGet.RestSource.Infrastructure/Parameters/AzureFunction/azurefunction.ppe.centus.json -------------------------------------------------------------------------------- /src/WinGet.RestSource.Infrastructure/Parameters/AzureFunction/azurefunction.ppe.westus.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winget-cli-restsource/HEAD/src/WinGet.RestSource.Infrastructure/Parameters/AzureFunction/azurefunction.ppe.westus.json -------------------------------------------------------------------------------- /src/WinGet.RestSource.Infrastructure/Parameters/AzureFunction/azurefunction.test.westus.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winget-cli-restsource/HEAD/src/WinGet.RestSource.Infrastructure/Parameters/AzureFunction/azurefunction.test.westus.json -------------------------------------------------------------------------------- /src/WinGet.RestSource.Infrastructure/Parameters/CosmosDB/cosmosdb-sql-container.int.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winget-cli-restsource/HEAD/src/WinGet.RestSource.Infrastructure/Parameters/CosmosDB/cosmosdb-sql-container.int.json -------------------------------------------------------------------------------- /src/WinGet.RestSource.Infrastructure/Parameters/CosmosDB/cosmosdb-sql-container.pme.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winget-cli-restsource/HEAD/src/WinGet.RestSource.Infrastructure/Parameters/CosmosDB/cosmosdb-sql-container.pme.json -------------------------------------------------------------------------------- /src/WinGet.RestSource.Infrastructure/Parameters/CosmosDB/cosmosdb-sql-container.ppe.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winget-cli-restsource/HEAD/src/WinGet.RestSource.Infrastructure/Parameters/CosmosDB/cosmosdb-sql-container.ppe.json -------------------------------------------------------------------------------- /src/WinGet.RestSource.Infrastructure/Parameters/CosmosDB/cosmosdb-sql-container.test.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winget-cli-restsource/HEAD/src/WinGet.RestSource.Infrastructure/Parameters/CosmosDB/cosmosdb-sql-container.test.json -------------------------------------------------------------------------------- /src/WinGet.RestSource.Infrastructure/Parameters/CosmosDB/cosmosdb-sql.int.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winget-cli-restsource/HEAD/src/WinGet.RestSource.Infrastructure/Parameters/CosmosDB/cosmosdb-sql.int.json -------------------------------------------------------------------------------- /src/WinGet.RestSource.Infrastructure/Parameters/CosmosDB/cosmosdb-sql.pme.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winget-cli-restsource/HEAD/src/WinGet.RestSource.Infrastructure/Parameters/CosmosDB/cosmosdb-sql.pme.json -------------------------------------------------------------------------------- /src/WinGet.RestSource.Infrastructure/Parameters/CosmosDB/cosmosdb-sql.ppe.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winget-cli-restsource/HEAD/src/WinGet.RestSource.Infrastructure/Parameters/CosmosDB/cosmosdb-sql.ppe.json -------------------------------------------------------------------------------- /src/WinGet.RestSource.Infrastructure/Parameters/CosmosDB/cosmosdb-sql.test.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winget-cli-restsource/HEAD/src/WinGet.RestSource.Infrastructure/Parameters/CosmosDB/cosmosdb-sql.test.json -------------------------------------------------------------------------------- /src/WinGet.RestSource.Infrastructure/Parameters/CosmosDB/cosmosdb.int.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winget-cli-restsource/HEAD/src/WinGet.RestSource.Infrastructure/Parameters/CosmosDB/cosmosdb.int.json -------------------------------------------------------------------------------- /src/WinGet.RestSource.Infrastructure/Parameters/CosmosDB/cosmosdb.pme.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winget-cli-restsource/HEAD/src/WinGet.RestSource.Infrastructure/Parameters/CosmosDB/cosmosdb.pme.json -------------------------------------------------------------------------------- /src/WinGet.RestSource.Infrastructure/Parameters/CosmosDB/cosmosdb.ppe.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winget-cli-restsource/HEAD/src/WinGet.RestSource.Infrastructure/Parameters/CosmosDB/cosmosdb.ppe.json -------------------------------------------------------------------------------- /src/WinGet.RestSource.Infrastructure/Parameters/CosmosDB/cosmosdb.test.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winget-cli-restsource/HEAD/src/WinGet.RestSource.Infrastructure/Parameters/CosmosDB/cosmosdb.test.json -------------------------------------------------------------------------------- /src/WinGet.RestSource.Infrastructure/Parameters/FrontDoor/frontdoor.int.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winget-cli-restsource/HEAD/src/WinGet.RestSource.Infrastructure/Parameters/FrontDoor/frontdoor.int.json -------------------------------------------------------------------------------- /src/WinGet.RestSource.Infrastructure/Parameters/FrontDoor/frontdoor.pme.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winget-cli-restsource/HEAD/src/WinGet.RestSource.Infrastructure/Parameters/FrontDoor/frontdoor.pme.json -------------------------------------------------------------------------------- /src/WinGet.RestSource.Infrastructure/Parameters/FrontDoor/frontdoor.ppe.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winget-cli-restsource/HEAD/src/WinGet.RestSource.Infrastructure/Parameters/FrontDoor/frontdoor.ppe.json -------------------------------------------------------------------------------- /src/WinGet.RestSource.Infrastructure/Parameters/FrontDoor/frontdoor.test.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winget-cli-restsource/HEAD/src/WinGet.RestSource.Infrastructure/Parameters/FrontDoor/frontdoor.test.json -------------------------------------------------------------------------------- /src/WinGet.RestSource.Infrastructure/Parameters/KeyVault/keyvault.int.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winget-cli-restsource/HEAD/src/WinGet.RestSource.Infrastructure/Parameters/KeyVault/keyvault.int.json -------------------------------------------------------------------------------- /src/WinGet.RestSource.Infrastructure/Parameters/KeyVault/keyvault.pme.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winget-cli-restsource/HEAD/src/WinGet.RestSource.Infrastructure/Parameters/KeyVault/keyvault.pme.json -------------------------------------------------------------------------------- /src/WinGet.RestSource.Infrastructure/Parameters/KeyVault/keyvault.ppe.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winget-cli-restsource/HEAD/src/WinGet.RestSource.Infrastructure/Parameters/KeyVault/keyvault.ppe.json -------------------------------------------------------------------------------- /src/WinGet.RestSource.Infrastructure/Parameters/KeyVault/keyvault.test.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winget-cli-restsource/HEAD/src/WinGet.RestSource.Infrastructure/Parameters/KeyVault/keyvault.test.json -------------------------------------------------------------------------------- /src/WinGet.RestSource.Infrastructure/Parameters/KeyVaultConfiguration/keyvaultconfiguration.int.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winget-cli-restsource/HEAD/src/WinGet.RestSource.Infrastructure/Parameters/KeyVaultConfiguration/keyvaultconfiguration.int.json -------------------------------------------------------------------------------- /src/WinGet.RestSource.Infrastructure/Parameters/KeyVaultConfiguration/keyvaultconfiguration.pme.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winget-cli-restsource/HEAD/src/WinGet.RestSource.Infrastructure/Parameters/KeyVaultConfiguration/keyvaultconfiguration.pme.json -------------------------------------------------------------------------------- /src/WinGet.RestSource.Infrastructure/Parameters/KeyVaultConfiguration/keyvaultconfiguration.ppe.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winget-cli-restsource/HEAD/src/WinGet.RestSource.Infrastructure/Parameters/KeyVaultConfiguration/keyvaultconfiguration.ppe.json -------------------------------------------------------------------------------- /src/WinGet.RestSource.Infrastructure/Parameters/KeyVaultConfiguration/keyvaultconfiguration.test.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winget-cli-restsource/HEAD/src/WinGet.RestSource.Infrastructure/Parameters/KeyVaultConfiguration/keyvaultconfiguration.test.json -------------------------------------------------------------------------------- /src/WinGet.RestSource.Infrastructure/Parameters/Roles/roles.int.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winget-cli-restsource/HEAD/src/WinGet.RestSource.Infrastructure/Parameters/Roles/roles.int.json -------------------------------------------------------------------------------- /src/WinGet.RestSource.Infrastructure/Parameters/Roles/roles.pme.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winget-cli-restsource/HEAD/src/WinGet.RestSource.Infrastructure/Parameters/Roles/roles.pme.json -------------------------------------------------------------------------------- /src/WinGet.RestSource.Infrastructure/Parameters/Roles/roles.ppe.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winget-cli-restsource/HEAD/src/WinGet.RestSource.Infrastructure/Parameters/Roles/roles.ppe.json -------------------------------------------------------------------------------- /src/WinGet.RestSource.Infrastructure/Parameters/Roles/roles.test.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winget-cli-restsource/HEAD/src/WinGet.RestSource.Infrastructure/Parameters/Roles/roles.test.json -------------------------------------------------------------------------------- /src/WinGet.RestSource.Infrastructure/Parameters/StorageAccount/storageaccount.int.centus.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winget-cli-restsource/HEAD/src/WinGet.RestSource.Infrastructure/Parameters/StorageAccount/storageaccount.int.centus.json -------------------------------------------------------------------------------- /src/WinGet.RestSource.Infrastructure/Parameters/StorageAccount/storageaccount.int.westus.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winget-cli-restsource/HEAD/src/WinGet.RestSource.Infrastructure/Parameters/StorageAccount/storageaccount.int.westus.json -------------------------------------------------------------------------------- /src/WinGet.RestSource.Infrastructure/Parameters/StorageAccount/storageaccount.pme.centus.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winget-cli-restsource/HEAD/src/WinGet.RestSource.Infrastructure/Parameters/StorageAccount/storageaccount.pme.centus.json -------------------------------------------------------------------------------- /src/WinGet.RestSource.Infrastructure/Parameters/StorageAccount/storageaccount.pme.westus.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winget-cli-restsource/HEAD/src/WinGet.RestSource.Infrastructure/Parameters/StorageAccount/storageaccount.pme.westus.json -------------------------------------------------------------------------------- /src/WinGet.RestSource.Infrastructure/Parameters/StorageAccount/storageaccount.ppe.centus.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winget-cli-restsource/HEAD/src/WinGet.RestSource.Infrastructure/Parameters/StorageAccount/storageaccount.ppe.centus.json -------------------------------------------------------------------------------- /src/WinGet.RestSource.Infrastructure/Parameters/StorageAccount/storageaccount.ppe.westus.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winget-cli-restsource/HEAD/src/WinGet.RestSource.Infrastructure/Parameters/StorageAccount/storageaccount.ppe.westus.json -------------------------------------------------------------------------------- /src/WinGet.RestSource.Infrastructure/Parameters/StorageAccount/storageaccount.test.westus.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winget-cli-restsource/HEAD/src/WinGet.RestSource.Infrastructure/Parameters/StorageAccount/storageaccount.test.westus.json -------------------------------------------------------------------------------- /src/WinGet.RestSource.Infrastructure/README.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winget-cli-restsource/HEAD/src/WinGet.RestSource.Infrastructure/README.MD -------------------------------------------------------------------------------- /src/WinGet.RestSource.Infrastructure/Templates/ApiManagement/apimanagement.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winget-cli-restsource/HEAD/src/WinGet.RestSource.Infrastructure/Templates/ApiManagement/apimanagement.json -------------------------------------------------------------------------------- /src/WinGet.RestSource.Infrastructure/Templates/AppConfig/appconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winget-cli-restsource/HEAD/src/WinGet.RestSource.Infrastructure/Templates/AppConfig/appconfig.json -------------------------------------------------------------------------------- /src/WinGet.RestSource.Infrastructure/Templates/AppServicePlan/asp.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winget-cli-restsource/HEAD/src/WinGet.RestSource.Infrastructure/Templates/AppServicePlan/asp.json -------------------------------------------------------------------------------- /src/WinGet.RestSource.Infrastructure/Templates/AppServicePlan_Geneva/asp_geneva.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winget-cli-restsource/HEAD/src/WinGet.RestSource.Infrastructure/Templates/AppServicePlan_Geneva/asp_geneva.json -------------------------------------------------------------------------------- /src/WinGet.RestSource.Infrastructure/Templates/ApplicationInsights/applicationinsights.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winget-cli-restsource/HEAD/src/WinGet.RestSource.Infrastructure/Templates/ApplicationInsights/applicationinsights.json -------------------------------------------------------------------------------- /src/WinGet.RestSource.Infrastructure/Templates/ApplicationInsights/loganalytics.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winget-cli-restsource/HEAD/src/WinGet.RestSource.Infrastructure/Templates/ApplicationInsights/loganalytics.json -------------------------------------------------------------------------------- /src/WinGet.RestSource.Infrastructure/Templates/AzureFunction/azurefunction.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winget-cli-restsource/HEAD/src/WinGet.RestSource.Infrastructure/Templates/AzureFunction/azurefunction.json -------------------------------------------------------------------------------- /src/WinGet.RestSource.Infrastructure/Templates/CosmosDB/cosmosdb-sql-container.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winget-cli-restsource/HEAD/src/WinGet.RestSource.Infrastructure/Templates/CosmosDB/cosmosdb-sql-container.json -------------------------------------------------------------------------------- /src/WinGet.RestSource.Infrastructure/Templates/CosmosDB/cosmosdb-sql.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winget-cli-restsource/HEAD/src/WinGet.RestSource.Infrastructure/Templates/CosmosDB/cosmosdb-sql.json -------------------------------------------------------------------------------- /src/WinGet.RestSource.Infrastructure/Templates/CosmosDB/cosmosdb.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winget-cli-restsource/HEAD/src/WinGet.RestSource.Infrastructure/Templates/CosmosDB/cosmosdb.json -------------------------------------------------------------------------------- /src/WinGet.RestSource.Infrastructure/Templates/FrontDoor/frontdoor.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winget-cli-restsource/HEAD/src/WinGet.RestSource.Infrastructure/Templates/FrontDoor/frontdoor.json -------------------------------------------------------------------------------- /src/WinGet.RestSource.Infrastructure/Templates/KeyVault/keyvault.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winget-cli-restsource/HEAD/src/WinGet.RestSource.Infrastructure/Templates/KeyVault/keyvault.json -------------------------------------------------------------------------------- /src/WinGet.RestSource.Infrastructure/Templates/KeyVaultConfiguration/keyvaultconfiguration.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winget-cli-restsource/HEAD/src/WinGet.RestSource.Infrastructure/Templates/KeyVaultConfiguration/keyvaultconfiguration.json -------------------------------------------------------------------------------- /src/WinGet.RestSource.Infrastructure/Templates/StorageAccount/storageaccount.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winget-cli-restsource/HEAD/src/WinGet.RestSource.Infrastructure/Templates/StorageAccount/storageaccount.json -------------------------------------------------------------------------------- /src/WinGet.RestSource.Infrastructure/WinGet.RestSource.Infrastructure.deployproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winget-cli-restsource/HEAD/src/WinGet.RestSource.Infrastructure/WinGet.RestSource.Infrastructure.deployproj -------------------------------------------------------------------------------- /src/WinGet.RestSource.IntegrationTest/Common/BaseTestData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winget-cli-restsource/HEAD/src/WinGet.RestSource.IntegrationTest/Common/BaseTestData.cs -------------------------------------------------------------------------------- /src/WinGet.RestSource.IntegrationTest/Common/EndPointRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winget-cli-restsource/HEAD/src/WinGet.RestSource.IntegrationTest/Common/EndPointRequest.cs -------------------------------------------------------------------------------- /src/WinGet.RestSource.IntegrationTest/Common/Fixtures/IntegrationTestCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winget-cli-restsource/HEAD/src/WinGet.RestSource.IntegrationTest/Common/Fixtures/IntegrationTestCollection.cs -------------------------------------------------------------------------------- /src/WinGet.RestSource.IntegrationTest/Common/Fixtures/IntegrationTestFixture.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winget-cli-restsource/HEAD/src/WinGet.RestSource.IntegrationTest/Common/Fixtures/IntegrationTestFixture.cs -------------------------------------------------------------------------------- /src/WinGet.RestSource.IntegrationTest/Common/Helpers/ManifestSearchTestHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winget-cli-restsource/HEAD/src/WinGet.RestSource.IntegrationTest/Common/Helpers/ManifestSearchTestHelper.cs -------------------------------------------------------------------------------- /src/WinGet.RestSource.IntegrationTest/Common/Helpers/PackageTestHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winget-cli-restsource/HEAD/src/WinGet.RestSource.IntegrationTest/Common/Helpers/PackageTestHelper.cs -------------------------------------------------------------------------------- /src/WinGet.RestSource.IntegrationTest/Common/Helpers/SearchResponseTestHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winget-cli-restsource/HEAD/src/WinGet.RestSource.IntegrationTest/Common/Helpers/SearchResponseTestHelper.cs -------------------------------------------------------------------------------- /src/WinGet.RestSource.IntegrationTest/Common/IStorageCleanup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winget-cli-restsource/HEAD/src/WinGet.RestSource.IntegrationTest/Common/IStorageCleanup.cs -------------------------------------------------------------------------------- /src/WinGet.RestSource.IntegrationTest/Common/IStorageSetup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winget-cli-restsource/HEAD/src/WinGet.RestSource.IntegrationTest/Common/IStorageSetup.cs -------------------------------------------------------------------------------- /src/WinGet.RestSource.IntegrationTest/Common/StorageCleanup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winget-cli-restsource/HEAD/src/WinGet.RestSource.IntegrationTest/Common/StorageCleanup.cs -------------------------------------------------------------------------------- /src/WinGet.RestSource.IntegrationTest/Common/StorageSetup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winget-cli-restsource/HEAD/src/WinGet.RestSource.IntegrationTest/Common/StorageSetup.cs -------------------------------------------------------------------------------- /src/WinGet.RestSource.IntegrationTest/Common/TestCollateral.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winget-cli-restsource/HEAD/src/WinGet.RestSource.IntegrationTest/Common/TestCollateral.cs -------------------------------------------------------------------------------- /src/WinGet.RestSource.IntegrationTest/Model/ConfigSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winget-cli-restsource/HEAD/src/WinGet.RestSource.IntegrationTest/Model/ConfigSettings.cs -------------------------------------------------------------------------------- /src/WinGet.RestSource.IntegrationTest/Test.runsettings.template.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winget-cli-restsource/HEAD/src/WinGet.RestSource.IntegrationTest/Test.runsettings.template.json -------------------------------------------------------------------------------- /src/WinGet.RestSource.IntegrationTest/TestCollateral/Manifests/azure-cli-search.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winget-cli-restsource/HEAD/src/WinGet.RestSource.IntegrationTest/TestCollateral/Manifests/azure-cli-search.json -------------------------------------------------------------------------------- /src/WinGet.RestSource.IntegrationTest/TestCollateral/Manifests/code-lite-search.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winget-cli-restsource/HEAD/src/WinGet.RestSource.IntegrationTest/TestCollateral/Manifests/code-lite-search.json -------------------------------------------------------------------------------- /src/WinGet.RestSource.IntegrationTest/TestCollateral/Manifests/fake-manifest-placeholder.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winget-cli-restsource/HEAD/src/WinGet.RestSource.IntegrationTest/TestCollateral/Manifests/fake-manifest-placeholder.json -------------------------------------------------------------------------------- /src/WinGet.RestSource.IntegrationTest/TestCollateral/Manifests/powertoys-search.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winget-cli-restsource/HEAD/src/WinGet.RestSource.IntegrationTest/TestCollateral/Manifests/powertoys-search.json -------------------------------------------------------------------------------- /src/WinGet.RestSource.IntegrationTest/TestCollateral/Manifests/powertoys.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winget-cli-restsource/HEAD/src/WinGet.RestSource.IntegrationTest/TestCollateral/Manifests/powertoys.json -------------------------------------------------------------------------------- /src/WinGet.RestSource.IntegrationTest/TestCollateral/Manifests/vs-code-search.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winget-cli-restsource/HEAD/src/WinGet.RestSource.IntegrationTest/TestCollateral/Manifests/vs-code-search.json -------------------------------------------------------------------------------- /src/WinGet.RestSource.IntegrationTest/TestCollateral/RequestFiles/match-type-exact.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winget-cli-restsource/HEAD/src/WinGet.RestSource.IntegrationTest/TestCollateral/RequestFiles/match-type-exact.json -------------------------------------------------------------------------------- /src/WinGet.RestSource.IntegrationTest/TestCollateral/RequestFiles/match-type-non-existent.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winget-cli-restsource/HEAD/src/WinGet.RestSource.IntegrationTest/TestCollateral/RequestFiles/match-type-non-existent.json -------------------------------------------------------------------------------- /src/WinGet.RestSource.IntegrationTest/TestCollateral/RequestFiles/match-type-startswith.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winget-cli-restsource/HEAD/src/WinGet.RestSource.IntegrationTest/TestCollateral/RequestFiles/match-type-startswith.json -------------------------------------------------------------------------------- /src/WinGet.RestSource.IntegrationTest/TestCollateral/RequestFiles/match-type-substring.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winget-cli-restsource/HEAD/src/WinGet.RestSource.IntegrationTest/TestCollateral/RequestFiles/match-type-substring.json -------------------------------------------------------------------------------- /src/WinGet.RestSource.IntegrationTest/Tests/Functions/ManifestSearchFunctionsTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winget-cli-restsource/HEAD/src/WinGet.RestSource.IntegrationTest/Tests/Functions/ManifestSearchFunctionsTests.cs -------------------------------------------------------------------------------- /src/WinGet.RestSource.IntegrationTest/Tests/Functions/PackageFunctionsTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winget-cli-restsource/HEAD/src/WinGet.RestSource.IntegrationTest/Tests/Functions/PackageFunctionsTests.cs -------------------------------------------------------------------------------- /src/WinGet.RestSource.IntegrationTest/Tests/Functions/PackageManifestFunctionsTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winget-cli-restsource/HEAD/src/WinGet.RestSource.IntegrationTest/Tests/Functions/PackageManifestFunctionsTests.cs -------------------------------------------------------------------------------- /src/WinGet.RestSource.IntegrationTest/Tests/Functions/TestData/ManifestSearchFunctionDataFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winget-cli-restsource/HEAD/src/WinGet.RestSource.IntegrationTest/Tests/Functions/TestData/ManifestSearchFunctionDataFactory.cs -------------------------------------------------------------------------------- /src/WinGet.RestSource.IntegrationTest/Tests/Functions/TestData/ManifestSearchFunctionTestData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winget-cli-restsource/HEAD/src/WinGet.RestSource.IntegrationTest/Tests/Functions/TestData/ManifestSearchFunctionTestData.cs -------------------------------------------------------------------------------- /src/WinGet.RestSource.IntegrationTest/Tests/Functions/TestData/PackageManifestVersionTestData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winget-cli-restsource/HEAD/src/WinGet.RestSource.IntegrationTest/Tests/Functions/TestData/PackageManifestVersionTestData.cs -------------------------------------------------------------------------------- /src/WinGet.RestSource.IntegrationTest/Tests/Functions/TestData/PackageTestData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winget-cli-restsource/HEAD/src/WinGet.RestSource.IntegrationTest/Tests/Functions/TestData/PackageTestData.cs -------------------------------------------------------------------------------- /src/WinGet.RestSource.IntegrationTest/Tests/Functions/TestData/PackageVersionTestData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winget-cli-restsource/HEAD/src/WinGet.RestSource.IntegrationTest/Tests/Functions/TestData/PackageVersionTestData.cs -------------------------------------------------------------------------------- /src/WinGet.RestSource.IntegrationTest/Tests/Functions/TestData/TestDataConstants.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winget-cli-restsource/HEAD/src/WinGet.RestSource.IntegrationTest/Tests/Functions/TestData/TestDataConstants.cs -------------------------------------------------------------------------------- /src/WinGet.RestSource.IntegrationTest/WinGet.RestSource.IntegrationTest.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winget-cli-restsource/HEAD/src/WinGet.RestSource.IntegrationTest/WinGet.RestSource.IntegrationTest.csproj -------------------------------------------------------------------------------- /src/WinGet.RestSource.PowershellSupport/AddDllSearchDirectory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winget-cli-restsource/HEAD/src/WinGet.RestSource.PowershellSupport/AddDllSearchDirectory.cs -------------------------------------------------------------------------------- /src/WinGet.RestSource.PowershellSupport/WinGet.RestSource.PowershellSupport.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winget-cli-restsource/HEAD/src/WinGet.RestSource.PowershellSupport/WinGet.RestSource.PowershellSupport.csproj -------------------------------------------------------------------------------- /src/WinGet.RestSource.PowershellSupport/YamlToRestConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winget-cli-restsource/HEAD/src/WinGet.RestSource.PowershellSupport/YamlToRestConverter.cs -------------------------------------------------------------------------------- /src/WinGet.RestSource.UnitTest/Common/Mocks/MoqHTTPRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winget-cli-restsource/HEAD/src/WinGet.RestSource.UnitTest/Common/Mocks/MoqHTTPRequest.cs -------------------------------------------------------------------------------- /src/WinGet.RestSource.UnitTest/Common/TestCollateralHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winget-cli-restsource/HEAD/src/WinGet.RestSource.UnitTest/Common/TestCollateralHelper.cs -------------------------------------------------------------------------------- /src/WinGet.RestSource.UnitTest/Common/TestUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winget-cli-restsource/HEAD/src/WinGet.RestSource.UnitTest/Common/TestUtils.cs -------------------------------------------------------------------------------- /src/WinGet.RestSource.UnitTest/Test.runsettings.template.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winget-cli-restsource/HEAD/src/WinGet.RestSource.UnitTest/Test.runsettings.template.json -------------------------------------------------------------------------------- /src/WinGet.RestSource.UnitTest/TestCollateral/CosmosPackageManifests/manifests.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winget-cli-restsource/HEAD/src/WinGet.RestSource.UnitTest/TestCollateral/CosmosPackageManifests/manifests.json -------------------------------------------------------------------------------- /src/WinGet.RestSource.UnitTest/TestCollateral/Database/testIndex.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winget-cli-restsource/HEAD/src/WinGet.RestSource.UnitTest/TestCollateral/Database/testIndex.db -------------------------------------------------------------------------------- /src/WinGet.RestSource.UnitTest/TestCollateral/TestManifests/Atest.test.0.0.0.1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winget-cli-restsource/HEAD/src/WinGet.RestSource.UnitTest/TestCollateral/TestManifests/Atest.test.0.0.0.1.yaml -------------------------------------------------------------------------------- /src/WinGet.RestSource.UnitTest/TestCollateral/TestManifests/Etest.test.0.0.0.1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winget-cli-restsource/HEAD/src/WinGet.RestSource.UnitTest/TestCollateral/TestManifests/Etest.test.0.0.0.1.yaml -------------------------------------------------------------------------------- /src/WinGet.RestSource.UnitTest/TestCollateral/TestManifests/Rtest.test.0.0.0.1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winget-cli-restsource/HEAD/src/WinGet.RestSource.UnitTest/TestCollateral/TestManifests/Rtest.test.0.0.0.1.yaml -------------------------------------------------------------------------------- /src/WinGet.RestSource.UnitTest/TestCollateral/TestManifests/Rtest.test.0.0.0.2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winget-cli-restsource/HEAD/src/WinGet.RestSource.UnitTest/TestCollateral/TestManifests/Rtest.test.0.0.0.2.yaml -------------------------------------------------------------------------------- /src/WinGet.RestSource.UnitTest/TestCollateral/TestMultiManifest/Multifile.MsixTest.installer.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winget-cli-restsource/HEAD/src/WinGet.RestSource.UnitTest/TestCollateral/TestMultiManifest/Multifile.MsixTest.installer.yaml -------------------------------------------------------------------------------- /src/WinGet.RestSource.UnitTest/TestCollateral/TestMultiManifest/Multifile.MsixTest.locale.en-US.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winget-cli-restsource/HEAD/src/WinGet.RestSource.UnitTest/TestCollateral/TestMultiManifest/Multifile.MsixTest.locale.en-US.yaml -------------------------------------------------------------------------------- /src/WinGet.RestSource.UnitTest/TestCollateral/TestMultiManifest/Multifile.MsixTest.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winget-cli-restsource/HEAD/src/WinGet.RestSource.UnitTest/TestCollateral/TestMultiManifest/Multifile.MsixTest.yaml -------------------------------------------------------------------------------- /src/WinGet.RestSource.UnitTest/Tests/AzFunctions/SourceFunctionsTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winget-cli-restsource/HEAD/src/WinGet.RestSource.UnitTest/Tests/AzFunctions/SourceFunctionsTests.cs -------------------------------------------------------------------------------- /src/WinGet.RestSource.UnitTest/Tests/Functions/Common/ApiObjectResultTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winget-cli-restsource/HEAD/src/WinGet.RestSource.UnitTest/Tests/Functions/Common/ApiObjectResultTest.cs -------------------------------------------------------------------------------- /src/WinGet.RestSource.UnitTest/Tests/PowerShellSupport/YamlToRestConverterTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winget-cli-restsource/HEAD/src/WinGet.RestSource.UnitTest/Tests/PowerShellSupport/YamlToRestConverterTests.cs -------------------------------------------------------------------------------- /src/WinGet.RestSource.UnitTest/Tests/RestSource/Cosmos/CosmosDataStoreTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winget-cli-restsource/HEAD/src/WinGet.RestSource.UnitTest/Tests/RestSource/Cosmos/CosmosDataStoreTests.cs -------------------------------------------------------------------------------- /src/WinGet.RestSource.UnitTest/Tests/RestSource/Helpers/RestSourceTriggerFunctionsTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winget-cli-restsource/HEAD/src/WinGet.RestSource.UnitTest/Tests/RestSource/Helpers/RestSourceTriggerFunctionsTests.cs -------------------------------------------------------------------------------- /src/WinGet.RestSource.UnitTest/Tests/RestSource/Operation/RebuildTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winget-cli-restsource/HEAD/src/WinGet.RestSource.UnitTest/Tests/RestSource/Operation/RebuildTests.cs -------------------------------------------------------------------------------- /src/WinGet.RestSource.UnitTest/Tests/RestSource/Operation/UpdateTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winget-cli-restsource/HEAD/src/WinGet.RestSource.UnitTest/Tests/RestSource/Operation/UpdateTests.cs -------------------------------------------------------------------------------- /src/WinGet.RestSource.UnitTest/Tests/RestSource/Sql/SqlReaderTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winget-cli-restsource/HEAD/src/WinGet.RestSource.UnitTest/Tests/RestSource/Sql/SqlReaderTests.cs -------------------------------------------------------------------------------- /src/WinGet.RestSource.UnitTest/Tests/Utils/Common/EnvironmentVariables.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winget-cli-restsource/HEAD/src/WinGet.RestSource.UnitTest/Tests/Utils/Common/EnvironmentVariables.cs -------------------------------------------------------------------------------- /src/WinGet.RestSource.UnitTest/Tests/Utils/Common/FormatJSONTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winget-cli-restsource/HEAD/src/WinGet.RestSource.UnitTest/Tests/Utils/Common/FormatJSONTest.cs -------------------------------------------------------------------------------- /src/WinGet.RestSource.UnitTest/Tests/WindowsPackageManager.Rest/Utils/JSONHelpersTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winget-cli-restsource/HEAD/src/WinGet.RestSource.UnitTest/Tests/WindowsPackageManager.Rest/Utils/JSONHelpersTests.cs -------------------------------------------------------------------------------- /src/WinGet.RestSource.UnitTest/Tests/WindowsPackageManager.Rest/Utils/RetryHelperTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winget-cli-restsource/HEAD/src/WinGet.RestSource.UnitTest/Tests/WindowsPackageManager.Rest/Utils/RetryHelperTests.cs -------------------------------------------------------------------------------- /src/WinGet.RestSource.UnitTest/WinGet.RestSource.UnitTest.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winget-cli-restsource/HEAD/src/WinGet.RestSource.UnitTest/WinGet.RestSource.UnitTest.csproj -------------------------------------------------------------------------------- /src/WinGet.RestSource.Utils/Common/ApiContinuationToken.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winget-cli-restsource/HEAD/src/WinGet.RestSource.Utils/Common/ApiContinuationToken.cs -------------------------------------------------------------------------------- /src/WinGet.RestSource.Utils/Common/ApiDataPage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winget-cli-restsource/HEAD/src/WinGet.RestSource.Utils/Common/ApiDataPage.cs -------------------------------------------------------------------------------- /src/WinGet.RestSource.Utils/Common/FormatJSON.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winget-cli-restsource/HEAD/src/WinGet.RestSource.Utils/Common/FormatJSON.cs -------------------------------------------------------------------------------- /src/WinGet.RestSource.Utils/Common/HeaderProcessor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winget-cli-restsource/HEAD/src/WinGet.RestSource.Utils/Common/HeaderProcessor.cs -------------------------------------------------------------------------------- /src/WinGet.RestSource.Utils/Common/IApiDataStore.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winget-cli-restsource/HEAD/src/WinGet.RestSource.Utils/Common/IApiDataStore.cs -------------------------------------------------------------------------------- /src/WinGet.RestSource.Utils/Common/Parser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winget-cli-restsource/HEAD/src/WinGet.RestSource.Utils/Common/Parser.cs -------------------------------------------------------------------------------- /src/WinGet.RestSource.Utils/Common/PredicateBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winget-cli-restsource/HEAD/src/WinGet.RestSource.Utils/Common/PredicateBuilder.cs -------------------------------------------------------------------------------- /src/WinGet.RestSource.Utils/Common/StringEncoder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winget-cli-restsource/HEAD/src/WinGet.RestSource.Utils/Common/StringEncoder.cs -------------------------------------------------------------------------------- /src/WinGet.RestSource.Utils/Common/UnsupportedAndRequiredFieldsHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winget-cli-restsource/HEAD/src/WinGet.RestSource.Utils/Common/UnsupportedAndRequiredFieldsHelper.cs -------------------------------------------------------------------------------- /src/WinGet.RestSource.Utils/Constants/ApiConstants.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winget-cli-restsource/HEAD/src/WinGet.RestSource.Utils/Constants/ApiConstants.cs -------------------------------------------------------------------------------- /src/WinGet.RestSource.Utils/Constants/CosmosConnectionConstants.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winget-cli-restsource/HEAD/src/WinGet.RestSource.Utils/Constants/CosmosConnectionConstants.cs -------------------------------------------------------------------------------- /src/WinGet.RestSource.Utils/Constants/Enumerations/AuthenticationType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winget-cli-restsource/HEAD/src/WinGet.RestSource.Utils/Constants/Enumerations/AuthenticationType.cs -------------------------------------------------------------------------------- /src/WinGet.RestSource.Utils/Constants/Enumerations/MatchType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winget-cli-restsource/HEAD/src/WinGet.RestSource.Utils/Constants/Enumerations/MatchType.cs -------------------------------------------------------------------------------- /src/WinGet.RestSource.Utils/Constants/Enumerations/PackageMatchFields.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winget-cli-restsource/HEAD/src/WinGet.RestSource.Utils/Constants/Enumerations/PackageMatchFields.cs -------------------------------------------------------------------------------- /src/WinGet.RestSource.Utils/Constants/ErrorConstants.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winget-cli-restsource/HEAD/src/WinGet.RestSource.Utils/Constants/ErrorConstants.cs -------------------------------------------------------------------------------- /src/WinGet.RestSource.Utils/Constants/FunctionSettingsConstants.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winget-cli-restsource/HEAD/src/WinGet.RestSource.Utils/Constants/FunctionSettingsConstants.cs -------------------------------------------------------------------------------- /src/WinGet.RestSource.Utils/Constants/HeaderConstants.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winget-cli-restsource/HEAD/src/WinGet.RestSource.Utils/Constants/HeaderConstants.cs -------------------------------------------------------------------------------- /src/WinGet.RestSource.Utils/Constants/QueryConstants.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winget-cli-restsource/HEAD/src/WinGet.RestSource.Utils/Constants/QueryConstants.cs -------------------------------------------------------------------------------- /src/WinGet.RestSource.Utils/Exceptions/CosmosDatabaseException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winget-cli-restsource/HEAD/src/WinGet.RestSource.Utils/Exceptions/CosmosDatabaseException.cs -------------------------------------------------------------------------------- /src/WinGet.RestSource.Utils/Exceptions/DefaultException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winget-cli-restsource/HEAD/src/WinGet.RestSource.Utils/Exceptions/DefaultException.cs -------------------------------------------------------------------------------- /src/WinGet.RestSource.Utils/Exceptions/ForbiddenException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winget-cli-restsource/HEAD/src/WinGet.RestSource.Utils/Exceptions/ForbiddenException.cs -------------------------------------------------------------------------------- /src/WinGet.RestSource.Utils/Exceptions/InvalidArgumentException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winget-cli-restsource/HEAD/src/WinGet.RestSource.Utils/Exceptions/InvalidArgumentException.cs -------------------------------------------------------------------------------- /src/WinGet.RestSource.Utils/Extensions/HttpClientExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winget-cli-restsource/HEAD/src/WinGet.RestSource.Utils/Extensions/HttpClientExtensions.cs -------------------------------------------------------------------------------- /src/WinGet.RestSource.Utils/Models/ApiResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winget-cli-restsource/HEAD/src/WinGet.RestSource.Utils/Models/ApiResponse.cs -------------------------------------------------------------------------------- /src/WinGet.RestSource.Utils/Models/Arrays/Agreements.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winget-cli-restsource/HEAD/src/WinGet.RestSource.Utils/Models/Arrays/Agreements.cs -------------------------------------------------------------------------------- /src/WinGet.RestSource.Utils/Models/Arrays/ApiVersions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winget-cli-restsource/HEAD/src/WinGet.RestSource.Utils/Models/Arrays/ApiVersions.cs -------------------------------------------------------------------------------- /src/WinGet.RestSource.Utils/Models/Arrays/AppsAndFeaturesEntries.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winget-cli-restsource/HEAD/src/WinGet.RestSource.Utils/Models/Arrays/AppsAndFeaturesEntries.cs -------------------------------------------------------------------------------- /src/WinGet.RestSource.Utils/Models/Arrays/AppsAndFeaturesEntryVersions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winget-cli-restsource/HEAD/src/WinGet.RestSource.Utils/Models/Arrays/AppsAndFeaturesEntryVersions.cs -------------------------------------------------------------------------------- /src/WinGet.RestSource.Utils/Models/Arrays/Capabilities.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winget-cli-restsource/HEAD/src/WinGet.RestSource.Utils/Models/Arrays/Capabilities.cs -------------------------------------------------------------------------------- /src/WinGet.RestSource.Utils/Models/Arrays/Commands.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winget-cli-restsource/HEAD/src/WinGet.RestSource.Utils/Models/Arrays/Commands.cs -------------------------------------------------------------------------------- /src/WinGet.RestSource.Utils/Models/Arrays/Dependencies.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winget-cli-restsource/HEAD/src/WinGet.RestSource.Utils/Models/Arrays/Dependencies.cs -------------------------------------------------------------------------------- /src/WinGet.RestSource.Utils/Models/Arrays/Documentations.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winget-cli-restsource/HEAD/src/WinGet.RestSource.Utils/Models/Arrays/Documentations.cs -------------------------------------------------------------------------------- /src/WinGet.RestSource.Utils/Models/Arrays/ExpectedReturnCodes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winget-cli-restsource/HEAD/src/WinGet.RestSource.Utils/Models/Arrays/ExpectedReturnCodes.cs -------------------------------------------------------------------------------- /src/WinGet.RestSource.Utils/Models/Arrays/FileExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winget-cli-restsource/HEAD/src/WinGet.RestSource.Utils/Models/Arrays/FileExtensions.cs -------------------------------------------------------------------------------- /src/WinGet.RestSource.Utils/Models/Arrays/Icons.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winget-cli-restsource/HEAD/src/WinGet.RestSource.Utils/Models/Arrays/Icons.cs -------------------------------------------------------------------------------- /src/WinGet.RestSource.Utils/Models/Arrays/InstallModes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winget-cli-restsource/HEAD/src/WinGet.RestSource.Utils/Models/Arrays/InstallModes.cs -------------------------------------------------------------------------------- /src/WinGet.RestSource.Utils/Models/Arrays/InstallationMetadataFiles.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winget-cli-restsource/HEAD/src/WinGet.RestSource.Utils/Models/Arrays/InstallationMetadataFiles.cs -------------------------------------------------------------------------------- /src/WinGet.RestSource.Utils/Models/Arrays/InstallerSuccessCodes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winget-cli-restsource/HEAD/src/WinGet.RestSource.Utils/Models/Arrays/InstallerSuccessCodes.cs -------------------------------------------------------------------------------- /src/WinGet.RestSource.Utils/Models/Arrays/Markets.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winget-cli-restsource/HEAD/src/WinGet.RestSource.Utils/Models/Arrays/Markets.cs -------------------------------------------------------------------------------- /src/WinGet.RestSource.Utils/Models/Arrays/NestedInstallerFiles.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winget-cli-restsource/HEAD/src/WinGet.RestSource.Utils/Models/Arrays/NestedInstallerFiles.cs -------------------------------------------------------------------------------- /src/WinGet.RestSource.Utils/Models/Arrays/PackageDependency.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winget-cli-restsource/HEAD/src/WinGet.RestSource.Utils/Models/Arrays/PackageDependency.cs -------------------------------------------------------------------------------- /src/WinGet.RestSource.Utils/Models/Arrays/PackageFamilyNames.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winget-cli-restsource/HEAD/src/WinGet.RestSource.Utils/Models/Arrays/PackageFamilyNames.cs -------------------------------------------------------------------------------- /src/WinGet.RestSource.Utils/Models/Arrays/PackageMatchFields.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winget-cli-restsource/HEAD/src/WinGet.RestSource.Utils/Models/Arrays/PackageMatchFields.cs -------------------------------------------------------------------------------- /src/WinGet.RestSource.Utils/Models/Arrays/Platform.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winget-cli-restsource/HEAD/src/WinGet.RestSource.Utils/Models/Arrays/Platform.cs -------------------------------------------------------------------------------- /src/WinGet.RestSource.Utils/Models/Arrays/ProductCodes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winget-cli-restsource/HEAD/src/WinGet.RestSource.Utils/Models/Arrays/ProductCodes.cs -------------------------------------------------------------------------------- /src/WinGet.RestSource.Utils/Models/Arrays/Protocols.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winget-cli-restsource/HEAD/src/WinGet.RestSource.Utils/Models/Arrays/Protocols.cs -------------------------------------------------------------------------------- /src/WinGet.RestSource.Utils/Models/Arrays/QueryParameters.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winget-cli-restsource/HEAD/src/WinGet.RestSource.Utils/Models/Arrays/QueryParameters.cs -------------------------------------------------------------------------------- /src/WinGet.RestSource.Utils/Models/Arrays/RestrictedCapabilities.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winget-cli-restsource/HEAD/src/WinGet.RestSource.Utils/Models/Arrays/RestrictedCapabilities.cs -------------------------------------------------------------------------------- /src/WinGet.RestSource.Utils/Models/Arrays/SearchRequestPackageMatchFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winget-cli-restsource/HEAD/src/WinGet.RestSource.Utils/Models/Arrays/SearchRequestPackageMatchFilter.cs -------------------------------------------------------------------------------- /src/WinGet.RestSource.Utils/Models/Arrays/SearchVersions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winget-cli-restsource/HEAD/src/WinGet.RestSource.Utils/Models/Arrays/SearchVersions.cs -------------------------------------------------------------------------------- /src/WinGet.RestSource.Utils/Models/Arrays/Tags.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winget-cli-restsource/HEAD/src/WinGet.RestSource.Utils/Models/Arrays/Tags.cs -------------------------------------------------------------------------------- /src/WinGet.RestSource.Utils/Models/Arrays/UnsupportedArguments.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winget-cli-restsource/HEAD/src/WinGet.RestSource.Utils/Models/Arrays/UnsupportedArguments.cs -------------------------------------------------------------------------------- /src/WinGet.RestSource.Utils/Models/Arrays/UnsupportedOSArchitectures.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winget-cli-restsource/HEAD/src/WinGet.RestSource.Utils/Models/Arrays/UnsupportedOSArchitectures.cs -------------------------------------------------------------------------------- /src/WinGet.RestSource.Utils/Models/Core/ApiArray.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winget-cli-restsource/HEAD/src/WinGet.RestSource.Utils/Models/Core/ApiArray.cs -------------------------------------------------------------------------------- /src/WinGet.RestSource.Utils/Models/Core/IApiData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winget-cli-restsource/HEAD/src/WinGet.RestSource.Utils/Models/Core/IApiData.cs -------------------------------------------------------------------------------- /src/WinGet.RestSource.Utils/Models/Core/IApiObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winget-cli-restsource/HEAD/src/WinGet.RestSource.Utils/Models/Core/IApiObject.cs -------------------------------------------------------------------------------- /src/WinGet.RestSource.Utils/Models/Errors/InternalRestError.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winget-cli-restsource/HEAD/src/WinGet.RestSource.Utils/Models/Errors/InternalRestError.cs -------------------------------------------------------------------------------- /src/WinGet.RestSource.Utils/Models/ExtendedSchemas/VersionExtended.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winget-cli-restsource/HEAD/src/WinGet.RestSource.Utils/Models/ExtendedSchemas/VersionExtended.cs -------------------------------------------------------------------------------- /src/WinGet.RestSource.Utils/Models/ExtendedSchemas/VersionsExtended.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winget-cli-restsource/HEAD/src/WinGet.RestSource.Utils/Models/ExtendedSchemas/VersionsExtended.cs -------------------------------------------------------------------------------- /src/WinGet.RestSource.Utils/Models/GetPackageManifestApiResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winget-cli-restsource/HEAD/src/WinGet.RestSource.Utils/Models/GetPackageManifestApiResponse.cs -------------------------------------------------------------------------------- /src/WinGet.RestSource.Utils/Models/ManifestSearch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winget-cli-restsource/HEAD/src/WinGet.RestSource.Utils/Models/ManifestSearch.cs -------------------------------------------------------------------------------- /src/WinGet.RestSource.Utils/Models/Objects/AppsAndFeatures.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winget-cli-restsource/HEAD/src/WinGet.RestSource.Utils/Models/Objects/AppsAndFeatures.cs -------------------------------------------------------------------------------- /src/WinGet.RestSource.Utils/Models/Objects/Authentication.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winget-cli-restsource/HEAD/src/WinGet.RestSource.Utils/Models/Objects/Authentication.cs -------------------------------------------------------------------------------- /src/WinGet.RestSource.Utils/Models/Objects/Dependencies.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winget-cli-restsource/HEAD/src/WinGet.RestSource.Utils/Models/Objects/Dependencies.cs -------------------------------------------------------------------------------- /src/WinGet.RestSource.Utils/Models/Objects/Documentation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winget-cli-restsource/HEAD/src/WinGet.RestSource.Utils/Models/Objects/Documentation.cs -------------------------------------------------------------------------------- /src/WinGet.RestSource.Utils/Models/Objects/ExpectedReturnCode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winget-cli-restsource/HEAD/src/WinGet.RestSource.Utils/Models/Objects/ExpectedReturnCode.cs -------------------------------------------------------------------------------- /src/WinGet.RestSource.Utils/Models/Objects/Icon.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winget-cli-restsource/HEAD/src/WinGet.RestSource.Utils/Models/Objects/Icon.cs -------------------------------------------------------------------------------- /src/WinGet.RestSource.Utils/Models/Objects/InstallationMetadata.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winget-cli-restsource/HEAD/src/WinGet.RestSource.Utils/Models/Objects/InstallationMetadata.cs -------------------------------------------------------------------------------- /src/WinGet.RestSource.Utils/Models/Objects/InstallationMetadataFile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winget-cli-restsource/HEAD/src/WinGet.RestSource.Utils/Models/Objects/InstallationMetadataFile.cs -------------------------------------------------------------------------------- /src/WinGet.RestSource.Utils/Models/Objects/InstallerSwitches.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winget-cli-restsource/HEAD/src/WinGet.RestSource.Utils/Models/Objects/InstallerSwitches.cs -------------------------------------------------------------------------------- /src/WinGet.RestSource.Utils/Models/Objects/Markets.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winget-cli-restsource/HEAD/src/WinGet.RestSource.Utils/Models/Objects/Markets.cs -------------------------------------------------------------------------------- /src/WinGet.RestSource.Utils/Models/Objects/MicrosoftEntraIdAuthenticationInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winget-cli-restsource/HEAD/src/WinGet.RestSource.Utils/Models/Objects/MicrosoftEntraIdAuthenticationInfo.cs -------------------------------------------------------------------------------- /src/WinGet.RestSource.Utils/Models/Objects/NestedInstallerFile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winget-cli-restsource/HEAD/src/WinGet.RestSource.Utils/Models/Objects/NestedInstallerFile.cs -------------------------------------------------------------------------------- /src/WinGet.RestSource.Utils/Models/Objects/PackageDependency.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winget-cli-restsource/HEAD/src/WinGet.RestSource.Utils/Models/Objects/PackageDependency.cs -------------------------------------------------------------------------------- /src/WinGet.RestSource.Utils/Models/Objects/SearchRequestMatch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winget-cli-restsource/HEAD/src/WinGet.RestSource.Utils/Models/Objects/SearchRequestMatch.cs -------------------------------------------------------------------------------- /src/WinGet.RestSource.Utils/Models/Objects/SearchRequestPackageMatchFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winget-cli-restsource/HEAD/src/WinGet.RestSource.Utils/Models/Objects/SearchRequestPackageMatchFilter.cs -------------------------------------------------------------------------------- /src/WinGet.RestSource.Utils/Models/Objects/SearchVersion.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winget-cli-restsource/HEAD/src/WinGet.RestSource.Utils/Models/Objects/SearchVersion.cs -------------------------------------------------------------------------------- /src/WinGet.RestSource.Utils/Models/Objects/SourceAgreement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winget-cli-restsource/HEAD/src/WinGet.RestSource.Utils/Models/Objects/SourceAgreement.cs -------------------------------------------------------------------------------- /src/WinGet.RestSource.Utils/Models/Objects/SourceAgreementExtended.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winget-cli-restsource/HEAD/src/WinGet.RestSource.Utils/Models/Objects/SourceAgreementExtended.cs -------------------------------------------------------------------------------- /src/WinGet.RestSource.Utils/Models/Schemas/DefaultLocale.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winget-cli-restsource/HEAD/src/WinGet.RestSource.Utils/Models/Schemas/DefaultLocale.cs -------------------------------------------------------------------------------- /src/WinGet.RestSource.Utils/Models/Schemas/Information.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winget-cli-restsource/HEAD/src/WinGet.RestSource.Utils/Models/Schemas/Information.cs -------------------------------------------------------------------------------- /src/WinGet.RestSource.Utils/Models/Schemas/Installer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winget-cli-restsource/HEAD/src/WinGet.RestSource.Utils/Models/Schemas/Installer.cs -------------------------------------------------------------------------------- /src/WinGet.RestSource.Utils/Models/Schemas/Installers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winget-cli-restsource/HEAD/src/WinGet.RestSource.Utils/Models/Schemas/Installers.cs -------------------------------------------------------------------------------- /src/WinGet.RestSource.Utils/Models/Schemas/Locale.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winget-cli-restsource/HEAD/src/WinGet.RestSource.Utils/Models/Schemas/Locale.cs -------------------------------------------------------------------------------- /src/WinGet.RestSource.Utils/Models/Schemas/Locales.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winget-cli-restsource/HEAD/src/WinGet.RestSource.Utils/Models/Schemas/Locales.cs -------------------------------------------------------------------------------- /src/WinGet.RestSource.Utils/Models/Schemas/ManifestSearchRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winget-cli-restsource/HEAD/src/WinGet.RestSource.Utils/Models/Schemas/ManifestSearchRequest.cs -------------------------------------------------------------------------------- /src/WinGet.RestSource.Utils/Models/Schemas/ManifestSearchResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winget-cli-restsource/HEAD/src/WinGet.RestSource.Utils/Models/Schemas/ManifestSearchResponse.cs -------------------------------------------------------------------------------- /src/WinGet.RestSource.Utils/Models/Schemas/Package.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winget-cli-restsource/HEAD/src/WinGet.RestSource.Utils/Models/Schemas/Package.cs -------------------------------------------------------------------------------- /src/WinGet.RestSource.Utils/Models/Schemas/PackageManifest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winget-cli-restsource/HEAD/src/WinGet.RestSource.Utils/Models/Schemas/PackageManifest.cs -------------------------------------------------------------------------------- /src/WinGet.RestSource.Utils/Models/Schemas/Version.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winget-cli-restsource/HEAD/src/WinGet.RestSource.Utils/Models/Schemas/Version.cs -------------------------------------------------------------------------------- /src/WinGet.RestSource.Utils/Models/Schemas/Versions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winget-cli-restsource/HEAD/src/WinGet.RestSource.Utils/Models/Schemas/Versions.cs -------------------------------------------------------------------------------- /src/WinGet.RestSource.Utils/Models/SearchApiResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winget-cli-restsource/HEAD/src/WinGet.RestSource.Utils/Models/SearchApiResponse.cs -------------------------------------------------------------------------------- /src/WinGet.RestSource.Utils/Utils/PackageManifestUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winget-cli-restsource/HEAD/src/WinGet.RestSource.Utils/Utils/PackageManifestUtils.cs -------------------------------------------------------------------------------- /src/WinGet.RestSource.Utils/Validators/ApiDataValidator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winget-cli-restsource/HEAD/src/WinGet.RestSource.Utils/Validators/ApiDataValidator.cs -------------------------------------------------------------------------------- /src/WinGet.RestSource.Utils/Validators/DateTimeValidators/ApiDateTimeValidator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winget-cli-restsource/HEAD/src/WinGet.RestSource.Utils/Validators/DateTimeValidators/ApiDateTimeValidator.cs -------------------------------------------------------------------------------- /src/WinGet.RestSource.Utils/Validators/DateTimeValidators/ReleaseDateValidator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winget-cli-restsource/HEAD/src/WinGet.RestSource.Utils/Validators/DateTimeValidators/ReleaseDateValidator.cs -------------------------------------------------------------------------------- /src/WinGet.RestSource.Utils/Validators/EnumValidators/ApiEnumValidator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winget-cli-restsource/HEAD/src/WinGet.RestSource.Utils/Validators/EnumValidators/ApiEnumValidator.cs -------------------------------------------------------------------------------- /src/WinGet.RestSource.Utils/Validators/EnumValidators/ArchitectureValidator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winget-cli-restsource/HEAD/src/WinGet.RestSource.Utils/Validators/EnumValidators/ArchitectureValidator.cs -------------------------------------------------------------------------------- /src/WinGet.RestSource.Utils/Validators/EnumValidators/AuthenticationTypeValidator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winget-cli-restsource/HEAD/src/WinGet.RestSource.Utils/Validators/EnumValidators/AuthenticationTypeValidator.cs -------------------------------------------------------------------------------- /src/WinGet.RestSource.Utils/Validators/EnumValidators/ElevationRequirementValidator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winget-cli-restsource/HEAD/src/WinGet.RestSource.Utils/Validators/EnumValidators/ElevationRequirementValidator.cs -------------------------------------------------------------------------------- /src/WinGet.RestSource.Utils/Validators/EnumValidators/ExpectedReturnCodeResponseValidator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winget-cli-restsource/HEAD/src/WinGet.RestSource.Utils/Validators/EnumValidators/ExpectedReturnCodeResponseValidator.cs -------------------------------------------------------------------------------- /src/WinGet.RestSource.Utils/Validators/EnumValidators/FileTypeValidator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winget-cli-restsource/HEAD/src/WinGet.RestSource.Utils/Validators/EnumValidators/FileTypeValidator.cs -------------------------------------------------------------------------------- /src/WinGet.RestSource.Utils/Validators/EnumValidators/IconFileTypeValidator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winget-cli-restsource/HEAD/src/WinGet.RestSource.Utils/Validators/EnumValidators/IconFileTypeValidator.cs -------------------------------------------------------------------------------- /src/WinGet.RestSource.Utils/Validators/EnumValidators/IconResolutionValidator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winget-cli-restsource/HEAD/src/WinGet.RestSource.Utils/Validators/EnumValidators/IconResolutionValidator.cs -------------------------------------------------------------------------------- /src/WinGet.RestSource.Utils/Validators/EnumValidators/IconThemeValidator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winget-cli-restsource/HEAD/src/WinGet.RestSource.Utils/Validators/EnumValidators/IconThemeValidator.cs -------------------------------------------------------------------------------- /src/WinGet.RestSource.Utils/Validators/EnumValidators/InstallModeValidator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winget-cli-restsource/HEAD/src/WinGet.RestSource.Utils/Validators/EnumValidators/InstallModeValidator.cs -------------------------------------------------------------------------------- /src/WinGet.RestSource.Utils/Validators/EnumValidators/InstallerTypeValidator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winget-cli-restsource/HEAD/src/WinGet.RestSource.Utils/Validators/EnumValidators/InstallerTypeValidator.cs -------------------------------------------------------------------------------- /src/WinGet.RestSource.Utils/Validators/EnumValidators/MatchTypeValidator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winget-cli-restsource/HEAD/src/WinGet.RestSource.Utils/Validators/EnumValidators/MatchTypeValidator.cs -------------------------------------------------------------------------------- /src/WinGet.RestSource.Utils/Validators/EnumValidators/NestedInstallerTypeValidator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winget-cli-restsource/HEAD/src/WinGet.RestSource.Utils/Validators/EnumValidators/NestedInstallerTypeValidator.cs -------------------------------------------------------------------------------- /src/WinGet.RestSource.Utils/Validators/EnumValidators/PackageMatchFieldValidator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winget-cli-restsource/HEAD/src/WinGet.RestSource.Utils/Validators/EnumValidators/PackageMatchFieldValidator.cs -------------------------------------------------------------------------------- /src/WinGet.RestSource.Utils/Validators/EnumValidators/PlatformValidator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winget-cli-restsource/HEAD/src/WinGet.RestSource.Utils/Validators/EnumValidators/PlatformValidator.cs -------------------------------------------------------------------------------- /src/WinGet.RestSource.Utils/Validators/EnumValidators/RepairBehaviorValidator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winget-cli-restsource/HEAD/src/WinGet.RestSource.Utils/Validators/EnumValidators/RepairBehaviorValidator.cs -------------------------------------------------------------------------------- /src/WinGet.RestSource.Utils/Validators/EnumValidators/ScopeValidator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winget-cli-restsource/HEAD/src/WinGet.RestSource.Utils/Validators/EnumValidators/ScopeValidator.cs -------------------------------------------------------------------------------- /src/WinGet.RestSource.Utils/Validators/EnumValidators/UnsupportedArgumentValidator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winget-cli-restsource/HEAD/src/WinGet.RestSource.Utils/Validators/EnumValidators/UnsupportedArgumentValidator.cs -------------------------------------------------------------------------------- /src/WinGet.RestSource.Utils/Validators/EnumValidators/UnsupportedOSArchitecturesValidator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winget-cli-restsource/HEAD/src/WinGet.RestSource.Utils/Validators/EnumValidators/UnsupportedOSArchitecturesValidator.cs -------------------------------------------------------------------------------- /src/WinGet.RestSource.Utils/Validators/EnumValidators/UpgradeBehaviorValidator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winget-cli-restsource/HEAD/src/WinGet.RestSource.Utils/Validators/EnumValidators/UpgradeBehaviorValidator.cs -------------------------------------------------------------------------------- /src/WinGet.RestSource.Utils/Validators/StringValidators/AgreementLabelValidator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winget-cli-restsource/HEAD/src/WinGet.RestSource.Utils/Validators/StringValidators/AgreementLabelValidator.cs -------------------------------------------------------------------------------- /src/WinGet.RestSource.Utils/Validators/StringValidators/AgreementValidator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winget-cli-restsource/HEAD/src/WinGet.RestSource.Utils/Validators/StringValidators/AgreementValidator.cs -------------------------------------------------------------------------------- /src/WinGet.RestSource.Utils/Validators/StringValidators/AgreementsIdentifierValidator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winget-cli-restsource/HEAD/src/WinGet.RestSource.Utils/Validators/StringValidators/AgreementsIdentifierValidator.cs -------------------------------------------------------------------------------- /src/WinGet.RestSource.Utils/Validators/StringValidators/ApiStringValidator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winget-cli-restsource/HEAD/src/WinGet.RestSource.Utils/Validators/StringValidators/ApiStringValidator.cs -------------------------------------------------------------------------------- /src/WinGet.RestSource.Utils/Validators/StringValidators/ApiVersionValidator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winget-cli-restsource/HEAD/src/WinGet.RestSource.Utils/Validators/StringValidators/ApiVersionValidator.cs -------------------------------------------------------------------------------- /src/WinGet.RestSource.Utils/Validators/StringValidators/AppsAndFeaturesEntryVersionValidator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winget-cli-restsource/HEAD/src/WinGet.RestSource.Utils/Validators/StringValidators/AppsAndFeaturesEntryVersionValidator.cs -------------------------------------------------------------------------------- /src/WinGet.RestSource.Utils/Validators/StringValidators/AuthorValidator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winget-cli-restsource/HEAD/src/WinGet.RestSource.Utils/Validators/StringValidators/AuthorValidator.cs -------------------------------------------------------------------------------- /src/WinGet.RestSource.Utils/Validators/StringValidators/CapabilitiesValidator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winget-cli-restsource/HEAD/src/WinGet.RestSource.Utils/Validators/StringValidators/CapabilitiesValidator.cs -------------------------------------------------------------------------------- /src/WinGet.RestSource.Utils/Validators/StringValidators/ChannelValidator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winget-cli-restsource/HEAD/src/WinGet.RestSource.Utils/Validators/StringValidators/ChannelValidator.cs -------------------------------------------------------------------------------- /src/WinGet.RestSource.Utils/Validators/StringValidators/CommandsValidator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winget-cli-restsource/HEAD/src/WinGet.RestSource.Utils/Validators/StringValidators/CommandsValidator.cs -------------------------------------------------------------------------------- /src/WinGet.RestSource.Utils/Validators/StringValidators/ContinuationTokenValidator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winget-cli-restsource/HEAD/src/WinGet.RestSource.Utils/Validators/StringValidators/ContinuationTokenValidator.cs -------------------------------------------------------------------------------- /src/WinGet.RestSource.Utils/Validators/StringValidators/CopyrightValidator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winget-cli-restsource/HEAD/src/WinGet.RestSource.Utils/Validators/StringValidators/CopyrightValidator.cs -------------------------------------------------------------------------------- /src/WinGet.RestSource.Utils/Validators/StringValidators/CustomSwitchValidator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winget-cli-restsource/HEAD/src/WinGet.RestSource.Utils/Validators/StringValidators/CustomSwitchValidator.cs -------------------------------------------------------------------------------- /src/WinGet.RestSource.Utils/Validators/StringValidators/DefaultInstallLocationValidator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winget-cli-restsource/HEAD/src/WinGet.RestSource.Utils/Validators/StringValidators/DefaultInstallLocationValidator.cs -------------------------------------------------------------------------------- /src/WinGet.RestSource.Utils/Validators/StringValidators/DependenciesValidator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winget-cli-restsource/HEAD/src/WinGet.RestSource.Utils/Validators/StringValidators/DependenciesValidator.cs -------------------------------------------------------------------------------- /src/WinGet.RestSource.Utils/Validators/StringValidators/DescriptionValidator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winget-cli-restsource/HEAD/src/WinGet.RestSource.Utils/Validators/StringValidators/DescriptionValidator.cs -------------------------------------------------------------------------------- /src/WinGet.RestSource.Utils/Validators/StringValidators/DisplayAndPublisherNameValidator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winget-cli-restsource/HEAD/src/WinGet.RestSource.Utils/Validators/StringValidators/DisplayAndPublisherNameValidator.cs -------------------------------------------------------------------------------- /src/WinGet.RestSource.Utils/Validators/StringValidators/DisplayNameValidator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winget-cli-restsource/HEAD/src/WinGet.RestSource.Utils/Validators/StringValidators/DisplayNameValidator.cs -------------------------------------------------------------------------------- /src/WinGet.RestSource.Utils/Validators/StringValidators/DocumentLabelValidator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winget-cli-restsource/HEAD/src/WinGet.RestSource.Utils/Validators/StringValidators/DocumentLabelValidator.cs -------------------------------------------------------------------------------- /src/WinGet.RestSource.Utils/Validators/StringValidators/FileExtensionsValidator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winget-cli-restsource/HEAD/src/WinGet.RestSource.Utils/Validators/StringValidators/FileExtensionsValidator.cs -------------------------------------------------------------------------------- /src/WinGet.RestSource.Utils/Validators/StringValidators/IApiStringValidator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winget-cli-restsource/HEAD/src/WinGet.RestSource.Utils/Validators/StringValidators/IApiStringValidator.cs -------------------------------------------------------------------------------- /src/WinGet.RestSource.Utils/Validators/StringValidators/InstallationMetadataFileRelativeFilePathValidator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winget-cli-restsource/HEAD/src/WinGet.RestSource.Utils/Validators/StringValidators/InstallationMetadataFileRelativeFilePathValidator.cs -------------------------------------------------------------------------------- /src/WinGet.RestSource.Utils/Validators/StringValidators/InstallationNotesValidator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winget-cli-restsource/HEAD/src/WinGet.RestSource.Utils/Validators/StringValidators/InstallationNotesValidator.cs -------------------------------------------------------------------------------- /src/WinGet.RestSource.Utils/Validators/StringValidators/InstallerIdentifierValidator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winget-cli-restsource/HEAD/src/WinGet.RestSource.Utils/Validators/StringValidators/InstallerIdentifierValidator.cs -------------------------------------------------------------------------------- /src/WinGet.RestSource.Utils/Validators/StringValidators/InvocationParameterValidator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winget-cli-restsource/HEAD/src/WinGet.RestSource.Utils/Validators/StringValidators/InvocationParameterValidator.cs -------------------------------------------------------------------------------- /src/WinGet.RestSource.Utils/Validators/StringValidators/KeyWordValidator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winget-cli-restsource/HEAD/src/WinGet.RestSource.Utils/Validators/StringValidators/KeyWordValidator.cs -------------------------------------------------------------------------------- /src/WinGet.RestSource.Utils/Validators/StringValidators/LicenseValidator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winget-cli-restsource/HEAD/src/WinGet.RestSource.Utils/Validators/StringValidators/LicenseValidator.cs -------------------------------------------------------------------------------- /src/WinGet.RestSource.Utils/Validators/StringValidators/LocaleValidator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winget-cli-restsource/HEAD/src/WinGet.RestSource.Utils/Validators/StringValidators/LocaleValidator.cs -------------------------------------------------------------------------------- /src/WinGet.RestSource.Utils/Validators/StringValidators/MSStoreProductIdentifierValidator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winget-cli-restsource/HEAD/src/WinGet.RestSource.Utils/Validators/StringValidators/MSStoreProductIdentifierValidator.cs -------------------------------------------------------------------------------- /src/WinGet.RestSource.Utils/Validators/StringValidators/MarketValidator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winget-cli-restsource/HEAD/src/WinGet.RestSource.Utils/Validators/StringValidators/MarketValidator.cs -------------------------------------------------------------------------------- /src/WinGet.RestSource.Utils/Validators/StringValidators/MicrosoftEntraIdResourceScopeValidator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winget-cli-restsource/HEAD/src/WinGet.RestSource.Utils/Validators/StringValidators/MicrosoftEntraIdResourceScopeValidator.cs -------------------------------------------------------------------------------- /src/WinGet.RestSource.Utils/Validators/StringValidators/MicrosoftEntraIdResourceValidator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winget-cli-restsource/HEAD/src/WinGet.RestSource.Utils/Validators/StringValidators/MicrosoftEntraIdResourceValidator.cs -------------------------------------------------------------------------------- /src/WinGet.RestSource.Utils/Validators/StringValidators/MinimumOSVersionValidator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winget-cli-restsource/HEAD/src/WinGet.RestSource.Utils/Validators/StringValidators/MinimumOSVersionValidator.cs -------------------------------------------------------------------------------- /src/WinGet.RestSource.Utils/Validators/StringValidators/NestedInstallerFileRelativeFilePathValidator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winget-cli-restsource/HEAD/src/WinGet.RestSource.Utils/Validators/StringValidators/NestedInstallerFileRelativeFilePathValidator.cs -------------------------------------------------------------------------------- /src/WinGet.RestSource.Utils/Validators/StringValidators/PackageDependencyVersionValidator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winget-cli-restsource/HEAD/src/WinGet.RestSource.Utils/Validators/StringValidators/PackageDependencyVersionValidator.cs -------------------------------------------------------------------------------- /src/WinGet.RestSource.Utils/Validators/StringValidators/PackageFamilyNameValidator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winget-cli-restsource/HEAD/src/WinGet.RestSource.Utils/Validators/StringValidators/PackageFamilyNameValidator.cs -------------------------------------------------------------------------------- /src/WinGet.RestSource.Utils/Validators/StringValidators/PackageIdentifierValidator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winget-cli-restsource/HEAD/src/WinGet.RestSource.Utils/Validators/StringValidators/PackageIdentifierValidator.cs -------------------------------------------------------------------------------- /src/WinGet.RestSource.Utils/Validators/StringValidators/PackageNameValidator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winget-cli-restsource/HEAD/src/WinGet.RestSource.Utils/Validators/StringValidators/PackageNameValidator.cs -------------------------------------------------------------------------------- /src/WinGet.RestSource.Utils/Validators/StringValidators/PackageVersionValidator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winget-cli-restsource/HEAD/src/WinGet.RestSource.Utils/Validators/StringValidators/PackageVersionValidator.cs -------------------------------------------------------------------------------- /src/WinGet.RestSource.Utils/Validators/StringValidators/PortableCommandAliasValidator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winget-cli-restsource/HEAD/src/WinGet.RestSource.Utils/Validators/StringValidators/PortableCommandAliasValidator.cs -------------------------------------------------------------------------------- /src/WinGet.RestSource.Utils/Validators/StringValidators/ProductCodeValidator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winget-cli-restsource/HEAD/src/WinGet.RestSource.Utils/Validators/StringValidators/ProductCodeValidator.cs -------------------------------------------------------------------------------- /src/WinGet.RestSource.Utils/Validators/StringValidators/ProtocolsValidator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winget-cli-restsource/HEAD/src/WinGet.RestSource.Utils/Validators/StringValidators/ProtocolsValidator.cs -------------------------------------------------------------------------------- /src/WinGet.RestSource.Utils/Validators/StringValidators/PublisherValidator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winget-cli-restsource/HEAD/src/WinGet.RestSource.Utils/Validators/StringValidators/PublisherValidator.cs -------------------------------------------------------------------------------- /src/WinGet.RestSource.Utils/Validators/StringValidators/ReleaseNotesValidator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winget-cli-restsource/HEAD/src/WinGet.RestSource.Utils/Validators/StringValidators/ReleaseNotesValidator.cs -------------------------------------------------------------------------------- /src/WinGet.RestSource.Utils/Validators/StringValidators/Sha256Validator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winget-cli-restsource/HEAD/src/WinGet.RestSource.Utils/Validators/StringValidators/Sha256Validator.cs -------------------------------------------------------------------------------- /src/WinGet.RestSource.Utils/Validators/StringValidators/ShortDescriptionValidator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winget-cli-restsource/HEAD/src/WinGet.RestSource.Utils/Validators/StringValidators/ShortDescriptionValidator.cs -------------------------------------------------------------------------------- /src/WinGet.RestSource.Utils/Validators/StringValidators/SourceIdentifierValidator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winget-cli-restsource/HEAD/src/WinGet.RestSource.Utils/Validators/StringValidators/SourceIdentifierValidator.cs -------------------------------------------------------------------------------- /src/WinGet.RestSource.Utils/Validators/StringValidators/SwitchValidator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winget-cli-restsource/HEAD/src/WinGet.RestSource.Utils/Validators/StringValidators/SwitchValidator.cs -------------------------------------------------------------------------------- /src/WinGet.RestSource.Utils/Validators/StringValidators/TagValidator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winget-cli-restsource/HEAD/src/WinGet.RestSource.Utils/Validators/StringValidators/TagValidator.cs -------------------------------------------------------------------------------- /src/WinGet.RestSource.Utils/Validators/StringValidators/UrlValidator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winget-cli-restsource/HEAD/src/WinGet.RestSource.Utils/Validators/StringValidators/UrlValidator.cs -------------------------------------------------------------------------------- /src/WinGet.RestSource.Utils/WinGet.RestSource.Utils.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winget-cli-restsource/HEAD/src/WinGet.RestSource.Utils/WinGet.RestSource.Utils.csproj -------------------------------------------------------------------------------- /src/WinGet.RestSource.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winget-cli-restsource/HEAD/src/WinGet.RestSource.sln -------------------------------------------------------------------------------- /src/WinGet.RestSource/Cosmos/CosmosDataStore.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winget-cli-restsource/HEAD/src/WinGet.RestSource/Cosmos/CosmosDataStore.cs -------------------------------------------------------------------------------- /src/WinGet.RestSource/Cosmos/CosmosDatabase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winget-cli-restsource/HEAD/src/WinGet.RestSource/Cosmos/CosmosDatabase.cs -------------------------------------------------------------------------------- /src/WinGet.RestSource/Cosmos/CosmosDocument.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winget-cli-restsource/HEAD/src/WinGet.RestSource/Cosmos/CosmosDocument.cs -------------------------------------------------------------------------------- /src/WinGet.RestSource/Cosmos/CosmosPackageManifest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winget-cli-restsource/HEAD/src/WinGet.RestSource/Cosmos/CosmosPackageManifest.cs -------------------------------------------------------------------------------- /src/WinGet.RestSource/Cosmos/PredicateGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winget-cli-restsource/HEAD/src/WinGet.RestSource/Cosmos/PredicateGenerator.cs -------------------------------------------------------------------------------- /src/WinGet.RestSource/Exceptions/RestSourceCallException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winget-cli-restsource/HEAD/src/WinGet.RestSource/Exceptions/RestSourceCallException.cs -------------------------------------------------------------------------------- /src/WinGet.RestSource/Factories/RebuildFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winget-cli-restsource/HEAD/src/WinGet.RestSource/Factories/RebuildFactory.cs -------------------------------------------------------------------------------- /src/WinGet.RestSource/Factories/UpdateFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winget-cli-restsource/HEAD/src/WinGet.RestSource/Factories/UpdateFactory.cs -------------------------------------------------------------------------------- /src/WinGet.RestSource/Helpers/RestSourceTriggerFunctions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winget-cli-restsource/HEAD/src/WinGet.RestSource/Helpers/RestSourceTriggerFunctions.cs -------------------------------------------------------------------------------- /src/WinGet.RestSource/Interfaces/ICosmosDatabase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winget-cli-restsource/HEAD/src/WinGet.RestSource/Interfaces/ICosmosDatabase.cs -------------------------------------------------------------------------------- /src/WinGet.RestSource/Interfaces/ICosmosIdDocument.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winget-cli-restsource/HEAD/src/WinGet.RestSource/Interfaces/ICosmosIdDocument.cs -------------------------------------------------------------------------------- /src/WinGet.RestSource/Interfaces/IRebuild.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winget-cli-restsource/HEAD/src/WinGet.RestSource/Interfaces/IRebuild.cs -------------------------------------------------------------------------------- /src/WinGet.RestSource/Interfaces/IRestSourceTriggerFunction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winget-cli-restsource/HEAD/src/WinGet.RestSource/Interfaces/IRestSourceTriggerFunction.cs -------------------------------------------------------------------------------- /src/WinGet.RestSource/Interfaces/IUpdate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winget-cli-restsource/HEAD/src/WinGet.RestSource/Interfaces/IUpdate.cs -------------------------------------------------------------------------------- /src/WinGet.RestSource/Operations/Rebuild.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winget-cli-restsource/HEAD/src/WinGet.RestSource/Operations/Rebuild.cs -------------------------------------------------------------------------------- /src/WinGet.RestSource/Operations/Update.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winget-cli-restsource/HEAD/src/WinGet.RestSource/Operations/Update.cs -------------------------------------------------------------------------------- /src/WinGet.RestSource/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winget-cli-restsource/HEAD/src/WinGet.RestSource/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/WinGet.RestSource/Sql/SqlPackage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winget-cli-restsource/HEAD/src/WinGet.RestSource/Sql/SqlPackage.cs -------------------------------------------------------------------------------- /src/WinGet.RestSource/Sql/SqlReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winget-cli-restsource/HEAD/src/WinGet.RestSource/Sql/SqlReader.cs -------------------------------------------------------------------------------- /src/WinGet.RestSource/Sql/SqlVersion.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winget-cli-restsource/HEAD/src/WinGet.RestSource/Sql/SqlVersion.cs -------------------------------------------------------------------------------- /src/WinGet.RestSource/WinGet.RestSource.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winget-cli-restsource/HEAD/src/WinGet.RestSource/WinGet.RestSource.csproj -------------------------------------------------------------------------------- /src/stylecop.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/winget-cli-restsource/HEAD/src/stylecop.json --------------------------------------------------------------------------------