├── .editorconfig ├── .gitattributes ├── .github ├── FUNDING.yml ├── dependabot.yml └── workflows │ └── main.yml ├── .gitignore ├── .vscode ├── launch.json ├── settings.json └── tasks.json ├── ACKNOWLEDGEMENTS.md ├── Assets ├── TfsCmdlets.ico ├── TfsCmdlets_Icon_128.png ├── TfsCmdlets_Icon_16.png ├── TfsCmdlets_Icon_256.png ├── TfsCmdlets_Icon_32.png ├── TfsCmdlets_Icon_64.png ├── TfsShell.png ├── Wix-01.bmp ├── Wix-02.bmp └── star.png ├── Build.ps1 ├── BuildDoc.ps1 ├── BuildTools ├── XmlDoc2CmdletDoc │ ├── Jolt.dll │ ├── System.Management.Automation.dll │ ├── XmlDoc2CmdletDoc.Core.dll │ └── XmlDoc2CmdletDoc.exe └── nuget.exe ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── CSharp ├── TfsCmdlets.Legacy │ ├── Cmdlets │ │ ├── ConfigServer │ │ │ ├── ConnectConfigurationServer.cs │ │ │ ├── DisconnectConfigurationServer.cs │ │ │ ├── GetConfigurationServer.cs │ │ │ ├── GetRegisteredConfigurationServer.cs │ │ │ ├── RegisteredServer.json │ │ │ └── index.md │ │ ├── GlobalList │ │ │ ├── ExportGlobalList.cs │ │ │ ├── GetGlobalList.cs │ │ │ ├── ImportGlobalList.cs │ │ │ ├── NewGlobalList.cs │ │ │ ├── RemoveGlobalList.cs │ │ │ ├── RenameGlobalList.cs │ │ │ ├── SetGlobalList.cs │ │ │ └── index.md │ │ ├── TeamProjectCollection │ │ │ ├── DismountTeamProjectCollection.cs │ │ │ ├── MountTeamProjectCollection.cs │ │ │ ├── StartTeamProjectCollection.cs │ │ │ ├── StopTeamProjectCollection.cs │ │ │ └── index.md │ │ └── XamlBuild │ │ │ ├── StartXamlBuild.cs │ │ │ └── index.md │ ├── Controllers │ │ ├── ConfigServer │ │ │ ├── ConnectConfigurationServerController.cs │ │ │ ├── DisconnectConfigurationServerController.cs │ │ │ ├── GetConfigurationServerController.cs │ │ │ └── GetRegisteredConfigurationServerController.cs │ │ ├── GlobalList │ │ │ ├── ExportGlobalListController.cs │ │ │ ├── GetGlobalListController-desktop.cs │ │ │ ├── GetGlobalListController.cs │ │ │ ├── ImportGlobalListController.cs │ │ │ ├── NewGlobalListController.cs │ │ │ ├── RemoveGlobalListController.cs │ │ │ ├── RenameGlobalListController.cs │ │ │ └── SetGlobalListController.cs │ │ └── XamlBuild │ │ │ ├── StartXamlBuildController.cs │ │ │ └── index.md │ ├── GlobalUsings.cs │ └── TfsCmdlets.Legacy.csproj ├── TfsCmdlets.SourceGeneratores.UnitTests │ ├── CSharpSourceGeneratorVerifier.cs │ ├── Controllers │ │ └── Resolve_Default_Value_Namespace.cs │ └── TfsCmdlets.SourceGenerators.UnitTests.csproj ├── TfsCmdlets.SourceGenerators │ ├── Analyzers │ │ ├── ClassMustBePartial.cs │ │ ├── ParameterMustBeProperty.cs │ │ └── ParameterMustHaveComments.cs │ ├── BaseFilter.cs │ ├── BaseGenerator.cs │ ├── BaseTypeProcessor.cs │ ├── CmdletScope.cs │ ├── DiagnosticDescriptors.cs │ ├── Extensions.cs │ ├── GeneratedMethod.cs │ ├── GeneratedProperty.cs │ ├── GeneratorState.cs │ ├── Generators │ │ ├── Cmdlets │ │ │ ├── CmdletInfo.cs │ │ │ ├── Filter.cs │ │ │ ├── Generator.cs │ │ │ └── TypeProcessor.cs │ │ ├── Controllers │ │ │ ├── Analyzers.cs │ │ │ ├── ControllerInfo.cs │ │ │ ├── Filter.cs │ │ │ ├── Generator.cs │ │ │ └── TypeProcessor.cs │ │ ├── HttpClients │ │ │ ├── Filter.cs │ │ │ ├── Generator.cs │ │ │ ├── HttpClientInfo.cs │ │ │ └── TypeProcessor.cs │ │ └── Models │ │ │ ├── Filter.cs │ │ │ ├── Generator.cs │ │ │ └── TypeProcessor.cs │ ├── IFilter.cs │ ├── IGenerator.cs │ ├── ITypeProcessor.cs │ ├── Logger.cs │ ├── Properties │ │ └── launchSettings.json │ └── TfsCmdlets.SourceGenerators.csproj ├── TfsCmdlets.Tests.UnitTests │ ├── Cmdlets │ │ └── CmdletBase_Tests.cs │ ├── Controllers │ │ ├── Admin │ │ │ └── GetVersion_Tests.cs │ │ ├── CommandBase_Tests.cs │ │ ├── CommandsFixture.cs │ │ ├── ControllerFixtures.cs │ │ └── NewIteration_Tests.cs │ ├── Correctness_Tests.cs │ ├── Fixtures │ │ ├── PowerShellFixture.cs │ │ └── SourceGeneratorFixture.cs │ ├── Services │ │ ├── DateService_Tests.cs │ │ ├── ServiceLocator_Tests.cs │ │ └── _Fixture.cs │ ├── SourceGenerators │ │ └── Property_Tests.cs │ ├── TfsCmdlets.Tests.UnitTests.csproj │ └── Util │ │ ├── EnvironmentUtil_Tests.cs │ │ ├── ErrorUtil_Tests.cs │ │ ├── LazyProperty_Tests.cs │ │ ├── Mru_Tests.cs │ │ └── NormalizePath_Tests.cs ├── TfsCmdlets.sln ├── TfsCmdlets.sln.DotSettings └── TfsCmdlets │ ├── AssemblyResolver.cs │ ├── Attributes.cs │ ├── Cmdlets │ ├── Admin │ │ ├── GetConfigurationServerConnectionString.cs │ │ ├── GetInstallationPath.cs │ │ ├── GetVersion.cs │ │ ├── Registry │ │ │ ├── GetRegistryValue.cs │ │ │ ├── SetRegistryValue.cs │ │ │ └── index.md │ │ └── index.md │ ├── Artifact │ │ ├── GetArtifact.cs │ │ ├── GetArtifactFeed.cs │ │ ├── GetArtifactFeedView.cs │ │ ├── GetArtifactVersion.cs │ │ └── index.md │ ├── CmdletBase.cs │ ├── ControllerBase.cs │ ├── Credential │ │ ├── NewCredential.cs │ │ └── index.md │ ├── ExtensionManagement │ │ ├── DisableExtension.cs │ │ ├── EnableExtension.cs │ │ ├── GetExtension.cs │ │ ├── InstallExtension.cs │ │ ├── UninstallExtension.cs │ │ └── index.md │ ├── Git │ │ ├── Branch │ │ │ ├── GetGitBranch.cs │ │ │ ├── RemoveGitBranch.cs │ │ │ └── index.md │ │ ├── Commit │ │ │ ├── GetGitCommit.cs │ │ │ └── index.md │ │ ├── DisableGitRepository.cs │ │ ├── EnableGitRepository.cs │ │ ├── GetGitRepository.cs │ │ ├── Item │ │ │ ├── GetGitItem.cs │ │ │ └── index.md │ │ ├── NewGitRepository.cs │ │ ├── Policy │ │ │ ├── GetGitBranchPolicy.cs │ │ │ ├── GetGitPolicyType.cs │ │ │ └── index.md │ │ ├── RemoveGitRepository.cs │ │ ├── RenameGitRepository.cs │ │ └── index.md │ ├── Identity │ │ ├── GetIdentity.cs │ │ ├── Group │ │ │ ├── AddGroupMember.cs │ │ │ ├── GetGroup.cs │ │ │ ├── GetGroupMember.cs │ │ │ ├── NewGroup.cs │ │ │ ├── RemoveGroup.cs │ │ │ ├── RemoveGroupMember.cs │ │ │ └── index.md │ │ ├── User │ │ │ ├── GetUser.cs │ │ │ ├── NewUser.cs │ │ │ ├── RemoveUser.cs │ │ │ └── index.md │ │ └── index.md │ ├── Organization │ │ ├── ConnectOrganization.cs │ │ ├── DisconnectOrganization.cs │ │ ├── GetOrganization.cs │ │ └── index.md │ ├── Pipeline │ │ ├── Build │ │ │ ├── Definition │ │ │ │ ├── DisableBuildDefinition.cs │ │ │ │ ├── EnableBuildDefinition.cs │ │ │ │ ├── GetBuildDefinition.cs │ │ │ │ ├── ResumeBuildDefinition.cs │ │ │ │ ├── SuspendBuildDefinition.cs │ │ │ │ └── index.md │ │ │ ├── Folder │ │ │ │ ├── GetBuildDefinitionFolder.cs │ │ │ │ ├── NewBuildDefinitionFolder.cs │ │ │ │ ├── RemoveBuildDefinitionFolder.cs │ │ │ │ └── index.md │ │ │ ├── StartBuild.cs │ │ │ └── index.md │ │ ├── ReleaseManagement │ │ │ ├── GetReleaseDefinition.cs │ │ │ ├── GetReleaseDefinitionFolder.cs │ │ │ ├── NewReleaseDefinitionFolder.cs │ │ │ ├── RemoveReleaseDefinitionFolder.cs │ │ │ └── index.md │ │ └── index.md │ ├── ProcessTemplate │ │ ├── ExportProcessTemplate.cs │ │ ├── Field │ │ │ ├── GetProcessFieldDefinition.cs │ │ │ ├── NewProcessFieldDefinition.cs │ │ │ └── RemoveProcessFieldDefinition.cs │ │ ├── GetProcessTemplate.cs │ │ ├── ImportProcessTemplate.cs │ │ ├── NewProcessTemplate.cs │ │ └── index.md │ ├── RestApi │ │ ├── GetRestClient.cs │ │ ├── InvokeRestApi.cs │ │ └── index.md │ ├── ServiceHook │ │ ├── GetServiceHookConsumer.cs │ │ ├── GetServiceHookNotificationHistory.cs │ │ ├── GetServiceHookPublisher.cs │ │ ├── GetServiceHookSubscription.cs │ │ └── index.md │ ├── Shell │ │ ├── EnterShell.cs │ │ ├── ExitShell.cs │ │ └── index.md │ ├── Team │ │ ├── Backlog │ │ │ ├── GetTeamBacklogLevel.cs │ │ │ └── index.md │ │ ├── Board │ │ │ ├── GetTeamBoard.cs │ │ │ ├── GetTeamBoardCardRule.cs │ │ │ ├── SetTeamBoardCardRule.cs │ │ │ └── index.md │ │ ├── ConnectTeam.cs │ │ ├── DisconnectTeam.cs │ │ ├── GetTeam.cs │ │ ├── NewTeam.cs │ │ ├── RemoveTeam.cs │ │ ├── RenameTeam.cs │ │ ├── SetTeam.cs │ │ ├── TeamAdmin │ │ │ ├── AddTeamAdmin.cs │ │ │ ├── GetTeamAdmin.cs │ │ │ ├── RemoveTeamAdmin.cs │ │ │ └── index.md │ │ ├── TeamMember │ │ │ ├── AddTeamMember.cs │ │ │ ├── GetTeamMember.cs │ │ │ ├── RemoveTeamMember.cs │ │ │ └── index.md │ │ └── index.md │ ├── TeamProject │ │ ├── Avatar │ │ │ ├── ExportTeamProjectAvatar.cs │ │ │ ├── ImportTeamProjectAvatar.cs │ │ │ └── RemoveTeamProjectAvatar.cs │ │ ├── ConnectTeamProject.cs │ │ ├── DisconnectTeamProject.cs │ │ ├── GetTeamProject.cs │ │ ├── Member │ │ │ ├── GetTeamProjectMember.cs │ │ │ └── index.md │ │ ├── NewTeamProject.cs │ │ ├── RemoveTeamProject.cs │ │ ├── RenameTeamProject.cs │ │ ├── SetTeamProject.cs │ │ ├── UndoTeamProjectRemoval.cs │ │ └── index.md │ ├── TeamProjectCollection │ │ ├── ConnectTeamProjectCollection.cs │ │ ├── DisconnectTeamProjectCollection.cs │ │ ├── GetTeamProjectCollection.cs │ │ ├── NewTeamProjectCollection.cs │ │ ├── RemoveTeamProjectCollection.cs │ │ └── index.md │ ├── TestManagement │ │ ├── CopyTestPlan.cs │ │ ├── GetTestPlan.cs │ │ ├── NewTestPlan.cs │ │ ├── RemoveTestPlan.cs │ │ ├── RenameTestPlan.cs │ │ └── index.md │ ├── TfsCmdletAttribute.cs │ ├── Wiki │ │ ├── GetWiki.cs │ │ ├── NewWiki.cs │ │ ├── RemoveWiki.cs │ │ └── index.md │ ├── WorkItem │ │ ├── AreasIterations │ │ │ ├── CopyArea.cs │ │ │ ├── CopyClassificationNodeController.cs │ │ │ ├── CopyIteration.cs │ │ │ ├── GetArea.cs │ │ │ ├── GetClassificationNodeController.cs │ │ │ ├── GetIteration.cs │ │ │ ├── MoveArea.cs │ │ │ ├── MoveClassificationNodeController.cs │ │ │ ├── MoveIteration.cs │ │ │ ├── NewArea.cs │ │ │ ├── NewClassificationNodeController.cs │ │ │ ├── NewIteration.cs │ │ │ ├── RemoveArea.cs │ │ │ ├── RemoveClassificationNodeController.cs │ │ │ ├── RemoveIteration.cs │ │ │ ├── RenameArea.cs │ │ │ ├── RenameClassificationNodeController.cs │ │ │ ├── RenameIteration.cs │ │ │ ├── SetIteration.cs │ │ │ ├── TestArea.cs │ │ │ ├── TestClassificationNodeController.cs │ │ │ ├── TestIteration.cs │ │ │ └── index.md │ │ ├── CopyWorkItem.cs │ │ ├── GetWorkItem.cs │ │ ├── History │ │ │ ├── GetWorkItemHistory.cs │ │ │ └── index.md │ │ ├── Linking │ │ │ ├── AddWorkItemLink.cs │ │ │ ├── ExportWorkItemAttachment.cs │ │ │ ├── GetWorkItemLink.cs │ │ │ ├── GetWorkItemLinkEndType.cs │ │ │ └── index.md │ │ ├── MoveWorkItem.cs │ │ ├── NewWorkItem.cs │ │ ├── Query │ │ │ ├── ExportWorkItemQuery.cs │ │ │ ├── GetWorkItemQuery.cs │ │ │ ├── GetWorkItemQueryFolder.cs │ │ │ ├── GetWorkItemQueryItemController.cs │ │ │ ├── NewWorkItemQuery.cs │ │ │ ├── NewWorkItemQueryFolder.cs │ │ │ ├── NewWorkItemQueryItemController.cs │ │ │ ├── UndoWorkItemQueryFolderRemoval.cs │ │ │ ├── UndoWorkItemQueryRemoval.cs │ │ │ ├── UndoWorkItemQueryRemovalController.cs │ │ │ └── index.md │ │ ├── RemoveWorkItem.cs │ │ ├── SearchWorkItem.cs │ │ ├── SetWorkItem.cs │ │ ├── Tagging │ │ │ ├── DisableWorkItemTag.cs │ │ │ ├── EnableWorkItemTag.cs │ │ │ ├── GetWorkItemTag.cs │ │ │ ├── NewWorkItemTag.cs │ │ │ ├── RemoveWorkItemTag.cs │ │ │ ├── RenameWorkItemTag.cs │ │ │ ├── ToggleWorkItemTagController.cs │ │ │ └── index.md │ │ ├── UndoWorkItemRemoval.cs │ │ ├── WorkItemType │ │ │ ├── ExportWorkItemType.cs │ │ │ ├── GetWorkItemType.cs │ │ │ ├── ImportWorkItemType.cs │ │ │ └── index.md │ │ └── index.md │ └── index.md │ ├── CodeAnnotations.cs │ ├── Enums.cs │ ├── Extensions │ ├── HashtableExtensions.cs │ ├── JsonExtensions.cs │ ├── ListExtensions.cs │ ├── ObjectExtensions.cs │ ├── PSObjectExtensions.cs │ ├── PipelineExtensions.cs │ ├── StringExtensions.cs │ ├── TaskExtensions.cs │ ├── TeamProjectExtensions.cs │ ├── WorkItemExtensions.cs │ └── XmlExtensions.cs │ ├── GlobalUsings.cs │ ├── HttpClients │ ├── HttpClientAttribute.cs │ ├── IAccountLicensingHttpClient.cs │ ├── IBuildHttpClient.cs │ ├── IExtensionManagementHttpClient.cs │ ├── IFeedHttpClient.cs │ ├── IGenericHttpClient.cs │ ├── IGitExtendedHttpClient.cs │ ├── IGitHttpClient.cs │ ├── IGraphHttpClient.cs │ ├── IIdentityHttpClient.cs │ ├── IOperationsHttpClient.cs │ ├── IPolicyHttpClient.cs │ ├── IProcessHttpClient.cs │ ├── IProjectHttpClient.cs │ ├── IReleaseHttpClient.cs │ ├── IReleaseHttpClient2.cs │ ├── ISearchHttpClient.cs │ ├── IServiceHooksPublisherHttpClient.cs │ ├── ITaggingHttpClient.cs │ ├── ITeamAdminHttpClient.cs │ ├── ITeamHttpClient.cs │ ├── ITestPlanHttpClient.cs │ ├── IVssHttpClient.cs │ ├── IWikiHttpClient.cs │ ├── IWorkHttpClient.cs │ ├── IWorkItemTrackingHttpClient.cs │ ├── IWorkItemTrackingProcessHttpClient.cs │ └── Impl │ │ ├── GenericHttpClient.cs │ │ ├── GitExtendedHttpClient.cs │ │ └── TeamAdminHttpClient.cs │ ├── Models │ ├── BacklogLevelConfiguration.cs │ ├── Board.cs │ ├── CardRule.cs │ ├── ClassificationNode.cs │ ├── Connection.cs │ ├── ContributionNodeQuery.cs │ ├── GitItem.cs │ ├── GlobalList.cs │ ├── Identity.cs │ ├── IdentityRefWrapper.cs │ ├── ModelBase.cs │ ├── Parameter.cs │ ├── ServerVersion.cs │ ├── Team.cs │ ├── TeamAdmin.cs │ ├── TeamMember.cs │ ├── TeamProjectMember.cs │ ├── TfsInstallationPath.cs │ ├── WorkItem │ │ └── Query │ │ │ └── QueryItem.cs │ └── WorkItemHistory.cs │ ├── ModuleInitializer.cs │ ├── Properties │ └── launchSettings.json │ ├── Services │ ├── IAsyncOperationAwaiter.cs │ ├── IController.cs │ ├── ICurrentConnections.cs │ ├── IDataManager.cs │ ├── IInteractiveAuthentication.cs │ ├── IKnownWorkItemLinkTypes.cs │ ├── ILegacyWorkItemService.cs │ ├── ILogger.cs │ ├── INodeUtil.cs │ ├── IPaginator.cs │ ├── IParameterManager.cs │ ├── IPowerShellService.cs │ ├── IProcessUtil.cs │ ├── IRegistryService.cs │ ├── IRestApiService.cs │ ├── IRuntimeUtil.cs │ ├── ITfsServiceProvider.cs │ ├── ITfsVersionTable.cs │ ├── IWorkItemPatchBuilder.cs │ ├── Impl │ │ ├── AsyncOperationAwaiterImpl.cs │ │ ├── CurrentConnectionsImpl.cs │ │ ├── DataManagerImpl.cs │ │ ├── InteractiveAuthenticationImpl.cs │ │ ├── KnownWorkItemLinkTypesImpl.cs │ │ ├── LegacyWorkItemServiceImpl.cs │ │ ├── LoggerImpl.cs │ │ ├── NodeUtilImpl.cs │ │ ├── PaginatorImpl.cs │ │ ├── ParameterManagerImpl.cs │ │ ├── PowerShellServiceImpl.cs │ │ ├── ProcessUtil.cs │ │ ├── RegistryServiceImpl.cs │ │ ├── RestApiServiceImpl.cs │ │ ├── RuntimeUtilImpl.cs │ │ ├── TfsVersionTableImpl.cs │ │ └── WorkItemPatchBuilderImpl.cs │ └── ServiceLocator.cs │ ├── ShellHelper.cs │ ├── TfsCmdlets.csproj │ └── Util │ ├── ErrorUtil.cs │ ├── LazyProperty.cs │ ├── Mru.cs │ └── PSJsonConverter.cs ├── Docs ├── CommonHelpText.psd1 └── ReleaseNotes │ ├── 1.0.0-alpha3.md │ ├── 1.0.0-alpha4.md │ ├── 1.0.0-alpha5.md │ ├── 1.0.0-alpha6.md │ ├── 1.0.0-alpha7.md │ ├── 2.0.0-beta.10.md │ ├── 2.0.0-beta.11.md │ ├── 2.0.0-beta.12.md │ ├── 2.0.0-beta.13.md │ ├── 2.0.0-beta.14.md │ ├── 2.0.0-beta.15.md │ ├── 2.0.0-beta.16.md │ ├── 2.0.0-beta.6.md │ ├── 2.0.0-beta.8.md │ ├── 2.0.0-beta.9.md │ ├── 2.0.0-rc.1.md │ ├── 2.0.0-rc.2.md │ ├── 2.0.0-rc.3.md │ ├── 2.0.0-rc.4.md │ ├── 2.0.0-rc.5.md │ ├── 2.0.0.md │ ├── 2.0.1.md │ ├── 2.1.0.md │ ├── 2.1.1.md │ ├── 2.1.2.md │ ├── 2.1.3.md │ ├── 2.1.4.md │ ├── 2.2.0.md │ ├── 2.2.1.md │ ├── 2.3.0.md │ ├── 2.3.1.md │ ├── 2.4.0.md │ ├── 2.4.1.md │ ├── 2.5.0.md │ ├── 2.5.1.md │ ├── 2.6.0.md │ ├── 2.6.1.md │ ├── 2.7.0.md │ ├── 2.7.1.md │ ├── 2.8.0.md │ ├── 2.8.1.md │ ├── 2.8.2.md │ ├── 2.9.0.md │ ├── 2.9.1.md │ └── 2.9.2.md ├── LICENSE.md ├── License.rtf ├── PS ├── TfsCmdlets.psd1 ├── TfsCmdlets.psm1 ├── TfsCmdletsShell.ico ├── _Formats │ ├── Controls │ │ ├── ArtifactFeeds.Control.yml │ │ ├── TeamProject-FeedItems.Control.yml │ │ ├── TeamProject-Feeds-Packages.Control.yml │ │ ├── TeamProject-Folder.Control.yml │ │ ├── TeamProject-Repositories-Branches.Control.yml │ │ ├── TeamProject-Repositories-Folders.Control.yml │ │ ├── TeamProject-Repositories.Control.yml │ │ ├── TeamProjectTeams.Control.yml │ │ └── TeamProjectsGrouping.Control.yml │ └── Views │ │ ├── AccountEntitlement.View.yml │ │ ├── ArtifactFeed.View.yml │ │ ├── ArtifactFeedView.View.yml │ │ ├── ArtifactPackage.View.yml │ │ ├── ArtifactPackageVersion.View.yml │ │ ├── BacklogLevelConfiguration.View.yml │ │ ├── Board.View.yml │ │ ├── BoardCardRuleSettings.View.yml │ │ ├── BuildAgents.View.yml │ │ ├── BuildControllers.View.yml │ │ ├── BuildDefinitions.View.yml │ │ ├── ClassificationNodes.View.yml │ │ ├── ConfigurationServers.View.yml │ │ ├── GitBranchPolicyTypes.View.yml │ │ ├── GitBranches.View.yml │ │ ├── GitCommitRef.View.yml │ │ ├── GitItem.View.yml │ │ ├── GitPolicyConfigurations.View.yml │ │ ├── GitRepositories.View.yml │ │ ├── Identities.View.yml │ │ ├── InstalledExtension.View.yml │ │ ├── PipelineFolders.View.yml │ │ ├── ProcessTemplates.View.yml │ │ ├── QueuedBuilds.View.yml │ │ ├── ReleaseDefinitions.View.yml │ │ ├── ServiceHookConsumersPublishers.View.yml │ │ ├── ServiceHookSubscriptions.View.yml │ │ ├── TeamAdmins.View.yml │ │ ├── TeamBoardCardRules.View.yml │ │ ├── TeamProjectCollections.View.yml │ │ ├── TeamProjectMembers.View.yml │ │ ├── TeamProjects-Rest.View.yml │ │ ├── TeamProjects.View.yml │ │ ├── Teams.View.yml │ │ ├── TemplateHeaders.View.yml │ │ ├── TestPlans.View.yml │ │ ├── VssConnection.View.yml │ │ ├── Wiki.View.yml │ │ ├── WorkItem.QueryItem.View.yml │ │ ├── WorkItem.Tag.View.yml │ │ ├── WorkItemFields.View.yml │ │ ├── WorkItemLinkEnds.View.yml │ │ ├── WorkItemLinks.View.yml │ │ ├── WorkItemQueries.View.yml │ │ ├── WorkItemQueryFolders.View.yml │ │ ├── WorkItemRelations.View.yml │ │ ├── WorkItemResult.View.yml │ │ ├── WorkItemTypes.View.yml │ │ ├── WorkItems.View.yml │ │ └── XamlBuildDefinitions.View.yml ├── _Private │ ├── Admin.ps1 │ ├── Aliases.ps1 │ └── Completers │ │ ├── AreaIteration.ps1 │ │ ├── Project.ps1 │ │ ├── Repository.ps1 │ │ ├── Team.ps1 │ │ └── _EscapeArgumentValue.ps1 ├── _Tests │ ├── Admin │ │ ├── GetTfsConfigurationConnectionString.Tests.ps1 │ │ ├── GetTfsConfigurationServerConnectionString.Tests.ps1 │ │ ├── GetTfsInstallationPath.Tests.ps1 │ │ ├── GetTfsVersion.Tests.ps1 │ │ └── Registry │ │ │ └── GetTfsRegistryValue.Tests.ps1 │ ├── Artifact │ │ ├── GetTfsArtifact.Tests.ps1 │ │ ├── GetTfsArtifactFeed.Tests.ps1 │ │ ├── GetTfsArtifactFeedView.Tests.ps1 │ │ └── GetTfsArtifactVersion.Tests.ps1 │ ├── ExtensionManagement │ │ └── GetTfsExtension.Tests.ps1 │ ├── Git │ │ ├── Branch │ │ │ └── GetTfsGitBranch.Tests.ps1 │ │ ├── Commit │ │ │ └── GetTfsGitCommit.Tests.ps1 │ │ ├── GetTfsGitRepository.Tests.ps1 │ │ ├── Item │ │ │ └── GetTfsGitItem.Tests.ps1 │ │ └── Policy │ │ │ ├── GetTfsGitBranchPolicy.Tests.ps1 │ │ │ └── GetTfsGitPolicyType.Tests.ps1 │ ├── Identity │ │ ├── GetTfsIdentity.Tests.ps1 │ │ ├── Group │ │ │ ├── GetTfsGroup.Tests.ps1 │ │ │ └── GetTfsGroupMember.Tests.ps1 │ │ └── User │ │ │ └── GetTfsUser.Tests.ps1 │ ├── Organization │ │ └── GetTfsOrganization.Tests.ps1 │ ├── Pipeline │ │ ├── Build │ │ │ ├── Definition │ │ │ │ └── GetTfsBuildDefinition.Tests.ps1 │ │ │ └── Folder │ │ │ │ └── GetTfsBuildDefinitionFolder.Tests.ps1 │ │ └── ReleaseManagement │ │ │ ├── GetTfsReleaseDefinition.Tests.ps1 │ │ │ └── GetTfsReleaseDefinitionFolder.Tests.ps1 │ ├── ProcessTemplate │ │ ├── GetTfsProcessFieldDefinition.Tests.ps1 │ │ └── GetTfsProcessTemplate.Tests.ps1 │ ├── RestApi │ │ ├── GetTfsRestClient.Tests.ps1 │ │ └── InvokeTfsRestApi.Tests.ps1 │ ├── ServiceHook │ │ ├── GetTfsServiceHookConsumer.Tests.ps1 │ │ ├── GetTfsServiceHookNotificationHistory.Tests.ps1 │ │ ├── GetTfsServiceHookPublisher.Tests.ps1 │ │ └── GetTfsServiceHookSubscription.Tests.ps1 │ ├── Team │ │ ├── Backlog │ │ │ └── GetTfsTeamBacklogLevel.Tests.ps1 │ │ ├── Board │ │ │ ├── GetTfsTeamBoard.Tests.ps1 │ │ │ └── GetTfsTeamBoardCardRule.Tests.ps1 │ │ ├── GetTfsTeam.Tests.ps1 │ │ ├── TeamAdmin │ │ │ └── GetTfsTeamAdmin.Tests.ps1 │ │ └── TeamMember │ │ │ └── GetTfsTeamMember.Tests.ps1 │ ├── TeamProject │ │ ├── GetTfsTeamProject.Tests.ps1 │ │ └── Member │ │ │ └── GetTfsTeamProjectMember.Tests.ps1 │ ├── TeamProjectCollection │ │ └── GetTfsTeamProjectCollection.Tests.ps1 │ ├── TestManagement │ │ └── GetTfsTestPlan.Tests.ps1 │ ├── Wiki │ │ └── GetTfsWiki.Tests.ps1 │ ├── WorkItem │ │ ├── AreasIterations │ │ │ ├── GetTfsArea.Tests.ps1 │ │ │ └── GetTfsIteration.Tests.ps1 │ │ ├── GetTfsWorkItem.Tests.ps1 │ │ ├── History │ │ │ └── GetTfsWorkItemHistory.Tests.ps1 │ │ ├── Linking │ │ │ ├── GetTfsWorkItemLink.Tests.ps1 │ │ │ └── GetTfsWorkItemLinkEndType.Tests.ps1 │ │ ├── Query │ │ │ ├── GetTfsWorkItemQuery.Tests.ps1 │ │ │ ├── GetTfsWorkItemQueryFolder.Tests.ps1 │ │ │ └── GetTfsWorkItemQueryItemController.Tests.ps1 │ │ ├── Tagging │ │ │ └── GetTfsWorkItemTag.Tests.ps1 │ │ └── WorkItemType │ │ │ └── GetTfsWorkItemType.Tests.ps1 │ └── _TestSetup.ps1 ├── _Types │ ├── Microsoft.TeamFoundation.Build.WebApi.BuildDefinitionReference.yml │ ├── Microsoft.TeamFoundation.Build.WebApi.Folder.yml │ ├── Microsoft.TeamFoundation.Client.BuildController.yml │ ├── Microsoft.TeamFoundation.Client.TeamFoundationTeam.yml │ ├── Microsoft.TeamFoundation.Client.TfsConfigurationServer.yml │ ├── Microsoft.TeamFoundation.Client.TfsTeamProjectCollection.yml │ ├── Microsoft.TeamFoundation.Core.WebApi.Process.yml │ ├── Microsoft.TeamFoundation.Core.WebApi.TeamProject.yml │ ├── Microsoft.TeamFoundation.Core.WebApi.WebApiTagDefinition.yml │ ├── Microsoft.TeamFoundation.Policy.WebApi.PolicyConfiguration.yml │ ├── Microsoft.TeamFoundation.Server.NodeInfo.yml │ ├── Microsoft.TeamFoundation.SourceControl.WebApi.GitBranchStats.yml │ ├── Microsoft.TeamFoundation.SourceControl.WebApi.GitItem.yml │ ├── Microsoft.TeamFoundation.SourceControl.WebApi.GitRepository.yml │ ├── Microsoft.TeamFoundation.Work.WebApi.BoardCardRuleSettings.yml │ ├── Microsoft.TeamFoundation.WorkItemTracking.Client.Link.yml │ ├── Microsoft.TeamFoundation.WorkItemTracking.Client.Project.yml │ ├── Microsoft.TeamFoundation.WorkItemTracking.Client.QueryDefinition.yml │ ├── Microsoft.TeamFoundation.WorkItemTracking.Client.QueryDefinition2.yml │ ├── Microsoft.TeamFoundation.WorkItemTracking.Client.QueryFolder.yml │ ├── Microsoft.TeamFoundation.WorkItemTracking.Client.QueryFolder2.yml │ ├── Microsoft.TeamFoundation.WorkItemTracking.Client.WorkItem.yml │ ├── Microsoft.TeamFoundation.WorkItemTracking.Client.WorkItemLinkTypeEnd.yml │ ├── Microsoft.TeamFoundation.WorkItemTracking.WebApi.Models.QueryHierarchyItem.yml │ ├── Microsoft.TeamFoundation.WorkItemTracking.WebApi.Models.WorkItem.yml │ ├── Microsoft.TeamFoundation.WorkItemTracking.WebApi.Models.WorkItemClassificationNode.yml │ ├── Microsoft.TeamFoundation.WorkItemTracking.WebApi.Models.WorkItemRelation.yml │ ├── Microsoft.TeamFoundation.WorkItemTracking.WebApi.Models.WorkItemType.yml │ ├── Microsoft.VisualStudio.Services.Feed.WebApi.FeedView.yml │ ├── Microsoft.VisualStudio.Services.Feed.WebApi.Package.yml │ ├── Microsoft.VisualStudio.Services.Feed.WebApi.PackageVersion.yml │ ├── Microsoft.VisualStudio.Services.Identity.Identity.yml │ ├── Microsoft.VisualStudio.Services.Licensing.AccountEntitlement.yml │ ├── Microsoft.VisualStudio.Services.ReleaseManagement.WebApi.Folder.yml │ ├── Microsoft.VisualStudio.Services.Search.WebApi.Contracts.WorkItem.WorkItemResult.yml │ ├── Microsoft.VisualStudio.Services.TestManagement.TestPlanning.WebApi.TestPlan.yml │ └── Microsoft.VisualStudio.Services.WebApi.VssConnection.yml ├── chocolateyInstall.ps1 └── chocolateyUninstall.ps1 ├── README.md ├── RELEASENOTES.md ├── SECURITY.md ├── Setup ├── Product.wxs ├── TfsCmdlets.Setup.wixproj └── winget │ ├── Igoravl.TfsCmdlets.installer.yaml │ ├── Igoravl.TfsCmdlets.locale.en-US.yaml │ └── Igoravl.TfsCmdlets.yaml ├── TfsCmdlets.code-workspace ├── TfsCmdletsShell.ico ├── gitversion.yml └── psake.ps1 /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | github: igoravl 2 | -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/.vscode/tasks.json -------------------------------------------------------------------------------- /ACKNOWLEDGEMENTS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/ACKNOWLEDGEMENTS.md -------------------------------------------------------------------------------- /Assets/TfsCmdlets.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/Assets/TfsCmdlets.ico -------------------------------------------------------------------------------- /Assets/TfsCmdlets_Icon_128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/Assets/TfsCmdlets_Icon_128.png -------------------------------------------------------------------------------- /Assets/TfsCmdlets_Icon_16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/Assets/TfsCmdlets_Icon_16.png -------------------------------------------------------------------------------- /Assets/TfsCmdlets_Icon_256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/Assets/TfsCmdlets_Icon_256.png -------------------------------------------------------------------------------- /Assets/TfsCmdlets_Icon_32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/Assets/TfsCmdlets_Icon_32.png -------------------------------------------------------------------------------- /Assets/TfsCmdlets_Icon_64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/Assets/TfsCmdlets_Icon_64.png -------------------------------------------------------------------------------- /Assets/TfsShell.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/Assets/TfsShell.png -------------------------------------------------------------------------------- /Assets/Wix-01.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/Assets/Wix-01.bmp -------------------------------------------------------------------------------- /Assets/Wix-02.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/Assets/Wix-02.bmp -------------------------------------------------------------------------------- /Assets/star.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/Assets/star.png -------------------------------------------------------------------------------- /Build.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/Build.ps1 -------------------------------------------------------------------------------- /BuildDoc.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/BuildDoc.ps1 -------------------------------------------------------------------------------- /BuildTools/XmlDoc2CmdletDoc/Jolt.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/BuildTools/XmlDoc2CmdletDoc/Jolt.dll -------------------------------------------------------------------------------- /BuildTools/XmlDoc2CmdletDoc/System.Management.Automation.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/BuildTools/XmlDoc2CmdletDoc/System.Management.Automation.dll -------------------------------------------------------------------------------- /BuildTools/XmlDoc2CmdletDoc/XmlDoc2CmdletDoc.Core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/BuildTools/XmlDoc2CmdletDoc/XmlDoc2CmdletDoc.Core.dll -------------------------------------------------------------------------------- /BuildTools/XmlDoc2CmdletDoc/XmlDoc2CmdletDoc.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/BuildTools/XmlDoc2CmdletDoc/XmlDoc2CmdletDoc.exe -------------------------------------------------------------------------------- /BuildTools/nuget.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/BuildTools/nuget.exe -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /CSharp/TfsCmdlets.Legacy/Cmdlets/ConfigServer/ConnectConfigurationServer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/CSharp/TfsCmdlets.Legacy/Cmdlets/ConfigServer/ConnectConfigurationServer.cs -------------------------------------------------------------------------------- /CSharp/TfsCmdlets.Legacy/Cmdlets/ConfigServer/DisconnectConfigurationServer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/CSharp/TfsCmdlets.Legacy/Cmdlets/ConfigServer/DisconnectConfigurationServer.cs -------------------------------------------------------------------------------- /CSharp/TfsCmdlets.Legacy/Cmdlets/ConfigServer/GetConfigurationServer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/CSharp/TfsCmdlets.Legacy/Cmdlets/ConfigServer/GetConfigurationServer.cs -------------------------------------------------------------------------------- /CSharp/TfsCmdlets.Legacy/Cmdlets/ConfigServer/GetRegisteredConfigurationServer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/CSharp/TfsCmdlets.Legacy/Cmdlets/ConfigServer/GetRegisteredConfigurationServer.cs -------------------------------------------------------------------------------- /CSharp/TfsCmdlets.Legacy/Cmdlets/ConfigServer/RegisteredServer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/CSharp/TfsCmdlets.Legacy/Cmdlets/ConfigServer/RegisteredServer.json -------------------------------------------------------------------------------- /CSharp/TfsCmdlets.Legacy/Cmdlets/ConfigServer/index.md: -------------------------------------------------------------------------------- 1 | --- 2 | layout: module 3 | title: Configuration Servers 4 | --- 5 | -------------------------------------------------------------------------------- /CSharp/TfsCmdlets.Legacy/Cmdlets/GlobalList/ExportGlobalList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/CSharp/TfsCmdlets.Legacy/Cmdlets/GlobalList/ExportGlobalList.cs -------------------------------------------------------------------------------- /CSharp/TfsCmdlets.Legacy/Cmdlets/GlobalList/GetGlobalList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/CSharp/TfsCmdlets.Legacy/Cmdlets/GlobalList/GetGlobalList.cs -------------------------------------------------------------------------------- /CSharp/TfsCmdlets.Legacy/Cmdlets/GlobalList/ImportGlobalList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/CSharp/TfsCmdlets.Legacy/Cmdlets/GlobalList/ImportGlobalList.cs -------------------------------------------------------------------------------- /CSharp/TfsCmdlets.Legacy/Cmdlets/GlobalList/NewGlobalList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/CSharp/TfsCmdlets.Legacy/Cmdlets/GlobalList/NewGlobalList.cs -------------------------------------------------------------------------------- /CSharp/TfsCmdlets.Legacy/Cmdlets/GlobalList/RemoveGlobalList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/CSharp/TfsCmdlets.Legacy/Cmdlets/GlobalList/RemoveGlobalList.cs -------------------------------------------------------------------------------- /CSharp/TfsCmdlets.Legacy/Cmdlets/GlobalList/RenameGlobalList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/CSharp/TfsCmdlets.Legacy/Cmdlets/GlobalList/RenameGlobalList.cs -------------------------------------------------------------------------------- /CSharp/TfsCmdlets.Legacy/Cmdlets/GlobalList/SetGlobalList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/CSharp/TfsCmdlets.Legacy/Cmdlets/GlobalList/SetGlobalList.cs -------------------------------------------------------------------------------- /CSharp/TfsCmdlets.Legacy/Cmdlets/GlobalList/index.md: -------------------------------------------------------------------------------- 1 | --- 2 | layout: module 3 | title: Global Lists 4 | --- 5 | 6 | -------------------------------------------------------------------------------- /CSharp/TfsCmdlets.Legacy/Cmdlets/TeamProjectCollection/DismountTeamProjectCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/CSharp/TfsCmdlets.Legacy/Cmdlets/TeamProjectCollection/DismountTeamProjectCollection.cs -------------------------------------------------------------------------------- /CSharp/TfsCmdlets.Legacy/Cmdlets/TeamProjectCollection/MountTeamProjectCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/CSharp/TfsCmdlets.Legacy/Cmdlets/TeamProjectCollection/MountTeamProjectCollection.cs -------------------------------------------------------------------------------- /CSharp/TfsCmdlets.Legacy/Cmdlets/TeamProjectCollection/StartTeamProjectCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/CSharp/TfsCmdlets.Legacy/Cmdlets/TeamProjectCollection/StartTeamProjectCollection.cs -------------------------------------------------------------------------------- /CSharp/TfsCmdlets.Legacy/Cmdlets/TeamProjectCollection/StopTeamProjectCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/CSharp/TfsCmdlets.Legacy/Cmdlets/TeamProjectCollection/StopTeamProjectCollection.cs -------------------------------------------------------------------------------- /CSharp/TfsCmdlets.Legacy/Cmdlets/TeamProjectCollection/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/CSharp/TfsCmdlets.Legacy/Cmdlets/TeamProjectCollection/index.md -------------------------------------------------------------------------------- /CSharp/TfsCmdlets.Legacy/Cmdlets/XamlBuild/StartXamlBuild.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/CSharp/TfsCmdlets.Legacy/Cmdlets/XamlBuild/StartXamlBuild.cs -------------------------------------------------------------------------------- /CSharp/TfsCmdlets.Legacy/Cmdlets/XamlBuild/index.md: -------------------------------------------------------------------------------- 1 | --- 2 | layout: module 3 | title: XAML Builds 4 | --- 5 | 6 | -------------------------------------------------------------------------------- /CSharp/TfsCmdlets.Legacy/Controllers/ConfigServer/ConnectConfigurationServerController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/CSharp/TfsCmdlets.Legacy/Controllers/ConfigServer/ConnectConfigurationServerController.cs -------------------------------------------------------------------------------- /CSharp/TfsCmdlets.Legacy/Controllers/ConfigServer/DisconnectConfigurationServerController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/CSharp/TfsCmdlets.Legacy/Controllers/ConfigServer/DisconnectConfigurationServerController.cs -------------------------------------------------------------------------------- /CSharp/TfsCmdlets.Legacy/Controllers/ConfigServer/GetConfigurationServerController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/CSharp/TfsCmdlets.Legacy/Controllers/ConfigServer/GetConfigurationServerController.cs -------------------------------------------------------------------------------- /CSharp/TfsCmdlets.Legacy/Controllers/ConfigServer/GetRegisteredConfigurationServerController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/CSharp/TfsCmdlets.Legacy/Controllers/ConfigServer/GetRegisteredConfigurationServerController.cs -------------------------------------------------------------------------------- /CSharp/TfsCmdlets.Legacy/Controllers/GlobalList/ExportGlobalListController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/CSharp/TfsCmdlets.Legacy/Controllers/GlobalList/ExportGlobalListController.cs -------------------------------------------------------------------------------- /CSharp/TfsCmdlets.Legacy/Controllers/GlobalList/GetGlobalListController-desktop.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/CSharp/TfsCmdlets.Legacy/Controllers/GlobalList/GetGlobalListController-desktop.cs -------------------------------------------------------------------------------- /CSharp/TfsCmdlets.Legacy/Controllers/GlobalList/GetGlobalListController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/CSharp/TfsCmdlets.Legacy/Controllers/GlobalList/GetGlobalListController.cs -------------------------------------------------------------------------------- /CSharp/TfsCmdlets.Legacy/Controllers/GlobalList/ImportGlobalListController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/CSharp/TfsCmdlets.Legacy/Controllers/GlobalList/ImportGlobalListController.cs -------------------------------------------------------------------------------- /CSharp/TfsCmdlets.Legacy/Controllers/GlobalList/NewGlobalListController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/CSharp/TfsCmdlets.Legacy/Controllers/GlobalList/NewGlobalListController.cs -------------------------------------------------------------------------------- /CSharp/TfsCmdlets.Legacy/Controllers/GlobalList/RemoveGlobalListController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/CSharp/TfsCmdlets.Legacy/Controllers/GlobalList/RemoveGlobalListController.cs -------------------------------------------------------------------------------- /CSharp/TfsCmdlets.Legacy/Controllers/GlobalList/RenameGlobalListController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/CSharp/TfsCmdlets.Legacy/Controllers/GlobalList/RenameGlobalListController.cs -------------------------------------------------------------------------------- /CSharp/TfsCmdlets.Legacy/Controllers/GlobalList/SetGlobalListController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/CSharp/TfsCmdlets.Legacy/Controllers/GlobalList/SetGlobalListController.cs -------------------------------------------------------------------------------- /CSharp/TfsCmdlets.Legacy/Controllers/XamlBuild/StartXamlBuildController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/CSharp/TfsCmdlets.Legacy/Controllers/XamlBuild/StartXamlBuildController.cs -------------------------------------------------------------------------------- /CSharp/TfsCmdlets.Legacy/Controllers/XamlBuild/index.md: -------------------------------------------------------------------------------- 1 | --- 2 | layout: module 3 | title: XAML Builds 4 | --- 5 | 6 | -------------------------------------------------------------------------------- /CSharp/TfsCmdlets.Legacy/GlobalUsings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/CSharp/TfsCmdlets.Legacy/GlobalUsings.cs -------------------------------------------------------------------------------- /CSharp/TfsCmdlets.Legacy/TfsCmdlets.Legacy.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/CSharp/TfsCmdlets.Legacy/TfsCmdlets.Legacy.csproj -------------------------------------------------------------------------------- /CSharp/TfsCmdlets.SourceGeneratores.UnitTests/CSharpSourceGeneratorVerifier.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/CSharp/TfsCmdlets.SourceGeneratores.UnitTests/CSharpSourceGeneratorVerifier.cs -------------------------------------------------------------------------------- /CSharp/TfsCmdlets.SourceGeneratores.UnitTests/Controllers/Resolve_Default_Value_Namespace.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/CSharp/TfsCmdlets.SourceGeneratores.UnitTests/Controllers/Resolve_Default_Value_Namespace.cs -------------------------------------------------------------------------------- /CSharp/TfsCmdlets.SourceGeneratores.UnitTests/TfsCmdlets.SourceGenerators.UnitTests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/CSharp/TfsCmdlets.SourceGeneratores.UnitTests/TfsCmdlets.SourceGenerators.UnitTests.csproj -------------------------------------------------------------------------------- /CSharp/TfsCmdlets.SourceGenerators/Analyzers/ClassMustBePartial.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/CSharp/TfsCmdlets.SourceGenerators/Analyzers/ClassMustBePartial.cs -------------------------------------------------------------------------------- /CSharp/TfsCmdlets.SourceGenerators/Analyzers/ParameterMustBeProperty.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/CSharp/TfsCmdlets.SourceGenerators/Analyzers/ParameterMustBeProperty.cs -------------------------------------------------------------------------------- /CSharp/TfsCmdlets.SourceGenerators/Analyzers/ParameterMustHaveComments.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/CSharp/TfsCmdlets.SourceGenerators/Analyzers/ParameterMustHaveComments.cs -------------------------------------------------------------------------------- /CSharp/TfsCmdlets.SourceGenerators/BaseFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/CSharp/TfsCmdlets.SourceGenerators/BaseFilter.cs -------------------------------------------------------------------------------- /CSharp/TfsCmdlets.SourceGenerators/BaseGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/CSharp/TfsCmdlets.SourceGenerators/BaseGenerator.cs -------------------------------------------------------------------------------- /CSharp/TfsCmdlets.SourceGenerators/BaseTypeProcessor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/CSharp/TfsCmdlets.SourceGenerators/BaseTypeProcessor.cs -------------------------------------------------------------------------------- /CSharp/TfsCmdlets.SourceGenerators/CmdletScope.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/CSharp/TfsCmdlets.SourceGenerators/CmdletScope.cs -------------------------------------------------------------------------------- /CSharp/TfsCmdlets.SourceGenerators/DiagnosticDescriptors.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/CSharp/TfsCmdlets.SourceGenerators/DiagnosticDescriptors.cs -------------------------------------------------------------------------------- /CSharp/TfsCmdlets.SourceGenerators/Extensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/CSharp/TfsCmdlets.SourceGenerators/Extensions.cs -------------------------------------------------------------------------------- /CSharp/TfsCmdlets.SourceGenerators/GeneratedMethod.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/CSharp/TfsCmdlets.SourceGenerators/GeneratedMethod.cs -------------------------------------------------------------------------------- /CSharp/TfsCmdlets.SourceGenerators/GeneratedProperty.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/CSharp/TfsCmdlets.SourceGenerators/GeneratedProperty.cs -------------------------------------------------------------------------------- /CSharp/TfsCmdlets.SourceGenerators/GeneratorState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/CSharp/TfsCmdlets.SourceGenerators/GeneratorState.cs -------------------------------------------------------------------------------- /CSharp/TfsCmdlets.SourceGenerators/Generators/Cmdlets/CmdletInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/CSharp/TfsCmdlets.SourceGenerators/Generators/Cmdlets/CmdletInfo.cs -------------------------------------------------------------------------------- /CSharp/TfsCmdlets.SourceGenerators/Generators/Cmdlets/Filter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/CSharp/TfsCmdlets.SourceGenerators/Generators/Cmdlets/Filter.cs -------------------------------------------------------------------------------- /CSharp/TfsCmdlets.SourceGenerators/Generators/Cmdlets/Generator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/CSharp/TfsCmdlets.SourceGenerators/Generators/Cmdlets/Generator.cs -------------------------------------------------------------------------------- /CSharp/TfsCmdlets.SourceGenerators/Generators/Cmdlets/TypeProcessor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/CSharp/TfsCmdlets.SourceGenerators/Generators/Cmdlets/TypeProcessor.cs -------------------------------------------------------------------------------- /CSharp/TfsCmdlets.SourceGenerators/Generators/Controllers/Analyzers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/CSharp/TfsCmdlets.SourceGenerators/Generators/Controllers/Analyzers.cs -------------------------------------------------------------------------------- /CSharp/TfsCmdlets.SourceGenerators/Generators/Controllers/ControllerInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/CSharp/TfsCmdlets.SourceGenerators/Generators/Controllers/ControllerInfo.cs -------------------------------------------------------------------------------- /CSharp/TfsCmdlets.SourceGenerators/Generators/Controllers/Filter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/CSharp/TfsCmdlets.SourceGenerators/Generators/Controllers/Filter.cs -------------------------------------------------------------------------------- /CSharp/TfsCmdlets.SourceGenerators/Generators/Controllers/Generator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/CSharp/TfsCmdlets.SourceGenerators/Generators/Controllers/Generator.cs -------------------------------------------------------------------------------- /CSharp/TfsCmdlets.SourceGenerators/Generators/Controllers/TypeProcessor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/CSharp/TfsCmdlets.SourceGenerators/Generators/Controllers/TypeProcessor.cs -------------------------------------------------------------------------------- /CSharp/TfsCmdlets.SourceGenerators/Generators/HttpClients/Filter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/CSharp/TfsCmdlets.SourceGenerators/Generators/HttpClients/Filter.cs -------------------------------------------------------------------------------- /CSharp/TfsCmdlets.SourceGenerators/Generators/HttpClients/Generator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/CSharp/TfsCmdlets.SourceGenerators/Generators/HttpClients/Generator.cs -------------------------------------------------------------------------------- /CSharp/TfsCmdlets.SourceGenerators/Generators/HttpClients/HttpClientInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/CSharp/TfsCmdlets.SourceGenerators/Generators/HttpClients/HttpClientInfo.cs -------------------------------------------------------------------------------- /CSharp/TfsCmdlets.SourceGenerators/Generators/HttpClients/TypeProcessor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/CSharp/TfsCmdlets.SourceGenerators/Generators/HttpClients/TypeProcessor.cs -------------------------------------------------------------------------------- /CSharp/TfsCmdlets.SourceGenerators/Generators/Models/Filter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/CSharp/TfsCmdlets.SourceGenerators/Generators/Models/Filter.cs -------------------------------------------------------------------------------- /CSharp/TfsCmdlets.SourceGenerators/Generators/Models/Generator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/CSharp/TfsCmdlets.SourceGenerators/Generators/Models/Generator.cs -------------------------------------------------------------------------------- /CSharp/TfsCmdlets.SourceGenerators/Generators/Models/TypeProcessor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/CSharp/TfsCmdlets.SourceGenerators/Generators/Models/TypeProcessor.cs -------------------------------------------------------------------------------- /CSharp/TfsCmdlets.SourceGenerators/IFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/CSharp/TfsCmdlets.SourceGenerators/IFilter.cs -------------------------------------------------------------------------------- /CSharp/TfsCmdlets.SourceGenerators/IGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/CSharp/TfsCmdlets.SourceGenerators/IGenerator.cs -------------------------------------------------------------------------------- /CSharp/TfsCmdlets.SourceGenerators/ITypeProcessor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/CSharp/TfsCmdlets.SourceGenerators/ITypeProcessor.cs -------------------------------------------------------------------------------- /CSharp/TfsCmdlets.SourceGenerators/Logger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/CSharp/TfsCmdlets.SourceGenerators/Logger.cs -------------------------------------------------------------------------------- /CSharp/TfsCmdlets.SourceGenerators/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/CSharp/TfsCmdlets.SourceGenerators/Properties/launchSettings.json -------------------------------------------------------------------------------- /CSharp/TfsCmdlets.SourceGenerators/TfsCmdlets.SourceGenerators.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/CSharp/TfsCmdlets.SourceGenerators/TfsCmdlets.SourceGenerators.csproj -------------------------------------------------------------------------------- /CSharp/TfsCmdlets.Tests.UnitTests/Cmdlets/CmdletBase_Tests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/CSharp/TfsCmdlets.Tests.UnitTests/Cmdlets/CmdletBase_Tests.cs -------------------------------------------------------------------------------- /CSharp/TfsCmdlets.Tests.UnitTests/Controllers/Admin/GetVersion_Tests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/CSharp/TfsCmdlets.Tests.UnitTests/Controllers/Admin/GetVersion_Tests.cs -------------------------------------------------------------------------------- /CSharp/TfsCmdlets.Tests.UnitTests/Controllers/CommandBase_Tests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/CSharp/TfsCmdlets.Tests.UnitTests/Controllers/CommandBase_Tests.cs -------------------------------------------------------------------------------- /CSharp/TfsCmdlets.Tests.UnitTests/Controllers/CommandsFixture.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/CSharp/TfsCmdlets.Tests.UnitTests/Controllers/CommandsFixture.cs -------------------------------------------------------------------------------- /CSharp/TfsCmdlets.Tests.UnitTests/Controllers/ControllerFixtures.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/CSharp/TfsCmdlets.Tests.UnitTests/Controllers/ControllerFixtures.cs -------------------------------------------------------------------------------- /CSharp/TfsCmdlets.Tests.UnitTests/Controllers/NewIteration_Tests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/CSharp/TfsCmdlets.Tests.UnitTests/Controllers/NewIteration_Tests.cs -------------------------------------------------------------------------------- /CSharp/TfsCmdlets.Tests.UnitTests/Correctness_Tests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/CSharp/TfsCmdlets.Tests.UnitTests/Correctness_Tests.cs -------------------------------------------------------------------------------- /CSharp/TfsCmdlets.Tests.UnitTests/Fixtures/PowerShellFixture.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/CSharp/TfsCmdlets.Tests.UnitTests/Fixtures/PowerShellFixture.cs -------------------------------------------------------------------------------- /CSharp/TfsCmdlets.Tests.UnitTests/Fixtures/SourceGeneratorFixture.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/CSharp/TfsCmdlets.Tests.UnitTests/Fixtures/SourceGeneratorFixture.cs -------------------------------------------------------------------------------- /CSharp/TfsCmdlets.Tests.UnitTests/Services/DateService_Tests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/CSharp/TfsCmdlets.Tests.UnitTests/Services/DateService_Tests.cs -------------------------------------------------------------------------------- /CSharp/TfsCmdlets.Tests.UnitTests/Services/ServiceLocator_Tests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/CSharp/TfsCmdlets.Tests.UnitTests/Services/ServiceLocator_Tests.cs -------------------------------------------------------------------------------- /CSharp/TfsCmdlets.Tests.UnitTests/Services/_Fixture.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/CSharp/TfsCmdlets.Tests.UnitTests/Services/_Fixture.cs -------------------------------------------------------------------------------- /CSharp/TfsCmdlets.Tests.UnitTests/SourceGenerators/Property_Tests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/CSharp/TfsCmdlets.Tests.UnitTests/SourceGenerators/Property_Tests.cs -------------------------------------------------------------------------------- /CSharp/TfsCmdlets.Tests.UnitTests/TfsCmdlets.Tests.UnitTests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/CSharp/TfsCmdlets.Tests.UnitTests/TfsCmdlets.Tests.UnitTests.csproj -------------------------------------------------------------------------------- /CSharp/TfsCmdlets.Tests.UnitTests/Util/EnvironmentUtil_Tests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/CSharp/TfsCmdlets.Tests.UnitTests/Util/EnvironmentUtil_Tests.cs -------------------------------------------------------------------------------- /CSharp/TfsCmdlets.Tests.UnitTests/Util/ErrorUtil_Tests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/CSharp/TfsCmdlets.Tests.UnitTests/Util/ErrorUtil_Tests.cs -------------------------------------------------------------------------------- /CSharp/TfsCmdlets.Tests.UnitTests/Util/LazyProperty_Tests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/CSharp/TfsCmdlets.Tests.UnitTests/Util/LazyProperty_Tests.cs -------------------------------------------------------------------------------- /CSharp/TfsCmdlets.Tests.UnitTests/Util/Mru_Tests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/CSharp/TfsCmdlets.Tests.UnitTests/Util/Mru_Tests.cs -------------------------------------------------------------------------------- /CSharp/TfsCmdlets.Tests.UnitTests/Util/NormalizePath_Tests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/CSharp/TfsCmdlets.Tests.UnitTests/Util/NormalizePath_Tests.cs -------------------------------------------------------------------------------- /CSharp/TfsCmdlets.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/CSharp/TfsCmdlets.sln -------------------------------------------------------------------------------- /CSharp/TfsCmdlets.sln.DotSettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/CSharp/TfsCmdlets.sln.DotSettings -------------------------------------------------------------------------------- /CSharp/TfsCmdlets/AssemblyResolver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/CSharp/TfsCmdlets/AssemblyResolver.cs -------------------------------------------------------------------------------- /CSharp/TfsCmdlets/Attributes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/CSharp/TfsCmdlets/Attributes.cs -------------------------------------------------------------------------------- /CSharp/TfsCmdlets/Cmdlets/Admin/GetConfigurationServerConnectionString.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/CSharp/TfsCmdlets/Cmdlets/Admin/GetConfigurationServerConnectionString.cs -------------------------------------------------------------------------------- /CSharp/TfsCmdlets/Cmdlets/Admin/GetInstallationPath.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/CSharp/TfsCmdlets/Cmdlets/Admin/GetInstallationPath.cs -------------------------------------------------------------------------------- /CSharp/TfsCmdlets/Cmdlets/Admin/GetVersion.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/CSharp/TfsCmdlets/Cmdlets/Admin/GetVersion.cs -------------------------------------------------------------------------------- /CSharp/TfsCmdlets/Cmdlets/Admin/Registry/GetRegistryValue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/CSharp/TfsCmdlets/Cmdlets/Admin/Registry/GetRegistryValue.cs -------------------------------------------------------------------------------- /CSharp/TfsCmdlets/Cmdlets/Admin/Registry/SetRegistryValue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/CSharp/TfsCmdlets/Cmdlets/Admin/Registry/SetRegistryValue.cs -------------------------------------------------------------------------------- /CSharp/TfsCmdlets/Cmdlets/Admin/Registry/index.md: -------------------------------------------------------------------------------- 1 | --- 2 | layout: module 3 | title: Registry 4 | --- 5 | -------------------------------------------------------------------------------- /CSharp/TfsCmdlets/Cmdlets/Admin/index.md: -------------------------------------------------------------------------------- 1 | --- 2 | layout: module 3 | title: Administration 4 | --- 5 | -------------------------------------------------------------------------------- /CSharp/TfsCmdlets/Cmdlets/Artifact/GetArtifact.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/CSharp/TfsCmdlets/Cmdlets/Artifact/GetArtifact.cs -------------------------------------------------------------------------------- /CSharp/TfsCmdlets/Cmdlets/Artifact/GetArtifactFeed.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/CSharp/TfsCmdlets/Cmdlets/Artifact/GetArtifactFeed.cs -------------------------------------------------------------------------------- /CSharp/TfsCmdlets/Cmdlets/Artifact/GetArtifactFeedView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/CSharp/TfsCmdlets/Cmdlets/Artifact/GetArtifactFeedView.cs -------------------------------------------------------------------------------- /CSharp/TfsCmdlets/Cmdlets/Artifact/GetArtifactVersion.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/CSharp/TfsCmdlets/Cmdlets/Artifact/GetArtifactVersion.cs -------------------------------------------------------------------------------- /CSharp/TfsCmdlets/Cmdlets/Artifact/index.md: -------------------------------------------------------------------------------- 1 | --- 2 | layout: module 3 | title: Artifacts 4 | --- 5 | -------------------------------------------------------------------------------- /CSharp/TfsCmdlets/Cmdlets/CmdletBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/CSharp/TfsCmdlets/Cmdlets/CmdletBase.cs -------------------------------------------------------------------------------- /CSharp/TfsCmdlets/Cmdlets/ControllerBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/CSharp/TfsCmdlets/Cmdlets/ControllerBase.cs -------------------------------------------------------------------------------- /CSharp/TfsCmdlets/Cmdlets/Credential/NewCredential.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/CSharp/TfsCmdlets/Cmdlets/Credential/NewCredential.cs -------------------------------------------------------------------------------- /CSharp/TfsCmdlets/Cmdlets/Credential/index.md: -------------------------------------------------------------------------------- 1 | --- 2 | layout: module 3 | title: Credential 4 | --- -------------------------------------------------------------------------------- /CSharp/TfsCmdlets/Cmdlets/ExtensionManagement/DisableExtension.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/CSharp/TfsCmdlets/Cmdlets/ExtensionManagement/DisableExtension.cs -------------------------------------------------------------------------------- /CSharp/TfsCmdlets/Cmdlets/ExtensionManagement/EnableExtension.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/CSharp/TfsCmdlets/Cmdlets/ExtensionManagement/EnableExtension.cs -------------------------------------------------------------------------------- /CSharp/TfsCmdlets/Cmdlets/ExtensionManagement/GetExtension.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/CSharp/TfsCmdlets/Cmdlets/ExtensionManagement/GetExtension.cs -------------------------------------------------------------------------------- /CSharp/TfsCmdlets/Cmdlets/ExtensionManagement/InstallExtension.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/CSharp/TfsCmdlets/Cmdlets/ExtensionManagement/InstallExtension.cs -------------------------------------------------------------------------------- /CSharp/TfsCmdlets/Cmdlets/ExtensionManagement/UninstallExtension.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/CSharp/TfsCmdlets/Cmdlets/ExtensionManagement/UninstallExtension.cs -------------------------------------------------------------------------------- /CSharp/TfsCmdlets/Cmdlets/ExtensionManagement/index.md: -------------------------------------------------------------------------------- 1 | --- 2 | layout: module 3 | title: Extension Management 4 | --- 5 | 6 | -------------------------------------------------------------------------------- /CSharp/TfsCmdlets/Cmdlets/Git/Branch/GetGitBranch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/CSharp/TfsCmdlets/Cmdlets/Git/Branch/GetGitBranch.cs -------------------------------------------------------------------------------- /CSharp/TfsCmdlets/Cmdlets/Git/Branch/RemoveGitBranch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/CSharp/TfsCmdlets/Cmdlets/Git/Branch/RemoveGitBranch.cs -------------------------------------------------------------------------------- /CSharp/TfsCmdlets/Cmdlets/Git/Branch/index.md: -------------------------------------------------------------------------------- 1 | --- 2 | layout: module 3 | title: Git Branches 4 | --- 5 | 6 | -------------------------------------------------------------------------------- /CSharp/TfsCmdlets/Cmdlets/Git/Commit/GetGitCommit.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/CSharp/TfsCmdlets/Cmdlets/Git/Commit/GetGitCommit.cs -------------------------------------------------------------------------------- /CSharp/TfsCmdlets/Cmdlets/Git/Commit/index.md: -------------------------------------------------------------------------------- 1 | --- 2 | layout: module 3 | title: Git Commits (History) 4 | --- 5 | 6 | -------------------------------------------------------------------------------- /CSharp/TfsCmdlets/Cmdlets/Git/DisableGitRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/CSharp/TfsCmdlets/Cmdlets/Git/DisableGitRepository.cs -------------------------------------------------------------------------------- /CSharp/TfsCmdlets/Cmdlets/Git/EnableGitRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/CSharp/TfsCmdlets/Cmdlets/Git/EnableGitRepository.cs -------------------------------------------------------------------------------- /CSharp/TfsCmdlets/Cmdlets/Git/GetGitRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/CSharp/TfsCmdlets/Cmdlets/Git/GetGitRepository.cs -------------------------------------------------------------------------------- /CSharp/TfsCmdlets/Cmdlets/Git/Item/GetGitItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/CSharp/TfsCmdlets/Cmdlets/Git/Item/GetGitItem.cs -------------------------------------------------------------------------------- /CSharp/TfsCmdlets/Cmdlets/Git/Item/index.md: -------------------------------------------------------------------------------- 1 | --- 2 | layout: module 3 | title: Git Items 4 | --- 5 | 6 | -------------------------------------------------------------------------------- /CSharp/TfsCmdlets/Cmdlets/Git/NewGitRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/CSharp/TfsCmdlets/Cmdlets/Git/NewGitRepository.cs -------------------------------------------------------------------------------- /CSharp/TfsCmdlets/Cmdlets/Git/Policy/GetGitBranchPolicy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/CSharp/TfsCmdlets/Cmdlets/Git/Policy/GetGitBranchPolicy.cs -------------------------------------------------------------------------------- /CSharp/TfsCmdlets/Cmdlets/Git/Policy/GetGitPolicyType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/CSharp/TfsCmdlets/Cmdlets/Git/Policy/GetGitPolicyType.cs -------------------------------------------------------------------------------- /CSharp/TfsCmdlets/Cmdlets/Git/Policy/index.md: -------------------------------------------------------------------------------- 1 | --- 2 | layout: module 3 | title: Git Policies 4 | --- 5 | 6 | -------------------------------------------------------------------------------- /CSharp/TfsCmdlets/Cmdlets/Git/RemoveGitRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/CSharp/TfsCmdlets/Cmdlets/Git/RemoveGitRepository.cs -------------------------------------------------------------------------------- /CSharp/TfsCmdlets/Cmdlets/Git/RenameGitRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/CSharp/TfsCmdlets/Cmdlets/Git/RenameGitRepository.cs -------------------------------------------------------------------------------- /CSharp/TfsCmdlets/Cmdlets/Git/index.md: -------------------------------------------------------------------------------- 1 | --- 2 | layout: module 3 | title: Git 4 | --- 5 | 6 | -------------------------------------------------------------------------------- /CSharp/TfsCmdlets/Cmdlets/Identity/GetIdentity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/CSharp/TfsCmdlets/Cmdlets/Identity/GetIdentity.cs -------------------------------------------------------------------------------- /CSharp/TfsCmdlets/Cmdlets/Identity/Group/AddGroupMember.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/CSharp/TfsCmdlets/Cmdlets/Identity/Group/AddGroupMember.cs -------------------------------------------------------------------------------- /CSharp/TfsCmdlets/Cmdlets/Identity/Group/GetGroup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/CSharp/TfsCmdlets/Cmdlets/Identity/Group/GetGroup.cs -------------------------------------------------------------------------------- /CSharp/TfsCmdlets/Cmdlets/Identity/Group/GetGroupMember.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/CSharp/TfsCmdlets/Cmdlets/Identity/Group/GetGroupMember.cs -------------------------------------------------------------------------------- /CSharp/TfsCmdlets/Cmdlets/Identity/Group/NewGroup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/CSharp/TfsCmdlets/Cmdlets/Identity/Group/NewGroup.cs -------------------------------------------------------------------------------- /CSharp/TfsCmdlets/Cmdlets/Identity/Group/RemoveGroup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/CSharp/TfsCmdlets/Cmdlets/Identity/Group/RemoveGroup.cs -------------------------------------------------------------------------------- /CSharp/TfsCmdlets/Cmdlets/Identity/Group/RemoveGroupMember.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/CSharp/TfsCmdlets/Cmdlets/Identity/Group/RemoveGroupMember.cs -------------------------------------------------------------------------------- /CSharp/TfsCmdlets/Cmdlets/Identity/Group/index.md: -------------------------------------------------------------------------------- 1 | --- 2 | layout: module 3 | title: Groups 4 | --- 5 | 6 | -------------------------------------------------------------------------------- /CSharp/TfsCmdlets/Cmdlets/Identity/User/GetUser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/CSharp/TfsCmdlets/Cmdlets/Identity/User/GetUser.cs -------------------------------------------------------------------------------- /CSharp/TfsCmdlets/Cmdlets/Identity/User/NewUser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/CSharp/TfsCmdlets/Cmdlets/Identity/User/NewUser.cs -------------------------------------------------------------------------------- /CSharp/TfsCmdlets/Cmdlets/Identity/User/RemoveUser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/CSharp/TfsCmdlets/Cmdlets/Identity/User/RemoveUser.cs -------------------------------------------------------------------------------- /CSharp/TfsCmdlets/Cmdlets/Identity/User/index.md: -------------------------------------------------------------------------------- 1 | --- 2 | layout: module 3 | title: Users 4 | --- 5 | 6 | -------------------------------------------------------------------------------- /CSharp/TfsCmdlets/Cmdlets/Identity/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/CSharp/TfsCmdlets/Cmdlets/Identity/index.md -------------------------------------------------------------------------------- /CSharp/TfsCmdlets/Cmdlets/Organization/ConnectOrganization.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/CSharp/TfsCmdlets/Cmdlets/Organization/ConnectOrganization.cs -------------------------------------------------------------------------------- /CSharp/TfsCmdlets/Cmdlets/Organization/DisconnectOrganization.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/CSharp/TfsCmdlets/Cmdlets/Organization/DisconnectOrganization.cs -------------------------------------------------------------------------------- /CSharp/TfsCmdlets/Cmdlets/Organization/GetOrganization.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/CSharp/TfsCmdlets/Cmdlets/Organization/GetOrganization.cs -------------------------------------------------------------------------------- /CSharp/TfsCmdlets/Cmdlets/Organization/index.md: -------------------------------------------------------------------------------- 1 | --- 2 | layout: module 3 | title: Organizations 4 | --- 5 | -------------------------------------------------------------------------------- /CSharp/TfsCmdlets/Cmdlets/Pipeline/Build/Definition/DisableBuildDefinition.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/CSharp/TfsCmdlets/Cmdlets/Pipeline/Build/Definition/DisableBuildDefinition.cs -------------------------------------------------------------------------------- /CSharp/TfsCmdlets/Cmdlets/Pipeline/Build/Definition/EnableBuildDefinition.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/CSharp/TfsCmdlets/Cmdlets/Pipeline/Build/Definition/EnableBuildDefinition.cs -------------------------------------------------------------------------------- /CSharp/TfsCmdlets/Cmdlets/Pipeline/Build/Definition/GetBuildDefinition.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/CSharp/TfsCmdlets/Cmdlets/Pipeline/Build/Definition/GetBuildDefinition.cs -------------------------------------------------------------------------------- /CSharp/TfsCmdlets/Cmdlets/Pipeline/Build/Definition/ResumeBuildDefinition.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/CSharp/TfsCmdlets/Cmdlets/Pipeline/Build/Definition/ResumeBuildDefinition.cs -------------------------------------------------------------------------------- /CSharp/TfsCmdlets/Cmdlets/Pipeline/Build/Definition/SuspendBuildDefinition.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/CSharp/TfsCmdlets/Cmdlets/Pipeline/Build/Definition/SuspendBuildDefinition.cs -------------------------------------------------------------------------------- /CSharp/TfsCmdlets/Cmdlets/Pipeline/Build/Definition/index.md: -------------------------------------------------------------------------------- 1 | --- 2 | layout: module 3 | title: Pipeline Definitions 4 | --- 5 | 6 | -------------------------------------------------------------------------------- /CSharp/TfsCmdlets/Cmdlets/Pipeline/Build/Folder/GetBuildDefinitionFolder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/CSharp/TfsCmdlets/Cmdlets/Pipeline/Build/Folder/GetBuildDefinitionFolder.cs -------------------------------------------------------------------------------- /CSharp/TfsCmdlets/Cmdlets/Pipeline/Build/Folder/NewBuildDefinitionFolder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/CSharp/TfsCmdlets/Cmdlets/Pipeline/Build/Folder/NewBuildDefinitionFolder.cs -------------------------------------------------------------------------------- /CSharp/TfsCmdlets/Cmdlets/Pipeline/Build/Folder/RemoveBuildDefinitionFolder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/CSharp/TfsCmdlets/Cmdlets/Pipeline/Build/Folder/RemoveBuildDefinitionFolder.cs -------------------------------------------------------------------------------- /CSharp/TfsCmdlets/Cmdlets/Pipeline/Build/Folder/index.md: -------------------------------------------------------------------------------- 1 | --- 2 | layout: module 3 | title: Pipeline Definition Folders 4 | --- 5 | 6 | -------------------------------------------------------------------------------- /CSharp/TfsCmdlets/Cmdlets/Pipeline/Build/StartBuild.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/CSharp/TfsCmdlets/Cmdlets/Pipeline/Build/StartBuild.cs -------------------------------------------------------------------------------- /CSharp/TfsCmdlets/Cmdlets/Pipeline/Build/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/CSharp/TfsCmdlets/Cmdlets/Pipeline/Build/index.md -------------------------------------------------------------------------------- /CSharp/TfsCmdlets/Cmdlets/Pipeline/ReleaseManagement/GetReleaseDefinition.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/CSharp/TfsCmdlets/Cmdlets/Pipeline/ReleaseManagement/GetReleaseDefinition.cs -------------------------------------------------------------------------------- /CSharp/TfsCmdlets/Cmdlets/Pipeline/ReleaseManagement/GetReleaseDefinitionFolder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/CSharp/TfsCmdlets/Cmdlets/Pipeline/ReleaseManagement/GetReleaseDefinitionFolder.cs -------------------------------------------------------------------------------- /CSharp/TfsCmdlets/Cmdlets/Pipeline/ReleaseManagement/NewReleaseDefinitionFolder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/CSharp/TfsCmdlets/Cmdlets/Pipeline/ReleaseManagement/NewReleaseDefinitionFolder.cs -------------------------------------------------------------------------------- /CSharp/TfsCmdlets/Cmdlets/Pipeline/ReleaseManagement/RemoveReleaseDefinitionFolder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/CSharp/TfsCmdlets/Cmdlets/Pipeline/ReleaseManagement/RemoveReleaseDefinitionFolder.cs -------------------------------------------------------------------------------- /CSharp/TfsCmdlets/Cmdlets/Pipeline/ReleaseManagement/index.md: -------------------------------------------------------------------------------- 1 | --- 2 | layout: module 3 | title: Release Management 4 | --- 5 | 6 | -------------------------------------------------------------------------------- /CSharp/TfsCmdlets/Cmdlets/Pipeline/index.md: -------------------------------------------------------------------------------- 1 | --- 2 | layout: module 3 | title: Pipelines 4 | --- 5 | 6 | -------------------------------------------------------------------------------- /CSharp/TfsCmdlets/Cmdlets/ProcessTemplate/ExportProcessTemplate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/CSharp/TfsCmdlets/Cmdlets/ProcessTemplate/ExportProcessTemplate.cs -------------------------------------------------------------------------------- /CSharp/TfsCmdlets/Cmdlets/ProcessTemplate/Field/GetProcessFieldDefinition.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/CSharp/TfsCmdlets/Cmdlets/ProcessTemplate/Field/GetProcessFieldDefinition.cs -------------------------------------------------------------------------------- /CSharp/TfsCmdlets/Cmdlets/ProcessTemplate/Field/NewProcessFieldDefinition.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/CSharp/TfsCmdlets/Cmdlets/ProcessTemplate/Field/NewProcessFieldDefinition.cs -------------------------------------------------------------------------------- /CSharp/TfsCmdlets/Cmdlets/ProcessTemplate/Field/RemoveProcessFieldDefinition.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/CSharp/TfsCmdlets/Cmdlets/ProcessTemplate/Field/RemoveProcessFieldDefinition.cs -------------------------------------------------------------------------------- /CSharp/TfsCmdlets/Cmdlets/ProcessTemplate/GetProcessTemplate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/CSharp/TfsCmdlets/Cmdlets/ProcessTemplate/GetProcessTemplate.cs -------------------------------------------------------------------------------- /CSharp/TfsCmdlets/Cmdlets/ProcessTemplate/ImportProcessTemplate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/CSharp/TfsCmdlets/Cmdlets/ProcessTemplate/ImportProcessTemplate.cs -------------------------------------------------------------------------------- /CSharp/TfsCmdlets/Cmdlets/ProcessTemplate/NewProcessTemplate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/CSharp/TfsCmdlets/Cmdlets/ProcessTemplate/NewProcessTemplate.cs -------------------------------------------------------------------------------- /CSharp/TfsCmdlets/Cmdlets/ProcessTemplate/index.md: -------------------------------------------------------------------------------- 1 | --- 2 | layout: module 3 | title: Process Templates 4 | --- 5 | 6 | -------------------------------------------------------------------------------- /CSharp/TfsCmdlets/Cmdlets/RestApi/GetRestClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/CSharp/TfsCmdlets/Cmdlets/RestApi/GetRestClient.cs -------------------------------------------------------------------------------- /CSharp/TfsCmdlets/Cmdlets/RestApi/InvokeRestApi.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/CSharp/TfsCmdlets/Cmdlets/RestApi/InvokeRestApi.cs -------------------------------------------------------------------------------- /CSharp/TfsCmdlets/Cmdlets/RestApi/index.md: -------------------------------------------------------------------------------- 1 | --- 2 | layout: module 3 | title: REST API 4 | --- 5 | 6 | -------------------------------------------------------------------------------- /CSharp/TfsCmdlets/Cmdlets/ServiceHook/GetServiceHookConsumer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/CSharp/TfsCmdlets/Cmdlets/ServiceHook/GetServiceHookConsumer.cs -------------------------------------------------------------------------------- /CSharp/TfsCmdlets/Cmdlets/ServiceHook/GetServiceHookNotificationHistory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/CSharp/TfsCmdlets/Cmdlets/ServiceHook/GetServiceHookNotificationHistory.cs -------------------------------------------------------------------------------- /CSharp/TfsCmdlets/Cmdlets/ServiceHook/GetServiceHookPublisher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/CSharp/TfsCmdlets/Cmdlets/ServiceHook/GetServiceHookPublisher.cs -------------------------------------------------------------------------------- /CSharp/TfsCmdlets/Cmdlets/ServiceHook/GetServiceHookSubscription.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/CSharp/TfsCmdlets/Cmdlets/ServiceHook/GetServiceHookSubscription.cs -------------------------------------------------------------------------------- /CSharp/TfsCmdlets/Cmdlets/ServiceHook/index.md: -------------------------------------------------------------------------------- 1 | --- 2 | layout: module 3 | title: Service Hooks 4 | --- 5 | 6 | -------------------------------------------------------------------------------- /CSharp/TfsCmdlets/Cmdlets/Shell/EnterShell.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/CSharp/TfsCmdlets/Cmdlets/Shell/EnterShell.cs -------------------------------------------------------------------------------- /CSharp/TfsCmdlets/Cmdlets/Shell/ExitShell.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/CSharp/TfsCmdlets/Cmdlets/Shell/ExitShell.cs -------------------------------------------------------------------------------- /CSharp/TfsCmdlets/Cmdlets/Shell/index.md: -------------------------------------------------------------------------------- 1 | --- 2 | layout: module 3 | title: Shell 4 | --- 5 | 6 | -------------------------------------------------------------------------------- /CSharp/TfsCmdlets/Cmdlets/Team/Backlog/GetTeamBacklogLevel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/CSharp/TfsCmdlets/Cmdlets/Team/Backlog/GetTeamBacklogLevel.cs -------------------------------------------------------------------------------- /CSharp/TfsCmdlets/Cmdlets/Team/Backlog/index.md: -------------------------------------------------------------------------------- 1 | --- 2 | layout: module 3 | title: Backlogs 4 | --- 5 | 6 | -------------------------------------------------------------------------------- /CSharp/TfsCmdlets/Cmdlets/Team/Board/GetTeamBoard.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/CSharp/TfsCmdlets/Cmdlets/Team/Board/GetTeamBoard.cs -------------------------------------------------------------------------------- /CSharp/TfsCmdlets/Cmdlets/Team/Board/GetTeamBoardCardRule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/CSharp/TfsCmdlets/Cmdlets/Team/Board/GetTeamBoardCardRule.cs -------------------------------------------------------------------------------- /CSharp/TfsCmdlets/Cmdlets/Team/Board/SetTeamBoardCardRule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/CSharp/TfsCmdlets/Cmdlets/Team/Board/SetTeamBoardCardRule.cs -------------------------------------------------------------------------------- /CSharp/TfsCmdlets/Cmdlets/Team/Board/index.md: -------------------------------------------------------------------------------- 1 | --- 2 | layout: module 3 | title: Boards 4 | --- 5 | 6 | -------------------------------------------------------------------------------- /CSharp/TfsCmdlets/Cmdlets/Team/ConnectTeam.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/CSharp/TfsCmdlets/Cmdlets/Team/ConnectTeam.cs -------------------------------------------------------------------------------- /CSharp/TfsCmdlets/Cmdlets/Team/DisconnectTeam.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/CSharp/TfsCmdlets/Cmdlets/Team/DisconnectTeam.cs -------------------------------------------------------------------------------- /CSharp/TfsCmdlets/Cmdlets/Team/GetTeam.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/CSharp/TfsCmdlets/Cmdlets/Team/GetTeam.cs -------------------------------------------------------------------------------- /CSharp/TfsCmdlets/Cmdlets/Team/NewTeam.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/CSharp/TfsCmdlets/Cmdlets/Team/NewTeam.cs -------------------------------------------------------------------------------- /CSharp/TfsCmdlets/Cmdlets/Team/RemoveTeam.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/CSharp/TfsCmdlets/Cmdlets/Team/RemoveTeam.cs -------------------------------------------------------------------------------- /CSharp/TfsCmdlets/Cmdlets/Team/RenameTeam.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/CSharp/TfsCmdlets/Cmdlets/Team/RenameTeam.cs -------------------------------------------------------------------------------- /CSharp/TfsCmdlets/Cmdlets/Team/SetTeam.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/CSharp/TfsCmdlets/Cmdlets/Team/SetTeam.cs -------------------------------------------------------------------------------- /CSharp/TfsCmdlets/Cmdlets/Team/TeamAdmin/AddTeamAdmin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/CSharp/TfsCmdlets/Cmdlets/Team/TeamAdmin/AddTeamAdmin.cs -------------------------------------------------------------------------------- /CSharp/TfsCmdlets/Cmdlets/Team/TeamAdmin/GetTeamAdmin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/CSharp/TfsCmdlets/Cmdlets/Team/TeamAdmin/GetTeamAdmin.cs -------------------------------------------------------------------------------- /CSharp/TfsCmdlets/Cmdlets/Team/TeamAdmin/RemoveTeamAdmin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/CSharp/TfsCmdlets/Cmdlets/Team/TeamAdmin/RemoveTeamAdmin.cs -------------------------------------------------------------------------------- /CSharp/TfsCmdlets/Cmdlets/Team/TeamAdmin/index.md: -------------------------------------------------------------------------------- 1 | --- 2 | layout: module 3 | title: Team Administrators 4 | --- 5 | 6 | -------------------------------------------------------------------------------- /CSharp/TfsCmdlets/Cmdlets/Team/TeamMember/AddTeamMember.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/CSharp/TfsCmdlets/Cmdlets/Team/TeamMember/AddTeamMember.cs -------------------------------------------------------------------------------- /CSharp/TfsCmdlets/Cmdlets/Team/TeamMember/GetTeamMember.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/CSharp/TfsCmdlets/Cmdlets/Team/TeamMember/GetTeamMember.cs -------------------------------------------------------------------------------- /CSharp/TfsCmdlets/Cmdlets/Team/TeamMember/RemoveTeamMember.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/CSharp/TfsCmdlets/Cmdlets/Team/TeamMember/RemoveTeamMember.cs -------------------------------------------------------------------------------- /CSharp/TfsCmdlets/Cmdlets/Team/TeamMember/index.md: -------------------------------------------------------------------------------- 1 | --- 2 | layout: module 3 | title: Team Members 4 | --- 5 | 6 | -------------------------------------------------------------------------------- /CSharp/TfsCmdlets/Cmdlets/Team/index.md: -------------------------------------------------------------------------------- 1 | --- 2 | layout: module 3 | title: Teams, Backlogs and Boards 4 | --- 5 | 6 | -------------------------------------------------------------------------------- /CSharp/TfsCmdlets/Cmdlets/TeamProject/Avatar/ExportTeamProjectAvatar.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/CSharp/TfsCmdlets/Cmdlets/TeamProject/Avatar/ExportTeamProjectAvatar.cs -------------------------------------------------------------------------------- /CSharp/TfsCmdlets/Cmdlets/TeamProject/Avatar/ImportTeamProjectAvatar.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/CSharp/TfsCmdlets/Cmdlets/TeamProject/Avatar/ImportTeamProjectAvatar.cs -------------------------------------------------------------------------------- /CSharp/TfsCmdlets/Cmdlets/TeamProject/Avatar/RemoveTeamProjectAvatar.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/CSharp/TfsCmdlets/Cmdlets/TeamProject/Avatar/RemoveTeamProjectAvatar.cs -------------------------------------------------------------------------------- /CSharp/TfsCmdlets/Cmdlets/TeamProject/ConnectTeamProject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/CSharp/TfsCmdlets/Cmdlets/TeamProject/ConnectTeamProject.cs -------------------------------------------------------------------------------- /CSharp/TfsCmdlets/Cmdlets/TeamProject/DisconnectTeamProject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/CSharp/TfsCmdlets/Cmdlets/TeamProject/DisconnectTeamProject.cs -------------------------------------------------------------------------------- /CSharp/TfsCmdlets/Cmdlets/TeamProject/GetTeamProject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/CSharp/TfsCmdlets/Cmdlets/TeamProject/GetTeamProject.cs -------------------------------------------------------------------------------- /CSharp/TfsCmdlets/Cmdlets/TeamProject/Member/GetTeamProjectMember.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/CSharp/TfsCmdlets/Cmdlets/TeamProject/Member/GetTeamProjectMember.cs -------------------------------------------------------------------------------- /CSharp/TfsCmdlets/Cmdlets/TeamProject/Member/index.md: -------------------------------------------------------------------------------- 1 | --- 2 | layout: module 3 | title: Team Project Members 4 | --- 5 | 6 | -------------------------------------------------------------------------------- /CSharp/TfsCmdlets/Cmdlets/TeamProject/NewTeamProject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/CSharp/TfsCmdlets/Cmdlets/TeamProject/NewTeamProject.cs -------------------------------------------------------------------------------- /CSharp/TfsCmdlets/Cmdlets/TeamProject/RemoveTeamProject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/CSharp/TfsCmdlets/Cmdlets/TeamProject/RemoveTeamProject.cs -------------------------------------------------------------------------------- /CSharp/TfsCmdlets/Cmdlets/TeamProject/RenameTeamProject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/CSharp/TfsCmdlets/Cmdlets/TeamProject/RenameTeamProject.cs -------------------------------------------------------------------------------- /CSharp/TfsCmdlets/Cmdlets/TeamProject/SetTeamProject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/CSharp/TfsCmdlets/Cmdlets/TeamProject/SetTeamProject.cs -------------------------------------------------------------------------------- /CSharp/TfsCmdlets/Cmdlets/TeamProject/UndoTeamProjectRemoval.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/CSharp/TfsCmdlets/Cmdlets/TeamProject/UndoTeamProjectRemoval.cs -------------------------------------------------------------------------------- /CSharp/TfsCmdlets/Cmdlets/TeamProject/index.md: -------------------------------------------------------------------------------- 1 | --- 2 | layout: module 3 | title: Team Projects 4 | --- 5 | 6 | -------------------------------------------------------------------------------- /CSharp/TfsCmdlets/Cmdlets/TeamProjectCollection/ConnectTeamProjectCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/CSharp/TfsCmdlets/Cmdlets/TeamProjectCollection/ConnectTeamProjectCollection.cs -------------------------------------------------------------------------------- /CSharp/TfsCmdlets/Cmdlets/TeamProjectCollection/DisconnectTeamProjectCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/CSharp/TfsCmdlets/Cmdlets/TeamProjectCollection/DisconnectTeamProjectCollection.cs -------------------------------------------------------------------------------- /CSharp/TfsCmdlets/Cmdlets/TeamProjectCollection/GetTeamProjectCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/CSharp/TfsCmdlets/Cmdlets/TeamProjectCollection/GetTeamProjectCollection.cs -------------------------------------------------------------------------------- /CSharp/TfsCmdlets/Cmdlets/TeamProjectCollection/NewTeamProjectCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/CSharp/TfsCmdlets/Cmdlets/TeamProjectCollection/NewTeamProjectCollection.cs -------------------------------------------------------------------------------- /CSharp/TfsCmdlets/Cmdlets/TeamProjectCollection/RemoveTeamProjectCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/CSharp/TfsCmdlets/Cmdlets/TeamProjectCollection/RemoveTeamProjectCollection.cs -------------------------------------------------------------------------------- /CSharp/TfsCmdlets/Cmdlets/TeamProjectCollection/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/CSharp/TfsCmdlets/Cmdlets/TeamProjectCollection/index.md -------------------------------------------------------------------------------- /CSharp/TfsCmdlets/Cmdlets/TestManagement/CopyTestPlan.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/CSharp/TfsCmdlets/Cmdlets/TestManagement/CopyTestPlan.cs -------------------------------------------------------------------------------- /CSharp/TfsCmdlets/Cmdlets/TestManagement/GetTestPlan.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/CSharp/TfsCmdlets/Cmdlets/TestManagement/GetTestPlan.cs -------------------------------------------------------------------------------- /CSharp/TfsCmdlets/Cmdlets/TestManagement/NewTestPlan.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/CSharp/TfsCmdlets/Cmdlets/TestManagement/NewTestPlan.cs -------------------------------------------------------------------------------- /CSharp/TfsCmdlets/Cmdlets/TestManagement/RemoveTestPlan.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/CSharp/TfsCmdlets/Cmdlets/TestManagement/RemoveTestPlan.cs -------------------------------------------------------------------------------- /CSharp/TfsCmdlets/Cmdlets/TestManagement/RenameTestPlan.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/CSharp/TfsCmdlets/Cmdlets/TestManagement/RenameTestPlan.cs -------------------------------------------------------------------------------- /CSharp/TfsCmdlets/Cmdlets/TestManagement/index.md: -------------------------------------------------------------------------------- 1 | --- 2 | layout: module 3 | title: Test Management 4 | --- 5 | 6 | -------------------------------------------------------------------------------- /CSharp/TfsCmdlets/Cmdlets/TfsCmdletAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/CSharp/TfsCmdlets/Cmdlets/TfsCmdletAttribute.cs -------------------------------------------------------------------------------- /CSharp/TfsCmdlets/Cmdlets/Wiki/GetWiki.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/CSharp/TfsCmdlets/Cmdlets/Wiki/GetWiki.cs -------------------------------------------------------------------------------- /CSharp/TfsCmdlets/Cmdlets/Wiki/NewWiki.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/CSharp/TfsCmdlets/Cmdlets/Wiki/NewWiki.cs -------------------------------------------------------------------------------- /CSharp/TfsCmdlets/Cmdlets/Wiki/RemoveWiki.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/CSharp/TfsCmdlets/Cmdlets/Wiki/RemoveWiki.cs -------------------------------------------------------------------------------- /CSharp/TfsCmdlets/Cmdlets/Wiki/index.md: -------------------------------------------------------------------------------- 1 | --- 2 | layout: module 3 | title: Wiki 4 | --- 5 | 6 | -------------------------------------------------------------------------------- /CSharp/TfsCmdlets/Cmdlets/WorkItem/AreasIterations/CopyArea.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/CSharp/TfsCmdlets/Cmdlets/WorkItem/AreasIterations/CopyArea.cs -------------------------------------------------------------------------------- /CSharp/TfsCmdlets/Cmdlets/WorkItem/AreasIterations/CopyClassificationNodeController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/CSharp/TfsCmdlets/Cmdlets/WorkItem/AreasIterations/CopyClassificationNodeController.cs -------------------------------------------------------------------------------- /CSharp/TfsCmdlets/Cmdlets/WorkItem/AreasIterations/CopyIteration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/CSharp/TfsCmdlets/Cmdlets/WorkItem/AreasIterations/CopyIteration.cs -------------------------------------------------------------------------------- /CSharp/TfsCmdlets/Cmdlets/WorkItem/AreasIterations/GetArea.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/CSharp/TfsCmdlets/Cmdlets/WorkItem/AreasIterations/GetArea.cs -------------------------------------------------------------------------------- /CSharp/TfsCmdlets/Cmdlets/WorkItem/AreasIterations/GetClassificationNodeController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/CSharp/TfsCmdlets/Cmdlets/WorkItem/AreasIterations/GetClassificationNodeController.cs -------------------------------------------------------------------------------- /CSharp/TfsCmdlets/Cmdlets/WorkItem/AreasIterations/GetIteration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/CSharp/TfsCmdlets/Cmdlets/WorkItem/AreasIterations/GetIteration.cs -------------------------------------------------------------------------------- /CSharp/TfsCmdlets/Cmdlets/WorkItem/AreasIterations/MoveArea.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/CSharp/TfsCmdlets/Cmdlets/WorkItem/AreasIterations/MoveArea.cs -------------------------------------------------------------------------------- /CSharp/TfsCmdlets/Cmdlets/WorkItem/AreasIterations/MoveClassificationNodeController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/CSharp/TfsCmdlets/Cmdlets/WorkItem/AreasIterations/MoveClassificationNodeController.cs -------------------------------------------------------------------------------- /CSharp/TfsCmdlets/Cmdlets/WorkItem/AreasIterations/MoveIteration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/CSharp/TfsCmdlets/Cmdlets/WorkItem/AreasIterations/MoveIteration.cs -------------------------------------------------------------------------------- /CSharp/TfsCmdlets/Cmdlets/WorkItem/AreasIterations/NewArea.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/CSharp/TfsCmdlets/Cmdlets/WorkItem/AreasIterations/NewArea.cs -------------------------------------------------------------------------------- /CSharp/TfsCmdlets/Cmdlets/WorkItem/AreasIterations/NewClassificationNodeController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/CSharp/TfsCmdlets/Cmdlets/WorkItem/AreasIterations/NewClassificationNodeController.cs -------------------------------------------------------------------------------- /CSharp/TfsCmdlets/Cmdlets/WorkItem/AreasIterations/NewIteration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/CSharp/TfsCmdlets/Cmdlets/WorkItem/AreasIterations/NewIteration.cs -------------------------------------------------------------------------------- /CSharp/TfsCmdlets/Cmdlets/WorkItem/AreasIterations/RemoveArea.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/CSharp/TfsCmdlets/Cmdlets/WorkItem/AreasIterations/RemoveArea.cs -------------------------------------------------------------------------------- /CSharp/TfsCmdlets/Cmdlets/WorkItem/AreasIterations/RemoveClassificationNodeController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/CSharp/TfsCmdlets/Cmdlets/WorkItem/AreasIterations/RemoveClassificationNodeController.cs -------------------------------------------------------------------------------- /CSharp/TfsCmdlets/Cmdlets/WorkItem/AreasIterations/RemoveIteration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/CSharp/TfsCmdlets/Cmdlets/WorkItem/AreasIterations/RemoveIteration.cs -------------------------------------------------------------------------------- /CSharp/TfsCmdlets/Cmdlets/WorkItem/AreasIterations/RenameArea.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/CSharp/TfsCmdlets/Cmdlets/WorkItem/AreasIterations/RenameArea.cs -------------------------------------------------------------------------------- /CSharp/TfsCmdlets/Cmdlets/WorkItem/AreasIterations/RenameClassificationNodeController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/CSharp/TfsCmdlets/Cmdlets/WorkItem/AreasIterations/RenameClassificationNodeController.cs -------------------------------------------------------------------------------- /CSharp/TfsCmdlets/Cmdlets/WorkItem/AreasIterations/RenameIteration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/CSharp/TfsCmdlets/Cmdlets/WorkItem/AreasIterations/RenameIteration.cs -------------------------------------------------------------------------------- /CSharp/TfsCmdlets/Cmdlets/WorkItem/AreasIterations/SetIteration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/CSharp/TfsCmdlets/Cmdlets/WorkItem/AreasIterations/SetIteration.cs -------------------------------------------------------------------------------- /CSharp/TfsCmdlets/Cmdlets/WorkItem/AreasIterations/TestArea.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/CSharp/TfsCmdlets/Cmdlets/WorkItem/AreasIterations/TestArea.cs -------------------------------------------------------------------------------- /CSharp/TfsCmdlets/Cmdlets/WorkItem/AreasIterations/TestClassificationNodeController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/CSharp/TfsCmdlets/Cmdlets/WorkItem/AreasIterations/TestClassificationNodeController.cs -------------------------------------------------------------------------------- /CSharp/TfsCmdlets/Cmdlets/WorkItem/AreasIterations/TestIteration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/CSharp/TfsCmdlets/Cmdlets/WorkItem/AreasIterations/TestIteration.cs -------------------------------------------------------------------------------- /CSharp/TfsCmdlets/Cmdlets/WorkItem/AreasIterations/index.md: -------------------------------------------------------------------------------- 1 | --- 2 | layout: module 3 | title: Areas and Iterations 4 | --- 5 | 6 | -------------------------------------------------------------------------------- /CSharp/TfsCmdlets/Cmdlets/WorkItem/CopyWorkItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/CSharp/TfsCmdlets/Cmdlets/WorkItem/CopyWorkItem.cs -------------------------------------------------------------------------------- /CSharp/TfsCmdlets/Cmdlets/WorkItem/GetWorkItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/CSharp/TfsCmdlets/Cmdlets/WorkItem/GetWorkItem.cs -------------------------------------------------------------------------------- /CSharp/TfsCmdlets/Cmdlets/WorkItem/History/GetWorkItemHistory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/CSharp/TfsCmdlets/Cmdlets/WorkItem/History/GetWorkItemHistory.cs -------------------------------------------------------------------------------- /CSharp/TfsCmdlets/Cmdlets/WorkItem/History/index.md: -------------------------------------------------------------------------------- 1 | --- 2 | layout: module 3 | title: History 4 | --- 5 | 6 | -------------------------------------------------------------------------------- /CSharp/TfsCmdlets/Cmdlets/WorkItem/Linking/AddWorkItemLink.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/CSharp/TfsCmdlets/Cmdlets/WorkItem/Linking/AddWorkItemLink.cs -------------------------------------------------------------------------------- /CSharp/TfsCmdlets/Cmdlets/WorkItem/Linking/ExportWorkItemAttachment.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/CSharp/TfsCmdlets/Cmdlets/WorkItem/Linking/ExportWorkItemAttachment.cs -------------------------------------------------------------------------------- /CSharp/TfsCmdlets/Cmdlets/WorkItem/Linking/GetWorkItemLink.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/CSharp/TfsCmdlets/Cmdlets/WorkItem/Linking/GetWorkItemLink.cs -------------------------------------------------------------------------------- /CSharp/TfsCmdlets/Cmdlets/WorkItem/Linking/GetWorkItemLinkEndType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/CSharp/TfsCmdlets/Cmdlets/WorkItem/Linking/GetWorkItemLinkEndType.cs -------------------------------------------------------------------------------- /CSharp/TfsCmdlets/Cmdlets/WorkItem/Linking/index.md: -------------------------------------------------------------------------------- 1 | --- 2 | layout: module 3 | title: Links 4 | --- 5 | 6 | -------------------------------------------------------------------------------- /CSharp/TfsCmdlets/Cmdlets/WorkItem/MoveWorkItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/CSharp/TfsCmdlets/Cmdlets/WorkItem/MoveWorkItem.cs -------------------------------------------------------------------------------- /CSharp/TfsCmdlets/Cmdlets/WorkItem/NewWorkItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/CSharp/TfsCmdlets/Cmdlets/WorkItem/NewWorkItem.cs -------------------------------------------------------------------------------- /CSharp/TfsCmdlets/Cmdlets/WorkItem/Query/ExportWorkItemQuery.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/CSharp/TfsCmdlets/Cmdlets/WorkItem/Query/ExportWorkItemQuery.cs -------------------------------------------------------------------------------- /CSharp/TfsCmdlets/Cmdlets/WorkItem/Query/GetWorkItemQuery.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/CSharp/TfsCmdlets/Cmdlets/WorkItem/Query/GetWorkItemQuery.cs -------------------------------------------------------------------------------- /CSharp/TfsCmdlets/Cmdlets/WorkItem/Query/GetWorkItemQueryFolder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/CSharp/TfsCmdlets/Cmdlets/WorkItem/Query/GetWorkItemQueryFolder.cs -------------------------------------------------------------------------------- /CSharp/TfsCmdlets/Cmdlets/WorkItem/Query/GetWorkItemQueryItemController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/CSharp/TfsCmdlets/Cmdlets/WorkItem/Query/GetWorkItemQueryItemController.cs -------------------------------------------------------------------------------- /CSharp/TfsCmdlets/Cmdlets/WorkItem/Query/NewWorkItemQuery.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/CSharp/TfsCmdlets/Cmdlets/WorkItem/Query/NewWorkItemQuery.cs -------------------------------------------------------------------------------- /CSharp/TfsCmdlets/Cmdlets/WorkItem/Query/NewWorkItemQueryFolder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/CSharp/TfsCmdlets/Cmdlets/WorkItem/Query/NewWorkItemQueryFolder.cs -------------------------------------------------------------------------------- /CSharp/TfsCmdlets/Cmdlets/WorkItem/Query/NewWorkItemQueryItemController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/CSharp/TfsCmdlets/Cmdlets/WorkItem/Query/NewWorkItemQueryItemController.cs -------------------------------------------------------------------------------- /CSharp/TfsCmdlets/Cmdlets/WorkItem/Query/UndoWorkItemQueryFolderRemoval.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/CSharp/TfsCmdlets/Cmdlets/WorkItem/Query/UndoWorkItemQueryFolderRemoval.cs -------------------------------------------------------------------------------- /CSharp/TfsCmdlets/Cmdlets/WorkItem/Query/UndoWorkItemQueryRemoval.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/CSharp/TfsCmdlets/Cmdlets/WorkItem/Query/UndoWorkItemQueryRemoval.cs -------------------------------------------------------------------------------- /CSharp/TfsCmdlets/Cmdlets/WorkItem/Query/UndoWorkItemQueryRemovalController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/CSharp/TfsCmdlets/Cmdlets/WorkItem/Query/UndoWorkItemQueryRemovalController.cs -------------------------------------------------------------------------------- /CSharp/TfsCmdlets/Cmdlets/WorkItem/Query/index.md: -------------------------------------------------------------------------------- 1 | --- 2 | layout: module 3 | title: Queries 4 | --- 5 | 6 | -------------------------------------------------------------------------------- /CSharp/TfsCmdlets/Cmdlets/WorkItem/RemoveWorkItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/CSharp/TfsCmdlets/Cmdlets/WorkItem/RemoveWorkItem.cs -------------------------------------------------------------------------------- /CSharp/TfsCmdlets/Cmdlets/WorkItem/SearchWorkItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/CSharp/TfsCmdlets/Cmdlets/WorkItem/SearchWorkItem.cs -------------------------------------------------------------------------------- /CSharp/TfsCmdlets/Cmdlets/WorkItem/SetWorkItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/CSharp/TfsCmdlets/Cmdlets/WorkItem/SetWorkItem.cs -------------------------------------------------------------------------------- /CSharp/TfsCmdlets/Cmdlets/WorkItem/Tagging/DisableWorkItemTag.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/CSharp/TfsCmdlets/Cmdlets/WorkItem/Tagging/DisableWorkItemTag.cs -------------------------------------------------------------------------------- /CSharp/TfsCmdlets/Cmdlets/WorkItem/Tagging/EnableWorkItemTag.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/CSharp/TfsCmdlets/Cmdlets/WorkItem/Tagging/EnableWorkItemTag.cs -------------------------------------------------------------------------------- /CSharp/TfsCmdlets/Cmdlets/WorkItem/Tagging/GetWorkItemTag.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/CSharp/TfsCmdlets/Cmdlets/WorkItem/Tagging/GetWorkItemTag.cs -------------------------------------------------------------------------------- /CSharp/TfsCmdlets/Cmdlets/WorkItem/Tagging/NewWorkItemTag.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/CSharp/TfsCmdlets/Cmdlets/WorkItem/Tagging/NewWorkItemTag.cs -------------------------------------------------------------------------------- /CSharp/TfsCmdlets/Cmdlets/WorkItem/Tagging/RemoveWorkItemTag.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/CSharp/TfsCmdlets/Cmdlets/WorkItem/Tagging/RemoveWorkItemTag.cs -------------------------------------------------------------------------------- /CSharp/TfsCmdlets/Cmdlets/WorkItem/Tagging/RenameWorkItemTag.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/CSharp/TfsCmdlets/Cmdlets/WorkItem/Tagging/RenameWorkItemTag.cs -------------------------------------------------------------------------------- /CSharp/TfsCmdlets/Cmdlets/WorkItem/Tagging/ToggleWorkItemTagController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/CSharp/TfsCmdlets/Cmdlets/WorkItem/Tagging/ToggleWorkItemTagController.cs -------------------------------------------------------------------------------- /CSharp/TfsCmdlets/Cmdlets/WorkItem/Tagging/index.md: -------------------------------------------------------------------------------- 1 | --- 2 | layout: module 3 | title: Tags 4 | --- 5 | 6 | -------------------------------------------------------------------------------- /CSharp/TfsCmdlets/Cmdlets/WorkItem/UndoWorkItemRemoval.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/CSharp/TfsCmdlets/Cmdlets/WorkItem/UndoWorkItemRemoval.cs -------------------------------------------------------------------------------- /CSharp/TfsCmdlets/Cmdlets/WorkItem/WorkItemType/ExportWorkItemType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/CSharp/TfsCmdlets/Cmdlets/WorkItem/WorkItemType/ExportWorkItemType.cs -------------------------------------------------------------------------------- /CSharp/TfsCmdlets/Cmdlets/WorkItem/WorkItemType/GetWorkItemType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/CSharp/TfsCmdlets/Cmdlets/WorkItem/WorkItemType/GetWorkItemType.cs -------------------------------------------------------------------------------- /CSharp/TfsCmdlets/Cmdlets/WorkItem/WorkItemType/ImportWorkItemType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/CSharp/TfsCmdlets/Cmdlets/WorkItem/WorkItemType/ImportWorkItemType.cs -------------------------------------------------------------------------------- /CSharp/TfsCmdlets/Cmdlets/WorkItem/WorkItemType/index.md: -------------------------------------------------------------------------------- 1 | --- 2 | layout: module 3 | title: Work Item Types 4 | --- 5 | 6 | -------------------------------------------------------------------------------- /CSharp/TfsCmdlets/Cmdlets/WorkItem/index.md: -------------------------------------------------------------------------------- 1 | --- 2 | layout: module 3 | title: Work Item Tracking 4 | --- 5 | 6 | -------------------------------------------------------------------------------- /CSharp/TfsCmdlets/Cmdlets/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/CSharp/TfsCmdlets/Cmdlets/index.md -------------------------------------------------------------------------------- /CSharp/TfsCmdlets/CodeAnnotations.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/CSharp/TfsCmdlets/CodeAnnotations.cs -------------------------------------------------------------------------------- /CSharp/TfsCmdlets/Enums.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/CSharp/TfsCmdlets/Enums.cs -------------------------------------------------------------------------------- /CSharp/TfsCmdlets/Extensions/HashtableExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/CSharp/TfsCmdlets/Extensions/HashtableExtensions.cs -------------------------------------------------------------------------------- /CSharp/TfsCmdlets/Extensions/JsonExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/CSharp/TfsCmdlets/Extensions/JsonExtensions.cs -------------------------------------------------------------------------------- /CSharp/TfsCmdlets/Extensions/ListExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/CSharp/TfsCmdlets/Extensions/ListExtensions.cs -------------------------------------------------------------------------------- /CSharp/TfsCmdlets/Extensions/ObjectExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/CSharp/TfsCmdlets/Extensions/ObjectExtensions.cs -------------------------------------------------------------------------------- /CSharp/TfsCmdlets/Extensions/PSObjectExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/CSharp/TfsCmdlets/Extensions/PSObjectExtensions.cs -------------------------------------------------------------------------------- /CSharp/TfsCmdlets/Extensions/PipelineExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/CSharp/TfsCmdlets/Extensions/PipelineExtensions.cs -------------------------------------------------------------------------------- /CSharp/TfsCmdlets/Extensions/StringExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/CSharp/TfsCmdlets/Extensions/StringExtensions.cs -------------------------------------------------------------------------------- /CSharp/TfsCmdlets/Extensions/TaskExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/CSharp/TfsCmdlets/Extensions/TaskExtensions.cs -------------------------------------------------------------------------------- /CSharp/TfsCmdlets/Extensions/TeamProjectExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/CSharp/TfsCmdlets/Extensions/TeamProjectExtensions.cs -------------------------------------------------------------------------------- /CSharp/TfsCmdlets/Extensions/WorkItemExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/CSharp/TfsCmdlets/Extensions/WorkItemExtensions.cs -------------------------------------------------------------------------------- /CSharp/TfsCmdlets/Extensions/XmlExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/CSharp/TfsCmdlets/Extensions/XmlExtensions.cs -------------------------------------------------------------------------------- /CSharp/TfsCmdlets/GlobalUsings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/CSharp/TfsCmdlets/GlobalUsings.cs -------------------------------------------------------------------------------- /CSharp/TfsCmdlets/HttpClients/HttpClientAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/CSharp/TfsCmdlets/HttpClients/HttpClientAttribute.cs -------------------------------------------------------------------------------- /CSharp/TfsCmdlets/HttpClients/IAccountLicensingHttpClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/CSharp/TfsCmdlets/HttpClients/IAccountLicensingHttpClient.cs -------------------------------------------------------------------------------- /CSharp/TfsCmdlets/HttpClients/IBuildHttpClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/CSharp/TfsCmdlets/HttpClients/IBuildHttpClient.cs -------------------------------------------------------------------------------- /CSharp/TfsCmdlets/HttpClients/IExtensionManagementHttpClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/CSharp/TfsCmdlets/HttpClients/IExtensionManagementHttpClient.cs -------------------------------------------------------------------------------- /CSharp/TfsCmdlets/HttpClients/IFeedHttpClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/CSharp/TfsCmdlets/HttpClients/IFeedHttpClient.cs -------------------------------------------------------------------------------- /CSharp/TfsCmdlets/HttpClients/IGenericHttpClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/CSharp/TfsCmdlets/HttpClients/IGenericHttpClient.cs -------------------------------------------------------------------------------- /CSharp/TfsCmdlets/HttpClients/IGitExtendedHttpClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/CSharp/TfsCmdlets/HttpClients/IGitExtendedHttpClient.cs -------------------------------------------------------------------------------- /CSharp/TfsCmdlets/HttpClients/IGitHttpClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/CSharp/TfsCmdlets/HttpClients/IGitHttpClient.cs -------------------------------------------------------------------------------- /CSharp/TfsCmdlets/HttpClients/IGraphHttpClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/CSharp/TfsCmdlets/HttpClients/IGraphHttpClient.cs -------------------------------------------------------------------------------- /CSharp/TfsCmdlets/HttpClients/IIdentityHttpClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/CSharp/TfsCmdlets/HttpClients/IIdentityHttpClient.cs -------------------------------------------------------------------------------- /CSharp/TfsCmdlets/HttpClients/IOperationsHttpClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/CSharp/TfsCmdlets/HttpClients/IOperationsHttpClient.cs -------------------------------------------------------------------------------- /CSharp/TfsCmdlets/HttpClients/IPolicyHttpClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/CSharp/TfsCmdlets/HttpClients/IPolicyHttpClient.cs -------------------------------------------------------------------------------- /CSharp/TfsCmdlets/HttpClients/IProcessHttpClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/CSharp/TfsCmdlets/HttpClients/IProcessHttpClient.cs -------------------------------------------------------------------------------- /CSharp/TfsCmdlets/HttpClients/IProjectHttpClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/CSharp/TfsCmdlets/HttpClients/IProjectHttpClient.cs -------------------------------------------------------------------------------- /CSharp/TfsCmdlets/HttpClients/IReleaseHttpClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/CSharp/TfsCmdlets/HttpClients/IReleaseHttpClient.cs -------------------------------------------------------------------------------- /CSharp/TfsCmdlets/HttpClients/IReleaseHttpClient2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/CSharp/TfsCmdlets/HttpClients/IReleaseHttpClient2.cs -------------------------------------------------------------------------------- /CSharp/TfsCmdlets/HttpClients/ISearchHttpClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/CSharp/TfsCmdlets/HttpClients/ISearchHttpClient.cs -------------------------------------------------------------------------------- /CSharp/TfsCmdlets/HttpClients/IServiceHooksPublisherHttpClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/CSharp/TfsCmdlets/HttpClients/IServiceHooksPublisherHttpClient.cs -------------------------------------------------------------------------------- /CSharp/TfsCmdlets/HttpClients/ITaggingHttpClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/CSharp/TfsCmdlets/HttpClients/ITaggingHttpClient.cs -------------------------------------------------------------------------------- /CSharp/TfsCmdlets/HttpClients/ITeamAdminHttpClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/CSharp/TfsCmdlets/HttpClients/ITeamAdminHttpClient.cs -------------------------------------------------------------------------------- /CSharp/TfsCmdlets/HttpClients/ITeamHttpClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/CSharp/TfsCmdlets/HttpClients/ITeamHttpClient.cs -------------------------------------------------------------------------------- /CSharp/TfsCmdlets/HttpClients/ITestPlanHttpClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/CSharp/TfsCmdlets/HttpClients/ITestPlanHttpClient.cs -------------------------------------------------------------------------------- /CSharp/TfsCmdlets/HttpClients/IVssHttpClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/CSharp/TfsCmdlets/HttpClients/IVssHttpClient.cs -------------------------------------------------------------------------------- /CSharp/TfsCmdlets/HttpClients/IWikiHttpClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/CSharp/TfsCmdlets/HttpClients/IWikiHttpClient.cs -------------------------------------------------------------------------------- /CSharp/TfsCmdlets/HttpClients/IWorkHttpClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/CSharp/TfsCmdlets/HttpClients/IWorkHttpClient.cs -------------------------------------------------------------------------------- /CSharp/TfsCmdlets/HttpClients/IWorkItemTrackingHttpClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/CSharp/TfsCmdlets/HttpClients/IWorkItemTrackingHttpClient.cs -------------------------------------------------------------------------------- /CSharp/TfsCmdlets/HttpClients/IWorkItemTrackingProcessHttpClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/CSharp/TfsCmdlets/HttpClients/IWorkItemTrackingProcessHttpClient.cs -------------------------------------------------------------------------------- /CSharp/TfsCmdlets/HttpClients/Impl/GenericHttpClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/CSharp/TfsCmdlets/HttpClients/Impl/GenericHttpClient.cs -------------------------------------------------------------------------------- /CSharp/TfsCmdlets/HttpClients/Impl/GitExtendedHttpClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/CSharp/TfsCmdlets/HttpClients/Impl/GitExtendedHttpClient.cs -------------------------------------------------------------------------------- /CSharp/TfsCmdlets/HttpClients/Impl/TeamAdminHttpClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/CSharp/TfsCmdlets/HttpClients/Impl/TeamAdminHttpClient.cs -------------------------------------------------------------------------------- /CSharp/TfsCmdlets/Models/BacklogLevelConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/CSharp/TfsCmdlets/Models/BacklogLevelConfiguration.cs -------------------------------------------------------------------------------- /CSharp/TfsCmdlets/Models/Board.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/CSharp/TfsCmdlets/Models/Board.cs -------------------------------------------------------------------------------- /CSharp/TfsCmdlets/Models/CardRule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/CSharp/TfsCmdlets/Models/CardRule.cs -------------------------------------------------------------------------------- /CSharp/TfsCmdlets/Models/ClassificationNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/CSharp/TfsCmdlets/Models/ClassificationNode.cs -------------------------------------------------------------------------------- /CSharp/TfsCmdlets/Models/Connection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/CSharp/TfsCmdlets/Models/Connection.cs -------------------------------------------------------------------------------- /CSharp/TfsCmdlets/Models/ContributionNodeQuery.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/CSharp/TfsCmdlets/Models/ContributionNodeQuery.cs -------------------------------------------------------------------------------- /CSharp/TfsCmdlets/Models/GitItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/CSharp/TfsCmdlets/Models/GitItem.cs -------------------------------------------------------------------------------- /CSharp/TfsCmdlets/Models/GlobalList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/CSharp/TfsCmdlets/Models/GlobalList.cs -------------------------------------------------------------------------------- /CSharp/TfsCmdlets/Models/Identity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/CSharp/TfsCmdlets/Models/Identity.cs -------------------------------------------------------------------------------- /CSharp/TfsCmdlets/Models/IdentityRefWrapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/CSharp/TfsCmdlets/Models/IdentityRefWrapper.cs -------------------------------------------------------------------------------- /CSharp/TfsCmdlets/Models/ModelBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/CSharp/TfsCmdlets/Models/ModelBase.cs -------------------------------------------------------------------------------- /CSharp/TfsCmdlets/Models/Parameter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/CSharp/TfsCmdlets/Models/Parameter.cs -------------------------------------------------------------------------------- /CSharp/TfsCmdlets/Models/ServerVersion.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/CSharp/TfsCmdlets/Models/ServerVersion.cs -------------------------------------------------------------------------------- /CSharp/TfsCmdlets/Models/Team.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/CSharp/TfsCmdlets/Models/Team.cs -------------------------------------------------------------------------------- /CSharp/TfsCmdlets/Models/TeamAdmin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/CSharp/TfsCmdlets/Models/TeamAdmin.cs -------------------------------------------------------------------------------- /CSharp/TfsCmdlets/Models/TeamMember.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/CSharp/TfsCmdlets/Models/TeamMember.cs -------------------------------------------------------------------------------- /CSharp/TfsCmdlets/Models/TeamProjectMember.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/CSharp/TfsCmdlets/Models/TeamProjectMember.cs -------------------------------------------------------------------------------- /CSharp/TfsCmdlets/Models/TfsInstallationPath.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/CSharp/TfsCmdlets/Models/TfsInstallationPath.cs -------------------------------------------------------------------------------- /CSharp/TfsCmdlets/Models/WorkItem/Query/QueryItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/CSharp/TfsCmdlets/Models/WorkItem/Query/QueryItem.cs -------------------------------------------------------------------------------- /CSharp/TfsCmdlets/Models/WorkItemHistory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/CSharp/TfsCmdlets/Models/WorkItemHistory.cs -------------------------------------------------------------------------------- /CSharp/TfsCmdlets/ModuleInitializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/CSharp/TfsCmdlets/ModuleInitializer.cs -------------------------------------------------------------------------------- /CSharp/TfsCmdlets/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/CSharp/TfsCmdlets/Properties/launchSettings.json -------------------------------------------------------------------------------- /CSharp/TfsCmdlets/Services/IAsyncOperationAwaiter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/CSharp/TfsCmdlets/Services/IAsyncOperationAwaiter.cs -------------------------------------------------------------------------------- /CSharp/TfsCmdlets/Services/IController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/CSharp/TfsCmdlets/Services/IController.cs -------------------------------------------------------------------------------- /CSharp/TfsCmdlets/Services/ICurrentConnections.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/CSharp/TfsCmdlets/Services/ICurrentConnections.cs -------------------------------------------------------------------------------- /CSharp/TfsCmdlets/Services/IDataManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/CSharp/TfsCmdlets/Services/IDataManager.cs -------------------------------------------------------------------------------- /CSharp/TfsCmdlets/Services/IInteractiveAuthentication.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/CSharp/TfsCmdlets/Services/IInteractiveAuthentication.cs -------------------------------------------------------------------------------- /CSharp/TfsCmdlets/Services/IKnownWorkItemLinkTypes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/CSharp/TfsCmdlets/Services/IKnownWorkItemLinkTypes.cs -------------------------------------------------------------------------------- /CSharp/TfsCmdlets/Services/ILegacyWorkItemService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/CSharp/TfsCmdlets/Services/ILegacyWorkItemService.cs -------------------------------------------------------------------------------- /CSharp/TfsCmdlets/Services/ILogger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/CSharp/TfsCmdlets/Services/ILogger.cs -------------------------------------------------------------------------------- /CSharp/TfsCmdlets/Services/INodeUtil.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/CSharp/TfsCmdlets/Services/INodeUtil.cs -------------------------------------------------------------------------------- /CSharp/TfsCmdlets/Services/IPaginator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/CSharp/TfsCmdlets/Services/IPaginator.cs -------------------------------------------------------------------------------- /CSharp/TfsCmdlets/Services/IParameterManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/CSharp/TfsCmdlets/Services/IParameterManager.cs -------------------------------------------------------------------------------- /CSharp/TfsCmdlets/Services/IPowerShellService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/CSharp/TfsCmdlets/Services/IPowerShellService.cs -------------------------------------------------------------------------------- /CSharp/TfsCmdlets/Services/IProcessUtil.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/CSharp/TfsCmdlets/Services/IProcessUtil.cs -------------------------------------------------------------------------------- /CSharp/TfsCmdlets/Services/IRegistryService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/CSharp/TfsCmdlets/Services/IRegistryService.cs -------------------------------------------------------------------------------- /CSharp/TfsCmdlets/Services/IRestApiService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/CSharp/TfsCmdlets/Services/IRestApiService.cs -------------------------------------------------------------------------------- /CSharp/TfsCmdlets/Services/IRuntimeUtil.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/CSharp/TfsCmdlets/Services/IRuntimeUtil.cs -------------------------------------------------------------------------------- /CSharp/TfsCmdlets/Services/ITfsServiceProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/CSharp/TfsCmdlets/Services/ITfsServiceProvider.cs -------------------------------------------------------------------------------- /CSharp/TfsCmdlets/Services/ITfsVersionTable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/CSharp/TfsCmdlets/Services/ITfsVersionTable.cs -------------------------------------------------------------------------------- /CSharp/TfsCmdlets/Services/IWorkItemPatchBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/CSharp/TfsCmdlets/Services/IWorkItemPatchBuilder.cs -------------------------------------------------------------------------------- /CSharp/TfsCmdlets/Services/Impl/AsyncOperationAwaiterImpl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/CSharp/TfsCmdlets/Services/Impl/AsyncOperationAwaiterImpl.cs -------------------------------------------------------------------------------- /CSharp/TfsCmdlets/Services/Impl/CurrentConnectionsImpl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/CSharp/TfsCmdlets/Services/Impl/CurrentConnectionsImpl.cs -------------------------------------------------------------------------------- /CSharp/TfsCmdlets/Services/Impl/DataManagerImpl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/CSharp/TfsCmdlets/Services/Impl/DataManagerImpl.cs -------------------------------------------------------------------------------- /CSharp/TfsCmdlets/Services/Impl/InteractiveAuthenticationImpl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/CSharp/TfsCmdlets/Services/Impl/InteractiveAuthenticationImpl.cs -------------------------------------------------------------------------------- /CSharp/TfsCmdlets/Services/Impl/KnownWorkItemLinkTypesImpl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/CSharp/TfsCmdlets/Services/Impl/KnownWorkItemLinkTypesImpl.cs -------------------------------------------------------------------------------- /CSharp/TfsCmdlets/Services/Impl/LegacyWorkItemServiceImpl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/CSharp/TfsCmdlets/Services/Impl/LegacyWorkItemServiceImpl.cs -------------------------------------------------------------------------------- /CSharp/TfsCmdlets/Services/Impl/LoggerImpl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/CSharp/TfsCmdlets/Services/Impl/LoggerImpl.cs -------------------------------------------------------------------------------- /CSharp/TfsCmdlets/Services/Impl/NodeUtilImpl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/CSharp/TfsCmdlets/Services/Impl/NodeUtilImpl.cs -------------------------------------------------------------------------------- /CSharp/TfsCmdlets/Services/Impl/PaginatorImpl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/CSharp/TfsCmdlets/Services/Impl/PaginatorImpl.cs -------------------------------------------------------------------------------- /CSharp/TfsCmdlets/Services/Impl/ParameterManagerImpl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/CSharp/TfsCmdlets/Services/Impl/ParameterManagerImpl.cs -------------------------------------------------------------------------------- /CSharp/TfsCmdlets/Services/Impl/PowerShellServiceImpl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/CSharp/TfsCmdlets/Services/Impl/PowerShellServiceImpl.cs -------------------------------------------------------------------------------- /CSharp/TfsCmdlets/Services/Impl/ProcessUtil.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/CSharp/TfsCmdlets/Services/Impl/ProcessUtil.cs -------------------------------------------------------------------------------- /CSharp/TfsCmdlets/Services/Impl/RegistryServiceImpl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/CSharp/TfsCmdlets/Services/Impl/RegistryServiceImpl.cs -------------------------------------------------------------------------------- /CSharp/TfsCmdlets/Services/Impl/RestApiServiceImpl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/CSharp/TfsCmdlets/Services/Impl/RestApiServiceImpl.cs -------------------------------------------------------------------------------- /CSharp/TfsCmdlets/Services/Impl/RuntimeUtilImpl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/CSharp/TfsCmdlets/Services/Impl/RuntimeUtilImpl.cs -------------------------------------------------------------------------------- /CSharp/TfsCmdlets/Services/Impl/TfsVersionTableImpl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/CSharp/TfsCmdlets/Services/Impl/TfsVersionTableImpl.cs -------------------------------------------------------------------------------- /CSharp/TfsCmdlets/Services/Impl/WorkItemPatchBuilderImpl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/CSharp/TfsCmdlets/Services/Impl/WorkItemPatchBuilderImpl.cs -------------------------------------------------------------------------------- /CSharp/TfsCmdlets/Services/ServiceLocator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/CSharp/TfsCmdlets/Services/ServiceLocator.cs -------------------------------------------------------------------------------- /CSharp/TfsCmdlets/ShellHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/CSharp/TfsCmdlets/ShellHelper.cs -------------------------------------------------------------------------------- /CSharp/TfsCmdlets/TfsCmdlets.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/CSharp/TfsCmdlets/TfsCmdlets.csproj -------------------------------------------------------------------------------- /CSharp/TfsCmdlets/Util/ErrorUtil.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/CSharp/TfsCmdlets/Util/ErrorUtil.cs -------------------------------------------------------------------------------- /CSharp/TfsCmdlets/Util/LazyProperty.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/CSharp/TfsCmdlets/Util/LazyProperty.cs -------------------------------------------------------------------------------- /CSharp/TfsCmdlets/Util/Mru.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/CSharp/TfsCmdlets/Util/Mru.cs -------------------------------------------------------------------------------- /CSharp/TfsCmdlets/Util/PSJsonConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/CSharp/TfsCmdlets/Util/PSJsonConverter.cs -------------------------------------------------------------------------------- /Docs/CommonHelpText.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/Docs/CommonHelpText.psd1 -------------------------------------------------------------------------------- /Docs/ReleaseNotes/1.0.0-alpha3.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/Docs/ReleaseNotes/1.0.0-alpha3.md -------------------------------------------------------------------------------- /Docs/ReleaseNotes/1.0.0-alpha4.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/Docs/ReleaseNotes/1.0.0-alpha4.md -------------------------------------------------------------------------------- /Docs/ReleaseNotes/1.0.0-alpha5.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/Docs/ReleaseNotes/1.0.0-alpha5.md -------------------------------------------------------------------------------- /Docs/ReleaseNotes/1.0.0-alpha6.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/Docs/ReleaseNotes/1.0.0-alpha6.md -------------------------------------------------------------------------------- /Docs/ReleaseNotes/1.0.0-alpha7.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/Docs/ReleaseNotes/1.0.0-alpha7.md -------------------------------------------------------------------------------- /Docs/ReleaseNotes/2.0.0-beta.10.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/Docs/ReleaseNotes/2.0.0-beta.10.md -------------------------------------------------------------------------------- /Docs/ReleaseNotes/2.0.0-beta.11.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/Docs/ReleaseNotes/2.0.0-beta.11.md -------------------------------------------------------------------------------- /Docs/ReleaseNotes/2.0.0-beta.12.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/Docs/ReleaseNotes/2.0.0-beta.12.md -------------------------------------------------------------------------------- /Docs/ReleaseNotes/2.0.0-beta.13.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/Docs/ReleaseNotes/2.0.0-beta.13.md -------------------------------------------------------------------------------- /Docs/ReleaseNotes/2.0.0-beta.14.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/Docs/ReleaseNotes/2.0.0-beta.14.md -------------------------------------------------------------------------------- /Docs/ReleaseNotes/2.0.0-beta.15.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/Docs/ReleaseNotes/2.0.0-beta.15.md -------------------------------------------------------------------------------- /Docs/ReleaseNotes/2.0.0-beta.16.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/Docs/ReleaseNotes/2.0.0-beta.16.md -------------------------------------------------------------------------------- /Docs/ReleaseNotes/2.0.0-beta.6.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/Docs/ReleaseNotes/2.0.0-beta.6.md -------------------------------------------------------------------------------- /Docs/ReleaseNotes/2.0.0-beta.8.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/Docs/ReleaseNotes/2.0.0-beta.8.md -------------------------------------------------------------------------------- /Docs/ReleaseNotes/2.0.0-beta.9.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/Docs/ReleaseNotes/2.0.0-beta.9.md -------------------------------------------------------------------------------- /Docs/ReleaseNotes/2.0.0-rc.1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/Docs/ReleaseNotes/2.0.0-rc.1.md -------------------------------------------------------------------------------- /Docs/ReleaseNotes/2.0.0-rc.2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/Docs/ReleaseNotes/2.0.0-rc.2.md -------------------------------------------------------------------------------- /Docs/ReleaseNotes/2.0.0-rc.3.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/Docs/ReleaseNotes/2.0.0-rc.3.md -------------------------------------------------------------------------------- /Docs/ReleaseNotes/2.0.0-rc.4.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/Docs/ReleaseNotes/2.0.0-rc.4.md -------------------------------------------------------------------------------- /Docs/ReleaseNotes/2.0.0-rc.5.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/Docs/ReleaseNotes/2.0.0-rc.5.md -------------------------------------------------------------------------------- /Docs/ReleaseNotes/2.0.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/Docs/ReleaseNotes/2.0.0.md -------------------------------------------------------------------------------- /Docs/ReleaseNotes/2.0.1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/Docs/ReleaseNotes/2.0.1.md -------------------------------------------------------------------------------- /Docs/ReleaseNotes/2.1.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/Docs/ReleaseNotes/2.1.0.md -------------------------------------------------------------------------------- /Docs/ReleaseNotes/2.1.1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/Docs/ReleaseNotes/2.1.1.md -------------------------------------------------------------------------------- /Docs/ReleaseNotes/2.1.2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/Docs/ReleaseNotes/2.1.2.md -------------------------------------------------------------------------------- /Docs/ReleaseNotes/2.1.3.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/Docs/ReleaseNotes/2.1.3.md -------------------------------------------------------------------------------- /Docs/ReleaseNotes/2.1.4.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/Docs/ReleaseNotes/2.1.4.md -------------------------------------------------------------------------------- /Docs/ReleaseNotes/2.2.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/Docs/ReleaseNotes/2.2.0.md -------------------------------------------------------------------------------- /Docs/ReleaseNotes/2.2.1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/Docs/ReleaseNotes/2.2.1.md -------------------------------------------------------------------------------- /Docs/ReleaseNotes/2.3.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/Docs/ReleaseNotes/2.3.0.md -------------------------------------------------------------------------------- /Docs/ReleaseNotes/2.3.1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/Docs/ReleaseNotes/2.3.1.md -------------------------------------------------------------------------------- /Docs/ReleaseNotes/2.4.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/Docs/ReleaseNotes/2.4.0.md -------------------------------------------------------------------------------- /Docs/ReleaseNotes/2.4.1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/Docs/ReleaseNotes/2.4.1.md -------------------------------------------------------------------------------- /Docs/ReleaseNotes/2.5.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/Docs/ReleaseNotes/2.5.0.md -------------------------------------------------------------------------------- /Docs/ReleaseNotes/2.5.1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/Docs/ReleaseNotes/2.5.1.md -------------------------------------------------------------------------------- /Docs/ReleaseNotes/2.6.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/Docs/ReleaseNotes/2.6.0.md -------------------------------------------------------------------------------- /Docs/ReleaseNotes/2.6.1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/Docs/ReleaseNotes/2.6.1.md -------------------------------------------------------------------------------- /Docs/ReleaseNotes/2.7.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/Docs/ReleaseNotes/2.7.0.md -------------------------------------------------------------------------------- /Docs/ReleaseNotes/2.7.1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/Docs/ReleaseNotes/2.7.1.md -------------------------------------------------------------------------------- /Docs/ReleaseNotes/2.8.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/Docs/ReleaseNotes/2.8.0.md -------------------------------------------------------------------------------- /Docs/ReleaseNotes/2.8.1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/Docs/ReleaseNotes/2.8.1.md -------------------------------------------------------------------------------- /Docs/ReleaseNotes/2.8.2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/Docs/ReleaseNotes/2.8.2.md -------------------------------------------------------------------------------- /Docs/ReleaseNotes/2.9.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/Docs/ReleaseNotes/2.9.0.md -------------------------------------------------------------------------------- /Docs/ReleaseNotes/2.9.1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/Docs/ReleaseNotes/2.9.1.md -------------------------------------------------------------------------------- /Docs/ReleaseNotes/2.9.2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/Docs/ReleaseNotes/2.9.2.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/LICENSE.md -------------------------------------------------------------------------------- /License.rtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/License.rtf -------------------------------------------------------------------------------- /PS/TfsCmdlets.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/PS/TfsCmdlets.psd1 -------------------------------------------------------------------------------- /PS/TfsCmdlets.psm1: -------------------------------------------------------------------------------- 1 | # Private functions 2 | 3 | -------------------------------------------------------------------------------- /PS/TfsCmdletsShell.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/PS/TfsCmdletsShell.ico -------------------------------------------------------------------------------- /PS/_Formats/Controls/ArtifactFeeds.Control.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/PS/_Formats/Controls/ArtifactFeeds.Control.yml -------------------------------------------------------------------------------- /PS/_Formats/Controls/TeamProject-FeedItems.Control.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/PS/_Formats/Controls/TeamProject-FeedItems.Control.yml -------------------------------------------------------------------------------- /PS/_Formats/Controls/TeamProject-Feeds-Packages.Control.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/PS/_Formats/Controls/TeamProject-Feeds-Packages.Control.yml -------------------------------------------------------------------------------- /PS/_Formats/Controls/TeamProject-Folder.Control.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/PS/_Formats/Controls/TeamProject-Folder.Control.yml -------------------------------------------------------------------------------- /PS/_Formats/Controls/TeamProject-Repositories-Branches.Control.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/PS/_Formats/Controls/TeamProject-Repositories-Branches.Control.yml -------------------------------------------------------------------------------- /PS/_Formats/Controls/TeamProject-Repositories-Folders.Control.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/PS/_Formats/Controls/TeamProject-Repositories-Folders.Control.yml -------------------------------------------------------------------------------- /PS/_Formats/Controls/TeamProject-Repositories.Control.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/PS/_Formats/Controls/TeamProject-Repositories.Control.yml -------------------------------------------------------------------------------- /PS/_Formats/Controls/TeamProjectTeams.Control.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/PS/_Formats/Controls/TeamProjectTeams.Control.yml -------------------------------------------------------------------------------- /PS/_Formats/Controls/TeamProjectsGrouping.Control.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/PS/_Formats/Controls/TeamProjectsGrouping.Control.yml -------------------------------------------------------------------------------- /PS/_Formats/Views/AccountEntitlement.View.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/PS/_Formats/Views/AccountEntitlement.View.yml -------------------------------------------------------------------------------- /PS/_Formats/Views/ArtifactFeed.View.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/PS/_Formats/Views/ArtifactFeed.View.yml -------------------------------------------------------------------------------- /PS/_Formats/Views/ArtifactFeedView.View.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/PS/_Formats/Views/ArtifactFeedView.View.yml -------------------------------------------------------------------------------- /PS/_Formats/Views/ArtifactPackage.View.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/PS/_Formats/Views/ArtifactPackage.View.yml -------------------------------------------------------------------------------- /PS/_Formats/Views/ArtifactPackageVersion.View.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/PS/_Formats/Views/ArtifactPackageVersion.View.yml -------------------------------------------------------------------------------- /PS/_Formats/Views/BacklogLevelConfiguration.View.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/PS/_Formats/Views/BacklogLevelConfiguration.View.yml -------------------------------------------------------------------------------- /PS/_Formats/Views/Board.View.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/PS/_Formats/Views/Board.View.yml -------------------------------------------------------------------------------- /PS/_Formats/Views/BoardCardRuleSettings.View.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/PS/_Formats/Views/BoardCardRuleSettings.View.yml -------------------------------------------------------------------------------- /PS/_Formats/Views/BuildAgents.View.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/PS/_Formats/Views/BuildAgents.View.yml -------------------------------------------------------------------------------- /PS/_Formats/Views/BuildControllers.View.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/PS/_Formats/Views/BuildControllers.View.yml -------------------------------------------------------------------------------- /PS/_Formats/Views/BuildDefinitions.View.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/PS/_Formats/Views/BuildDefinitions.View.yml -------------------------------------------------------------------------------- /PS/_Formats/Views/ClassificationNodes.View.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/PS/_Formats/Views/ClassificationNodes.View.yml -------------------------------------------------------------------------------- /PS/_Formats/Views/ConfigurationServers.View.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/PS/_Formats/Views/ConfigurationServers.View.yml -------------------------------------------------------------------------------- /PS/_Formats/Views/GitBranchPolicyTypes.View.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/PS/_Formats/Views/GitBranchPolicyTypes.View.yml -------------------------------------------------------------------------------- /PS/_Formats/Views/GitBranches.View.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/PS/_Formats/Views/GitBranches.View.yml -------------------------------------------------------------------------------- /PS/_Formats/Views/GitCommitRef.View.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/PS/_Formats/Views/GitCommitRef.View.yml -------------------------------------------------------------------------------- /PS/_Formats/Views/GitItem.View.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/PS/_Formats/Views/GitItem.View.yml -------------------------------------------------------------------------------- /PS/_Formats/Views/GitPolicyConfigurations.View.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/PS/_Formats/Views/GitPolicyConfigurations.View.yml -------------------------------------------------------------------------------- /PS/_Formats/Views/GitRepositories.View.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/PS/_Formats/Views/GitRepositories.View.yml -------------------------------------------------------------------------------- /PS/_Formats/Views/Identities.View.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/PS/_Formats/Views/Identities.View.yml -------------------------------------------------------------------------------- /PS/_Formats/Views/InstalledExtension.View.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/PS/_Formats/Views/InstalledExtension.View.yml -------------------------------------------------------------------------------- /PS/_Formats/Views/PipelineFolders.View.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/PS/_Formats/Views/PipelineFolders.View.yml -------------------------------------------------------------------------------- /PS/_Formats/Views/ProcessTemplates.View.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/PS/_Formats/Views/ProcessTemplates.View.yml -------------------------------------------------------------------------------- /PS/_Formats/Views/QueuedBuilds.View.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/PS/_Formats/Views/QueuedBuilds.View.yml -------------------------------------------------------------------------------- /PS/_Formats/Views/ReleaseDefinitions.View.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/PS/_Formats/Views/ReleaseDefinitions.View.yml -------------------------------------------------------------------------------- /PS/_Formats/Views/ServiceHookConsumersPublishers.View.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/PS/_Formats/Views/ServiceHookConsumersPublishers.View.yml -------------------------------------------------------------------------------- /PS/_Formats/Views/ServiceHookSubscriptions.View.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/PS/_Formats/Views/ServiceHookSubscriptions.View.yml -------------------------------------------------------------------------------- /PS/_Formats/Views/TeamAdmins.View.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/PS/_Formats/Views/TeamAdmins.View.yml -------------------------------------------------------------------------------- /PS/_Formats/Views/TeamBoardCardRules.View.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/PS/_Formats/Views/TeamBoardCardRules.View.yml -------------------------------------------------------------------------------- /PS/_Formats/Views/TeamProjectCollections.View.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/PS/_Formats/Views/TeamProjectCollections.View.yml -------------------------------------------------------------------------------- /PS/_Formats/Views/TeamProjectMembers.View.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/PS/_Formats/Views/TeamProjectMembers.View.yml -------------------------------------------------------------------------------- /PS/_Formats/Views/TeamProjects-Rest.View.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/PS/_Formats/Views/TeamProjects-Rest.View.yml -------------------------------------------------------------------------------- /PS/_Formats/Views/TeamProjects.View.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/PS/_Formats/Views/TeamProjects.View.yml -------------------------------------------------------------------------------- /PS/_Formats/Views/Teams.View.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/PS/_Formats/Views/Teams.View.yml -------------------------------------------------------------------------------- /PS/_Formats/Views/TemplateHeaders.View.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/PS/_Formats/Views/TemplateHeaders.View.yml -------------------------------------------------------------------------------- /PS/_Formats/Views/TestPlans.View.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/PS/_Formats/Views/TestPlans.View.yml -------------------------------------------------------------------------------- /PS/_Formats/Views/VssConnection.View.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/PS/_Formats/Views/VssConnection.View.yml -------------------------------------------------------------------------------- /PS/_Formats/Views/Wiki.View.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/PS/_Formats/Views/Wiki.View.yml -------------------------------------------------------------------------------- /PS/_Formats/Views/WorkItem.QueryItem.View.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/PS/_Formats/Views/WorkItem.QueryItem.View.yml -------------------------------------------------------------------------------- /PS/_Formats/Views/WorkItem.Tag.View.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/PS/_Formats/Views/WorkItem.Tag.View.yml -------------------------------------------------------------------------------- /PS/_Formats/Views/WorkItemFields.View.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/PS/_Formats/Views/WorkItemFields.View.yml -------------------------------------------------------------------------------- /PS/_Formats/Views/WorkItemLinkEnds.View.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/PS/_Formats/Views/WorkItemLinkEnds.View.yml -------------------------------------------------------------------------------- /PS/_Formats/Views/WorkItemLinks.View.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/PS/_Formats/Views/WorkItemLinks.View.yml -------------------------------------------------------------------------------- /PS/_Formats/Views/WorkItemQueries.View.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/PS/_Formats/Views/WorkItemQueries.View.yml -------------------------------------------------------------------------------- /PS/_Formats/Views/WorkItemQueryFolders.View.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/PS/_Formats/Views/WorkItemQueryFolders.View.yml -------------------------------------------------------------------------------- /PS/_Formats/Views/WorkItemRelations.View.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/PS/_Formats/Views/WorkItemRelations.View.yml -------------------------------------------------------------------------------- /PS/_Formats/Views/WorkItemResult.View.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/PS/_Formats/Views/WorkItemResult.View.yml -------------------------------------------------------------------------------- /PS/_Formats/Views/WorkItemTypes.View.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/PS/_Formats/Views/WorkItemTypes.View.yml -------------------------------------------------------------------------------- /PS/_Formats/Views/WorkItems.View.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/PS/_Formats/Views/WorkItems.View.yml -------------------------------------------------------------------------------- /PS/_Formats/Views/XamlBuildDefinitions.View.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/PS/_Formats/Views/XamlBuildDefinitions.View.yml -------------------------------------------------------------------------------- /PS/_Private/Admin.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/PS/_Private/Admin.ps1 -------------------------------------------------------------------------------- /PS/_Private/Aliases.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/PS/_Private/Aliases.ps1 -------------------------------------------------------------------------------- /PS/_Private/Completers/AreaIteration.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/PS/_Private/Completers/AreaIteration.ps1 -------------------------------------------------------------------------------- /PS/_Private/Completers/Project.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/PS/_Private/Completers/Project.ps1 -------------------------------------------------------------------------------- /PS/_Private/Completers/Repository.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/PS/_Private/Completers/Repository.ps1 -------------------------------------------------------------------------------- /PS/_Private/Completers/Team.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/PS/_Private/Completers/Team.ps1 -------------------------------------------------------------------------------- /PS/_Private/Completers/_EscapeArgumentValue.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/PS/_Private/Completers/_EscapeArgumentValue.ps1 -------------------------------------------------------------------------------- /PS/_Tests/Admin/GetTfsConfigurationConnectionString.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/PS/_Tests/Admin/GetTfsConfigurationConnectionString.Tests.ps1 -------------------------------------------------------------------------------- /PS/_Tests/Admin/GetTfsConfigurationServerConnectionString.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/PS/_Tests/Admin/GetTfsConfigurationServerConnectionString.Tests.ps1 -------------------------------------------------------------------------------- /PS/_Tests/Admin/GetTfsInstallationPath.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/PS/_Tests/Admin/GetTfsInstallationPath.Tests.ps1 -------------------------------------------------------------------------------- /PS/_Tests/Admin/GetTfsVersion.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/PS/_Tests/Admin/GetTfsVersion.Tests.ps1 -------------------------------------------------------------------------------- /PS/_Tests/Admin/Registry/GetTfsRegistryValue.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/PS/_Tests/Admin/Registry/GetTfsRegistryValue.Tests.ps1 -------------------------------------------------------------------------------- /PS/_Tests/Artifact/GetTfsArtifact.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/PS/_Tests/Artifact/GetTfsArtifact.Tests.ps1 -------------------------------------------------------------------------------- /PS/_Tests/Artifact/GetTfsArtifactFeed.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/PS/_Tests/Artifact/GetTfsArtifactFeed.Tests.ps1 -------------------------------------------------------------------------------- /PS/_Tests/Artifact/GetTfsArtifactFeedView.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/PS/_Tests/Artifact/GetTfsArtifactFeedView.Tests.ps1 -------------------------------------------------------------------------------- /PS/_Tests/Artifact/GetTfsArtifactVersion.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/PS/_Tests/Artifact/GetTfsArtifactVersion.Tests.ps1 -------------------------------------------------------------------------------- /PS/_Tests/ExtensionManagement/GetTfsExtension.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/PS/_Tests/ExtensionManagement/GetTfsExtension.Tests.ps1 -------------------------------------------------------------------------------- /PS/_Tests/Git/Branch/GetTfsGitBranch.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/PS/_Tests/Git/Branch/GetTfsGitBranch.Tests.ps1 -------------------------------------------------------------------------------- /PS/_Tests/Git/Commit/GetTfsGitCommit.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/PS/_Tests/Git/Commit/GetTfsGitCommit.Tests.ps1 -------------------------------------------------------------------------------- /PS/_Tests/Git/GetTfsGitRepository.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/PS/_Tests/Git/GetTfsGitRepository.Tests.ps1 -------------------------------------------------------------------------------- /PS/_Tests/Git/Item/GetTfsGitItem.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/PS/_Tests/Git/Item/GetTfsGitItem.Tests.ps1 -------------------------------------------------------------------------------- /PS/_Tests/Git/Policy/GetTfsGitBranchPolicy.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/PS/_Tests/Git/Policy/GetTfsGitBranchPolicy.Tests.ps1 -------------------------------------------------------------------------------- /PS/_Tests/Git/Policy/GetTfsGitPolicyType.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/PS/_Tests/Git/Policy/GetTfsGitPolicyType.Tests.ps1 -------------------------------------------------------------------------------- /PS/_Tests/Identity/GetTfsIdentity.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/PS/_Tests/Identity/GetTfsIdentity.Tests.ps1 -------------------------------------------------------------------------------- /PS/_Tests/Identity/Group/GetTfsGroup.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/PS/_Tests/Identity/Group/GetTfsGroup.Tests.ps1 -------------------------------------------------------------------------------- /PS/_Tests/Identity/Group/GetTfsGroupMember.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/PS/_Tests/Identity/Group/GetTfsGroupMember.Tests.ps1 -------------------------------------------------------------------------------- /PS/_Tests/Identity/User/GetTfsUser.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/PS/_Tests/Identity/User/GetTfsUser.Tests.ps1 -------------------------------------------------------------------------------- /PS/_Tests/Organization/GetTfsOrganization.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/PS/_Tests/Organization/GetTfsOrganization.Tests.ps1 -------------------------------------------------------------------------------- /PS/_Tests/Pipeline/Build/Definition/GetTfsBuildDefinition.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/PS/_Tests/Pipeline/Build/Definition/GetTfsBuildDefinition.Tests.ps1 -------------------------------------------------------------------------------- /PS/_Tests/Pipeline/Build/Folder/GetTfsBuildDefinitionFolder.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/PS/_Tests/Pipeline/Build/Folder/GetTfsBuildDefinitionFolder.Tests.ps1 -------------------------------------------------------------------------------- /PS/_Tests/Pipeline/ReleaseManagement/GetTfsReleaseDefinition.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/PS/_Tests/Pipeline/ReleaseManagement/GetTfsReleaseDefinition.Tests.ps1 -------------------------------------------------------------------------------- /PS/_Tests/Pipeline/ReleaseManagement/GetTfsReleaseDefinitionFolder.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/PS/_Tests/Pipeline/ReleaseManagement/GetTfsReleaseDefinitionFolder.Tests.ps1 -------------------------------------------------------------------------------- /PS/_Tests/ProcessTemplate/GetTfsProcessFieldDefinition.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/PS/_Tests/ProcessTemplate/GetTfsProcessFieldDefinition.Tests.ps1 -------------------------------------------------------------------------------- /PS/_Tests/ProcessTemplate/GetTfsProcessTemplate.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/PS/_Tests/ProcessTemplate/GetTfsProcessTemplate.Tests.ps1 -------------------------------------------------------------------------------- /PS/_Tests/RestApi/GetTfsRestClient.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/PS/_Tests/RestApi/GetTfsRestClient.Tests.ps1 -------------------------------------------------------------------------------- /PS/_Tests/RestApi/InvokeTfsRestApi.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/PS/_Tests/RestApi/InvokeTfsRestApi.Tests.ps1 -------------------------------------------------------------------------------- /PS/_Tests/ServiceHook/GetTfsServiceHookConsumer.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/PS/_Tests/ServiceHook/GetTfsServiceHookConsumer.Tests.ps1 -------------------------------------------------------------------------------- /PS/_Tests/ServiceHook/GetTfsServiceHookNotificationHistory.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/PS/_Tests/ServiceHook/GetTfsServiceHookNotificationHistory.Tests.ps1 -------------------------------------------------------------------------------- /PS/_Tests/ServiceHook/GetTfsServiceHookPublisher.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/PS/_Tests/ServiceHook/GetTfsServiceHookPublisher.Tests.ps1 -------------------------------------------------------------------------------- /PS/_Tests/ServiceHook/GetTfsServiceHookSubscription.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/PS/_Tests/ServiceHook/GetTfsServiceHookSubscription.Tests.ps1 -------------------------------------------------------------------------------- /PS/_Tests/Team/Backlog/GetTfsTeamBacklogLevel.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/PS/_Tests/Team/Backlog/GetTfsTeamBacklogLevel.Tests.ps1 -------------------------------------------------------------------------------- /PS/_Tests/Team/Board/GetTfsTeamBoard.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/PS/_Tests/Team/Board/GetTfsTeamBoard.Tests.ps1 -------------------------------------------------------------------------------- /PS/_Tests/Team/Board/GetTfsTeamBoardCardRule.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/PS/_Tests/Team/Board/GetTfsTeamBoardCardRule.Tests.ps1 -------------------------------------------------------------------------------- /PS/_Tests/Team/GetTfsTeam.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/PS/_Tests/Team/GetTfsTeam.Tests.ps1 -------------------------------------------------------------------------------- /PS/_Tests/Team/TeamAdmin/GetTfsTeamAdmin.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/PS/_Tests/Team/TeamAdmin/GetTfsTeamAdmin.Tests.ps1 -------------------------------------------------------------------------------- /PS/_Tests/Team/TeamMember/GetTfsTeamMember.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/PS/_Tests/Team/TeamMember/GetTfsTeamMember.Tests.ps1 -------------------------------------------------------------------------------- /PS/_Tests/TeamProject/GetTfsTeamProject.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/PS/_Tests/TeamProject/GetTfsTeamProject.Tests.ps1 -------------------------------------------------------------------------------- /PS/_Tests/TeamProject/Member/GetTfsTeamProjectMember.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/PS/_Tests/TeamProject/Member/GetTfsTeamProjectMember.Tests.ps1 -------------------------------------------------------------------------------- /PS/_Tests/TeamProjectCollection/GetTfsTeamProjectCollection.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/PS/_Tests/TeamProjectCollection/GetTfsTeamProjectCollection.Tests.ps1 -------------------------------------------------------------------------------- /PS/_Tests/TestManagement/GetTfsTestPlan.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/PS/_Tests/TestManagement/GetTfsTestPlan.Tests.ps1 -------------------------------------------------------------------------------- /PS/_Tests/Wiki/GetTfsWiki.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/PS/_Tests/Wiki/GetTfsWiki.Tests.ps1 -------------------------------------------------------------------------------- /PS/_Tests/WorkItem/AreasIterations/GetTfsArea.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/PS/_Tests/WorkItem/AreasIterations/GetTfsArea.Tests.ps1 -------------------------------------------------------------------------------- /PS/_Tests/WorkItem/AreasIterations/GetTfsIteration.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/PS/_Tests/WorkItem/AreasIterations/GetTfsIteration.Tests.ps1 -------------------------------------------------------------------------------- /PS/_Tests/WorkItem/GetTfsWorkItem.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/PS/_Tests/WorkItem/GetTfsWorkItem.Tests.ps1 -------------------------------------------------------------------------------- /PS/_Tests/WorkItem/History/GetTfsWorkItemHistory.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/PS/_Tests/WorkItem/History/GetTfsWorkItemHistory.Tests.ps1 -------------------------------------------------------------------------------- /PS/_Tests/WorkItem/Linking/GetTfsWorkItemLink.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/PS/_Tests/WorkItem/Linking/GetTfsWorkItemLink.Tests.ps1 -------------------------------------------------------------------------------- /PS/_Tests/WorkItem/Linking/GetTfsWorkItemLinkEndType.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/PS/_Tests/WorkItem/Linking/GetTfsWorkItemLinkEndType.Tests.ps1 -------------------------------------------------------------------------------- /PS/_Tests/WorkItem/Query/GetTfsWorkItemQuery.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/PS/_Tests/WorkItem/Query/GetTfsWorkItemQuery.Tests.ps1 -------------------------------------------------------------------------------- /PS/_Tests/WorkItem/Query/GetTfsWorkItemQueryFolder.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/PS/_Tests/WorkItem/Query/GetTfsWorkItemQueryFolder.Tests.ps1 -------------------------------------------------------------------------------- /PS/_Tests/WorkItem/Query/GetTfsWorkItemQueryItemController.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/PS/_Tests/WorkItem/Query/GetTfsWorkItemQueryItemController.Tests.ps1 -------------------------------------------------------------------------------- /PS/_Tests/WorkItem/Tagging/GetTfsWorkItemTag.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/PS/_Tests/WorkItem/Tagging/GetTfsWorkItemTag.Tests.ps1 -------------------------------------------------------------------------------- /PS/_Tests/WorkItem/WorkItemType/GetTfsWorkItemType.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/PS/_Tests/WorkItem/WorkItemType/GetTfsWorkItemType.Tests.ps1 -------------------------------------------------------------------------------- /PS/_Tests/_TestSetup.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/PS/_Tests/_TestSetup.ps1 -------------------------------------------------------------------------------- /PS/_Types/Microsoft.TeamFoundation.Build.WebApi.BuildDefinitionReference.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/PS/_Types/Microsoft.TeamFoundation.Build.WebApi.BuildDefinitionReference.yml -------------------------------------------------------------------------------- /PS/_Types/Microsoft.TeamFoundation.Build.WebApi.Folder.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/PS/_Types/Microsoft.TeamFoundation.Build.WebApi.Folder.yml -------------------------------------------------------------------------------- /PS/_Types/Microsoft.TeamFoundation.Client.BuildController.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/PS/_Types/Microsoft.TeamFoundation.Client.BuildController.yml -------------------------------------------------------------------------------- /PS/_Types/Microsoft.TeamFoundation.Client.TeamFoundationTeam.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/PS/_Types/Microsoft.TeamFoundation.Client.TeamFoundationTeam.yml -------------------------------------------------------------------------------- /PS/_Types/Microsoft.TeamFoundation.Client.TfsConfigurationServer.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/PS/_Types/Microsoft.TeamFoundation.Client.TfsConfigurationServer.yml -------------------------------------------------------------------------------- /PS/_Types/Microsoft.TeamFoundation.Client.TfsTeamProjectCollection.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/PS/_Types/Microsoft.TeamFoundation.Client.TfsTeamProjectCollection.yml -------------------------------------------------------------------------------- /PS/_Types/Microsoft.TeamFoundation.Core.WebApi.Process.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/PS/_Types/Microsoft.TeamFoundation.Core.WebApi.Process.yml -------------------------------------------------------------------------------- /PS/_Types/Microsoft.TeamFoundation.Core.WebApi.TeamProject.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/PS/_Types/Microsoft.TeamFoundation.Core.WebApi.TeamProject.yml -------------------------------------------------------------------------------- /PS/_Types/Microsoft.TeamFoundation.Core.WebApi.WebApiTagDefinition.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/PS/_Types/Microsoft.TeamFoundation.Core.WebApi.WebApiTagDefinition.yml -------------------------------------------------------------------------------- /PS/_Types/Microsoft.TeamFoundation.Policy.WebApi.PolicyConfiguration.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/PS/_Types/Microsoft.TeamFoundation.Policy.WebApi.PolicyConfiguration.yml -------------------------------------------------------------------------------- /PS/_Types/Microsoft.TeamFoundation.Server.NodeInfo.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/PS/_Types/Microsoft.TeamFoundation.Server.NodeInfo.yml -------------------------------------------------------------------------------- /PS/_Types/Microsoft.TeamFoundation.SourceControl.WebApi.GitBranchStats.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/PS/_Types/Microsoft.TeamFoundation.SourceControl.WebApi.GitBranchStats.yml -------------------------------------------------------------------------------- /PS/_Types/Microsoft.TeamFoundation.SourceControl.WebApi.GitItem.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/PS/_Types/Microsoft.TeamFoundation.SourceControl.WebApi.GitItem.yml -------------------------------------------------------------------------------- /PS/_Types/Microsoft.TeamFoundation.SourceControl.WebApi.GitRepository.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/PS/_Types/Microsoft.TeamFoundation.SourceControl.WebApi.GitRepository.yml -------------------------------------------------------------------------------- /PS/_Types/Microsoft.TeamFoundation.Work.WebApi.BoardCardRuleSettings.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/PS/_Types/Microsoft.TeamFoundation.Work.WebApi.BoardCardRuleSettings.yml -------------------------------------------------------------------------------- /PS/_Types/Microsoft.TeamFoundation.WorkItemTracking.Client.Link.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/PS/_Types/Microsoft.TeamFoundation.WorkItemTracking.Client.Link.yml -------------------------------------------------------------------------------- /PS/_Types/Microsoft.TeamFoundation.WorkItemTracking.Client.Project.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/PS/_Types/Microsoft.TeamFoundation.WorkItemTracking.Client.Project.yml -------------------------------------------------------------------------------- /PS/_Types/Microsoft.TeamFoundation.WorkItemTracking.Client.QueryDefinition.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/PS/_Types/Microsoft.TeamFoundation.WorkItemTracking.Client.QueryDefinition.yml -------------------------------------------------------------------------------- /PS/_Types/Microsoft.TeamFoundation.WorkItemTracking.Client.QueryDefinition2.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/PS/_Types/Microsoft.TeamFoundation.WorkItemTracking.Client.QueryDefinition2.yml -------------------------------------------------------------------------------- /PS/_Types/Microsoft.TeamFoundation.WorkItemTracking.Client.QueryFolder.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/PS/_Types/Microsoft.TeamFoundation.WorkItemTracking.Client.QueryFolder.yml -------------------------------------------------------------------------------- /PS/_Types/Microsoft.TeamFoundation.WorkItemTracking.Client.QueryFolder2.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/PS/_Types/Microsoft.TeamFoundation.WorkItemTracking.Client.QueryFolder2.yml -------------------------------------------------------------------------------- /PS/_Types/Microsoft.TeamFoundation.WorkItemTracking.Client.WorkItem.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/PS/_Types/Microsoft.TeamFoundation.WorkItemTracking.Client.WorkItem.yml -------------------------------------------------------------------------------- /PS/_Types/Microsoft.TeamFoundation.WorkItemTracking.Client.WorkItemLinkTypeEnd.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/PS/_Types/Microsoft.TeamFoundation.WorkItemTracking.Client.WorkItemLinkTypeEnd.yml -------------------------------------------------------------------------------- /PS/_Types/Microsoft.TeamFoundation.WorkItemTracking.WebApi.Models.QueryHierarchyItem.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/PS/_Types/Microsoft.TeamFoundation.WorkItemTracking.WebApi.Models.QueryHierarchyItem.yml -------------------------------------------------------------------------------- /PS/_Types/Microsoft.TeamFoundation.WorkItemTracking.WebApi.Models.WorkItem.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/PS/_Types/Microsoft.TeamFoundation.WorkItemTracking.WebApi.Models.WorkItem.yml -------------------------------------------------------------------------------- /PS/_Types/Microsoft.TeamFoundation.WorkItemTracking.WebApi.Models.WorkItemClassificationNode.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/PS/_Types/Microsoft.TeamFoundation.WorkItemTracking.WebApi.Models.WorkItemClassificationNode.yml -------------------------------------------------------------------------------- /PS/_Types/Microsoft.TeamFoundation.WorkItemTracking.WebApi.Models.WorkItemRelation.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/PS/_Types/Microsoft.TeamFoundation.WorkItemTracking.WebApi.Models.WorkItemRelation.yml -------------------------------------------------------------------------------- /PS/_Types/Microsoft.TeamFoundation.WorkItemTracking.WebApi.Models.WorkItemType.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/PS/_Types/Microsoft.TeamFoundation.WorkItemTracking.WebApi.Models.WorkItemType.yml -------------------------------------------------------------------------------- /PS/_Types/Microsoft.VisualStudio.Services.Feed.WebApi.FeedView.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/PS/_Types/Microsoft.VisualStudio.Services.Feed.WebApi.FeedView.yml -------------------------------------------------------------------------------- /PS/_Types/Microsoft.VisualStudio.Services.Feed.WebApi.Package.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/PS/_Types/Microsoft.VisualStudio.Services.Feed.WebApi.Package.yml -------------------------------------------------------------------------------- /PS/_Types/Microsoft.VisualStudio.Services.Feed.WebApi.PackageVersion.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/PS/_Types/Microsoft.VisualStudio.Services.Feed.WebApi.PackageVersion.yml -------------------------------------------------------------------------------- /PS/_Types/Microsoft.VisualStudio.Services.Identity.Identity.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/PS/_Types/Microsoft.VisualStudio.Services.Identity.Identity.yml -------------------------------------------------------------------------------- /PS/_Types/Microsoft.VisualStudio.Services.Licensing.AccountEntitlement.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/PS/_Types/Microsoft.VisualStudio.Services.Licensing.AccountEntitlement.yml -------------------------------------------------------------------------------- /PS/_Types/Microsoft.VisualStudio.Services.ReleaseManagement.WebApi.Folder.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/PS/_Types/Microsoft.VisualStudio.Services.ReleaseManagement.WebApi.Folder.yml -------------------------------------------------------------------------------- /PS/_Types/Microsoft.VisualStudio.Services.Search.WebApi.Contracts.WorkItem.WorkItemResult.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/PS/_Types/Microsoft.VisualStudio.Services.Search.WebApi.Contracts.WorkItem.WorkItemResult.yml -------------------------------------------------------------------------------- /PS/_Types/Microsoft.VisualStudio.Services.TestManagement.TestPlanning.WebApi.TestPlan.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/PS/_Types/Microsoft.VisualStudio.Services.TestManagement.TestPlanning.WebApi.TestPlan.yml -------------------------------------------------------------------------------- /PS/_Types/Microsoft.VisualStudio.Services.WebApi.VssConnection.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/PS/_Types/Microsoft.VisualStudio.Services.WebApi.VssConnection.yml -------------------------------------------------------------------------------- /PS/chocolateyInstall.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/PS/chocolateyInstall.ps1 -------------------------------------------------------------------------------- /PS/chocolateyUninstall.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/PS/chocolateyUninstall.ps1 -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/README.md -------------------------------------------------------------------------------- /RELEASENOTES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/RELEASENOTES.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/SECURITY.md -------------------------------------------------------------------------------- /Setup/Product.wxs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/Setup/Product.wxs -------------------------------------------------------------------------------- /Setup/TfsCmdlets.Setup.wixproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/Setup/TfsCmdlets.Setup.wixproj -------------------------------------------------------------------------------- /Setup/winget/Igoravl.TfsCmdlets.installer.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/Setup/winget/Igoravl.TfsCmdlets.installer.yaml -------------------------------------------------------------------------------- /Setup/winget/Igoravl.TfsCmdlets.locale.en-US.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/Setup/winget/Igoravl.TfsCmdlets.locale.en-US.yaml -------------------------------------------------------------------------------- /Setup/winget/Igoravl.TfsCmdlets.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/Setup/winget/Igoravl.TfsCmdlets.yaml -------------------------------------------------------------------------------- /TfsCmdlets.code-workspace: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/TfsCmdlets.code-workspace -------------------------------------------------------------------------------- /TfsCmdletsShell.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/TfsCmdletsShell.ico -------------------------------------------------------------------------------- /gitversion.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/gitversion.yml -------------------------------------------------------------------------------- /psake.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igoravl/TfsCmdlets/HEAD/psake.ps1 --------------------------------------------------------------------------------