Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add CreateRelatedLink back to SOAP work item #217

Open
wants to merge 4 commits into
base: support/10.0.x
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
35 changes: 31 additions & 4 deletions appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,17 +5,17 @@ platform: Any CPU
init:
- ps: IF ($env:APPVEYOR_REPO_BRANCH -eq "develop") {$env:APPVEYOR_CACHE_SKIP_SAVE = "true"}
install:
- choco install gitversion.portable -pre -y
cache:
- packages -> **\packages.config
- cmd: choco install gitversion.portable -version 4.0.0-beta0012 -pre -y
cache: packages -> **\packages.config
nuget:
account_feed: true
project_feed: true
disable_publish_on_pr: true
before_build:
- ps: >-
.\init.ps1;
& .\.tools\nuget.exe restore -NonInteractive -DisableParallelProcessing;
C:\ProgramData\chocolatey\bin\gfv.exe /l console /output buildserver;
gitversion /l console /output buildserver;
build:
publish_nuget: true
publish_nuget_symbols: true
Expand Down Expand Up @@ -43,6 +43,33 @@ deploy:
api_key:
secure: 8wGYx8W+ojYQJsAJpRLez+KwwFa+OW7cvsn5RoR08WQpi5klhTq/9b/9YaEu/5Bx
symbol_server: https://www.myget.org/F/qwiq/symbols/api/v2/package
on:
branch: dev(elop)?(ment)?$
GitVersion_PreReleaseLabel: ''
- provider: NuGet
server: https://www.myget.org/F/qwiq/api/v2/package
api_key:
secure: 8wGYx8W+ojYQJsAJpRLez+KwwFa+OW7cvsn5RoR08WQpi5klhTq/9b/9YaEu/5Bx
symbol_server: https://www.myget.org/F/qwiq/symbols/api/v2/package
on:
branch: master
GitVersion_PreReleaseLabel: ''
- provider: NuGet
server: https://www.myget.org/F/qwiq/api/v2/package
api_key:
secure: 8wGYx8W+ojYQJsAJpRLez+KwwFa+OW7cvsn5RoR08WQpi5klhTq/9b/9YaEu/5Bx
symbol_server: https://www.myget.org/F/qwiq/symbols/api/v2/package
on:
branch: releases?[/-]
GitVersion_PreReleaseLabel: ''
- provider: NuGet
server: https://www.myget.org/F/qwiq/api/v2/package
api_key:
secure: 8wGYx8W+ojYQJsAJpRLez+KwwFa+OW7cvsn5RoR08WQpi5klhTq/9b/9YaEu/5Bx
symbol_server: https://www.myget.org/F/qwiq/symbols/api/v2/package
on:
branch: support[/-]
GitVersion_PreReleaseLabel: ''
notifications:
- provider: GitHubPullRequest
on_build_success: false
Expand Down
6 changes: 6 additions & 0 deletions src/Qwiq.Core.Soap/WorkItem.cs
Original file line number Diff line number Diff line change
Expand Up @@ -213,6 +213,12 @@ public override IHyperlink CreateHyperlink(string location)
return ExceptionHandlingDynamicProxyFactory.Create<IHyperlink>(new Hyperlink(new Tfs.Hyperlink(location)));
}

public override IRelatedLink CreateRelatedLink(int relatedWorkItemId, IWorkItemLinkTypeEnd linkTypeEnd = null)
{
var rawLinkTypeEnd = LinkTypeEndMapper.Map(_item.Store, linkTypeEnd);
return ExceptionHandlingDynamicProxyFactory.Create<IRelatedLink>(new RelatedLink(new Tfs.RelatedLink(rawLinkTypeEnd, relatedWorkItemId)));
}

/// <summary>
/// Validates the fields of this work item.
/// </summary>
Expand Down