Skip to content

Commit

Permalink
Merge branch 'release/0.3.0'
Browse files Browse the repository at this point in the history
  • Loading branch information
pascalberger committed Jun 3, 2018
2 parents 29960f1 + 39505c7 commit 47d4ad0
Show file tree
Hide file tree
Showing 18 changed files with 2,178 additions and 1,002 deletions.
2 changes: 1 addition & 1 deletion nuspec/nuget/Cake.Issues.Testing.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ Common helpers for testing add-ins based on Cake.Issues
<requireLicenseAcceptance>false</requireLicenseAcceptance>
<copyright>Copyright © BBT Software AG and contributors</copyright>
<tags>Cake Script Cake-Issues Issues Testing</tags>
<releaseNotes>https://github.com/cake-contrib/Cake.Issues/releases/tag/0.2.0</releaseNotes>
<releaseNotes>https://github.com/cake-contrib/Cake.Issues/releases/tag/0.3.0</releaseNotes>
</metadata>
<files>
<file src="netstandard2.0\Cake.Issues.Testing.dll" target="lib\netstandard2.0" />
Expand Down
2 changes: 1 addition & 1 deletion nuspec/nuget/Cake.Issues.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
<requireLicenseAcceptance>false</requireLicenseAcceptance>
<copyright>Copyright © BBT Software AG and contributors</copyright>
<tags>Cake Script Cake-Issues CodeAnalysis Linting Issues</tags>
<releaseNotes>https://github.com/cake-contrib/Cake.Issues/releases/tag/0.2.0</releaseNotes>
<releaseNotes>https://github.com/cake-contrib/Cake.Issues/releases/tag/0.3.0</releaseNotes>
</metadata>
<files>
<file src="netstandard2.0\Cake.Issues.dll" target="lib\netstandard2.0" />
Expand Down
2 changes: 1 addition & 1 deletion src/Cake.Issues.Testing/Cake.Issues.Testing.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
</PropertyGroup>

<ItemGroup>
<PackageReference Include="Cake.Core" Version="0.26.0" />
<PackageReference Include="Cake.Core" Version="0.28.0" />
<PackageReference Include="Microsoft.CodeAnalysis.FxCopAnalyzers" Version="2.6.0" />
<PackageReference Include="StyleCop.Analyzers" Version="1.0.2" />
<PackageReference Include="xunit.assert" Version="2.3.1" />
Expand Down
3 changes: 3 additions & 0 deletions src/Cake.Issues.Testing/FakeIssueProvider.cs
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,9 @@ public FakeIssueProvider(ICakeLog log, IEnumerable<IIssue> issues)
/// </summary>
public IssueCommentFormat Format { get; private set; }

/// <inheritdoc/>
public override string ProviderName => "Fake Issue Provider";

/// <inheritdoc/>
protected override IEnumerable<IIssue> InternalReadIssues(IssueCommentFormat format)
{
Expand Down
6 changes: 3 additions & 3 deletions src/Cake.Issues.Tests/Cake.Issues.Tests.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,9 @@
</PropertyGroup>

<ItemGroup>
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="15.6.0" />
<PackageReference Include="Cake.Core" Version="0.26.0" />
<PackageReference Include="Cake.Testing" Version="0.26.0" />
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="15.7.2" />
<PackageReference Include="Cake.Core" Version="0.28.0" />
<PackageReference Include="Cake.Testing" Version="0.28.0" />
<PackageReference Include="Shouldly" Version="3.0.0" />
<PackageReference Include="StyleCop.Analyzers" Version="1.0.2" />
<PackageReference Include="xunit" Version="2.3.1" />
Expand Down
12 changes: 12 additions & 0 deletions src/Cake.Issues.Tests/IssueBuilderFixture.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
namespace Cake.Issues.Tests
{
public class IssueBuilderFixture
{
public IssueBuilderFixture()
{
this.IssueBuilder = IssueBuilder.NewIssue("Message", "ProviderType", "ProviderName");
}

public IssueBuilder IssueBuilder { get; private set; }
}
}
Loading

0 comments on commit 47d4ad0

Please sign in to comment.