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.9.1' into master
Browse files Browse the repository at this point in the history
  • Loading branch information
pascalberger committed Sep 18, 2020
2 parents 3eb87b3 + 58cb904 commit ea9042e
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 8 deletions.
2 changes: 1 addition & 1 deletion .github/CODEOWNERS
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
# These owners will be the default owners for everything in the repo and
# will be requested for review when someone opens a pull request.
* @cake-contrib/team-bbt @x-jokay
* @cake-contrib/team-cake-issues
1 change: 1 addition & 0 deletions recipe.cake
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ BuildParameters.SetParameters(
repositoryName: "Cake.Issues.PullRequests.AzureDevOps",
appVeyorAccountName: "cakecontrib",
shouldGenerateDocumentation: false,
shouldPublishMyGet: false,
shouldRunGitVersion: true,
shouldRunCodecov: false,
shouldRunDotNetCorePack: true);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,9 +24,9 @@
<PackageReference Include="NSubstitute" Version="4.2.2" />
<PackageReference Include="Shouldly" Version="3.0.2" />
<PackageReference Include="StyleCop.Analyzers" Version="1.1.118" />
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="16.6.1" />
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="16.7.1" />
<PackageReference Include="xunit" Version="2.4.1" />
<PackageReference Include="xunit.runner.visualstudio" Version="2.4.2" />
<PackageReference Include="xunit.runner.visualstudio" Version="2.4.3" />
</ItemGroup>

<ItemGroup>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -114,9 +114,9 @@ private static void AddCodeFlowProperties(

properties.Add("Microsoft.VisualStudio.Services.CodeReview.ItemPath", "/" + issue.AffectedFileRelativePath);
properties.Add("Microsoft.VisualStudio.Services.CodeReview.Right.StartLine", issue.Line);
properties.Add("Microsoft.VisualStudio.Services.CodeReview.Right.EndLine", issue.Line);
properties.Add("Microsoft.VisualStudio.Services.CodeReview.Right.StartOffset", 0);
properties.Add("Microsoft.VisualStudio.Services.CodeReview.Right.EndOffset", 1);
properties.Add("Microsoft.VisualStudio.Services.CodeReview.Right.EndLine", issue.EndLine ?? issue.Line);
properties.Add("Microsoft.VisualStudio.Services.CodeReview.Right.StartOffset", issue.Column ?? 0);
properties.Add("Microsoft.VisualStudio.Services.CodeReview.Right.EndOffset", issue.EndColumn ?? 1);
properties.Add("Microsoft.VisualStudio.Services.CodeReview.FirstComparingIteration", iterationId);
properties.Add("Microsoft.VisualStudio.Services.CodeReview.SecondComparingIteration", iterationId);
properties.Add("Microsoft.VisualStudio.Services.CodeReview.ChangeTrackingId", changeTrackingId);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ See the Project Site for an overview of the whole ecosystem of addins for workin
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<RepositoryType>git</RepositoryType>
<RepositoryUrl>https://github.com/cake-contrib/Cake.Issues.PullRequests.AzureDevOps.git</RepositoryUrl>
<PackageReleaseNotes>https://github.com/cake-contrib/Cake.Issues.PullRequests.AzureDevOps/releases/tag/0.9.0</PackageReleaseNotes>
<PackageReleaseNotes>https://github.com/cake-contrib/Cake.Issues.PullRequests.AzureDevOps/releases/tag/0.9.1</PackageReleaseNotes>
</PropertyGroup>

<PropertyGroup Condition="'$(Configuration)|$(TargetFramework)|$(Platform)'=='Debug|netstandard2.0|AnyCPU'">
Expand All @@ -46,7 +46,7 @@ See the Project Site for an overview of the whole ecosystem of addins for workin
<PackageReference Include="Cake.Issues" Version="0.9.0" PrivateAssets="All" />
<PackageReference Include="Cake.Issues.PullRequests" Version="0.9.0" PrivateAssets="All" />
<PackageReference Include="Cake.AzureDevOps" Version="0.5.0" PrivateAssets="All" />
<PackageReference Include="Microsoft.CodeAnalysis.FxCopAnalyzers" Version="3.0.0" PrivateAssets="All" />
<PackageReference Include="Microsoft.CodeAnalysis.FxCopAnalyzers" Version="3.3.0" PrivateAssets="All" />
<PackageReference Include="StyleCop.Analyzers" Version="1.1.118" PrivateAssets="All" />
</ItemGroup>

Expand Down

0 comments on commit ea9042e

Please sign in to comment.