├── .CodeQL.yml ├── .azure-pipelines ├── build-job.yml ├── build-jobs.yml ├── get-pat.yml ├── package-vcredist.yml ├── pipeline.yml ├── scripts │ ├── Get-SigntoolPath.ps1 │ ├── RemoveSignatureForThirdPartyAssemlies.ps1 │ ├── RemoveSignatureScript.ps1 │ ├── run-and-verify.js │ ├── switch-branch.ps1 │ └── switch-branch.sh └── signing.yml ├── .editorconfig ├── .gdn └── .gdnbaselines ├── .gitattributes ├── .github ├── CODEOWNERS ├── ISSUE_TEMPLATE.md ├── ISSUE_TEMPLATE │ ├── bug.yml │ ├── config.yml │ ├── feature.yml │ └── question.yml ├── copilot-instructions.md ├── labelChecker │ ├── index.js │ ├── package-lock.json │ └── package.json ├── pull_request_template.md └── workflows │ ├── autoAssignABTT.yml │ ├── labelChecker.yml │ ├── localization-automerge.yml │ └── stale.yml ├── .gitignore ├── .vscode └── settings.json ├── .vsts.ci.yml ├── .vsts.release.yml ├── LICENSE ├── README.md ├── SECURITY.md ├── assets.json ├── azure-pipelines-agent.sln ├── docs ├── contribute.md ├── design │ ├── auth.md │ ├── byos.md │ ├── clientcert.md │ ├── coreclr.md │ ├── jobcancellation.md │ ├── logprocessors.md │ ├── non-glibc-containers.md │ ├── percentEncoding.md │ ├── proxy.md │ ├── res │ │ ├── 01AgentConfig.png │ │ ├── 02AgentStartListen.png │ │ ├── 03AgentQueueBuild.png │ │ ├── AgentLogProcessors.png │ │ ├── AgentLogProcessors.xml │ │ ├── byos1.png │ │ └── byos2.png │ └── setMTU.md ├── git.md ├── jobdirectories.md ├── layers.md ├── node6.md ├── noderunner.md ├── preview │ ├── consumeoutputvariable.md │ ├── latebreaking.md │ ├── logdecorations.md │ ├── outdated │ │ ├── conditions.md │ │ ├── pipeline.md │ │ ├── resources.md │ │ ├── yaml │ │ │ ├── dot-net-core-template.yaml │ │ │ ├── dot-net-core.yaml │ │ │ ├── vsbuild-template.yaml │ │ │ └── vsbuild.yaml │ │ ├── yamldeserialization.md │ │ └── yamlscripts.md │ ├── outputvariable.md │ ├── runtaskindocker.md │ ├── yaml-authz-troubleshooting.md │ └── yamlgettingstarted.md ├── res │ ├── apple_med.png │ ├── apple_sm.png │ ├── dependencies.svg │ ├── linux_med.png │ ├── linux_sm.png │ ├── redhat_med.png │ ├── redhat_sm.png │ ├── ubuntu_med.png │ ├── ubuntu_sm.png │ ├── win_med.png │ └── win_sm.png ├── start │ ├── configonprem.md │ ├── configvsts.md │ ├── envlinux.md │ ├── envosx.md │ ├── envredhat.md │ ├── envubuntu.md │ ├── envwin.md │ ├── moreconfig.md │ ├── nixsvc.md │ ├── proxyconfig.md │ ├── resourceconfig.md │ ├── roles.md │ ├── roles.png │ ├── scopes.png │ ├── svcosx.md │ └── svcsystemd.md ├── threat-model │ ├── AgentsTasks-ThreatModel.tm7 │ ├── Export │ │ ├── Configure Agent - Threat Model.png │ │ ├── Job Execution - Threat Model.png │ │ ├── Job Polling - Threat Model.png │ │ └── VMSS Agent Pool - Threat Model.png │ └── README.md └── troubleshooting.md ├── images └── readme.md ├── open-pullrequest.ps1 ├── release ├── Send-PRsNotification.ps1 ├── createAdoPrs.js ├── createReleaseBranch.js ├── fillReleaseNotesTemplate.js ├── package-lock.json ├── package.json ├── rollrelease.js └── util.js ├── releaseNote.md ├── send-notifications.ps1 ├── src ├── .helpers.sh ├── Agent.Listener │ ├── Agent.Listener.csproj │ ├── Agent.cs │ ├── CommandLine │ │ ├── BaseCommand.cs │ │ ├── ConfigureAgent.cs │ │ ├── ConfigureOrRemoveBase.cs │ │ ├── ReAuthAgent.cs │ │ ├── RemoveAgent.cs │ │ ├── RunAgent.cs │ │ └── WarmupAgent.cs │ ├── CommandSettings.cs │ ├── Configuration.Linux │ │ └── SystemdControlManager.cs │ ├── Configuration.Windows │ │ ├── AutoLogonManager.cs │ │ ├── AutoLogonRegistryManager.cs │ │ ├── NativeWindowsServiceHelper.cs │ │ ├── RSAEncryptedFileKeyManager.cs │ │ ├── WindowsRegistryManager.cs │ │ └── WindowsServiceControlManager.cs │ ├── Configuration.macOS │ │ └── MacOSServiceControlManager.cs │ ├── Configuration │ │ ├── ConfigurationManager.cs │ │ ├── ConfigurationProvider.cs │ │ ├── CredentialManager.cs │ │ ├── CredentialProvider.cs │ │ ├── FeatureFlagProvider.cs │ │ ├── IRSAKeyManager.cs │ │ ├── IntegratedCredential.cs │ │ ├── NegotiateCredential.cs │ │ ├── OAuthCredential.cs │ │ ├── PromptManager.cs │ │ ├── RSAFileKeyManager.cs │ │ ├── ServiceControlManager.cs │ │ └── Validators.cs │ ├── Diagnostics │ │ ├── DiagnosticSuite.cs │ │ ├── DiagnosticsTests.cs │ │ ├── DiskInfo.cs │ │ ├── DnsTest.cs │ │ ├── FolderPermissionInfo.cs │ │ ├── IDiagnosticInfo.cs │ │ ├── IDiagnosticTest.cs │ │ ├── MtuInfo.cs │ │ └── PingTest.cs │ ├── DistributedTask.Pipelines │ │ ├── TaskResources.g.cs │ │ ├── Update-FromVso.ps1 │ │ └── Yaml │ │ │ ├── Contracts │ │ │ ├── CheckoutStep.cs │ │ │ ├── DeploymentTarget.cs │ │ │ ├── IPhase.cs │ │ │ ├── IPhaseTarget.cs │ │ │ ├── ISimpleStep.cs │ │ │ ├── IStep.cs │ │ │ ├── IVariable.cs │ │ │ ├── Phase.cs │ │ │ ├── PhaseSelector.cs │ │ │ ├── PhasesTemplate.cs │ │ │ ├── PhasesTemplateReference.cs │ │ │ ├── Process.cs │ │ │ ├── ProcessResource.cs │ │ │ ├── ProcessTemplate.cs │ │ │ ├── ProcessTemplateReference.cs │ │ │ ├── QueueTarget.cs │ │ │ ├── ServerTarget.cs │ │ │ ├── StepGroup.cs │ │ │ ├── StepsTemplate.cs │ │ │ ├── StepsTemplateReference.cs │ │ │ ├── TaskReference.cs │ │ │ ├── TaskStep.cs │ │ │ ├── Variable.cs │ │ │ ├── VariablesTemplate.cs │ │ │ └── VariablesTemplateReference.cs │ │ │ ├── FileData.cs │ │ │ ├── IFileProvider.cs │ │ │ ├── ITraceWriter.cs │ │ │ ├── ParseOptions.cs │ │ │ ├── PipelineParser.cs │ │ │ └── TypeConverters │ │ │ ├── ConverterUtil.general.cs │ │ │ ├── ConverterUtil.phases.cs │ │ │ ├── ConverterUtil.processes.cs │ │ │ ├── ConverterUtil.steps.cs │ │ │ ├── ConverterUtil.variables.cs │ │ │ ├── PhasesTemplateConverter.cs │ │ │ ├── ProcessConverter.cs │ │ │ ├── ProcessTemplateConverter.cs │ │ │ ├── StepsTemplateConverter.cs │ │ │ ├── VariablesTemplateConverter.cs │ │ │ └── YamlConstants.cs │ ├── JobDispatcher.cs │ ├── MessageListener.cs │ ├── NuGet.Config │ ├── Program.cs │ ├── SelfUpdater.cs │ ├── Telemetry │ │ ├── CustomerIntelligenceServer.cs │ │ └── TelemetryPublisher.cs │ ├── ValidationHelper │ │ ├── InstallerVerifier.cs │ │ ├── UnsafeNativeMethods.cs │ │ ├── Utility.cs │ │ └── VerificationException.cs │ ├── net6.json │ └── net8.json ├── Agent.PluginHost │ ├── Agent.PluginHost.csproj │ └── Program.cs ├── Agent.Plugins │ ├── Agent.Plugins.csproj │ ├── Artifact │ │ ├── ArtifactDownloadParameters.cs │ │ ├── ArtifactItemFilters.cs │ │ ├── ArtifactProviderFactory.cs │ │ ├── BuildServer.cs │ │ ├── FileContainerProvider.cs │ │ ├── FileShareProvider.cs │ │ ├── IArtifactProvider.cs │ │ ├── PipelineArtifactConstants.cs │ │ ├── PipelineArtifactProvider.cs │ │ └── PipelineArtifactServer.cs │ ├── ArtifactsTracer.cs │ ├── BuildArtifact │ │ ├── BuildArtifactPluginConstants.cs │ │ └── BuildArtifactPluginV1.cs │ ├── GitCliManager.cs │ ├── GitSourceProvider.cs │ ├── ITfsVCCliManager.cs │ ├── PipelineArtifact │ │ ├── FilePathServer.cs │ │ ├── PipelineArtifactPlugin.cs │ │ ├── PipelineArtifactPluginConstants.cs │ │ ├── PipelineArtifactPluginUtil.cs │ │ ├── PipelineArtifactPluginV1.cs │ │ ├── PipelineArtifactPluginV2.cs │ │ └── Telemetry │ │ │ ├── FileShareActionRecord.cs │ │ │ └── PipelineArtifactActionRecord.cs │ ├── PipelineCache │ │ ├── FingerprintCreator.cs │ │ ├── PipelineCachePluginConstants.cs │ │ ├── PipelineCacheServer.cs │ │ ├── PipelineCacheTaskPluginBase.cs │ │ ├── RestorePipelineCacheV0.cs │ │ ├── SavePipelineCacheV0.cs │ │ ├── TarUtils.cs │ │ └── Telemetry │ │ │ └── PipelineCacheActionRecord.cs │ ├── RepositoryPlugin.cs │ ├── SvnCliManager.cs │ ├── SvnSourceProvider.cs │ ├── TFCliManager.cs │ ├── TeeCliManager.cs │ ├── TestFilePublisher │ │ ├── ClientFactory.cs │ │ ├── Finder │ │ │ ├── ITestFileFinder.cs │ │ │ └── TestFileFinder.cs │ │ ├── PipelineConfig.cs │ │ ├── Plugin │ │ │ └── TestFilePublisherLogPlugin.cs │ │ ├── SimpleTimer.cs │ │ ├── Telemetry │ │ │ ├── TelemetryConstants.cs │ │ │ ├── TelemetryDataCollector.cs │ │ │ └── TelemetryDataWrapper.cs │ │ ├── TestFilePublisher.cs │ │ ├── TestRunContextBuilder.cs │ │ ├── TraceListener.cs │ │ └── TraceLogger.cs │ ├── TestResultParser │ │ ├── Bus │ │ │ └── IBus.cs │ │ ├── ClientFactory.cs │ │ ├── Gateway │ │ │ ├── ILogParserGateway.cs │ │ │ ├── ILogPreProcessor.cs │ │ │ ├── LogParserGateway.cs │ │ │ └── LogPreProcessor.cs │ │ ├── IEnumerableExtension.cs │ │ ├── ParserFactory.cs │ │ ├── PipelineConfig.cs │ │ ├── PipelineTestRun.cs │ │ ├── PipelineTestRunPublisher.cs │ │ ├── Plugin │ │ │ └── TestResultLogPlugin.cs │ │ ├── SimpleTimer.cs │ │ ├── Telemetry │ │ │ ├── TelemetryConstants.cs │ │ │ ├── TelemetryDataCollector.cs │ │ │ └── TelemetryDataWrapper.cs │ │ ├── TestRunManager.cs │ │ └── TraceLogger.cs │ ├── TfsVCCliManager.cs │ └── TfsVCSourceProvider.cs ├── Agent.Sdk │ ├── Agent.Sdk.csproj │ ├── AgentClientCertificateManager.cs │ ├── AgentWebProxy.cs │ ├── AssemblyInfo.cs │ ├── CommandPlugin.cs │ ├── CommandStringConvertor.cs │ ├── ContainerInfo.cs │ ├── DockerVersion.cs │ ├── ExecutionTargetInfo.cs │ ├── ITraceWriter.cs │ ├── Knob │ │ ├── AgentKnobs.cs │ │ ├── BuiltInDefaultKnobSource.cs │ │ ├── CompositeKnobSource.cs │ │ ├── EnvironmentKnobSource.cs │ │ ├── ICompositeKnobSource.cs │ │ ├── IEnvironmentKnobSource.cs │ │ ├── IKnobSource.cs │ │ ├── IKnobValueContext.cs │ │ ├── Knob.cs │ │ ├── KnobValue.cs │ │ ├── PipelineFeatureSource.cs │ │ └── RuntimeKnobSource.cs │ ├── LogPlugin.cs │ ├── MountVolume.cs │ ├── PortMapping.cs │ ├── ProcessInvoker.MacLinux.cs │ ├── ProcessInvoker.Windows.cs │ ├── ProcessInvoker.cs │ ├── ScopedEnvironment.cs │ ├── SecretMasking │ │ ├── ILoggedSecretMasker.cs │ │ ├── IRawSecretMasker.cs │ │ ├── LegacySecretMasker.cs │ │ ├── LoggedSecretMasker.cs │ │ └── OssSecretMasker.cs │ ├── TaskPlugin.cs │ └── Util │ │ ├── ArgUtil │ │ ├── ArgUtil.cs │ │ ├── ArgUtilInstanced.cs │ │ └── IArgUtilInstanced.cs │ │ ├── AzureInstanceMetadataProvider.cs │ │ ├── BlobStoreWarningInfoProvider.cs │ │ ├── ExceptionsUtil.cs │ │ ├── IOUtil.cs │ │ ├── MaskingUtil.cs │ │ ├── NetFrameworkUtil.cs │ │ ├── NullTraceWriter.cs │ │ ├── PathUtil.cs │ │ ├── PlatformUtil.cs │ │ ├── PsModulePathUtil.cs │ │ ├── RepositoryUtil.cs │ │ ├── SslUtil.cs │ │ ├── StringUtil.cs │ │ ├── TeeUtil.cs │ │ ├── UrlUtil.cs │ │ ├── UtilKnobValueContext.cs │ │ ├── VssUtil.cs │ │ ├── WellKnownSecretAliases.cs │ │ ├── WhichUtil.cs │ │ └── WindowsProcessUtil.cs ├── Agent.Service │ └── Windows │ │ ├── AgentService.Designer.cs │ │ ├── AgentService.cs │ │ ├── AgentService.csproj │ │ ├── App.config │ │ ├── FinalPublicKey.snk │ │ ├── Program.cs │ │ ├── Properties │ │ └── AssemblyInfo.cs │ │ ├── Resource.Designer.cs │ │ ├── Resource.de-de.resx │ │ ├── Resource.es-es.resx │ │ ├── Resource.fr-fr.resx │ │ ├── Resource.it-IT.resx │ │ ├── Resource.ja-jp.resx │ │ ├── Resource.ko-KR.resx │ │ ├── Resource.resx │ │ ├── Resource.ru-RU.resx │ │ ├── Resource.zh-CN.resx │ │ └── Resource.zh-TW.resx ├── Agent.Worker │ ├── Agent.Worker.csproj │ ├── AgentLogPlugin.cs │ ├── AgentPluginManager.cs │ ├── AsyncCommandContext.cs │ ├── Build │ │ ├── ArtifactCommandExtension.cs │ │ ├── BuildCommandExtension.cs │ │ ├── BuildDirectoryManager.cs │ │ ├── BuildJobExtension.cs │ │ ├── BuildServer.cs │ │ ├── Enums.cs │ │ ├── FileContainerServer.cs │ │ ├── GitCommandManager.cs │ │ ├── GitSourceProvider.cs │ │ ├── LegacyTrackingConfig.cs │ │ ├── SourceProvider.cs │ │ ├── SvnCommandManager.cs │ │ ├── SvnSourceProvider.cs │ │ ├── TFCommandManager.cs │ │ ├── TeeCommandManager.cs │ │ ├── TfsVCCommandManager.cs │ │ ├── TfsVCSourceProvider.cs │ │ ├── TopLevelTrackingConfig.cs │ │ ├── TrackingConfig.cs │ │ ├── TrackingConfigBase.cs │ │ ├── TrackingConfigHashAlgorithm.cs │ │ ├── TrackingManager.cs │ │ ├── UploadResult.cs │ │ └── WorkspaceMaintenanceProvider.cs │ ├── CodeCoverage │ │ ├── CoberturaSummaryReader.cs │ │ ├── CodeCoverageCommands.cs │ │ ├── CodeCoverageConstants.cs │ │ ├── CodeCoveragePublisher.cs │ │ ├── CodeCoverageServer.cs │ │ ├── CodeCoverageUtilities.cs │ │ ├── FeatureFlagUtility.cs │ │ ├── ICodeCoverageSummaryReader.cs │ │ └── JaCoCoSummaryReader.cs │ ├── Container │ │ ├── ContainerDiagnosticsManager.cs │ │ ├── DockerCommandManager.cs │ │ └── DockerUtil.cs │ ├── ContainerOperationProvider.cs │ ├── ContainerOperationProviderEnhanced.cs │ ├── DiagnosticLogManager.cs │ ├── ExecutionContext.cs │ ├── ExpressionManager.cs │ ├── GitManager.cs │ ├── Handlers │ │ ├── AgentPluginHandler.cs │ │ ├── Handler.cs │ │ ├── HandlerFactory.cs │ │ ├── LegacyPowerShellHandler.cs │ │ ├── NodeHandler.cs │ │ ├── PowerShell3Handler.cs │ │ ├── PowerShellExeHandler.cs │ │ ├── ProcessHandler │ │ │ ├── CmdArgsSanitizer.cs │ │ │ ├── Exceptions.cs │ │ │ ├── ProcessHandler.cs │ │ │ ├── ProcessHandlerHelper.cs │ │ │ └── ProcessHandlerV2.cs │ │ └── StepHost.cs │ ├── JobExtension.cs │ ├── JobExtensionRunner.cs │ ├── JobRunner.cs │ ├── Maintenance │ │ └── MaintenanceJobExtension.cs │ ├── ManagementScriptStep.cs │ ├── NodeJsUtil.cs │ ├── NuGet.Config │ ├── PluginInternalCommandExtension.cs │ ├── Program.cs │ ├── Release │ │ ├── AgentUtilities.cs │ │ ├── Artifacts │ │ │ ├── ArtifactDirectoryCreationFailedException.cs │ │ │ ├── ArtifactDownloadException.cs │ │ │ ├── BuildArtifact.cs │ │ │ ├── CommitsDownloadException.cs │ │ │ ├── CustomArtifact.cs │ │ │ ├── Definition │ │ │ │ ├── ArtifactDefinition.cs │ │ │ │ ├── BuildArtifactDetails.cs │ │ │ │ ├── CustomArtifactDetails.cs │ │ │ │ ├── CustomArtifactDownloadDetails.cs │ │ │ │ ├── CustomArtifactVersionDetails.cs │ │ │ │ ├── GitHubArtifactDetails.cs │ │ │ │ ├── IArtifactDetails.cs │ │ │ │ ├── JenkinsArtifactDetails.cs │ │ │ │ ├── TfsGitArtifactDetails.cs │ │ │ │ ├── TfsVCArtifactDetails.cs │ │ │ │ └── WellKnownStreamTypes.cs │ │ │ ├── FileShareArtifact.cs │ │ │ ├── GenericHttpClient.cs │ │ │ ├── GitHubArtifact.cs │ │ │ ├── GitHubHttpClient.cs │ │ │ ├── JenkinsArtifact.cs │ │ │ ├── TfsGitArtifact.cs │ │ │ └── TfsVCArtifact.cs │ │ ├── ContainerFetchEngine │ │ │ ├── ContainerFetchEngine.cs │ │ │ ├── ContainerFetchEngineDefaultOptions.cs │ │ │ ├── ContainerFetchEngineOptions.cs │ │ │ ├── ContainerItem.cs │ │ │ ├── FetchEngine.cs │ │ │ ├── HttpRetryOnTimeoutHandler.cs │ │ │ ├── HttpRetryOnTimeoutOptions.cs │ │ │ ├── IConatinerFetchEngineLogger.cs │ │ │ ├── IContainerProvider.cs │ │ │ ├── ItemType.cs │ │ │ └── NullExecutionLogger.cs │ │ ├── ContainerProvider │ │ │ ├── FileContainerProvider.cs │ │ │ └── Helpers │ │ │ │ ├── AsyncLazy.cs │ │ │ │ ├── ContainerProviderFactory.cs │ │ │ │ ├── ExecutionLogger.cs │ │ │ │ └── VssConnectionFactory.cs │ │ ├── DeploymentJobExtension.cs │ │ ├── IArtifactExtension.cs │ │ ├── IReleaseDirectoryManager.cs │ │ ├── ReleaseCommandExtension.cs │ │ ├── ReleaseDirectoryManager.cs │ │ ├── ReleaseFileSystemManager.cs │ │ ├── ReleaseJobExtension.cs │ │ ├── ReleaseServer.cs │ │ ├── ReleaseTrackingConfig.cs │ │ ├── ReleaseTrackingManager.cs │ │ ├── RetryExecutor.cs │ │ └── ZipStreamDownloader.cs │ ├── ResourceMetricsManager.cs │ ├── RetryHelper.cs │ ├── SignatureService.cs │ ├── SimpleTimer.cs │ ├── StepsRunner.cs │ ├── TaskCommandExtension.cs │ ├── TaskDecoratorManager.cs │ ├── TaskManager.cs │ ├── TaskRestrictionsChecker.cs │ ├── TaskRestrictionsExtension.cs │ ├── TaskRunner.cs │ ├── Telemetry │ │ ├── CustomerIntelligenceServer.cs │ │ └── TelemetryCommandExtension.cs │ ├── TempDirectoryManager.cs │ ├── TestResults │ │ ├── CommandTraceListener.cs │ │ ├── Legacy │ │ │ ├── AttachmentData.cs │ │ │ ├── ContainerStructureTestResultReader.cs │ │ │ ├── CtestResultReader.cs │ │ │ ├── IConverter.cs │ │ │ ├── IResultReader.cs │ │ │ ├── JunitResultReader.cs │ │ │ ├── LegacyTestRunDataPublisher.cs │ │ │ ├── NunitResultReader.cs │ │ │ ├── TestCaseResultData.cs │ │ │ ├── TestCaseResultDataConverter.cs │ │ │ ├── TestCaseSubResultData.cs │ │ │ ├── TestCaseSubResultDataConverter.cs │ │ │ ├── TestResultsServer.cs │ │ │ ├── TestRunContext.cs │ │ │ ├── TestRunData.cs │ │ │ ├── TestRunPublisher.cs │ │ │ ├── TrxResultReader.cs │ │ │ └── XunitResultReader.cs │ │ ├── Parser.cs │ │ ├── PublishToEvidenceStoreCommand.cs │ │ ├── ResultsCommandExtension.cs │ │ ├── TestDataPublisher.cs │ │ ├── TestRunDataPublisherHelper.cs │ │ └── Utils │ │ │ ├── FeatureFlagService.cs │ │ │ ├── InputValidator.cs │ │ │ ├── PublisherInputValidator.cs │ │ │ ├── TestResultUtils.cs │ │ │ └── TestResultsConstants.cs │ ├── TfManager.cs │ ├── Variables.cs │ ├── VsoTaskLibManager.cs │ ├── Worker.cs │ ├── WorkerCommandManager.cs │ └── WorkerUtilties.cs ├── Common.props ├── Microsoft.VisualStudio.Services.Agent │ ├── AdditionalMaskingRegexes.cs │ ├── AgentCertificateManager.cs │ ├── AgentCredentialStore │ │ ├── LinuxAgentCredentialStore.cs │ │ ├── MacOSAgentCredentialStore.cs │ │ ├── NoOpAgentCredentialStore.cs │ │ └── WindowsAgentCredentialStore.cs │ ├── AgentServer.cs │ ├── AgentService.cs │ ├── AssemblyInfo.cs │ ├── AsyncManualResetEvent.cs │ ├── Blob │ │ ├── BlobFileInfo.cs │ │ ├── BlobStoreClientTelemetryTfs.cs │ │ ├── BlobStoreUtils.cs │ │ ├── BlobstoreClientSettings.cs │ │ ├── BuildArtifactActionRecord.cs │ │ ├── CustomerIntelligenceTelemetrySender.cs │ │ ├── DedupManifestArtifactClientFactory.cs │ │ ├── IDedupRecord.cs │ │ ├── PipelineTelemetryRecord.cs │ │ └── TimelineRecordAttachmentTelemetryRecord.cs │ ├── Capabilities │ │ ├── AgentCapabilitiesProvider.cs │ │ ├── CapabilitiesManager.cs │ │ ├── EnvironmentCapabilitiesProvider.cs │ │ ├── NixCapabilitiesProvider.cs │ │ ├── PowerShellCapabilitiesProvider.cs │ │ └── UserCapabilitiesProvider.cs │ ├── Command.cs │ ├── ConfigurationStore.cs │ ├── Constants.cs │ ├── CorrelationContextManager.cs │ ├── CredentialData.cs │ ├── DeploymentGroupServer.cs │ ├── EnhancedTracing.cs │ ├── EnvironmentsServer.cs │ ├── Exceptions.cs │ ├── ExtensionManager.cs │ ├── Extensions.cs │ ├── HostContext.cs │ ├── HostTraceListener.cs │ ├── IAgentCredentialStore.cs │ ├── IExtension.cs │ ├── ITracingProxy.cs │ ├── JobNotification.cs │ ├── JobServer.cs │ ├── JobServerQueue.cs │ ├── LocationServer.cs │ ├── Logging.cs │ ├── Microsoft.VisualStudio.Services.Agent.csproj │ ├── NuGet.Config │ ├── ProcessChannel.cs │ ├── ProcessExtensions.cs │ ├── ProcessInvoker.cs │ ├── StreamString.cs │ ├── TaskServer.cs │ ├── Terminal.cs │ ├── ThrottlingReportHandler.cs │ ├── TraceManager.cs │ ├── TraceSetting.cs │ ├── Tracing.cs │ ├── TracingProxy.cs │ ├── Util │ │ ├── EnumUtil.cs │ │ ├── PlanUtil.cs │ │ ├── PowerShellExeUtil.cs │ │ ├── ServerUtil.cs │ │ ├── TaskResultUtil.cs │ │ ├── UnixUtil.cs │ │ └── VarUtil.cs │ ├── VstsAgentWebProxy.cs │ └── WindowsEnvVarHelper.cs ├── Misc │ ├── BuildConstants.ch │ ├── InstallAgentPackage.template.xml │ ├── Publish.template.ps1 │ ├── UpdateAgentPackage.template.xml │ ├── check-symlinks.sh │ ├── externals.sh │ ├── layoutbin │ │ ├── AgentService.js │ │ ├── containerHandlerInvoker.js.template │ │ ├── darwin.svc.sh.template │ │ ├── de-DE │ │ │ └── strings.json │ │ ├── en-US │ │ │ └── strings.json │ │ ├── es-ES │ │ │ └── strings.json │ │ ├── fr-FR │ │ │ └── strings.json │ │ ├── installdependencies.sh │ │ ├── it-IT │ │ │ └── strings.json │ │ ├── ja-JP │ │ │ └── strings.json │ │ ├── ko-KR │ │ │ └── strings.json │ │ ├── powershell │ │ │ ├── Add-AndroidSdkCapabilities.ps1 │ │ │ ├── Add-AntCapabilities.ps1 │ │ │ ├── Add-ApplicationCapabilities.ps1 │ │ │ ├── Add-AzureGuestAgentCapabilities.ps1 │ │ │ ├── Add-AzurePowerShellCapabilities.ps1 │ │ │ ├── Add-Capabilities.ps1 │ │ │ ├── Add-ChefCapabilities.ps1 │ │ │ ├── Add-DotNetFrameworkCapabilities.ps1 │ │ │ ├── Add-JavaCapabilities.ps1 │ │ │ ├── Add-MSBuildCapabilities.ps1 │ │ │ ├── Add-MavenCapabilities.ps1 │ │ │ ├── Add-PowerShellCapabilities.ps1 │ │ │ ├── Add-ScvmmAdminConsoleCapabilities.ps1 │ │ │ ├── Add-SqlPackageCapabilities.ps1 │ │ │ ├── Add-VisualStudioCapabilities.ps1 │ │ │ ├── Add-WindowsKitCapabilities.ps1 │ │ │ ├── Add-WindowsSdkCapabilities.ps1 │ │ │ ├── Add-XamarinAndroidCapabilities.ps1 │ │ │ ├── CapabilityHelpers │ │ │ │ ├── CapabilityFunctions.ps1 │ │ │ │ ├── CapabilityHelpers.psm1 │ │ │ │ ├── PathFunctions.ps1 │ │ │ │ ├── RegistryFunctions.ps1 │ │ │ │ ├── VersionFunctions.ps1 │ │ │ │ └── VisualStudioFunctions.ps1 │ │ │ ├── Get-LocalGroupMembership.ps1 │ │ │ └── Start-AzpTask.ps1 │ │ ├── ru-RU │ │ │ └── strings.json │ │ ├── runsvc.sh │ │ ├── systemd.svc.sh.template │ │ ├── tasks-exception-list.json │ │ ├── update.cmd.template │ │ ├── update.sh.template │ │ ├── vsts.agent.plist.template │ │ ├── vsts.agent.service.template │ │ ├── zh-CN │ │ │ └── strings.json │ │ └── zh-TW │ │ │ └── strings.json │ ├── layoutroot │ │ ├── config.cmd │ │ ├── config.sh │ │ ├── env.sh │ │ ├── license.html │ │ ├── reauth.cmd │ │ ├── reauth.sh │ │ ├── run-docker.sh │ │ ├── run.cmd │ │ └── run.sh │ └── osxsvclayout.txt ├── NuGet.Config ├── Test │ ├── CodeCoverage.runsettings │ ├── L0 │ │ ├── ConstantGenerationL0.cs │ │ ├── Container │ │ │ ├── ContainerDiagnosticsManagerL0.cs │ │ │ ├── ContainerInfoL0.cs │ │ │ ├── DockerCommandManagerL0.cs │ │ │ └── DockerUtilL0.cs │ │ ├── CorrelationContextManagerL0.cs │ │ ├── EnhancedTracingCorrelationL0.cs │ │ ├── EnhancedTracingL0.cs │ │ ├── ExtensionManagerL0.cs │ │ ├── HostContextExtensionL0.cs │ │ ├── HostContextL0.cs │ │ ├── KnobL0.cs │ │ ├── Listener │ │ │ ├── AgentL0.cs │ │ │ ├── CommandSettingsL0.cs │ │ │ ├── Configuration │ │ │ │ ├── AgentAutoLogonTestL0.cs │ │ │ │ ├── AgentCapabilitiesProviderTestL0.cs │ │ │ │ ├── AgentCredentialL0.cs │ │ │ │ ├── ArgumentValidatorTestsL0.cs │ │ │ │ ├── ConfigurationManagerL0.cs │ │ │ │ ├── Mocks │ │ │ │ │ └── MockNativeWindowsServiceHelper.cs │ │ │ │ ├── NativeWindowsServiceHelperL0.cs │ │ │ │ ├── PromptManagerTestsL0.cs │ │ │ │ ├── ServiceControlManagerL0.cs │ │ │ │ └── UserCapabilitiesProviderTestL0.cs │ │ │ ├── JobDispatcherL0.cs │ │ │ ├── ListenerCorrelationIntegrationL0.cs │ │ │ ├── MessageListenerL0.cs │ │ │ └── PipelineParserL0.cs │ │ ├── LocStringsL0.cs │ │ ├── NodeHandlerL0.cs │ │ ├── PagingLoggerL0.cs │ │ ├── Plugin │ │ │ ├── BlobstoreClientSettingsL0.cs │ │ │ ├── ChunkerTests.cs │ │ │ ├── FingerprintCreatorTests.cs │ │ │ ├── FingerprintTests.cs │ │ │ ├── IsPathyTests.cs │ │ │ ├── LogPluginHostL0.cs │ │ │ ├── MatchingTests.cs │ │ │ ├── RepositoryPluginL0.cs │ │ │ ├── TarUtilsL0.cs │ │ │ ├── TestFileContainerProvider │ │ │ │ └── TestFileContainerProviderL0.cs │ │ │ ├── TestFilePublisher │ │ │ │ ├── TestFileFinderL0.cs │ │ │ │ ├── TestFilePublisherL0.cs │ │ │ │ └── TestFilePublisherLogPluginL0.cs │ │ │ ├── TestFileShareProvider │ │ │ │ ├── MockDedupManifestArtifactClientFactory.cs │ │ │ │ ├── TestFileShareProviderL0.cs │ │ │ │ └── TestTelemetrySender.cs │ │ │ ├── TestGitCliManager │ │ │ │ ├── MockAgentTaskPluginExecutionContext.cs │ │ │ │ ├── MockGitCliManager.cs │ │ │ │ └── TestGitCliManagerL0.cs │ │ │ ├── TestGitSourceProvider │ │ │ │ ├── GitSourceProviderL0.cs │ │ │ │ ├── MockAgentTaskPluginExecutionContext.cs │ │ │ │ ├── MockGitCliManager.cs │ │ │ │ └── MockGitSoureProvider.cs │ │ │ └── TestResultParser │ │ │ │ ├── EnumerableExtensionL0.cs │ │ │ │ ├── LogPreProcessorL0.cs │ │ │ │ ├── PipelineTestRunPublisherL0.cs │ │ │ │ ├── TestResultLogPluginL0.cs │ │ │ │ └── TestRunManagerL0.cs │ │ ├── ProcessExtensionL0.cs │ │ ├── ProcessInvokerL0.cs │ │ ├── ProxyConfigL0.cs │ │ ├── SecretMaskerTests │ │ │ ├── LoggedSecretMaskerL0.cs │ │ │ └── SecretMaskerL0.cs │ │ ├── ServiceInterfacesL0.cs │ │ ├── TestHostContext.cs │ │ ├── TestUtil.cs │ │ ├── TraceManagerL0.cs │ │ ├── Util │ │ │ ├── ArgUtilL0.cs │ │ │ ├── IOUtilL0.cs │ │ │ ├── ProcessUtilL0.cs │ │ │ ├── RepositoryUtilL0.cs │ │ │ ├── StringUtilL0.cs │ │ │ ├── TaskResultUtilL0.cs │ │ │ ├── TelemetryPropsUtil.cs │ │ │ ├── UrlUtilL0.cs │ │ │ ├── VarUtilL0.cs │ │ │ ├── VssUtilL0.cs │ │ │ └── WhichUtilL0.cs │ │ ├── VstsAgentWebProxyL0.cs │ │ └── Worker │ │ │ ├── AgentPluginManagerL0.cs │ │ │ ├── Build │ │ │ ├── BuildDirectoryManagerL0.cs │ │ │ ├── BuildJobExtensionL0.cs │ │ │ ├── GitCommandManagerL0.cs │ │ │ ├── GitSourceProviderL0.cs │ │ │ ├── TfsVCCommandManagerL0.cs │ │ │ ├── TfsVCSourceProvider.WorkspaceUtilL0.cs │ │ │ ├── TfsVCSourceProviderL0.cs │ │ │ ├── TrackingConfigHashAlgorithmL0.cs │ │ │ ├── TrackingConfigL0.cs │ │ │ ├── TrackingManagerL0.cs │ │ │ └── WorkspaceMaintenanceProvicerL0.cs │ │ │ ├── CodeCoverage │ │ │ ├── CoberturaSummaryReaderTests.cs │ │ │ ├── CodeCoverageCommandExtensionTests.cs │ │ │ ├── CodeCoverageConstants.cs │ │ │ ├── CodeCoverageUtilitiesTests.cs │ │ │ ├── JacocoSummaryReaderTests.cs │ │ │ ├── frame-summary.html │ │ │ └── index.html │ │ │ ├── ExecutionContextL0.cs │ │ │ ├── ExpressionManagerL0.cs │ │ │ ├── GitManagerL0.cs │ │ │ ├── Handlers │ │ │ ├── CmdArgsSanitizerL0.cs │ │ │ ├── ProcessHandlerHelperL0.cs │ │ │ ├── ProcessHandlerHelperTelemetryL0.cs │ │ │ └── ProcessHandlerL0.cs │ │ │ ├── JobExtensionL0.cs │ │ │ ├── JobRunnerL0.cs │ │ │ ├── LoggingCommandL0.cs │ │ │ ├── PluginInternalUpdateRepositoryPathCommandL0.cs │ │ │ ├── Release │ │ │ ├── AgentUtlitiesL0.cs │ │ │ ├── FetchEngineL0.cs │ │ │ ├── GitHubArtifactL0.cs │ │ │ ├── JenkinsArtifactL0.cs │ │ │ ├── ReleaseDirectoryManagerL0.cs │ │ │ ├── ReleaseJobExtensionL0.cs │ │ │ ├── TfsGitArtifactL0.cs │ │ │ └── TfsVCArtifactL0.cs │ │ │ ├── SetVariableRestrictionsL0.cs │ │ │ ├── StepsRunnerL0.cs │ │ │ ├── TaskCommandExtensionL0.cs │ │ │ ├── TaskDecoratorManagerL0.cs │ │ │ ├── TaskManagerL0.cs │ │ │ ├── TaskRunnerL0.cs │ │ │ ├── Telemetry │ │ │ └── TelemetryCommandExtensionTests.cs │ │ │ ├── TestResults │ │ │ ├── Legacy │ │ │ │ ├── CtestResultReaderTests.cs │ │ │ │ ├── JunitResultReaderTests.cs │ │ │ │ ├── NUnitResultReaderTests.cs │ │ │ │ ├── TestRunPublisherTests.cs │ │ │ │ ├── TrxResultReaderTests.cs │ │ │ │ └── XUnitResultReaderTests.cs │ │ │ ├── ParserTests.cs │ │ │ └── ResultsCommandExtensionTests.cs │ │ │ ├── TfManagerL0.cs │ │ │ ├── VariablesL0.cs │ │ │ ├── WorkerCommandManagerL0.cs │ │ │ ├── WorkerCorrelationIntegrationL0.cs │ │ │ └── WorkerL0.cs │ ├── L1 │ │ ├── L1HostContext.cs │ │ ├── Mock │ │ │ ├── FakeAgentPluginManager.cs │ │ │ ├── FakeBuildServer.cs │ │ │ ├── FakeConfigurationStore.cs │ │ │ ├── FakeCustomerIntelligenceServer.cs │ │ │ ├── FakeJobServer.cs │ │ │ ├── FakeReleaseServer.cs │ │ │ ├── FakeResourceMetricsManager.cs │ │ │ ├── FakeTaskManager.cs │ │ │ └── FakeTaskServer.cs │ │ ├── Plugins │ │ │ ├── FakeCheckoutTask.cs │ │ │ └── FakeGitCliManager.cs │ │ └── Worker │ │ │ ├── CheckoutL1Tests.cs │ │ │ ├── ConditionsL1Tests.cs │ │ │ ├── ConfigL1Tests.cs │ │ │ ├── ContainerL1Tests.cs │ │ │ ├── CoreL1Tests.cs │ │ │ ├── CorrelationL1Tests.cs │ │ │ ├── L1TestBase.cs │ │ │ ├── TimeoutLogFlushingL1Tests.cs │ │ │ └── VariableL1Tests.cs │ ├── NuGet.Config │ ├── Test.csproj │ └── TestData │ │ └── TaskManagerL0 │ │ └── task.json ├── agentversion ├── dev.cmd ├── dev.sh └── dir.proj └── tools ├── FindAgentsNotCompatibleWithAgent ├── QueryAgentPoolsForCompatibleOS.ps1 └── readme.md └── FindPipelinesUsingRetiredImages ├── QueryJobHistoryForRetiredImages.ps1 └── readme.md /.CodeQL.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/.CodeQL.yml -------------------------------------------------------------------------------- /.azure-pipelines/build-job.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/.azure-pipelines/build-job.yml -------------------------------------------------------------------------------- /.azure-pipelines/build-jobs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/.azure-pipelines/build-jobs.yml -------------------------------------------------------------------------------- /.azure-pipelines/get-pat.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/.azure-pipelines/get-pat.yml -------------------------------------------------------------------------------- /.azure-pipelines/package-vcredist.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/.azure-pipelines/package-vcredist.yml -------------------------------------------------------------------------------- /.azure-pipelines/pipeline.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/.azure-pipelines/pipeline.yml -------------------------------------------------------------------------------- /.azure-pipelines/scripts/Get-SigntoolPath.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/.azure-pipelines/scripts/Get-SigntoolPath.ps1 -------------------------------------------------------------------------------- /.azure-pipelines/scripts/RemoveSignatureForThirdPartyAssemlies.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/.azure-pipelines/scripts/RemoveSignatureForThirdPartyAssemlies.ps1 -------------------------------------------------------------------------------- /.azure-pipelines/scripts/RemoveSignatureScript.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/.azure-pipelines/scripts/RemoveSignatureScript.ps1 -------------------------------------------------------------------------------- /.azure-pipelines/scripts/run-and-verify.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/.azure-pipelines/scripts/run-and-verify.js -------------------------------------------------------------------------------- /.azure-pipelines/scripts/switch-branch.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/.azure-pipelines/scripts/switch-branch.ps1 -------------------------------------------------------------------------------- /.azure-pipelines/scripts/switch-branch.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/.azure-pipelines/scripts/switch-branch.sh -------------------------------------------------------------------------------- /.azure-pipelines/signing.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/.azure-pipelines/signing.yml -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gdn/.gdnbaselines: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/.gdn/.gdnbaselines -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/.github/CODEOWNERS -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/.github/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/.github/ISSUE_TEMPLATE/bug.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/.github/ISSUE_TEMPLATE/config.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/.github/ISSUE_TEMPLATE/feature.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/question.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/.github/ISSUE_TEMPLATE/question.yml -------------------------------------------------------------------------------- /.github/copilot-instructions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/.github/copilot-instructions.md -------------------------------------------------------------------------------- /.github/labelChecker/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/.github/labelChecker/index.js -------------------------------------------------------------------------------- /.github/labelChecker/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/.github/labelChecker/package-lock.json -------------------------------------------------------------------------------- /.github/labelChecker/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/.github/labelChecker/package.json -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /.github/workflows/autoAssignABTT.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/.github/workflows/autoAssignABTT.yml -------------------------------------------------------------------------------- /.github/workflows/labelChecker.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/.github/workflows/labelChecker.yml -------------------------------------------------------------------------------- /.github/workflows/localization-automerge.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/.github/workflows/localization-automerge.yml -------------------------------------------------------------------------------- /.github/workflows/stale.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/.github/workflows/stale.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /.vsts.ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/.vsts.ci.yml -------------------------------------------------------------------------------- /.vsts.release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/.vsts.release.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/SECURITY.md -------------------------------------------------------------------------------- /assets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/assets.json -------------------------------------------------------------------------------- /azure-pipelines-agent.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/azure-pipelines-agent.sln -------------------------------------------------------------------------------- /docs/contribute.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/docs/contribute.md -------------------------------------------------------------------------------- /docs/design/auth.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/docs/design/auth.md -------------------------------------------------------------------------------- /docs/design/byos.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/docs/design/byos.md -------------------------------------------------------------------------------- /docs/design/clientcert.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/docs/design/clientcert.md -------------------------------------------------------------------------------- /docs/design/coreclr.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/docs/design/coreclr.md -------------------------------------------------------------------------------- /docs/design/jobcancellation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/docs/design/jobcancellation.md -------------------------------------------------------------------------------- /docs/design/logprocessors.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/docs/design/logprocessors.md -------------------------------------------------------------------------------- /docs/design/non-glibc-containers.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/docs/design/non-glibc-containers.md -------------------------------------------------------------------------------- /docs/design/percentEncoding.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/docs/design/percentEncoding.md -------------------------------------------------------------------------------- /docs/design/proxy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/docs/design/proxy.md -------------------------------------------------------------------------------- /docs/design/res/01AgentConfig.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/docs/design/res/01AgentConfig.png -------------------------------------------------------------------------------- /docs/design/res/02AgentStartListen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/docs/design/res/02AgentStartListen.png -------------------------------------------------------------------------------- /docs/design/res/03AgentQueueBuild.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/docs/design/res/03AgentQueueBuild.png -------------------------------------------------------------------------------- /docs/design/res/AgentLogProcessors.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/docs/design/res/AgentLogProcessors.png -------------------------------------------------------------------------------- /docs/design/res/AgentLogProcessors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/docs/design/res/AgentLogProcessors.xml -------------------------------------------------------------------------------- /docs/design/res/byos1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/docs/design/res/byos1.png -------------------------------------------------------------------------------- /docs/design/res/byos2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/docs/design/res/byos2.png -------------------------------------------------------------------------------- /docs/design/setMTU.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/docs/design/setMTU.md -------------------------------------------------------------------------------- /docs/git.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/docs/git.md -------------------------------------------------------------------------------- /docs/jobdirectories.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/docs/jobdirectories.md -------------------------------------------------------------------------------- /docs/layers.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/docs/layers.md -------------------------------------------------------------------------------- /docs/node6.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/docs/node6.md -------------------------------------------------------------------------------- /docs/noderunner.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/docs/noderunner.md -------------------------------------------------------------------------------- /docs/preview/consumeoutputvariable.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/docs/preview/consumeoutputvariable.md -------------------------------------------------------------------------------- /docs/preview/latebreaking.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/docs/preview/latebreaking.md -------------------------------------------------------------------------------- /docs/preview/logdecorations.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/docs/preview/logdecorations.md -------------------------------------------------------------------------------- /docs/preview/outdated/conditions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/docs/preview/outdated/conditions.md -------------------------------------------------------------------------------- /docs/preview/outdated/pipeline.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/docs/preview/outdated/pipeline.md -------------------------------------------------------------------------------- /docs/preview/outdated/resources.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/docs/preview/outdated/resources.md -------------------------------------------------------------------------------- /docs/preview/outdated/yaml/dot-net-core-template.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/docs/preview/outdated/yaml/dot-net-core-template.yaml -------------------------------------------------------------------------------- /docs/preview/outdated/yaml/dot-net-core.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/docs/preview/outdated/yaml/dot-net-core.yaml -------------------------------------------------------------------------------- /docs/preview/outdated/yaml/vsbuild-template.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/docs/preview/outdated/yaml/vsbuild-template.yaml -------------------------------------------------------------------------------- /docs/preview/outdated/yaml/vsbuild.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/docs/preview/outdated/yaml/vsbuild.yaml -------------------------------------------------------------------------------- /docs/preview/outdated/yamldeserialization.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/docs/preview/outdated/yamldeserialization.md -------------------------------------------------------------------------------- /docs/preview/outdated/yamlscripts.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/docs/preview/outdated/yamlscripts.md -------------------------------------------------------------------------------- /docs/preview/outputvariable.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/docs/preview/outputvariable.md -------------------------------------------------------------------------------- /docs/preview/runtaskindocker.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/docs/preview/runtaskindocker.md -------------------------------------------------------------------------------- /docs/preview/yaml-authz-troubleshooting.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/docs/preview/yaml-authz-troubleshooting.md -------------------------------------------------------------------------------- /docs/preview/yamlgettingstarted.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/docs/preview/yamlgettingstarted.md -------------------------------------------------------------------------------- /docs/res/apple_med.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/docs/res/apple_med.png -------------------------------------------------------------------------------- /docs/res/apple_sm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/docs/res/apple_sm.png -------------------------------------------------------------------------------- /docs/res/dependencies.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/docs/res/dependencies.svg -------------------------------------------------------------------------------- /docs/res/linux_med.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/docs/res/linux_med.png -------------------------------------------------------------------------------- /docs/res/linux_sm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/docs/res/linux_sm.png -------------------------------------------------------------------------------- /docs/res/redhat_med.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/docs/res/redhat_med.png -------------------------------------------------------------------------------- /docs/res/redhat_sm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/docs/res/redhat_sm.png -------------------------------------------------------------------------------- /docs/res/ubuntu_med.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/docs/res/ubuntu_med.png -------------------------------------------------------------------------------- /docs/res/ubuntu_sm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/docs/res/ubuntu_sm.png -------------------------------------------------------------------------------- /docs/res/win_med.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/docs/res/win_med.png -------------------------------------------------------------------------------- /docs/res/win_sm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/docs/res/win_sm.png -------------------------------------------------------------------------------- /docs/start/configonprem.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/docs/start/configonprem.md -------------------------------------------------------------------------------- /docs/start/configvsts.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/docs/start/configvsts.md -------------------------------------------------------------------------------- /docs/start/envlinux.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/docs/start/envlinux.md -------------------------------------------------------------------------------- /docs/start/envosx.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/docs/start/envosx.md -------------------------------------------------------------------------------- /docs/start/envredhat.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/docs/start/envredhat.md -------------------------------------------------------------------------------- /docs/start/envubuntu.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/docs/start/envubuntu.md -------------------------------------------------------------------------------- /docs/start/envwin.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/docs/start/envwin.md -------------------------------------------------------------------------------- /docs/start/moreconfig.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/docs/start/moreconfig.md -------------------------------------------------------------------------------- /docs/start/nixsvc.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/docs/start/nixsvc.md -------------------------------------------------------------------------------- /docs/start/proxyconfig.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/docs/start/proxyconfig.md -------------------------------------------------------------------------------- /docs/start/resourceconfig.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/docs/start/resourceconfig.md -------------------------------------------------------------------------------- /docs/start/roles.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/docs/start/roles.md -------------------------------------------------------------------------------- /docs/start/roles.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/docs/start/roles.png -------------------------------------------------------------------------------- /docs/start/scopes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/docs/start/scopes.png -------------------------------------------------------------------------------- /docs/start/svcosx.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/docs/start/svcosx.md -------------------------------------------------------------------------------- /docs/start/svcsystemd.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/docs/start/svcsystemd.md -------------------------------------------------------------------------------- /docs/threat-model/AgentsTasks-ThreatModel.tm7: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/docs/threat-model/AgentsTasks-ThreatModel.tm7 -------------------------------------------------------------------------------- /docs/threat-model/Export/Configure Agent - Threat Model.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/docs/threat-model/Export/Configure Agent - Threat Model.png -------------------------------------------------------------------------------- /docs/threat-model/Export/Job Execution - Threat Model.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/docs/threat-model/Export/Job Execution - Threat Model.png -------------------------------------------------------------------------------- /docs/threat-model/Export/Job Polling - Threat Model.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/docs/threat-model/Export/Job Polling - Threat Model.png -------------------------------------------------------------------------------- /docs/threat-model/Export/VMSS Agent Pool - Threat Model.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/docs/threat-model/Export/VMSS Agent Pool - Threat Model.png -------------------------------------------------------------------------------- /docs/threat-model/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/docs/threat-model/README.md -------------------------------------------------------------------------------- /docs/troubleshooting.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/docs/troubleshooting.md -------------------------------------------------------------------------------- /images/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/images/readme.md -------------------------------------------------------------------------------- /open-pullrequest.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/open-pullrequest.ps1 -------------------------------------------------------------------------------- /release/Send-PRsNotification.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/release/Send-PRsNotification.ps1 -------------------------------------------------------------------------------- /release/createAdoPrs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/release/createAdoPrs.js -------------------------------------------------------------------------------- /release/createReleaseBranch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/release/createReleaseBranch.js -------------------------------------------------------------------------------- /release/fillReleaseNotesTemplate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/release/fillReleaseNotesTemplate.js -------------------------------------------------------------------------------- /release/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/release/package-lock.json -------------------------------------------------------------------------------- /release/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/release/package.json -------------------------------------------------------------------------------- /release/rollrelease.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/release/rollrelease.js -------------------------------------------------------------------------------- /release/util.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/release/util.js -------------------------------------------------------------------------------- /releaseNote.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/releaseNote.md -------------------------------------------------------------------------------- /send-notifications.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/send-notifications.ps1 -------------------------------------------------------------------------------- /src/.helpers.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/.helpers.sh -------------------------------------------------------------------------------- /src/Agent.Listener/Agent.Listener.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Agent.Listener/Agent.Listener.csproj -------------------------------------------------------------------------------- /src/Agent.Listener/Agent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Agent.Listener/Agent.cs -------------------------------------------------------------------------------- /src/Agent.Listener/CommandLine/BaseCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Agent.Listener/CommandLine/BaseCommand.cs -------------------------------------------------------------------------------- /src/Agent.Listener/CommandLine/ConfigureAgent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Agent.Listener/CommandLine/ConfigureAgent.cs -------------------------------------------------------------------------------- /src/Agent.Listener/CommandLine/ConfigureOrRemoveBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Agent.Listener/CommandLine/ConfigureOrRemoveBase.cs -------------------------------------------------------------------------------- /src/Agent.Listener/CommandLine/ReAuthAgent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Agent.Listener/CommandLine/ReAuthAgent.cs -------------------------------------------------------------------------------- /src/Agent.Listener/CommandLine/RemoveAgent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Agent.Listener/CommandLine/RemoveAgent.cs -------------------------------------------------------------------------------- /src/Agent.Listener/CommandLine/RunAgent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Agent.Listener/CommandLine/RunAgent.cs -------------------------------------------------------------------------------- /src/Agent.Listener/CommandLine/WarmupAgent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Agent.Listener/CommandLine/WarmupAgent.cs -------------------------------------------------------------------------------- /src/Agent.Listener/CommandSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Agent.Listener/CommandSettings.cs -------------------------------------------------------------------------------- /src/Agent.Listener/Configuration.Linux/SystemdControlManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Agent.Listener/Configuration.Linux/SystemdControlManager.cs -------------------------------------------------------------------------------- /src/Agent.Listener/Configuration.Windows/AutoLogonManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Agent.Listener/Configuration.Windows/AutoLogonManager.cs -------------------------------------------------------------------------------- /src/Agent.Listener/Configuration.Windows/AutoLogonRegistryManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Agent.Listener/Configuration.Windows/AutoLogonRegistryManager.cs -------------------------------------------------------------------------------- /src/Agent.Listener/Configuration.Windows/NativeWindowsServiceHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Agent.Listener/Configuration.Windows/NativeWindowsServiceHelper.cs -------------------------------------------------------------------------------- /src/Agent.Listener/Configuration.Windows/RSAEncryptedFileKeyManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Agent.Listener/Configuration.Windows/RSAEncryptedFileKeyManager.cs -------------------------------------------------------------------------------- /src/Agent.Listener/Configuration.Windows/WindowsRegistryManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Agent.Listener/Configuration.Windows/WindowsRegistryManager.cs -------------------------------------------------------------------------------- /src/Agent.Listener/Configuration.macOS/MacOSServiceControlManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Agent.Listener/Configuration.macOS/MacOSServiceControlManager.cs -------------------------------------------------------------------------------- /src/Agent.Listener/Configuration/ConfigurationManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Agent.Listener/Configuration/ConfigurationManager.cs -------------------------------------------------------------------------------- /src/Agent.Listener/Configuration/ConfigurationProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Agent.Listener/Configuration/ConfigurationProvider.cs -------------------------------------------------------------------------------- /src/Agent.Listener/Configuration/CredentialManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Agent.Listener/Configuration/CredentialManager.cs -------------------------------------------------------------------------------- /src/Agent.Listener/Configuration/CredentialProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Agent.Listener/Configuration/CredentialProvider.cs -------------------------------------------------------------------------------- /src/Agent.Listener/Configuration/FeatureFlagProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Agent.Listener/Configuration/FeatureFlagProvider.cs -------------------------------------------------------------------------------- /src/Agent.Listener/Configuration/IRSAKeyManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Agent.Listener/Configuration/IRSAKeyManager.cs -------------------------------------------------------------------------------- /src/Agent.Listener/Configuration/IntegratedCredential.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Agent.Listener/Configuration/IntegratedCredential.cs -------------------------------------------------------------------------------- /src/Agent.Listener/Configuration/NegotiateCredential.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Agent.Listener/Configuration/NegotiateCredential.cs -------------------------------------------------------------------------------- /src/Agent.Listener/Configuration/OAuthCredential.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Agent.Listener/Configuration/OAuthCredential.cs -------------------------------------------------------------------------------- /src/Agent.Listener/Configuration/PromptManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Agent.Listener/Configuration/PromptManager.cs -------------------------------------------------------------------------------- /src/Agent.Listener/Configuration/RSAFileKeyManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Agent.Listener/Configuration/RSAFileKeyManager.cs -------------------------------------------------------------------------------- /src/Agent.Listener/Configuration/ServiceControlManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Agent.Listener/Configuration/ServiceControlManager.cs -------------------------------------------------------------------------------- /src/Agent.Listener/Configuration/Validators.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Agent.Listener/Configuration/Validators.cs -------------------------------------------------------------------------------- /src/Agent.Listener/Diagnostics/DiagnosticSuite.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Agent.Listener/Diagnostics/DiagnosticSuite.cs -------------------------------------------------------------------------------- /src/Agent.Listener/Diagnostics/DiagnosticsTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Agent.Listener/Diagnostics/DiagnosticsTests.cs -------------------------------------------------------------------------------- /src/Agent.Listener/Diagnostics/DiskInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Agent.Listener/Diagnostics/DiskInfo.cs -------------------------------------------------------------------------------- /src/Agent.Listener/Diagnostics/DnsTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Agent.Listener/Diagnostics/DnsTest.cs -------------------------------------------------------------------------------- /src/Agent.Listener/Diagnostics/FolderPermissionInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Agent.Listener/Diagnostics/FolderPermissionInfo.cs -------------------------------------------------------------------------------- /src/Agent.Listener/Diagnostics/IDiagnosticInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Agent.Listener/Diagnostics/IDiagnosticInfo.cs -------------------------------------------------------------------------------- /src/Agent.Listener/Diagnostics/IDiagnosticTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Agent.Listener/Diagnostics/IDiagnosticTest.cs -------------------------------------------------------------------------------- /src/Agent.Listener/Diagnostics/MtuInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Agent.Listener/Diagnostics/MtuInfo.cs -------------------------------------------------------------------------------- /src/Agent.Listener/Diagnostics/PingTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Agent.Listener/Diagnostics/PingTest.cs -------------------------------------------------------------------------------- /src/Agent.Listener/DistributedTask.Pipelines/TaskResources.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Agent.Listener/DistributedTask.Pipelines/TaskResources.g.cs -------------------------------------------------------------------------------- /src/Agent.Listener/DistributedTask.Pipelines/Update-FromVso.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Agent.Listener/DistributedTask.Pipelines/Update-FromVso.ps1 -------------------------------------------------------------------------------- /src/Agent.Listener/DistributedTask.Pipelines/Yaml/Contracts/IPhase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Agent.Listener/DistributedTask.Pipelines/Yaml/Contracts/IPhase.cs -------------------------------------------------------------------------------- /src/Agent.Listener/DistributedTask.Pipelines/Yaml/Contracts/IStep.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Agent.Listener/DistributedTask.Pipelines/Yaml/Contracts/IStep.cs -------------------------------------------------------------------------------- /src/Agent.Listener/DistributedTask.Pipelines/Yaml/Contracts/Phase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Agent.Listener/DistributedTask.Pipelines/Yaml/Contracts/Phase.cs -------------------------------------------------------------------------------- /src/Agent.Listener/DistributedTask.Pipelines/Yaml/Contracts/Process.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Agent.Listener/DistributedTask.Pipelines/Yaml/Contracts/Process.cs -------------------------------------------------------------------------------- /src/Agent.Listener/DistributedTask.Pipelines/Yaml/FileData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Agent.Listener/DistributedTask.Pipelines/Yaml/FileData.cs -------------------------------------------------------------------------------- /src/Agent.Listener/DistributedTask.Pipelines/Yaml/IFileProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Agent.Listener/DistributedTask.Pipelines/Yaml/IFileProvider.cs -------------------------------------------------------------------------------- /src/Agent.Listener/DistributedTask.Pipelines/Yaml/ITraceWriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Agent.Listener/DistributedTask.Pipelines/Yaml/ITraceWriter.cs -------------------------------------------------------------------------------- /src/Agent.Listener/DistributedTask.Pipelines/Yaml/ParseOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Agent.Listener/DistributedTask.Pipelines/Yaml/ParseOptions.cs -------------------------------------------------------------------------------- /src/Agent.Listener/DistributedTask.Pipelines/Yaml/PipelineParser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Agent.Listener/DistributedTask.Pipelines/Yaml/PipelineParser.cs -------------------------------------------------------------------------------- /src/Agent.Listener/JobDispatcher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Agent.Listener/JobDispatcher.cs -------------------------------------------------------------------------------- /src/Agent.Listener/MessageListener.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Agent.Listener/MessageListener.cs -------------------------------------------------------------------------------- /src/Agent.Listener/NuGet.Config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Agent.Listener/NuGet.Config -------------------------------------------------------------------------------- /src/Agent.Listener/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Agent.Listener/Program.cs -------------------------------------------------------------------------------- /src/Agent.Listener/SelfUpdater.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Agent.Listener/SelfUpdater.cs -------------------------------------------------------------------------------- /src/Agent.Listener/Telemetry/CustomerIntelligenceServer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Agent.Listener/Telemetry/CustomerIntelligenceServer.cs -------------------------------------------------------------------------------- /src/Agent.Listener/Telemetry/TelemetryPublisher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Agent.Listener/Telemetry/TelemetryPublisher.cs -------------------------------------------------------------------------------- /src/Agent.Listener/ValidationHelper/InstallerVerifier.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Agent.Listener/ValidationHelper/InstallerVerifier.cs -------------------------------------------------------------------------------- /src/Agent.Listener/ValidationHelper/UnsafeNativeMethods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Agent.Listener/ValidationHelper/UnsafeNativeMethods.cs -------------------------------------------------------------------------------- /src/Agent.Listener/ValidationHelper/Utility.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Agent.Listener/ValidationHelper/Utility.cs -------------------------------------------------------------------------------- /src/Agent.Listener/ValidationHelper/VerificationException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Agent.Listener/ValidationHelper/VerificationException.cs -------------------------------------------------------------------------------- /src/Agent.Listener/net6.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Agent.Listener/net6.json -------------------------------------------------------------------------------- /src/Agent.Listener/net8.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Agent.Listener/net8.json -------------------------------------------------------------------------------- /src/Agent.PluginHost/Agent.PluginHost.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Agent.PluginHost/Agent.PluginHost.csproj -------------------------------------------------------------------------------- /src/Agent.PluginHost/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Agent.PluginHost/Program.cs -------------------------------------------------------------------------------- /src/Agent.Plugins/Agent.Plugins.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Agent.Plugins/Agent.Plugins.csproj -------------------------------------------------------------------------------- /src/Agent.Plugins/Artifact/ArtifactDownloadParameters.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Agent.Plugins/Artifact/ArtifactDownloadParameters.cs -------------------------------------------------------------------------------- /src/Agent.Plugins/Artifact/ArtifactItemFilters.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Agent.Plugins/Artifact/ArtifactItemFilters.cs -------------------------------------------------------------------------------- /src/Agent.Plugins/Artifact/ArtifactProviderFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Agent.Plugins/Artifact/ArtifactProviderFactory.cs -------------------------------------------------------------------------------- /src/Agent.Plugins/Artifact/BuildServer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Agent.Plugins/Artifact/BuildServer.cs -------------------------------------------------------------------------------- /src/Agent.Plugins/Artifact/FileContainerProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Agent.Plugins/Artifact/FileContainerProvider.cs -------------------------------------------------------------------------------- /src/Agent.Plugins/Artifact/FileShareProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Agent.Plugins/Artifact/FileShareProvider.cs -------------------------------------------------------------------------------- /src/Agent.Plugins/Artifact/IArtifactProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Agent.Plugins/Artifact/IArtifactProvider.cs -------------------------------------------------------------------------------- /src/Agent.Plugins/Artifact/PipelineArtifactConstants.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Agent.Plugins/Artifact/PipelineArtifactConstants.cs -------------------------------------------------------------------------------- /src/Agent.Plugins/Artifact/PipelineArtifactProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Agent.Plugins/Artifact/PipelineArtifactProvider.cs -------------------------------------------------------------------------------- /src/Agent.Plugins/Artifact/PipelineArtifactServer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Agent.Plugins/Artifact/PipelineArtifactServer.cs -------------------------------------------------------------------------------- /src/Agent.Plugins/ArtifactsTracer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Agent.Plugins/ArtifactsTracer.cs -------------------------------------------------------------------------------- /src/Agent.Plugins/BuildArtifact/BuildArtifactPluginConstants.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Agent.Plugins/BuildArtifact/BuildArtifactPluginConstants.cs -------------------------------------------------------------------------------- /src/Agent.Plugins/BuildArtifact/BuildArtifactPluginV1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Agent.Plugins/BuildArtifact/BuildArtifactPluginV1.cs -------------------------------------------------------------------------------- /src/Agent.Plugins/GitCliManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Agent.Plugins/GitCliManager.cs -------------------------------------------------------------------------------- /src/Agent.Plugins/GitSourceProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Agent.Plugins/GitSourceProvider.cs -------------------------------------------------------------------------------- /src/Agent.Plugins/ITfsVCCliManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Agent.Plugins/ITfsVCCliManager.cs -------------------------------------------------------------------------------- /src/Agent.Plugins/PipelineArtifact/FilePathServer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Agent.Plugins/PipelineArtifact/FilePathServer.cs -------------------------------------------------------------------------------- /src/Agent.Plugins/PipelineArtifact/PipelineArtifactPlugin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Agent.Plugins/PipelineArtifact/PipelineArtifactPlugin.cs -------------------------------------------------------------------------------- /src/Agent.Plugins/PipelineArtifact/PipelineArtifactPluginConstants.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Agent.Plugins/PipelineArtifact/PipelineArtifactPluginConstants.cs -------------------------------------------------------------------------------- /src/Agent.Plugins/PipelineArtifact/PipelineArtifactPluginUtil.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Agent.Plugins/PipelineArtifact/PipelineArtifactPluginUtil.cs -------------------------------------------------------------------------------- /src/Agent.Plugins/PipelineArtifact/PipelineArtifactPluginV1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Agent.Plugins/PipelineArtifact/PipelineArtifactPluginV1.cs -------------------------------------------------------------------------------- /src/Agent.Plugins/PipelineArtifact/PipelineArtifactPluginV2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Agent.Plugins/PipelineArtifact/PipelineArtifactPluginV2.cs -------------------------------------------------------------------------------- /src/Agent.Plugins/PipelineArtifact/Telemetry/FileShareActionRecord.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Agent.Plugins/PipelineArtifact/Telemetry/FileShareActionRecord.cs -------------------------------------------------------------------------------- /src/Agent.Plugins/PipelineCache/FingerprintCreator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Agent.Plugins/PipelineCache/FingerprintCreator.cs -------------------------------------------------------------------------------- /src/Agent.Plugins/PipelineCache/PipelineCachePluginConstants.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Agent.Plugins/PipelineCache/PipelineCachePluginConstants.cs -------------------------------------------------------------------------------- /src/Agent.Plugins/PipelineCache/PipelineCacheServer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Agent.Plugins/PipelineCache/PipelineCacheServer.cs -------------------------------------------------------------------------------- /src/Agent.Plugins/PipelineCache/PipelineCacheTaskPluginBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Agent.Plugins/PipelineCache/PipelineCacheTaskPluginBase.cs -------------------------------------------------------------------------------- /src/Agent.Plugins/PipelineCache/RestorePipelineCacheV0.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Agent.Plugins/PipelineCache/RestorePipelineCacheV0.cs -------------------------------------------------------------------------------- /src/Agent.Plugins/PipelineCache/SavePipelineCacheV0.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Agent.Plugins/PipelineCache/SavePipelineCacheV0.cs -------------------------------------------------------------------------------- /src/Agent.Plugins/PipelineCache/TarUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Agent.Plugins/PipelineCache/TarUtils.cs -------------------------------------------------------------------------------- /src/Agent.Plugins/PipelineCache/Telemetry/PipelineCacheActionRecord.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Agent.Plugins/PipelineCache/Telemetry/PipelineCacheActionRecord.cs -------------------------------------------------------------------------------- /src/Agent.Plugins/RepositoryPlugin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Agent.Plugins/RepositoryPlugin.cs -------------------------------------------------------------------------------- /src/Agent.Plugins/SvnCliManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Agent.Plugins/SvnCliManager.cs -------------------------------------------------------------------------------- /src/Agent.Plugins/SvnSourceProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Agent.Plugins/SvnSourceProvider.cs -------------------------------------------------------------------------------- /src/Agent.Plugins/TFCliManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Agent.Plugins/TFCliManager.cs -------------------------------------------------------------------------------- /src/Agent.Plugins/TeeCliManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Agent.Plugins/TeeCliManager.cs -------------------------------------------------------------------------------- /src/Agent.Plugins/TestFilePublisher/ClientFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Agent.Plugins/TestFilePublisher/ClientFactory.cs -------------------------------------------------------------------------------- /src/Agent.Plugins/TestFilePublisher/Finder/ITestFileFinder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Agent.Plugins/TestFilePublisher/Finder/ITestFileFinder.cs -------------------------------------------------------------------------------- /src/Agent.Plugins/TestFilePublisher/Finder/TestFileFinder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Agent.Plugins/TestFilePublisher/Finder/TestFileFinder.cs -------------------------------------------------------------------------------- /src/Agent.Plugins/TestFilePublisher/PipelineConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Agent.Plugins/TestFilePublisher/PipelineConfig.cs -------------------------------------------------------------------------------- /src/Agent.Plugins/TestFilePublisher/SimpleTimer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Agent.Plugins/TestFilePublisher/SimpleTimer.cs -------------------------------------------------------------------------------- /src/Agent.Plugins/TestFilePublisher/Telemetry/TelemetryConstants.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Agent.Plugins/TestFilePublisher/Telemetry/TelemetryConstants.cs -------------------------------------------------------------------------------- /src/Agent.Plugins/TestFilePublisher/Telemetry/TelemetryDataWrapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Agent.Plugins/TestFilePublisher/Telemetry/TelemetryDataWrapper.cs -------------------------------------------------------------------------------- /src/Agent.Plugins/TestFilePublisher/TestFilePublisher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Agent.Plugins/TestFilePublisher/TestFilePublisher.cs -------------------------------------------------------------------------------- /src/Agent.Plugins/TestFilePublisher/TestRunContextBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Agent.Plugins/TestFilePublisher/TestRunContextBuilder.cs -------------------------------------------------------------------------------- /src/Agent.Plugins/TestFilePublisher/TraceListener.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Agent.Plugins/TestFilePublisher/TraceListener.cs -------------------------------------------------------------------------------- /src/Agent.Plugins/TestFilePublisher/TraceLogger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Agent.Plugins/TestFilePublisher/TraceLogger.cs -------------------------------------------------------------------------------- /src/Agent.Plugins/TestResultParser/Bus/IBus.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Agent.Plugins/TestResultParser/Bus/IBus.cs -------------------------------------------------------------------------------- /src/Agent.Plugins/TestResultParser/ClientFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Agent.Plugins/TestResultParser/ClientFactory.cs -------------------------------------------------------------------------------- /src/Agent.Plugins/TestResultParser/Gateway/ILogParserGateway.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Agent.Plugins/TestResultParser/Gateway/ILogParserGateway.cs -------------------------------------------------------------------------------- /src/Agent.Plugins/TestResultParser/Gateway/ILogPreProcessor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Agent.Plugins/TestResultParser/Gateway/ILogPreProcessor.cs -------------------------------------------------------------------------------- /src/Agent.Plugins/TestResultParser/Gateway/LogParserGateway.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Agent.Plugins/TestResultParser/Gateway/LogParserGateway.cs -------------------------------------------------------------------------------- /src/Agent.Plugins/TestResultParser/Gateway/LogPreProcessor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Agent.Plugins/TestResultParser/Gateway/LogPreProcessor.cs -------------------------------------------------------------------------------- /src/Agent.Plugins/TestResultParser/IEnumerableExtension.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Agent.Plugins/TestResultParser/IEnumerableExtension.cs -------------------------------------------------------------------------------- /src/Agent.Plugins/TestResultParser/ParserFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Agent.Plugins/TestResultParser/ParserFactory.cs -------------------------------------------------------------------------------- /src/Agent.Plugins/TestResultParser/PipelineConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Agent.Plugins/TestResultParser/PipelineConfig.cs -------------------------------------------------------------------------------- /src/Agent.Plugins/TestResultParser/PipelineTestRun.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Agent.Plugins/TestResultParser/PipelineTestRun.cs -------------------------------------------------------------------------------- /src/Agent.Plugins/TestResultParser/PipelineTestRunPublisher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Agent.Plugins/TestResultParser/PipelineTestRunPublisher.cs -------------------------------------------------------------------------------- /src/Agent.Plugins/TestResultParser/Plugin/TestResultLogPlugin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Agent.Plugins/TestResultParser/Plugin/TestResultLogPlugin.cs -------------------------------------------------------------------------------- /src/Agent.Plugins/TestResultParser/SimpleTimer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Agent.Plugins/TestResultParser/SimpleTimer.cs -------------------------------------------------------------------------------- /src/Agent.Plugins/TestResultParser/Telemetry/TelemetryConstants.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Agent.Plugins/TestResultParser/Telemetry/TelemetryConstants.cs -------------------------------------------------------------------------------- /src/Agent.Plugins/TestResultParser/Telemetry/TelemetryDataCollector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Agent.Plugins/TestResultParser/Telemetry/TelemetryDataCollector.cs -------------------------------------------------------------------------------- /src/Agent.Plugins/TestResultParser/Telemetry/TelemetryDataWrapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Agent.Plugins/TestResultParser/Telemetry/TelemetryDataWrapper.cs -------------------------------------------------------------------------------- /src/Agent.Plugins/TestResultParser/TestRunManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Agent.Plugins/TestResultParser/TestRunManager.cs -------------------------------------------------------------------------------- /src/Agent.Plugins/TestResultParser/TraceLogger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Agent.Plugins/TestResultParser/TraceLogger.cs -------------------------------------------------------------------------------- /src/Agent.Plugins/TfsVCCliManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Agent.Plugins/TfsVCCliManager.cs -------------------------------------------------------------------------------- /src/Agent.Plugins/TfsVCSourceProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Agent.Plugins/TfsVCSourceProvider.cs -------------------------------------------------------------------------------- /src/Agent.Sdk/Agent.Sdk.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Agent.Sdk/Agent.Sdk.csproj -------------------------------------------------------------------------------- /src/Agent.Sdk/AgentClientCertificateManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Agent.Sdk/AgentClientCertificateManager.cs -------------------------------------------------------------------------------- /src/Agent.Sdk/AgentWebProxy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Agent.Sdk/AgentWebProxy.cs -------------------------------------------------------------------------------- /src/Agent.Sdk/AssemblyInfo.cs: -------------------------------------------------------------------------------- 1 | using System.Runtime.CompilerServices; 2 | 3 | [assembly: InternalsVisibleTo("Test")] -------------------------------------------------------------------------------- /src/Agent.Sdk/CommandPlugin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Agent.Sdk/CommandPlugin.cs -------------------------------------------------------------------------------- /src/Agent.Sdk/CommandStringConvertor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Agent.Sdk/CommandStringConvertor.cs -------------------------------------------------------------------------------- /src/Agent.Sdk/ContainerInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Agent.Sdk/ContainerInfo.cs -------------------------------------------------------------------------------- /src/Agent.Sdk/DockerVersion.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Agent.Sdk/DockerVersion.cs -------------------------------------------------------------------------------- /src/Agent.Sdk/ExecutionTargetInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Agent.Sdk/ExecutionTargetInfo.cs -------------------------------------------------------------------------------- /src/Agent.Sdk/ITraceWriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Agent.Sdk/ITraceWriter.cs -------------------------------------------------------------------------------- /src/Agent.Sdk/Knob/AgentKnobs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Agent.Sdk/Knob/AgentKnobs.cs -------------------------------------------------------------------------------- /src/Agent.Sdk/Knob/BuiltInDefaultKnobSource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Agent.Sdk/Knob/BuiltInDefaultKnobSource.cs -------------------------------------------------------------------------------- /src/Agent.Sdk/Knob/CompositeKnobSource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Agent.Sdk/Knob/CompositeKnobSource.cs -------------------------------------------------------------------------------- /src/Agent.Sdk/Knob/EnvironmentKnobSource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Agent.Sdk/Knob/EnvironmentKnobSource.cs -------------------------------------------------------------------------------- /src/Agent.Sdk/Knob/ICompositeKnobSource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Agent.Sdk/Knob/ICompositeKnobSource.cs -------------------------------------------------------------------------------- /src/Agent.Sdk/Knob/IEnvironmentKnobSource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Agent.Sdk/Knob/IEnvironmentKnobSource.cs -------------------------------------------------------------------------------- /src/Agent.Sdk/Knob/IKnobSource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Agent.Sdk/Knob/IKnobSource.cs -------------------------------------------------------------------------------- /src/Agent.Sdk/Knob/IKnobValueContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Agent.Sdk/Knob/IKnobValueContext.cs -------------------------------------------------------------------------------- /src/Agent.Sdk/Knob/Knob.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Agent.Sdk/Knob/Knob.cs -------------------------------------------------------------------------------- /src/Agent.Sdk/Knob/KnobValue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Agent.Sdk/Knob/KnobValue.cs -------------------------------------------------------------------------------- /src/Agent.Sdk/Knob/PipelineFeatureSource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Agent.Sdk/Knob/PipelineFeatureSource.cs -------------------------------------------------------------------------------- /src/Agent.Sdk/Knob/RuntimeKnobSource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Agent.Sdk/Knob/RuntimeKnobSource.cs -------------------------------------------------------------------------------- /src/Agent.Sdk/LogPlugin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Agent.Sdk/LogPlugin.cs -------------------------------------------------------------------------------- /src/Agent.Sdk/MountVolume.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Agent.Sdk/MountVolume.cs -------------------------------------------------------------------------------- /src/Agent.Sdk/PortMapping.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Agent.Sdk/PortMapping.cs -------------------------------------------------------------------------------- /src/Agent.Sdk/ProcessInvoker.MacLinux.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Agent.Sdk/ProcessInvoker.MacLinux.cs -------------------------------------------------------------------------------- /src/Agent.Sdk/ProcessInvoker.Windows.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Agent.Sdk/ProcessInvoker.Windows.cs -------------------------------------------------------------------------------- /src/Agent.Sdk/ProcessInvoker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Agent.Sdk/ProcessInvoker.cs -------------------------------------------------------------------------------- /src/Agent.Sdk/ScopedEnvironment.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Agent.Sdk/ScopedEnvironment.cs -------------------------------------------------------------------------------- /src/Agent.Sdk/SecretMasking/ILoggedSecretMasker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Agent.Sdk/SecretMasking/ILoggedSecretMasker.cs -------------------------------------------------------------------------------- /src/Agent.Sdk/SecretMasking/IRawSecretMasker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Agent.Sdk/SecretMasking/IRawSecretMasker.cs -------------------------------------------------------------------------------- /src/Agent.Sdk/SecretMasking/LegacySecretMasker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Agent.Sdk/SecretMasking/LegacySecretMasker.cs -------------------------------------------------------------------------------- /src/Agent.Sdk/SecretMasking/LoggedSecretMasker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Agent.Sdk/SecretMasking/LoggedSecretMasker.cs -------------------------------------------------------------------------------- /src/Agent.Sdk/SecretMasking/OssSecretMasker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Agent.Sdk/SecretMasking/OssSecretMasker.cs -------------------------------------------------------------------------------- /src/Agent.Sdk/TaskPlugin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Agent.Sdk/TaskPlugin.cs -------------------------------------------------------------------------------- /src/Agent.Sdk/Util/ArgUtil/ArgUtil.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Agent.Sdk/Util/ArgUtil/ArgUtil.cs -------------------------------------------------------------------------------- /src/Agent.Sdk/Util/ArgUtil/ArgUtilInstanced.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Agent.Sdk/Util/ArgUtil/ArgUtilInstanced.cs -------------------------------------------------------------------------------- /src/Agent.Sdk/Util/ArgUtil/IArgUtilInstanced.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Agent.Sdk/Util/ArgUtil/IArgUtilInstanced.cs -------------------------------------------------------------------------------- /src/Agent.Sdk/Util/AzureInstanceMetadataProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Agent.Sdk/Util/AzureInstanceMetadataProvider.cs -------------------------------------------------------------------------------- /src/Agent.Sdk/Util/BlobStoreWarningInfoProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Agent.Sdk/Util/BlobStoreWarningInfoProvider.cs -------------------------------------------------------------------------------- /src/Agent.Sdk/Util/ExceptionsUtil.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Agent.Sdk/Util/ExceptionsUtil.cs -------------------------------------------------------------------------------- /src/Agent.Sdk/Util/IOUtil.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Agent.Sdk/Util/IOUtil.cs -------------------------------------------------------------------------------- /src/Agent.Sdk/Util/MaskingUtil.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Agent.Sdk/Util/MaskingUtil.cs -------------------------------------------------------------------------------- /src/Agent.Sdk/Util/NetFrameworkUtil.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Agent.Sdk/Util/NetFrameworkUtil.cs -------------------------------------------------------------------------------- /src/Agent.Sdk/Util/NullTraceWriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Agent.Sdk/Util/NullTraceWriter.cs -------------------------------------------------------------------------------- /src/Agent.Sdk/Util/PathUtil.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Agent.Sdk/Util/PathUtil.cs -------------------------------------------------------------------------------- /src/Agent.Sdk/Util/PlatformUtil.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Agent.Sdk/Util/PlatformUtil.cs -------------------------------------------------------------------------------- /src/Agent.Sdk/Util/PsModulePathUtil.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Agent.Sdk/Util/PsModulePathUtil.cs -------------------------------------------------------------------------------- /src/Agent.Sdk/Util/RepositoryUtil.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Agent.Sdk/Util/RepositoryUtil.cs -------------------------------------------------------------------------------- /src/Agent.Sdk/Util/SslUtil.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Agent.Sdk/Util/SslUtil.cs -------------------------------------------------------------------------------- /src/Agent.Sdk/Util/StringUtil.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Agent.Sdk/Util/StringUtil.cs -------------------------------------------------------------------------------- /src/Agent.Sdk/Util/TeeUtil.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Agent.Sdk/Util/TeeUtil.cs -------------------------------------------------------------------------------- /src/Agent.Sdk/Util/UrlUtil.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Agent.Sdk/Util/UrlUtil.cs -------------------------------------------------------------------------------- /src/Agent.Sdk/Util/UtilKnobValueContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Agent.Sdk/Util/UtilKnobValueContext.cs -------------------------------------------------------------------------------- /src/Agent.Sdk/Util/VssUtil.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Agent.Sdk/Util/VssUtil.cs -------------------------------------------------------------------------------- /src/Agent.Sdk/Util/WellKnownSecretAliases.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Agent.Sdk/Util/WellKnownSecretAliases.cs -------------------------------------------------------------------------------- /src/Agent.Sdk/Util/WhichUtil.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Agent.Sdk/Util/WhichUtil.cs -------------------------------------------------------------------------------- /src/Agent.Sdk/Util/WindowsProcessUtil.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Agent.Sdk/Util/WindowsProcessUtil.cs -------------------------------------------------------------------------------- /src/Agent.Service/Windows/AgentService.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Agent.Service/Windows/AgentService.Designer.cs -------------------------------------------------------------------------------- /src/Agent.Service/Windows/AgentService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Agent.Service/Windows/AgentService.cs -------------------------------------------------------------------------------- /src/Agent.Service/Windows/AgentService.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Agent.Service/Windows/AgentService.csproj -------------------------------------------------------------------------------- /src/Agent.Service/Windows/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Agent.Service/Windows/App.config -------------------------------------------------------------------------------- /src/Agent.Service/Windows/FinalPublicKey.snk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Agent.Service/Windows/FinalPublicKey.snk -------------------------------------------------------------------------------- /src/Agent.Service/Windows/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Agent.Service/Windows/Program.cs -------------------------------------------------------------------------------- /src/Agent.Service/Windows/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Agent.Service/Windows/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/Agent.Service/Windows/Resource.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Agent.Service/Windows/Resource.Designer.cs -------------------------------------------------------------------------------- /src/Agent.Service/Windows/Resource.de-de.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Agent.Service/Windows/Resource.de-de.resx -------------------------------------------------------------------------------- /src/Agent.Service/Windows/Resource.es-es.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Agent.Service/Windows/Resource.es-es.resx -------------------------------------------------------------------------------- /src/Agent.Service/Windows/Resource.fr-fr.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Agent.Service/Windows/Resource.fr-fr.resx -------------------------------------------------------------------------------- /src/Agent.Service/Windows/Resource.it-IT.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Agent.Service/Windows/Resource.it-IT.resx -------------------------------------------------------------------------------- /src/Agent.Service/Windows/Resource.ja-jp.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Agent.Service/Windows/Resource.ja-jp.resx -------------------------------------------------------------------------------- /src/Agent.Service/Windows/Resource.ko-KR.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Agent.Service/Windows/Resource.ko-KR.resx -------------------------------------------------------------------------------- /src/Agent.Service/Windows/Resource.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Agent.Service/Windows/Resource.resx -------------------------------------------------------------------------------- /src/Agent.Service/Windows/Resource.ru-RU.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Agent.Service/Windows/Resource.ru-RU.resx -------------------------------------------------------------------------------- /src/Agent.Service/Windows/Resource.zh-CN.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Agent.Service/Windows/Resource.zh-CN.resx -------------------------------------------------------------------------------- /src/Agent.Service/Windows/Resource.zh-TW.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Agent.Service/Windows/Resource.zh-TW.resx -------------------------------------------------------------------------------- /src/Agent.Worker/Agent.Worker.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Agent.Worker/Agent.Worker.csproj -------------------------------------------------------------------------------- /src/Agent.Worker/AgentLogPlugin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Agent.Worker/AgentLogPlugin.cs -------------------------------------------------------------------------------- /src/Agent.Worker/AgentPluginManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Agent.Worker/AgentPluginManager.cs -------------------------------------------------------------------------------- /src/Agent.Worker/AsyncCommandContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Agent.Worker/AsyncCommandContext.cs -------------------------------------------------------------------------------- /src/Agent.Worker/Build/ArtifactCommandExtension.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Agent.Worker/Build/ArtifactCommandExtension.cs -------------------------------------------------------------------------------- /src/Agent.Worker/Build/BuildCommandExtension.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Agent.Worker/Build/BuildCommandExtension.cs -------------------------------------------------------------------------------- /src/Agent.Worker/Build/BuildDirectoryManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Agent.Worker/Build/BuildDirectoryManager.cs -------------------------------------------------------------------------------- /src/Agent.Worker/Build/BuildJobExtension.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Agent.Worker/Build/BuildJobExtension.cs -------------------------------------------------------------------------------- /src/Agent.Worker/Build/BuildServer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Agent.Worker/Build/BuildServer.cs -------------------------------------------------------------------------------- /src/Agent.Worker/Build/Enums.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Agent.Worker/Build/Enums.cs -------------------------------------------------------------------------------- /src/Agent.Worker/Build/FileContainerServer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Agent.Worker/Build/FileContainerServer.cs -------------------------------------------------------------------------------- /src/Agent.Worker/Build/GitCommandManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Agent.Worker/Build/GitCommandManager.cs -------------------------------------------------------------------------------- /src/Agent.Worker/Build/GitSourceProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Agent.Worker/Build/GitSourceProvider.cs -------------------------------------------------------------------------------- /src/Agent.Worker/Build/LegacyTrackingConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Agent.Worker/Build/LegacyTrackingConfig.cs -------------------------------------------------------------------------------- /src/Agent.Worker/Build/SourceProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Agent.Worker/Build/SourceProvider.cs -------------------------------------------------------------------------------- /src/Agent.Worker/Build/SvnCommandManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Agent.Worker/Build/SvnCommandManager.cs -------------------------------------------------------------------------------- /src/Agent.Worker/Build/SvnSourceProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Agent.Worker/Build/SvnSourceProvider.cs -------------------------------------------------------------------------------- /src/Agent.Worker/Build/TFCommandManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Agent.Worker/Build/TFCommandManager.cs -------------------------------------------------------------------------------- /src/Agent.Worker/Build/TeeCommandManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Agent.Worker/Build/TeeCommandManager.cs -------------------------------------------------------------------------------- /src/Agent.Worker/Build/TfsVCCommandManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Agent.Worker/Build/TfsVCCommandManager.cs -------------------------------------------------------------------------------- /src/Agent.Worker/Build/TfsVCSourceProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Agent.Worker/Build/TfsVCSourceProvider.cs -------------------------------------------------------------------------------- /src/Agent.Worker/Build/TopLevelTrackingConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Agent.Worker/Build/TopLevelTrackingConfig.cs -------------------------------------------------------------------------------- /src/Agent.Worker/Build/TrackingConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Agent.Worker/Build/TrackingConfig.cs -------------------------------------------------------------------------------- /src/Agent.Worker/Build/TrackingConfigBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Agent.Worker/Build/TrackingConfigBase.cs -------------------------------------------------------------------------------- /src/Agent.Worker/Build/TrackingConfigHashAlgorithm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Agent.Worker/Build/TrackingConfigHashAlgorithm.cs -------------------------------------------------------------------------------- /src/Agent.Worker/Build/TrackingManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Agent.Worker/Build/TrackingManager.cs -------------------------------------------------------------------------------- /src/Agent.Worker/Build/UploadResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Agent.Worker/Build/UploadResult.cs -------------------------------------------------------------------------------- /src/Agent.Worker/Build/WorkspaceMaintenanceProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Agent.Worker/Build/WorkspaceMaintenanceProvider.cs -------------------------------------------------------------------------------- /src/Agent.Worker/CodeCoverage/CoberturaSummaryReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Agent.Worker/CodeCoverage/CoberturaSummaryReader.cs -------------------------------------------------------------------------------- /src/Agent.Worker/CodeCoverage/CodeCoverageCommands.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Agent.Worker/CodeCoverage/CodeCoverageCommands.cs -------------------------------------------------------------------------------- /src/Agent.Worker/CodeCoverage/CodeCoverageConstants.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Agent.Worker/CodeCoverage/CodeCoverageConstants.cs -------------------------------------------------------------------------------- /src/Agent.Worker/CodeCoverage/CodeCoveragePublisher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Agent.Worker/CodeCoverage/CodeCoveragePublisher.cs -------------------------------------------------------------------------------- /src/Agent.Worker/CodeCoverage/CodeCoverageServer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Agent.Worker/CodeCoverage/CodeCoverageServer.cs -------------------------------------------------------------------------------- /src/Agent.Worker/CodeCoverage/CodeCoverageUtilities.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Agent.Worker/CodeCoverage/CodeCoverageUtilities.cs -------------------------------------------------------------------------------- /src/Agent.Worker/CodeCoverage/FeatureFlagUtility.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Agent.Worker/CodeCoverage/FeatureFlagUtility.cs -------------------------------------------------------------------------------- /src/Agent.Worker/CodeCoverage/ICodeCoverageSummaryReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Agent.Worker/CodeCoverage/ICodeCoverageSummaryReader.cs -------------------------------------------------------------------------------- /src/Agent.Worker/CodeCoverage/JaCoCoSummaryReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Agent.Worker/CodeCoverage/JaCoCoSummaryReader.cs -------------------------------------------------------------------------------- /src/Agent.Worker/Container/ContainerDiagnosticsManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Agent.Worker/Container/ContainerDiagnosticsManager.cs -------------------------------------------------------------------------------- /src/Agent.Worker/Container/DockerCommandManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Agent.Worker/Container/DockerCommandManager.cs -------------------------------------------------------------------------------- /src/Agent.Worker/Container/DockerUtil.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Agent.Worker/Container/DockerUtil.cs -------------------------------------------------------------------------------- /src/Agent.Worker/ContainerOperationProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Agent.Worker/ContainerOperationProvider.cs -------------------------------------------------------------------------------- /src/Agent.Worker/ContainerOperationProviderEnhanced.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Agent.Worker/ContainerOperationProviderEnhanced.cs -------------------------------------------------------------------------------- /src/Agent.Worker/DiagnosticLogManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Agent.Worker/DiagnosticLogManager.cs -------------------------------------------------------------------------------- /src/Agent.Worker/ExecutionContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Agent.Worker/ExecutionContext.cs -------------------------------------------------------------------------------- /src/Agent.Worker/ExpressionManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Agent.Worker/ExpressionManager.cs -------------------------------------------------------------------------------- /src/Agent.Worker/GitManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Agent.Worker/GitManager.cs -------------------------------------------------------------------------------- /src/Agent.Worker/Handlers/AgentPluginHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Agent.Worker/Handlers/AgentPluginHandler.cs -------------------------------------------------------------------------------- /src/Agent.Worker/Handlers/Handler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Agent.Worker/Handlers/Handler.cs -------------------------------------------------------------------------------- /src/Agent.Worker/Handlers/HandlerFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Agent.Worker/Handlers/HandlerFactory.cs -------------------------------------------------------------------------------- /src/Agent.Worker/Handlers/LegacyPowerShellHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Agent.Worker/Handlers/LegacyPowerShellHandler.cs -------------------------------------------------------------------------------- /src/Agent.Worker/Handlers/NodeHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Agent.Worker/Handlers/NodeHandler.cs -------------------------------------------------------------------------------- /src/Agent.Worker/Handlers/PowerShell3Handler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Agent.Worker/Handlers/PowerShell3Handler.cs -------------------------------------------------------------------------------- /src/Agent.Worker/Handlers/PowerShellExeHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Agent.Worker/Handlers/PowerShellExeHandler.cs -------------------------------------------------------------------------------- /src/Agent.Worker/Handlers/ProcessHandler/CmdArgsSanitizer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Agent.Worker/Handlers/ProcessHandler/CmdArgsSanitizer.cs -------------------------------------------------------------------------------- /src/Agent.Worker/Handlers/ProcessHandler/Exceptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Agent.Worker/Handlers/ProcessHandler/Exceptions.cs -------------------------------------------------------------------------------- /src/Agent.Worker/Handlers/ProcessHandler/ProcessHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Agent.Worker/Handlers/ProcessHandler/ProcessHandler.cs -------------------------------------------------------------------------------- /src/Agent.Worker/Handlers/ProcessHandler/ProcessHandlerHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Agent.Worker/Handlers/ProcessHandler/ProcessHandlerHelper.cs -------------------------------------------------------------------------------- /src/Agent.Worker/Handlers/ProcessHandler/ProcessHandlerV2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Agent.Worker/Handlers/ProcessHandler/ProcessHandlerV2.cs -------------------------------------------------------------------------------- /src/Agent.Worker/Handlers/StepHost.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Agent.Worker/Handlers/StepHost.cs -------------------------------------------------------------------------------- /src/Agent.Worker/JobExtension.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Agent.Worker/JobExtension.cs -------------------------------------------------------------------------------- /src/Agent.Worker/JobExtensionRunner.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Agent.Worker/JobExtensionRunner.cs -------------------------------------------------------------------------------- /src/Agent.Worker/JobRunner.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Agent.Worker/JobRunner.cs -------------------------------------------------------------------------------- /src/Agent.Worker/Maintenance/MaintenanceJobExtension.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Agent.Worker/Maintenance/MaintenanceJobExtension.cs -------------------------------------------------------------------------------- /src/Agent.Worker/ManagementScriptStep.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Agent.Worker/ManagementScriptStep.cs -------------------------------------------------------------------------------- /src/Agent.Worker/NodeJsUtil.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Agent.Worker/NodeJsUtil.cs -------------------------------------------------------------------------------- /src/Agent.Worker/NuGet.Config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Agent.Worker/NuGet.Config -------------------------------------------------------------------------------- /src/Agent.Worker/PluginInternalCommandExtension.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Agent.Worker/PluginInternalCommandExtension.cs -------------------------------------------------------------------------------- /src/Agent.Worker/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Agent.Worker/Program.cs -------------------------------------------------------------------------------- /src/Agent.Worker/Release/AgentUtilities.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Agent.Worker/Release/AgentUtilities.cs -------------------------------------------------------------------------------- /src/Agent.Worker/Release/Artifacts/ArtifactDownloadException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Agent.Worker/Release/Artifacts/ArtifactDownloadException.cs -------------------------------------------------------------------------------- /src/Agent.Worker/Release/Artifacts/BuildArtifact.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Agent.Worker/Release/Artifacts/BuildArtifact.cs -------------------------------------------------------------------------------- /src/Agent.Worker/Release/Artifacts/CommitsDownloadException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Agent.Worker/Release/Artifacts/CommitsDownloadException.cs -------------------------------------------------------------------------------- /src/Agent.Worker/Release/Artifacts/CustomArtifact.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Agent.Worker/Release/Artifacts/CustomArtifact.cs -------------------------------------------------------------------------------- /src/Agent.Worker/Release/Artifacts/Definition/ArtifactDefinition.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Agent.Worker/Release/Artifacts/Definition/ArtifactDefinition.cs -------------------------------------------------------------------------------- /src/Agent.Worker/Release/Artifacts/Definition/BuildArtifactDetails.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Agent.Worker/Release/Artifacts/Definition/BuildArtifactDetails.cs -------------------------------------------------------------------------------- /src/Agent.Worker/Release/Artifacts/Definition/CustomArtifactDetails.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Agent.Worker/Release/Artifacts/Definition/CustomArtifactDetails.cs -------------------------------------------------------------------------------- /src/Agent.Worker/Release/Artifacts/Definition/GitHubArtifactDetails.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Agent.Worker/Release/Artifacts/Definition/GitHubArtifactDetails.cs -------------------------------------------------------------------------------- /src/Agent.Worker/Release/Artifacts/Definition/IArtifactDetails.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Agent.Worker/Release/Artifacts/Definition/IArtifactDetails.cs -------------------------------------------------------------------------------- /src/Agent.Worker/Release/Artifacts/Definition/TfsGitArtifactDetails.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Agent.Worker/Release/Artifacts/Definition/TfsGitArtifactDetails.cs -------------------------------------------------------------------------------- /src/Agent.Worker/Release/Artifacts/FileShareArtifact.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Agent.Worker/Release/Artifacts/FileShareArtifact.cs -------------------------------------------------------------------------------- /src/Agent.Worker/Release/Artifacts/GenericHttpClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Agent.Worker/Release/Artifacts/GenericHttpClient.cs -------------------------------------------------------------------------------- /src/Agent.Worker/Release/Artifacts/GitHubArtifact.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Agent.Worker/Release/Artifacts/GitHubArtifact.cs -------------------------------------------------------------------------------- /src/Agent.Worker/Release/Artifacts/GitHubHttpClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Agent.Worker/Release/Artifacts/GitHubHttpClient.cs -------------------------------------------------------------------------------- /src/Agent.Worker/Release/Artifacts/JenkinsArtifact.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Agent.Worker/Release/Artifacts/JenkinsArtifact.cs -------------------------------------------------------------------------------- /src/Agent.Worker/Release/Artifacts/TfsGitArtifact.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Agent.Worker/Release/Artifacts/TfsGitArtifact.cs -------------------------------------------------------------------------------- /src/Agent.Worker/Release/Artifacts/TfsVCArtifact.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Agent.Worker/Release/Artifacts/TfsVCArtifact.cs -------------------------------------------------------------------------------- /src/Agent.Worker/Release/ContainerFetchEngine/ContainerItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Agent.Worker/Release/ContainerFetchEngine/ContainerItem.cs -------------------------------------------------------------------------------- /src/Agent.Worker/Release/ContainerFetchEngine/FetchEngine.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Agent.Worker/Release/ContainerFetchEngine/FetchEngine.cs -------------------------------------------------------------------------------- /src/Agent.Worker/Release/ContainerFetchEngine/IContainerProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Agent.Worker/Release/ContainerFetchEngine/IContainerProvider.cs -------------------------------------------------------------------------------- /src/Agent.Worker/Release/ContainerFetchEngine/ItemType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Agent.Worker/Release/ContainerFetchEngine/ItemType.cs -------------------------------------------------------------------------------- /src/Agent.Worker/Release/ContainerFetchEngine/NullExecutionLogger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Agent.Worker/Release/ContainerFetchEngine/NullExecutionLogger.cs -------------------------------------------------------------------------------- /src/Agent.Worker/Release/ContainerProvider/FileContainerProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Agent.Worker/Release/ContainerProvider/FileContainerProvider.cs -------------------------------------------------------------------------------- /src/Agent.Worker/Release/ContainerProvider/Helpers/AsyncLazy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Agent.Worker/Release/ContainerProvider/Helpers/AsyncLazy.cs -------------------------------------------------------------------------------- /src/Agent.Worker/Release/DeploymentJobExtension.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Agent.Worker/Release/DeploymentJobExtension.cs -------------------------------------------------------------------------------- /src/Agent.Worker/Release/IArtifactExtension.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Agent.Worker/Release/IArtifactExtension.cs -------------------------------------------------------------------------------- /src/Agent.Worker/Release/IReleaseDirectoryManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Agent.Worker/Release/IReleaseDirectoryManager.cs -------------------------------------------------------------------------------- /src/Agent.Worker/Release/ReleaseCommandExtension.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Agent.Worker/Release/ReleaseCommandExtension.cs -------------------------------------------------------------------------------- /src/Agent.Worker/Release/ReleaseDirectoryManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Agent.Worker/Release/ReleaseDirectoryManager.cs -------------------------------------------------------------------------------- /src/Agent.Worker/Release/ReleaseFileSystemManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Agent.Worker/Release/ReleaseFileSystemManager.cs -------------------------------------------------------------------------------- /src/Agent.Worker/Release/ReleaseJobExtension.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Agent.Worker/Release/ReleaseJobExtension.cs -------------------------------------------------------------------------------- /src/Agent.Worker/Release/ReleaseServer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Agent.Worker/Release/ReleaseServer.cs -------------------------------------------------------------------------------- /src/Agent.Worker/Release/ReleaseTrackingConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Agent.Worker/Release/ReleaseTrackingConfig.cs -------------------------------------------------------------------------------- /src/Agent.Worker/Release/ReleaseTrackingManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Agent.Worker/Release/ReleaseTrackingManager.cs -------------------------------------------------------------------------------- /src/Agent.Worker/Release/RetryExecutor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Agent.Worker/Release/RetryExecutor.cs -------------------------------------------------------------------------------- /src/Agent.Worker/Release/ZipStreamDownloader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Agent.Worker/Release/ZipStreamDownloader.cs -------------------------------------------------------------------------------- /src/Agent.Worker/ResourceMetricsManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Agent.Worker/ResourceMetricsManager.cs -------------------------------------------------------------------------------- /src/Agent.Worker/RetryHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Agent.Worker/RetryHelper.cs -------------------------------------------------------------------------------- /src/Agent.Worker/SignatureService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Agent.Worker/SignatureService.cs -------------------------------------------------------------------------------- /src/Agent.Worker/SimpleTimer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Agent.Worker/SimpleTimer.cs -------------------------------------------------------------------------------- /src/Agent.Worker/StepsRunner.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Agent.Worker/StepsRunner.cs -------------------------------------------------------------------------------- /src/Agent.Worker/TaskCommandExtension.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Agent.Worker/TaskCommandExtension.cs -------------------------------------------------------------------------------- /src/Agent.Worker/TaskDecoratorManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Agent.Worker/TaskDecoratorManager.cs -------------------------------------------------------------------------------- /src/Agent.Worker/TaskManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Agent.Worker/TaskManager.cs -------------------------------------------------------------------------------- /src/Agent.Worker/TaskRestrictionsChecker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Agent.Worker/TaskRestrictionsChecker.cs -------------------------------------------------------------------------------- /src/Agent.Worker/TaskRestrictionsExtension.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Agent.Worker/TaskRestrictionsExtension.cs -------------------------------------------------------------------------------- /src/Agent.Worker/TaskRunner.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Agent.Worker/TaskRunner.cs -------------------------------------------------------------------------------- /src/Agent.Worker/Telemetry/CustomerIntelligenceServer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Agent.Worker/Telemetry/CustomerIntelligenceServer.cs -------------------------------------------------------------------------------- /src/Agent.Worker/Telemetry/TelemetryCommandExtension.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Agent.Worker/Telemetry/TelemetryCommandExtension.cs -------------------------------------------------------------------------------- /src/Agent.Worker/TempDirectoryManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Agent.Worker/TempDirectoryManager.cs -------------------------------------------------------------------------------- /src/Agent.Worker/TestResults/CommandTraceListener.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Agent.Worker/TestResults/CommandTraceListener.cs -------------------------------------------------------------------------------- /src/Agent.Worker/TestResults/Legacy/AttachmentData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Agent.Worker/TestResults/Legacy/AttachmentData.cs -------------------------------------------------------------------------------- /src/Agent.Worker/TestResults/Legacy/CtestResultReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Agent.Worker/TestResults/Legacy/CtestResultReader.cs -------------------------------------------------------------------------------- /src/Agent.Worker/TestResults/Legacy/IConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Agent.Worker/TestResults/Legacy/IConverter.cs -------------------------------------------------------------------------------- /src/Agent.Worker/TestResults/Legacy/IResultReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Agent.Worker/TestResults/Legacy/IResultReader.cs -------------------------------------------------------------------------------- /src/Agent.Worker/TestResults/Legacy/JunitResultReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Agent.Worker/TestResults/Legacy/JunitResultReader.cs -------------------------------------------------------------------------------- /src/Agent.Worker/TestResults/Legacy/LegacyTestRunDataPublisher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Agent.Worker/TestResults/Legacy/LegacyTestRunDataPublisher.cs -------------------------------------------------------------------------------- /src/Agent.Worker/TestResults/Legacy/NunitResultReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Agent.Worker/TestResults/Legacy/NunitResultReader.cs -------------------------------------------------------------------------------- /src/Agent.Worker/TestResults/Legacy/TestCaseResultData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Agent.Worker/TestResults/Legacy/TestCaseResultData.cs -------------------------------------------------------------------------------- /src/Agent.Worker/TestResults/Legacy/TestCaseResultDataConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Agent.Worker/TestResults/Legacy/TestCaseResultDataConverter.cs -------------------------------------------------------------------------------- /src/Agent.Worker/TestResults/Legacy/TestCaseSubResultData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Agent.Worker/TestResults/Legacy/TestCaseSubResultData.cs -------------------------------------------------------------------------------- /src/Agent.Worker/TestResults/Legacy/TestResultsServer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Agent.Worker/TestResults/Legacy/TestResultsServer.cs -------------------------------------------------------------------------------- /src/Agent.Worker/TestResults/Legacy/TestRunContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Agent.Worker/TestResults/Legacy/TestRunContext.cs -------------------------------------------------------------------------------- /src/Agent.Worker/TestResults/Legacy/TestRunData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Agent.Worker/TestResults/Legacy/TestRunData.cs -------------------------------------------------------------------------------- /src/Agent.Worker/TestResults/Legacy/TestRunPublisher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Agent.Worker/TestResults/Legacy/TestRunPublisher.cs -------------------------------------------------------------------------------- /src/Agent.Worker/TestResults/Legacy/TrxResultReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Agent.Worker/TestResults/Legacy/TrxResultReader.cs -------------------------------------------------------------------------------- /src/Agent.Worker/TestResults/Legacy/XunitResultReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Agent.Worker/TestResults/Legacy/XunitResultReader.cs -------------------------------------------------------------------------------- /src/Agent.Worker/TestResults/Parser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Agent.Worker/TestResults/Parser.cs -------------------------------------------------------------------------------- /src/Agent.Worker/TestResults/PublishToEvidenceStoreCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Agent.Worker/TestResults/PublishToEvidenceStoreCommand.cs -------------------------------------------------------------------------------- /src/Agent.Worker/TestResults/ResultsCommandExtension.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Agent.Worker/TestResults/ResultsCommandExtension.cs -------------------------------------------------------------------------------- /src/Agent.Worker/TestResults/TestDataPublisher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Agent.Worker/TestResults/TestDataPublisher.cs -------------------------------------------------------------------------------- /src/Agent.Worker/TestResults/TestRunDataPublisherHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Agent.Worker/TestResults/TestRunDataPublisherHelper.cs -------------------------------------------------------------------------------- /src/Agent.Worker/TestResults/Utils/FeatureFlagService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Agent.Worker/TestResults/Utils/FeatureFlagService.cs -------------------------------------------------------------------------------- /src/Agent.Worker/TestResults/Utils/InputValidator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Agent.Worker/TestResults/Utils/InputValidator.cs -------------------------------------------------------------------------------- /src/Agent.Worker/TestResults/Utils/PublisherInputValidator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Agent.Worker/TestResults/Utils/PublisherInputValidator.cs -------------------------------------------------------------------------------- /src/Agent.Worker/TestResults/Utils/TestResultUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Agent.Worker/TestResults/Utils/TestResultUtils.cs -------------------------------------------------------------------------------- /src/Agent.Worker/TestResults/Utils/TestResultsConstants.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Agent.Worker/TestResults/Utils/TestResultsConstants.cs -------------------------------------------------------------------------------- /src/Agent.Worker/TfManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Agent.Worker/TfManager.cs -------------------------------------------------------------------------------- /src/Agent.Worker/Variables.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Agent.Worker/Variables.cs -------------------------------------------------------------------------------- /src/Agent.Worker/VsoTaskLibManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Agent.Worker/VsoTaskLibManager.cs -------------------------------------------------------------------------------- /src/Agent.Worker/Worker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Agent.Worker/Worker.cs -------------------------------------------------------------------------------- /src/Agent.Worker/WorkerCommandManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Agent.Worker/WorkerCommandManager.cs -------------------------------------------------------------------------------- /src/Agent.Worker/WorkerUtilties.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Agent.Worker/WorkerUtilties.cs -------------------------------------------------------------------------------- /src/Common.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Common.props -------------------------------------------------------------------------------- /src/Microsoft.VisualStudio.Services.Agent/AgentCertificateManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Microsoft.VisualStudio.Services.Agent/AgentCertificateManager.cs -------------------------------------------------------------------------------- /src/Microsoft.VisualStudio.Services.Agent/AgentServer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Microsoft.VisualStudio.Services.Agent/AgentServer.cs -------------------------------------------------------------------------------- /src/Microsoft.VisualStudio.Services.Agent/AgentService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Microsoft.VisualStudio.Services.Agent/AgentService.cs -------------------------------------------------------------------------------- /src/Microsoft.VisualStudio.Services.Agent/AssemblyInfo.cs: -------------------------------------------------------------------------------- 1 | using System.Runtime.CompilerServices; 2 | 3 | [assembly: InternalsVisibleTo("Test")] -------------------------------------------------------------------------------- /src/Microsoft.VisualStudio.Services.Agent/AsyncManualResetEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Microsoft.VisualStudio.Services.Agent/AsyncManualResetEvent.cs -------------------------------------------------------------------------------- /src/Microsoft.VisualStudio.Services.Agent/Blob/BlobFileInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Microsoft.VisualStudio.Services.Agent/Blob/BlobFileInfo.cs -------------------------------------------------------------------------------- /src/Microsoft.VisualStudio.Services.Agent/Blob/BlobStoreUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Microsoft.VisualStudio.Services.Agent/Blob/BlobStoreUtils.cs -------------------------------------------------------------------------------- /src/Microsoft.VisualStudio.Services.Agent/Blob/IDedupRecord.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Microsoft.VisualStudio.Services.Agent/Blob/IDedupRecord.cs -------------------------------------------------------------------------------- /src/Microsoft.VisualStudio.Services.Agent/Command.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Microsoft.VisualStudio.Services.Agent/Command.cs -------------------------------------------------------------------------------- /src/Microsoft.VisualStudio.Services.Agent/ConfigurationStore.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Microsoft.VisualStudio.Services.Agent/ConfigurationStore.cs -------------------------------------------------------------------------------- /src/Microsoft.VisualStudio.Services.Agent/Constants.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Microsoft.VisualStudio.Services.Agent/Constants.cs -------------------------------------------------------------------------------- /src/Microsoft.VisualStudio.Services.Agent/CredentialData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Microsoft.VisualStudio.Services.Agent/CredentialData.cs -------------------------------------------------------------------------------- /src/Microsoft.VisualStudio.Services.Agent/DeploymentGroupServer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Microsoft.VisualStudio.Services.Agent/DeploymentGroupServer.cs -------------------------------------------------------------------------------- /src/Microsoft.VisualStudio.Services.Agent/EnhancedTracing.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Microsoft.VisualStudio.Services.Agent/EnhancedTracing.cs -------------------------------------------------------------------------------- /src/Microsoft.VisualStudio.Services.Agent/EnvironmentsServer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Microsoft.VisualStudio.Services.Agent/EnvironmentsServer.cs -------------------------------------------------------------------------------- /src/Microsoft.VisualStudio.Services.Agent/Exceptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Microsoft.VisualStudio.Services.Agent/Exceptions.cs -------------------------------------------------------------------------------- /src/Microsoft.VisualStudio.Services.Agent/ExtensionManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Microsoft.VisualStudio.Services.Agent/ExtensionManager.cs -------------------------------------------------------------------------------- /src/Microsoft.VisualStudio.Services.Agent/Extensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Microsoft.VisualStudio.Services.Agent/Extensions.cs -------------------------------------------------------------------------------- /src/Microsoft.VisualStudio.Services.Agent/HostContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Microsoft.VisualStudio.Services.Agent/HostContext.cs -------------------------------------------------------------------------------- /src/Microsoft.VisualStudio.Services.Agent/HostTraceListener.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Microsoft.VisualStudio.Services.Agent/HostTraceListener.cs -------------------------------------------------------------------------------- /src/Microsoft.VisualStudio.Services.Agent/IAgentCredentialStore.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Microsoft.VisualStudio.Services.Agent/IAgentCredentialStore.cs -------------------------------------------------------------------------------- /src/Microsoft.VisualStudio.Services.Agent/IExtension.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Microsoft.VisualStudio.Services.Agent/IExtension.cs -------------------------------------------------------------------------------- /src/Microsoft.VisualStudio.Services.Agent/ITracingProxy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Microsoft.VisualStudio.Services.Agent/ITracingProxy.cs -------------------------------------------------------------------------------- /src/Microsoft.VisualStudio.Services.Agent/JobNotification.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Microsoft.VisualStudio.Services.Agent/JobNotification.cs -------------------------------------------------------------------------------- /src/Microsoft.VisualStudio.Services.Agent/JobServer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Microsoft.VisualStudio.Services.Agent/JobServer.cs -------------------------------------------------------------------------------- /src/Microsoft.VisualStudio.Services.Agent/JobServerQueue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Microsoft.VisualStudio.Services.Agent/JobServerQueue.cs -------------------------------------------------------------------------------- /src/Microsoft.VisualStudio.Services.Agent/LocationServer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Microsoft.VisualStudio.Services.Agent/LocationServer.cs -------------------------------------------------------------------------------- /src/Microsoft.VisualStudio.Services.Agent/Logging.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Microsoft.VisualStudio.Services.Agent/Logging.cs -------------------------------------------------------------------------------- /src/Microsoft.VisualStudio.Services.Agent/NuGet.Config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Microsoft.VisualStudio.Services.Agent/NuGet.Config -------------------------------------------------------------------------------- /src/Microsoft.VisualStudio.Services.Agent/ProcessChannel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Microsoft.VisualStudio.Services.Agent/ProcessChannel.cs -------------------------------------------------------------------------------- /src/Microsoft.VisualStudio.Services.Agent/ProcessExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Microsoft.VisualStudio.Services.Agent/ProcessExtensions.cs -------------------------------------------------------------------------------- /src/Microsoft.VisualStudio.Services.Agent/ProcessInvoker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Microsoft.VisualStudio.Services.Agent/ProcessInvoker.cs -------------------------------------------------------------------------------- /src/Microsoft.VisualStudio.Services.Agent/StreamString.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Microsoft.VisualStudio.Services.Agent/StreamString.cs -------------------------------------------------------------------------------- /src/Microsoft.VisualStudio.Services.Agent/TaskServer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Microsoft.VisualStudio.Services.Agent/TaskServer.cs -------------------------------------------------------------------------------- /src/Microsoft.VisualStudio.Services.Agent/Terminal.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Microsoft.VisualStudio.Services.Agent/Terminal.cs -------------------------------------------------------------------------------- /src/Microsoft.VisualStudio.Services.Agent/ThrottlingReportHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Microsoft.VisualStudio.Services.Agent/ThrottlingReportHandler.cs -------------------------------------------------------------------------------- /src/Microsoft.VisualStudio.Services.Agent/TraceManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Microsoft.VisualStudio.Services.Agent/TraceManager.cs -------------------------------------------------------------------------------- /src/Microsoft.VisualStudio.Services.Agent/TraceSetting.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Microsoft.VisualStudio.Services.Agent/TraceSetting.cs -------------------------------------------------------------------------------- /src/Microsoft.VisualStudio.Services.Agent/Tracing.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Microsoft.VisualStudio.Services.Agent/Tracing.cs -------------------------------------------------------------------------------- /src/Microsoft.VisualStudio.Services.Agent/TracingProxy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Microsoft.VisualStudio.Services.Agent/TracingProxy.cs -------------------------------------------------------------------------------- /src/Microsoft.VisualStudio.Services.Agent/Util/EnumUtil.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Microsoft.VisualStudio.Services.Agent/Util/EnumUtil.cs -------------------------------------------------------------------------------- /src/Microsoft.VisualStudio.Services.Agent/Util/PlanUtil.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Microsoft.VisualStudio.Services.Agent/Util/PlanUtil.cs -------------------------------------------------------------------------------- /src/Microsoft.VisualStudio.Services.Agent/Util/PowerShellExeUtil.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Microsoft.VisualStudio.Services.Agent/Util/PowerShellExeUtil.cs -------------------------------------------------------------------------------- /src/Microsoft.VisualStudio.Services.Agent/Util/ServerUtil.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Microsoft.VisualStudio.Services.Agent/Util/ServerUtil.cs -------------------------------------------------------------------------------- /src/Microsoft.VisualStudio.Services.Agent/Util/TaskResultUtil.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Microsoft.VisualStudio.Services.Agent/Util/TaskResultUtil.cs -------------------------------------------------------------------------------- /src/Microsoft.VisualStudio.Services.Agent/Util/UnixUtil.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Microsoft.VisualStudio.Services.Agent/Util/UnixUtil.cs -------------------------------------------------------------------------------- /src/Microsoft.VisualStudio.Services.Agent/Util/VarUtil.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Microsoft.VisualStudio.Services.Agent/Util/VarUtil.cs -------------------------------------------------------------------------------- /src/Microsoft.VisualStudio.Services.Agent/VstsAgentWebProxy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Microsoft.VisualStudio.Services.Agent/VstsAgentWebProxy.cs -------------------------------------------------------------------------------- /src/Microsoft.VisualStudio.Services.Agent/WindowsEnvVarHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Microsoft.VisualStudio.Services.Agent/WindowsEnvVarHelper.cs -------------------------------------------------------------------------------- /src/Misc/BuildConstants.ch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Misc/BuildConstants.ch -------------------------------------------------------------------------------- /src/Misc/InstallAgentPackage.template.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Misc/InstallAgentPackage.template.xml -------------------------------------------------------------------------------- /src/Misc/Publish.template.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Misc/Publish.template.ps1 -------------------------------------------------------------------------------- /src/Misc/UpdateAgentPackage.template.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Misc/UpdateAgentPackage.template.xml -------------------------------------------------------------------------------- /src/Misc/check-symlinks.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Misc/check-symlinks.sh -------------------------------------------------------------------------------- /src/Misc/externals.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Misc/externals.sh -------------------------------------------------------------------------------- /src/Misc/layoutbin/AgentService.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Misc/layoutbin/AgentService.js -------------------------------------------------------------------------------- /src/Misc/layoutbin/containerHandlerInvoker.js.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Misc/layoutbin/containerHandlerInvoker.js.template -------------------------------------------------------------------------------- /src/Misc/layoutbin/darwin.svc.sh.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Misc/layoutbin/darwin.svc.sh.template -------------------------------------------------------------------------------- /src/Misc/layoutbin/de-DE/strings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Misc/layoutbin/de-DE/strings.json -------------------------------------------------------------------------------- /src/Misc/layoutbin/en-US/strings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Misc/layoutbin/en-US/strings.json -------------------------------------------------------------------------------- /src/Misc/layoutbin/es-ES/strings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Misc/layoutbin/es-ES/strings.json -------------------------------------------------------------------------------- /src/Misc/layoutbin/fr-FR/strings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Misc/layoutbin/fr-FR/strings.json -------------------------------------------------------------------------------- /src/Misc/layoutbin/installdependencies.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Misc/layoutbin/installdependencies.sh -------------------------------------------------------------------------------- /src/Misc/layoutbin/it-IT/strings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Misc/layoutbin/it-IT/strings.json -------------------------------------------------------------------------------- /src/Misc/layoutbin/ja-JP/strings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Misc/layoutbin/ja-JP/strings.json -------------------------------------------------------------------------------- /src/Misc/layoutbin/ko-KR/strings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Misc/layoutbin/ko-KR/strings.json -------------------------------------------------------------------------------- /src/Misc/layoutbin/powershell/Add-AndroidSdkCapabilities.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Misc/layoutbin/powershell/Add-AndroidSdkCapabilities.ps1 -------------------------------------------------------------------------------- /src/Misc/layoutbin/powershell/Add-AntCapabilities.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Misc/layoutbin/powershell/Add-AntCapabilities.ps1 -------------------------------------------------------------------------------- /src/Misc/layoutbin/powershell/Add-ApplicationCapabilities.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Misc/layoutbin/powershell/Add-ApplicationCapabilities.ps1 -------------------------------------------------------------------------------- /src/Misc/layoutbin/powershell/Add-AzureGuestAgentCapabilities.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Misc/layoutbin/powershell/Add-AzureGuestAgentCapabilities.ps1 -------------------------------------------------------------------------------- /src/Misc/layoutbin/powershell/Add-AzurePowerShellCapabilities.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Misc/layoutbin/powershell/Add-AzurePowerShellCapabilities.ps1 -------------------------------------------------------------------------------- /src/Misc/layoutbin/powershell/Add-Capabilities.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Misc/layoutbin/powershell/Add-Capabilities.ps1 -------------------------------------------------------------------------------- /src/Misc/layoutbin/powershell/Add-ChefCapabilities.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Misc/layoutbin/powershell/Add-ChefCapabilities.ps1 -------------------------------------------------------------------------------- /src/Misc/layoutbin/powershell/Add-DotNetFrameworkCapabilities.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Misc/layoutbin/powershell/Add-DotNetFrameworkCapabilities.ps1 -------------------------------------------------------------------------------- /src/Misc/layoutbin/powershell/Add-JavaCapabilities.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Misc/layoutbin/powershell/Add-JavaCapabilities.ps1 -------------------------------------------------------------------------------- /src/Misc/layoutbin/powershell/Add-MSBuildCapabilities.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Misc/layoutbin/powershell/Add-MSBuildCapabilities.ps1 -------------------------------------------------------------------------------- /src/Misc/layoutbin/powershell/Add-MavenCapabilities.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Misc/layoutbin/powershell/Add-MavenCapabilities.ps1 -------------------------------------------------------------------------------- /src/Misc/layoutbin/powershell/Add-PowerShellCapabilities.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Misc/layoutbin/powershell/Add-PowerShellCapabilities.ps1 -------------------------------------------------------------------------------- /src/Misc/layoutbin/powershell/Add-ScvmmAdminConsoleCapabilities.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Misc/layoutbin/powershell/Add-ScvmmAdminConsoleCapabilities.ps1 -------------------------------------------------------------------------------- /src/Misc/layoutbin/powershell/Add-SqlPackageCapabilities.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Misc/layoutbin/powershell/Add-SqlPackageCapabilities.ps1 -------------------------------------------------------------------------------- /src/Misc/layoutbin/powershell/Add-VisualStudioCapabilities.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Misc/layoutbin/powershell/Add-VisualStudioCapabilities.ps1 -------------------------------------------------------------------------------- /src/Misc/layoutbin/powershell/Add-WindowsKitCapabilities.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Misc/layoutbin/powershell/Add-WindowsKitCapabilities.ps1 -------------------------------------------------------------------------------- /src/Misc/layoutbin/powershell/Add-WindowsSdkCapabilities.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Misc/layoutbin/powershell/Add-WindowsSdkCapabilities.ps1 -------------------------------------------------------------------------------- /src/Misc/layoutbin/powershell/Add-XamarinAndroidCapabilities.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Misc/layoutbin/powershell/Add-XamarinAndroidCapabilities.ps1 -------------------------------------------------------------------------------- /src/Misc/layoutbin/powershell/CapabilityHelpers/PathFunctions.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Misc/layoutbin/powershell/CapabilityHelpers/PathFunctions.ps1 -------------------------------------------------------------------------------- /src/Misc/layoutbin/powershell/CapabilityHelpers/VersionFunctions.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Misc/layoutbin/powershell/CapabilityHelpers/VersionFunctions.ps1 -------------------------------------------------------------------------------- /src/Misc/layoutbin/powershell/Get-LocalGroupMembership.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Misc/layoutbin/powershell/Get-LocalGroupMembership.ps1 -------------------------------------------------------------------------------- /src/Misc/layoutbin/powershell/Start-AzpTask.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Misc/layoutbin/powershell/Start-AzpTask.ps1 -------------------------------------------------------------------------------- /src/Misc/layoutbin/ru-RU/strings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Misc/layoutbin/ru-RU/strings.json -------------------------------------------------------------------------------- /src/Misc/layoutbin/runsvc.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Misc/layoutbin/runsvc.sh -------------------------------------------------------------------------------- /src/Misc/layoutbin/systemd.svc.sh.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Misc/layoutbin/systemd.svc.sh.template -------------------------------------------------------------------------------- /src/Misc/layoutbin/tasks-exception-list.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Misc/layoutbin/tasks-exception-list.json -------------------------------------------------------------------------------- /src/Misc/layoutbin/update.cmd.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Misc/layoutbin/update.cmd.template -------------------------------------------------------------------------------- /src/Misc/layoutbin/update.sh.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Misc/layoutbin/update.sh.template -------------------------------------------------------------------------------- /src/Misc/layoutbin/vsts.agent.plist.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Misc/layoutbin/vsts.agent.plist.template -------------------------------------------------------------------------------- /src/Misc/layoutbin/vsts.agent.service.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Misc/layoutbin/vsts.agent.service.template -------------------------------------------------------------------------------- /src/Misc/layoutbin/zh-CN/strings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Misc/layoutbin/zh-CN/strings.json -------------------------------------------------------------------------------- /src/Misc/layoutbin/zh-TW/strings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Misc/layoutbin/zh-TW/strings.json -------------------------------------------------------------------------------- /src/Misc/layoutroot/config.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Misc/layoutroot/config.cmd -------------------------------------------------------------------------------- /src/Misc/layoutroot/config.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Misc/layoutroot/config.sh -------------------------------------------------------------------------------- /src/Misc/layoutroot/env.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Misc/layoutroot/env.sh -------------------------------------------------------------------------------- /src/Misc/layoutroot/license.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Misc/layoutroot/license.html -------------------------------------------------------------------------------- /src/Misc/layoutroot/reauth.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Misc/layoutroot/reauth.cmd -------------------------------------------------------------------------------- /src/Misc/layoutroot/reauth.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Misc/layoutroot/reauth.sh -------------------------------------------------------------------------------- /src/Misc/layoutroot/run-docker.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Misc/layoutroot/run-docker.sh -------------------------------------------------------------------------------- /src/Misc/layoutroot/run.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Misc/layoutroot/run.cmd -------------------------------------------------------------------------------- /src/Misc/layoutroot/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Misc/layoutroot/run.sh -------------------------------------------------------------------------------- /src/Misc/osxsvclayout.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Misc/osxsvclayout.txt -------------------------------------------------------------------------------- /src/NuGet.Config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/NuGet.Config -------------------------------------------------------------------------------- /src/Test/CodeCoverage.runsettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Test/CodeCoverage.runsettings -------------------------------------------------------------------------------- /src/Test/L0/ConstantGenerationL0.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Test/L0/ConstantGenerationL0.cs -------------------------------------------------------------------------------- /src/Test/L0/Container/ContainerDiagnosticsManagerL0.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Test/L0/Container/ContainerDiagnosticsManagerL0.cs -------------------------------------------------------------------------------- /src/Test/L0/Container/ContainerInfoL0.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Test/L0/Container/ContainerInfoL0.cs -------------------------------------------------------------------------------- /src/Test/L0/Container/DockerCommandManagerL0.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Test/L0/Container/DockerCommandManagerL0.cs -------------------------------------------------------------------------------- /src/Test/L0/Container/DockerUtilL0.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Test/L0/Container/DockerUtilL0.cs -------------------------------------------------------------------------------- /src/Test/L0/CorrelationContextManagerL0.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Test/L0/CorrelationContextManagerL0.cs -------------------------------------------------------------------------------- /src/Test/L0/EnhancedTracingCorrelationL0.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Test/L0/EnhancedTracingCorrelationL0.cs -------------------------------------------------------------------------------- /src/Test/L0/EnhancedTracingL0.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Test/L0/EnhancedTracingL0.cs -------------------------------------------------------------------------------- /src/Test/L0/ExtensionManagerL0.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Test/L0/ExtensionManagerL0.cs -------------------------------------------------------------------------------- /src/Test/L0/HostContextExtensionL0.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Test/L0/HostContextExtensionL0.cs -------------------------------------------------------------------------------- /src/Test/L0/HostContextL0.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Test/L0/HostContextL0.cs -------------------------------------------------------------------------------- /src/Test/L0/KnobL0.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Test/L0/KnobL0.cs -------------------------------------------------------------------------------- /src/Test/L0/Listener/AgentL0.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Test/L0/Listener/AgentL0.cs -------------------------------------------------------------------------------- /src/Test/L0/Listener/CommandSettingsL0.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Test/L0/Listener/CommandSettingsL0.cs -------------------------------------------------------------------------------- /src/Test/L0/Listener/Configuration/AgentAutoLogonTestL0.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Test/L0/Listener/Configuration/AgentAutoLogonTestL0.cs -------------------------------------------------------------------------------- /src/Test/L0/Listener/Configuration/AgentCredentialL0.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Test/L0/Listener/Configuration/AgentCredentialL0.cs -------------------------------------------------------------------------------- /src/Test/L0/Listener/Configuration/ArgumentValidatorTestsL0.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Test/L0/Listener/Configuration/ArgumentValidatorTestsL0.cs -------------------------------------------------------------------------------- /src/Test/L0/Listener/Configuration/ConfigurationManagerL0.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Test/L0/Listener/Configuration/ConfigurationManagerL0.cs -------------------------------------------------------------------------------- /src/Test/L0/Listener/Configuration/NativeWindowsServiceHelperL0.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Test/L0/Listener/Configuration/NativeWindowsServiceHelperL0.cs -------------------------------------------------------------------------------- /src/Test/L0/Listener/Configuration/PromptManagerTestsL0.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Test/L0/Listener/Configuration/PromptManagerTestsL0.cs -------------------------------------------------------------------------------- /src/Test/L0/Listener/Configuration/ServiceControlManagerL0.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Test/L0/Listener/Configuration/ServiceControlManagerL0.cs -------------------------------------------------------------------------------- /src/Test/L0/Listener/Configuration/UserCapabilitiesProviderTestL0.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Test/L0/Listener/Configuration/UserCapabilitiesProviderTestL0.cs -------------------------------------------------------------------------------- /src/Test/L0/Listener/JobDispatcherL0.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Test/L0/Listener/JobDispatcherL0.cs -------------------------------------------------------------------------------- /src/Test/L0/Listener/ListenerCorrelationIntegrationL0.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Test/L0/Listener/ListenerCorrelationIntegrationL0.cs -------------------------------------------------------------------------------- /src/Test/L0/Listener/MessageListenerL0.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Test/L0/Listener/MessageListenerL0.cs -------------------------------------------------------------------------------- /src/Test/L0/Listener/PipelineParserL0.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Test/L0/Listener/PipelineParserL0.cs -------------------------------------------------------------------------------- /src/Test/L0/LocStringsL0.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Test/L0/LocStringsL0.cs -------------------------------------------------------------------------------- /src/Test/L0/NodeHandlerL0.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Test/L0/NodeHandlerL0.cs -------------------------------------------------------------------------------- /src/Test/L0/PagingLoggerL0.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Test/L0/PagingLoggerL0.cs -------------------------------------------------------------------------------- /src/Test/L0/Plugin/BlobstoreClientSettingsL0.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Test/L0/Plugin/BlobstoreClientSettingsL0.cs -------------------------------------------------------------------------------- /src/Test/L0/Plugin/ChunkerTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Test/L0/Plugin/ChunkerTests.cs -------------------------------------------------------------------------------- /src/Test/L0/Plugin/FingerprintCreatorTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Test/L0/Plugin/FingerprintCreatorTests.cs -------------------------------------------------------------------------------- /src/Test/L0/Plugin/FingerprintTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Test/L0/Plugin/FingerprintTests.cs -------------------------------------------------------------------------------- /src/Test/L0/Plugin/IsPathyTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Test/L0/Plugin/IsPathyTests.cs -------------------------------------------------------------------------------- /src/Test/L0/Plugin/LogPluginHostL0.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Test/L0/Plugin/LogPluginHostL0.cs -------------------------------------------------------------------------------- /src/Test/L0/Plugin/MatchingTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Test/L0/Plugin/MatchingTests.cs -------------------------------------------------------------------------------- /src/Test/L0/Plugin/RepositoryPluginL0.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Test/L0/Plugin/RepositoryPluginL0.cs -------------------------------------------------------------------------------- /src/Test/L0/Plugin/TarUtilsL0.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Test/L0/Plugin/TarUtilsL0.cs -------------------------------------------------------------------------------- /src/Test/L0/Plugin/TestFilePublisher/TestFileFinderL0.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Test/L0/Plugin/TestFilePublisher/TestFileFinderL0.cs -------------------------------------------------------------------------------- /src/Test/L0/Plugin/TestFilePublisher/TestFilePublisherL0.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Test/L0/Plugin/TestFilePublisher/TestFilePublisherL0.cs -------------------------------------------------------------------------------- /src/Test/L0/Plugin/TestFilePublisher/TestFilePublisherLogPluginL0.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Test/L0/Plugin/TestFilePublisher/TestFilePublisherLogPluginL0.cs -------------------------------------------------------------------------------- /src/Test/L0/Plugin/TestFileShareProvider/TestFileShareProviderL0.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Test/L0/Plugin/TestFileShareProvider/TestFileShareProviderL0.cs -------------------------------------------------------------------------------- /src/Test/L0/Plugin/TestFileShareProvider/TestTelemetrySender.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Test/L0/Plugin/TestFileShareProvider/TestTelemetrySender.cs -------------------------------------------------------------------------------- /src/Test/L0/Plugin/TestGitCliManager/MockGitCliManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Test/L0/Plugin/TestGitCliManager/MockGitCliManager.cs -------------------------------------------------------------------------------- /src/Test/L0/Plugin/TestGitCliManager/TestGitCliManagerL0.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Test/L0/Plugin/TestGitCliManager/TestGitCliManagerL0.cs -------------------------------------------------------------------------------- /src/Test/L0/Plugin/TestGitSourceProvider/GitSourceProviderL0.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Test/L0/Plugin/TestGitSourceProvider/GitSourceProviderL0.cs -------------------------------------------------------------------------------- /src/Test/L0/Plugin/TestGitSourceProvider/MockGitCliManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Test/L0/Plugin/TestGitSourceProvider/MockGitCliManager.cs -------------------------------------------------------------------------------- /src/Test/L0/Plugin/TestGitSourceProvider/MockGitSoureProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Test/L0/Plugin/TestGitSourceProvider/MockGitSoureProvider.cs -------------------------------------------------------------------------------- /src/Test/L0/Plugin/TestResultParser/EnumerableExtensionL0.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Test/L0/Plugin/TestResultParser/EnumerableExtensionL0.cs -------------------------------------------------------------------------------- /src/Test/L0/Plugin/TestResultParser/LogPreProcessorL0.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Test/L0/Plugin/TestResultParser/LogPreProcessorL0.cs -------------------------------------------------------------------------------- /src/Test/L0/Plugin/TestResultParser/PipelineTestRunPublisherL0.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Test/L0/Plugin/TestResultParser/PipelineTestRunPublisherL0.cs -------------------------------------------------------------------------------- /src/Test/L0/Plugin/TestResultParser/TestResultLogPluginL0.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Test/L0/Plugin/TestResultParser/TestResultLogPluginL0.cs -------------------------------------------------------------------------------- /src/Test/L0/Plugin/TestResultParser/TestRunManagerL0.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Test/L0/Plugin/TestResultParser/TestRunManagerL0.cs -------------------------------------------------------------------------------- /src/Test/L0/ProcessExtensionL0.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Test/L0/ProcessExtensionL0.cs -------------------------------------------------------------------------------- /src/Test/L0/ProcessInvokerL0.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Test/L0/ProcessInvokerL0.cs -------------------------------------------------------------------------------- /src/Test/L0/ProxyConfigL0.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Test/L0/ProxyConfigL0.cs -------------------------------------------------------------------------------- /src/Test/L0/SecretMaskerTests/LoggedSecretMaskerL0.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Test/L0/SecretMaskerTests/LoggedSecretMaskerL0.cs -------------------------------------------------------------------------------- /src/Test/L0/SecretMaskerTests/SecretMaskerL0.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Test/L0/SecretMaskerTests/SecretMaskerL0.cs -------------------------------------------------------------------------------- /src/Test/L0/ServiceInterfacesL0.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Test/L0/ServiceInterfacesL0.cs -------------------------------------------------------------------------------- /src/Test/L0/TestHostContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Test/L0/TestHostContext.cs -------------------------------------------------------------------------------- /src/Test/L0/TestUtil.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Test/L0/TestUtil.cs -------------------------------------------------------------------------------- /src/Test/L0/TraceManagerL0.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Test/L0/TraceManagerL0.cs -------------------------------------------------------------------------------- /src/Test/L0/Util/ArgUtilL0.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Test/L0/Util/ArgUtilL0.cs -------------------------------------------------------------------------------- /src/Test/L0/Util/IOUtilL0.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Test/L0/Util/IOUtilL0.cs -------------------------------------------------------------------------------- /src/Test/L0/Util/ProcessUtilL0.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Test/L0/Util/ProcessUtilL0.cs -------------------------------------------------------------------------------- /src/Test/L0/Util/RepositoryUtilL0.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Test/L0/Util/RepositoryUtilL0.cs -------------------------------------------------------------------------------- /src/Test/L0/Util/StringUtilL0.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Test/L0/Util/StringUtilL0.cs -------------------------------------------------------------------------------- /src/Test/L0/Util/TaskResultUtilL0.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Test/L0/Util/TaskResultUtilL0.cs -------------------------------------------------------------------------------- /src/Test/L0/Util/TelemetryPropsUtil.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Test/L0/Util/TelemetryPropsUtil.cs -------------------------------------------------------------------------------- /src/Test/L0/Util/UrlUtilL0.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Test/L0/Util/UrlUtilL0.cs -------------------------------------------------------------------------------- /src/Test/L0/Util/VarUtilL0.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Test/L0/Util/VarUtilL0.cs -------------------------------------------------------------------------------- /src/Test/L0/Util/VssUtilL0.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Test/L0/Util/VssUtilL0.cs -------------------------------------------------------------------------------- /src/Test/L0/Util/WhichUtilL0.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Test/L0/Util/WhichUtilL0.cs -------------------------------------------------------------------------------- /src/Test/L0/VstsAgentWebProxyL0.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Test/L0/VstsAgentWebProxyL0.cs -------------------------------------------------------------------------------- /src/Test/L0/Worker/AgentPluginManagerL0.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Test/L0/Worker/AgentPluginManagerL0.cs -------------------------------------------------------------------------------- /src/Test/L0/Worker/Build/BuildDirectoryManagerL0.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Test/L0/Worker/Build/BuildDirectoryManagerL0.cs -------------------------------------------------------------------------------- /src/Test/L0/Worker/Build/BuildJobExtensionL0.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Test/L0/Worker/Build/BuildJobExtensionL0.cs -------------------------------------------------------------------------------- /src/Test/L0/Worker/Build/GitCommandManagerL0.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Test/L0/Worker/Build/GitCommandManagerL0.cs -------------------------------------------------------------------------------- /src/Test/L0/Worker/Build/GitSourceProviderL0.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Test/L0/Worker/Build/GitSourceProviderL0.cs -------------------------------------------------------------------------------- /src/Test/L0/Worker/Build/TfsVCCommandManagerL0.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Test/L0/Worker/Build/TfsVCCommandManagerL0.cs -------------------------------------------------------------------------------- /src/Test/L0/Worker/Build/TfsVCSourceProvider.WorkspaceUtilL0.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Test/L0/Worker/Build/TfsVCSourceProvider.WorkspaceUtilL0.cs -------------------------------------------------------------------------------- /src/Test/L0/Worker/Build/TfsVCSourceProviderL0.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Test/L0/Worker/Build/TfsVCSourceProviderL0.cs -------------------------------------------------------------------------------- /src/Test/L0/Worker/Build/TrackingConfigHashAlgorithmL0.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Test/L0/Worker/Build/TrackingConfigHashAlgorithmL0.cs -------------------------------------------------------------------------------- /src/Test/L0/Worker/Build/TrackingConfigL0.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Test/L0/Worker/Build/TrackingConfigL0.cs -------------------------------------------------------------------------------- /src/Test/L0/Worker/Build/TrackingManagerL0.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Test/L0/Worker/Build/TrackingManagerL0.cs -------------------------------------------------------------------------------- /src/Test/L0/Worker/Build/WorkspaceMaintenanceProvicerL0.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Test/L0/Worker/Build/WorkspaceMaintenanceProvicerL0.cs -------------------------------------------------------------------------------- /src/Test/L0/Worker/CodeCoverage/CoberturaSummaryReaderTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Test/L0/Worker/CodeCoverage/CoberturaSummaryReaderTests.cs -------------------------------------------------------------------------------- /src/Test/L0/Worker/CodeCoverage/CodeCoverageCommandExtensionTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Test/L0/Worker/CodeCoverage/CodeCoverageCommandExtensionTests.cs -------------------------------------------------------------------------------- /src/Test/L0/Worker/CodeCoverage/CodeCoverageConstants.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Test/L0/Worker/CodeCoverage/CodeCoverageConstants.cs -------------------------------------------------------------------------------- /src/Test/L0/Worker/CodeCoverage/CodeCoverageUtilitiesTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Test/L0/Worker/CodeCoverage/CodeCoverageUtilitiesTests.cs -------------------------------------------------------------------------------- /src/Test/L0/Worker/CodeCoverage/JacocoSummaryReaderTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Test/L0/Worker/CodeCoverage/JacocoSummaryReaderTests.cs -------------------------------------------------------------------------------- /src/Test/L0/Worker/CodeCoverage/frame-summary.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Test/L0/Worker/CodeCoverage/frame-summary.html -------------------------------------------------------------------------------- /src/Test/L0/Worker/CodeCoverage/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Test/L0/Worker/CodeCoverage/index.html -------------------------------------------------------------------------------- /src/Test/L0/Worker/ExecutionContextL0.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Test/L0/Worker/ExecutionContextL0.cs -------------------------------------------------------------------------------- /src/Test/L0/Worker/ExpressionManagerL0.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Test/L0/Worker/ExpressionManagerL0.cs -------------------------------------------------------------------------------- /src/Test/L0/Worker/GitManagerL0.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Test/L0/Worker/GitManagerL0.cs -------------------------------------------------------------------------------- /src/Test/L0/Worker/Handlers/CmdArgsSanitizerL0.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Test/L0/Worker/Handlers/CmdArgsSanitizerL0.cs -------------------------------------------------------------------------------- /src/Test/L0/Worker/Handlers/ProcessHandlerHelperL0.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Test/L0/Worker/Handlers/ProcessHandlerHelperL0.cs -------------------------------------------------------------------------------- /src/Test/L0/Worker/Handlers/ProcessHandlerHelperTelemetryL0.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Test/L0/Worker/Handlers/ProcessHandlerHelperTelemetryL0.cs -------------------------------------------------------------------------------- /src/Test/L0/Worker/Handlers/ProcessHandlerL0.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Test/L0/Worker/Handlers/ProcessHandlerL0.cs -------------------------------------------------------------------------------- /src/Test/L0/Worker/JobExtensionL0.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Test/L0/Worker/JobExtensionL0.cs -------------------------------------------------------------------------------- /src/Test/L0/Worker/JobRunnerL0.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Test/L0/Worker/JobRunnerL0.cs -------------------------------------------------------------------------------- /src/Test/L0/Worker/LoggingCommandL0.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Test/L0/Worker/LoggingCommandL0.cs -------------------------------------------------------------------------------- /src/Test/L0/Worker/PluginInternalUpdateRepositoryPathCommandL0.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Test/L0/Worker/PluginInternalUpdateRepositoryPathCommandL0.cs -------------------------------------------------------------------------------- /src/Test/L0/Worker/Release/AgentUtlitiesL0.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Test/L0/Worker/Release/AgentUtlitiesL0.cs -------------------------------------------------------------------------------- /src/Test/L0/Worker/Release/FetchEngineL0.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Test/L0/Worker/Release/FetchEngineL0.cs -------------------------------------------------------------------------------- /src/Test/L0/Worker/Release/GitHubArtifactL0.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Test/L0/Worker/Release/GitHubArtifactL0.cs -------------------------------------------------------------------------------- /src/Test/L0/Worker/Release/JenkinsArtifactL0.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Test/L0/Worker/Release/JenkinsArtifactL0.cs -------------------------------------------------------------------------------- /src/Test/L0/Worker/Release/ReleaseDirectoryManagerL0.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Test/L0/Worker/Release/ReleaseDirectoryManagerL0.cs -------------------------------------------------------------------------------- /src/Test/L0/Worker/Release/ReleaseJobExtensionL0.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Test/L0/Worker/Release/ReleaseJobExtensionL0.cs -------------------------------------------------------------------------------- /src/Test/L0/Worker/Release/TfsGitArtifactL0.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Test/L0/Worker/Release/TfsGitArtifactL0.cs -------------------------------------------------------------------------------- /src/Test/L0/Worker/Release/TfsVCArtifactL0.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Test/L0/Worker/Release/TfsVCArtifactL0.cs -------------------------------------------------------------------------------- /src/Test/L0/Worker/SetVariableRestrictionsL0.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Test/L0/Worker/SetVariableRestrictionsL0.cs -------------------------------------------------------------------------------- /src/Test/L0/Worker/StepsRunnerL0.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Test/L0/Worker/StepsRunnerL0.cs -------------------------------------------------------------------------------- /src/Test/L0/Worker/TaskCommandExtensionL0.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Test/L0/Worker/TaskCommandExtensionL0.cs -------------------------------------------------------------------------------- /src/Test/L0/Worker/TaskDecoratorManagerL0.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Test/L0/Worker/TaskDecoratorManagerL0.cs -------------------------------------------------------------------------------- /src/Test/L0/Worker/TaskManagerL0.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Test/L0/Worker/TaskManagerL0.cs -------------------------------------------------------------------------------- /src/Test/L0/Worker/TaskRunnerL0.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Test/L0/Worker/TaskRunnerL0.cs -------------------------------------------------------------------------------- /src/Test/L0/Worker/Telemetry/TelemetryCommandExtensionTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Test/L0/Worker/Telemetry/TelemetryCommandExtensionTests.cs -------------------------------------------------------------------------------- /src/Test/L0/Worker/TestResults/Legacy/CtestResultReaderTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Test/L0/Worker/TestResults/Legacy/CtestResultReaderTests.cs -------------------------------------------------------------------------------- /src/Test/L0/Worker/TestResults/Legacy/JunitResultReaderTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Test/L0/Worker/TestResults/Legacy/JunitResultReaderTests.cs -------------------------------------------------------------------------------- /src/Test/L0/Worker/TestResults/Legacy/NUnitResultReaderTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Test/L0/Worker/TestResults/Legacy/NUnitResultReaderTests.cs -------------------------------------------------------------------------------- /src/Test/L0/Worker/TestResults/Legacy/TestRunPublisherTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Test/L0/Worker/TestResults/Legacy/TestRunPublisherTests.cs -------------------------------------------------------------------------------- /src/Test/L0/Worker/TestResults/Legacy/TrxResultReaderTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Test/L0/Worker/TestResults/Legacy/TrxResultReaderTests.cs -------------------------------------------------------------------------------- /src/Test/L0/Worker/TestResults/Legacy/XUnitResultReaderTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Test/L0/Worker/TestResults/Legacy/XUnitResultReaderTests.cs -------------------------------------------------------------------------------- /src/Test/L0/Worker/TestResults/ParserTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Test/L0/Worker/TestResults/ParserTests.cs -------------------------------------------------------------------------------- /src/Test/L0/Worker/TestResults/ResultsCommandExtensionTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Test/L0/Worker/TestResults/ResultsCommandExtensionTests.cs -------------------------------------------------------------------------------- /src/Test/L0/Worker/TfManagerL0.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Test/L0/Worker/TfManagerL0.cs -------------------------------------------------------------------------------- /src/Test/L0/Worker/VariablesL0.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Test/L0/Worker/VariablesL0.cs -------------------------------------------------------------------------------- /src/Test/L0/Worker/WorkerCommandManagerL0.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Test/L0/Worker/WorkerCommandManagerL0.cs -------------------------------------------------------------------------------- /src/Test/L0/Worker/WorkerCorrelationIntegrationL0.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Test/L0/Worker/WorkerCorrelationIntegrationL0.cs -------------------------------------------------------------------------------- /src/Test/L0/Worker/WorkerL0.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Test/L0/Worker/WorkerL0.cs -------------------------------------------------------------------------------- /src/Test/L1/L1HostContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Test/L1/L1HostContext.cs -------------------------------------------------------------------------------- /src/Test/L1/Mock/FakeAgentPluginManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Test/L1/Mock/FakeAgentPluginManager.cs -------------------------------------------------------------------------------- /src/Test/L1/Mock/FakeBuildServer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Test/L1/Mock/FakeBuildServer.cs -------------------------------------------------------------------------------- /src/Test/L1/Mock/FakeConfigurationStore.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Test/L1/Mock/FakeConfigurationStore.cs -------------------------------------------------------------------------------- /src/Test/L1/Mock/FakeCustomerIntelligenceServer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Test/L1/Mock/FakeCustomerIntelligenceServer.cs -------------------------------------------------------------------------------- /src/Test/L1/Mock/FakeJobServer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Test/L1/Mock/FakeJobServer.cs -------------------------------------------------------------------------------- /src/Test/L1/Mock/FakeReleaseServer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Test/L1/Mock/FakeReleaseServer.cs -------------------------------------------------------------------------------- /src/Test/L1/Mock/FakeResourceMetricsManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Test/L1/Mock/FakeResourceMetricsManager.cs -------------------------------------------------------------------------------- /src/Test/L1/Mock/FakeTaskManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Test/L1/Mock/FakeTaskManager.cs -------------------------------------------------------------------------------- /src/Test/L1/Mock/FakeTaskServer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Test/L1/Mock/FakeTaskServer.cs -------------------------------------------------------------------------------- /src/Test/L1/Plugins/FakeCheckoutTask.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Test/L1/Plugins/FakeCheckoutTask.cs -------------------------------------------------------------------------------- /src/Test/L1/Plugins/FakeGitCliManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Test/L1/Plugins/FakeGitCliManager.cs -------------------------------------------------------------------------------- /src/Test/L1/Worker/CheckoutL1Tests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Test/L1/Worker/CheckoutL1Tests.cs -------------------------------------------------------------------------------- /src/Test/L1/Worker/ConditionsL1Tests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Test/L1/Worker/ConditionsL1Tests.cs -------------------------------------------------------------------------------- /src/Test/L1/Worker/ConfigL1Tests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Test/L1/Worker/ConfigL1Tests.cs -------------------------------------------------------------------------------- /src/Test/L1/Worker/ContainerL1Tests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Test/L1/Worker/ContainerL1Tests.cs -------------------------------------------------------------------------------- /src/Test/L1/Worker/CoreL1Tests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Test/L1/Worker/CoreL1Tests.cs -------------------------------------------------------------------------------- /src/Test/L1/Worker/CorrelationL1Tests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Test/L1/Worker/CorrelationL1Tests.cs -------------------------------------------------------------------------------- /src/Test/L1/Worker/L1TestBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Test/L1/Worker/L1TestBase.cs -------------------------------------------------------------------------------- /src/Test/L1/Worker/TimeoutLogFlushingL1Tests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Test/L1/Worker/TimeoutLogFlushingL1Tests.cs -------------------------------------------------------------------------------- /src/Test/L1/Worker/VariableL1Tests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Test/L1/Worker/VariableL1Tests.cs -------------------------------------------------------------------------------- /src/Test/NuGet.Config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Test/NuGet.Config -------------------------------------------------------------------------------- /src/Test/Test.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Test/Test.csproj -------------------------------------------------------------------------------- /src/Test/TestData/TaskManagerL0/task.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/Test/TestData/TaskManagerL0/task.json -------------------------------------------------------------------------------- /src/agentversion: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/agentversion -------------------------------------------------------------------------------- /src/dev.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/dev.cmd -------------------------------------------------------------------------------- /src/dev.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/dev.sh -------------------------------------------------------------------------------- /src/dir.proj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/src/dir.proj -------------------------------------------------------------------------------- /tools/FindAgentsNotCompatibleWithAgent/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/tools/FindAgentsNotCompatibleWithAgent/readme.md -------------------------------------------------------------------------------- /tools/FindPipelinesUsingRetiredImages/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-pipelines-agent/HEAD/tools/FindPipelinesUsingRetiredImages/readme.md --------------------------------------------------------------------------------