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/1.0.0'
Browse files Browse the repository at this point in the history
  • Loading branch information
pascalberger committed Jul 27, 2021
2 parents 3d83e6f + 9354f04 commit 123a195
Show file tree
Hide file tree
Showing 5 changed files with 16 additions and 14 deletions.
4 changes: 2 additions & 2 deletions nuspec/nuget/Cake.Issues.GitRepository.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,8 @@ See the Project Site for an overview of the whole ecosystem of addins for workin
<requireLicenseAcceptance>false</requireLicenseAcceptance>
<repository type="git" url="https://github.com/cake-contrib/Cake.Issues.GitRepository.git"/>
<copyright>Copyright © Pascal Berger</copyright>
<tags>Cake Script Cake-Issues Cake-IssueProvider CodeAnalysis Linting Git</tags>
<releaseNotes>https://github.com/cake-contrib/Cake.Issues.GitRepository/releases/tag/0.9.0</releaseNotes>
<tags>cake cake-addin cake-issues cake-issueprovider code-analysis linting git</tags>
<releaseNotes>https://github.com/cake-contrib/Cake.Issues.GitRepository/releases/tag/1.0.0</releaseNotes>
</metadata>
<files>
<file src="..\..\..\..\nuspec\nuget\icon.png" target="" />
Expand Down
Binary file modified nuspec/nuget/icon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
5 changes: 3 additions & 2 deletions recipe.cake
Original file line number Diff line number Diff line change
Expand Up @@ -7,13 +7,14 @@
Environment.SetVariableNames();

BuildParameters.SetParameters(
context: Context,
context: Context,
buildSystem: BuildSystem,
sourceDirectoryPath: "./src",
title: "Cake.Issues.GitRepository",
repositoryOwner: "cake-contrib",
repositoryName: "Cake.Issues.GitRepository",
appVeyorAccountName: "cakecontrib",
shouldPublishMyGet: false,
shouldRunGitVersion: true,
shouldRunCodecov: false,
shouldGenerateDocumentation: false,
Expand All @@ -25,7 +26,7 @@ BuildParameters.PrintParameters(Context);
ToolSettings.SetToolSettings(
context: Context,
dupFinderExcludePattern: new string[] { BuildParameters.RootDirectoryPath + "/src/Cake.Issues.GitRepository.Tests/*.cs" },
testCoverageFilter: "+[*]* -[xunit.*]* -[Cake.Core]* -[Cake.Testing]* -[*.Tests]* -[Cake.Issues]* -[Cake.Issues.Testing]* -[Shouldly]**",
testCoverageFilter: "+[*]* -[xunit.*]* -[Cake.Core]* -[Cake.Testing]* -[*.Tests]* -[Cake.Issues]* -[Cake.Issues.Testing]* -[Shouldly]* -[DiffEngine]* -[EmptyFiles]*",
testCoverageExcludeByAttribute: "*.ExcludeFromCodeCoverage*",
testCoverageExcludeByFile: "*/*Designer.cs;*/*.g.cs;*/*.g.i.cs");

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,27 +23,28 @@
</ItemGroup>
<ItemGroup>
<PackageReference Include="Cake.Issues">
<Version>0.9.0</Version>
<Version>1.0.0</Version>
</PackageReference>
<PackageReference Include="Cake.Issues.Testing">
<Version>0.9.0</Version>
<Version>1.0.0</Version>
</PackageReference>
<PackageReference Include="Cake.Testing">
<Version>0.33.0</Version>
<Version>1.0.0</Version>
</PackageReference>
<PackageReference Include="Shouldly">
<Version>3.0.2</Version>
<Version>4.0.3</Version>
</PackageReference>
<PackageReference Include="StyleCop.Analyzers">
<Version>1.1.118</Version>
<IncludeAssets>runtime; build; native; contentfiles; analyzers</IncludeAssets>
<PrivateAssets>all</PrivateAssets>
</PackageReference>
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="16.8.3" />
<PackageReference Include="xunit">
<Version>2.4.1</Version>
</PackageReference>
<PackageReference Include="xunit.runner.visualstudio">
<Version>2.4.1</Version>
<Version>2.4.3</Version>
<IncludeAssets>runtime; build; native; contentfiles; analyzers</IncludeAssets>
<PrivateAssets>all</PrivateAssets>
</PackageReference>
Expand Down
10 changes: 5 additions & 5 deletions src/Cake.Issues.GitRepository/Cake.Issues.GitRepository.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@
<PropertyGroup>
<DebugType>full</DebugType>
<DebugSymbols>true</DebugSymbols>
<AnalysisMode>AllEnabledByDefault</AnalysisMode>
<CodeAnalysisRuleSet>..\Cake.Issues.GitRepository.ruleset</CodeAnalysisRuleSet>
</PropertyGroup>

Expand All @@ -27,15 +28,14 @@

<ItemGroup>
<PackageReference Include="Cake.Core">
<Version>0.33.0</Version>
<Version>1.0.0</Version>
</PackageReference>
<PackageReference Include="Cake.Issues">
<Version>0.9.0</Version>
<Version>1.0.0</Version>
</PackageReference>
<PackageReference Include="Microsoft.CodeAnalysis.FxCopAnalyzers">
<Version>3.0.0</Version>
<IncludeAssets>runtime; build; native; contentfiles; analyzers</IncludeAssets>
<PackageReference Include="Microsoft.CodeAnalysis.NetAnalyzers" Version="5.0.3">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
<PackageReference Include="StyleCop.Analyzers">
<Version>1.1.118</Version>
Expand Down

0 comments on commit 123a195

Please sign in to comment.