Skip to content
This repository has been archived by the owner on Apr 6, 2024. It is now read-only.

Commit

Permalink
Merge branch 'release/0.6.1'
Browse files Browse the repository at this point in the history
  • Loading branch information
pascalberger committed Sep 5, 2018
2 parents 80d2c3e + 29d1b46 commit 9f43ae1
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 2 deletions.
2 changes: 1 addition & 1 deletion nuspec/nuget/Cake.Issues.PullRequests.Tfs.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ See the Project Site for an overview of the whole ecosystem of addins for workin
<repository type="git" url="https://github.com/cake-contrib/Cake.Issues.PullRequests.Tfs"/>
<copyright>Copyright © BBT Software AG and contributors</copyright>
<tags>Cake Script Cake-Issues Cake-PullRequestSystem Issues PullRequest TFS VSTS</tags>
<releaseNotes>https://github.com/cake-contrib/Cake.Issues.PullRequests.Tfs/releases/tag/0.6.0</releaseNotes>
<releaseNotes>https://github.com/cake-contrib/Cake.Issues.PullRequests.Tfs/releases/tag/0.6.1</releaseNotes>
</metadata>
<files>
<file src="Cake.Issues.PullRequests.Tfs.dll" target="lib\net461" />
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@
<PackageReference Include="Cake.Issues" Version="0.6.0" />
<PackageReference Include="Cake.Issues.PullRequests" Version="0.6.0" />
<PackageReference Include="Cake.Tfs">
<Version>0.1.0</Version>
<Version>0.2.0</Version>
</PackageReference>
<PackageReference Include="Costura.Fody">
<Version>3.1.0</Version>
Expand Down
10 changes: 10 additions & 0 deletions src/Cake.Issues.PullRequests.Tfs/TfsPullRequestSystemSettings.cs
Original file line number Diff line number Diff line change
Expand Up @@ -38,5 +38,15 @@ public TfsPullRequestSystemSettings(Uri repositoryUrl, int pullRequestId, ITfsCr
: base(repositoryUrl, pullRequestId, credentials)
{
}

/// <summary>
/// Initializes a new instance of the <see cref="TfsPullRequestSystemSettings"/> class
/// based on the instance of a <see cref="TfsPullRequestSettings"/> class.
/// </summary>
/// <param name="settings">Settings containing the parameters.</param>
public TfsPullRequestSystemSettings(TfsPullRequestSettings settings)
: base(settings)
{
}
}
}

0 comments on commit 9f43ae1

Please sign in to comment.