Skip to content
This repository was archived by the owner on Dec 25, 2023. It is now read-only.

Commit f3a90f7

Browse files
committed
Merge branch 'release/1.0.0'
2 parents 645405b + c5e34bb commit f3a90f7

File tree

7 files changed

+21
-16
lines changed

7 files changed

+21
-16
lines changed

.github/CODEOWNERS

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
# These owners will be the default owners for everything in the repo and
22
# will be requested for review when someone opens a pull request.
3-
* @cake-contrib/team-bbt @x-jokay
3+
* @cake-contrib/team-cake-issues

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -30,11 +30,11 @@ and for general information about the Cake build automation system see the [Cake
3030

3131
- [Documentation](https://cakeissues.net)
3232

33-
## Chat Room
33+
## Discussion
3434

35-
Come join in the conversation about this addin in our Gitter Chat Room.
35+
For questions and to discuss ideas & feature requests, use the [GitHub discussions on the Cake GitHub repository](https://github.com/cake-build/cake/discussions), under the [Extension Q&A](https://github.com/cake-build/cake/discussions/categories/extension-q-a) category.
3636

37-
[![Join the chat at https://gitter.im/cake-contrib/Lobby](https://badges.gitter.im/cake-contrib/Lobby.svg)](https://gitter.im/cake-contrib/Lobby?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)
37+
[![Join in the discussion on the Cake repository](https://img.shields.io/badge/GitHub-Discussions-green?logo=github)](https://github.com/cake-build/cake/discussions)
3838

3939
## Contributing
4040

nuspec/nuget/Cake.Issues.InspectCode.nuspec

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,8 @@ See the Project Site for an overview of the whole ecosystem of addins for workin
2323
<requireLicenseAcceptance>false</requireLicenseAcceptance>
2424
<repository type="git" url="https://github.com/cake-contrib/Cake.Issues.InspectCode.git"/>
2525
<copyright>Copyright © BBT Software AG and contributors</copyright>
26-
<tags>Cake Script Cake-Issues Cake-IssueProvider CodeAnalysis Linting InspectCode</tags>
27-
<releaseNotes>https://github.com/cake-contrib/Cake.Issues.InspectCode/releases/tag/0.9.0</releaseNotes>
26+
<tags>cake cake-addin cake-issues cake-issueprovider codeanalysis linting inspectcode</tags>
27+
<releaseNotes>https://github.com/cake-contrib/Cake.Issues.InspectCode/releases/tag/1.0.0</releaseNotes>
2828
</metadata>
2929
<files>
3030
<file src="..\..\..\..\nuspec\nuget\icon.png" target="" />

nuspec/nuget/icon.png

313 Bytes
Loading

recipe.cake

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ BuildParameters.SetParameters(
1111
repositoryName: "Cake.Issues.InspectCode",
1212
appVeyorAccountName: "cakecontrib",
1313
shouldGenerateDocumentation: false,
14+
shouldPublishMyGet: false,
1415
shouldRunCodecov: false,
1516
shouldRunGitVersion: true);
1617

@@ -23,7 +24,7 @@ ToolSettings.SetToolSettings(
2324
BuildParameters.RootDirectoryPath + "/src/Cake.Issues.InspectCode*/**/*.AssemblyInfo.cs",
2425
BuildParameters.RootDirectoryPath + "/src/Cake.Issues.InspectCode.Tests/**/*.cs"
2526
},
26-
testCoverageFilter: "+[*]* -[xunit.*]* -[Cake.Core]* -[Cake.Testing]* -[*.Tests]* -[Cake.Issues]* -[Cake.Issues.Testing]* -[Shouldly]*",
27+
testCoverageFilter: "+[*]* -[xunit.*]* -[Cake.Core]* -[Cake.Testing]* -[*.Tests]* -[Cake.Issues]* -[Cake.Issues.Testing]* -[Shouldly]* -[DiffEngine]* -[EmptyFiles]*",
2728
testCoverageExcludeByAttribute: "*.ExcludeFromCodeCoverage*",
2829
testCoverageExcludeByFile: "*/*Designer.cs;*/*.g.cs;*/*.g.i.cs");
2930

src/Cake.Issues.InspectCode.Tests/Cake.Issues.InspectCode.Tests.csproj

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -31,17 +31,17 @@
3131
</ItemGroup>
3232

3333
<ItemGroup>
34-
<PackageReference Include="Cake.Issues" Version="0.9.0" />
35-
<PackageReference Include="Cake.Issues.Testing" Version="0.9.0" />
36-
<PackageReference Include="Cake.Testing" Version="0.33.0" />
37-
<PackageReference Include="Shouldly" Version="3.0.2" />
34+
<PackageReference Include="Cake.Issues" Version="1.0.0" />
35+
<PackageReference Include="Cake.Issues.Testing" Version="1.0.0" />
36+
<PackageReference Include="Cake.Testing" Version="1.0.0" />
37+
<PackageReference Include="Shouldly" Version="4.0.3" />
3838
<PackageReference Include="StyleCop.Analyzers" Version="1.1.118">
3939
<PrivateAssets>all</PrivateAssets>
4040
<IncludeAssets>runtime; build; native; contentfiles; analyzers</IncludeAssets>
4141
</PackageReference>
4242
<PackageReference Include="xunit" Version="2.4.1" />
43-
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="16.6.1" />
44-
<PackageReference Include="xunit.runner.visualstudio" Version="2.4.2">
43+
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="16.9.1" />
44+
<PackageReference Include="xunit.runner.visualstudio" Version="2.4.3">
4545
<PrivateAssets>all</PrivateAssets>
4646
<IncludeAssets>runtime; build; native; contentfiles; analyzers</IncludeAssets>
4747
</PackageReference>

src/Cake.Issues.InspectCode/Cake.Issues.InspectCode.csproj

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@
1010
</PropertyGroup>
1111

1212
<PropertyGroup>
13+
<AnalysisMode>AllEnabledByDefault</AnalysisMode>
1314
<CodeAnalysisRuleSet>..\Cake.Issues.InspectCode.ruleset</CodeAnalysisRuleSet>
1415
</PropertyGroup>
1516

@@ -22,9 +23,12 @@
2223
</PropertyGroup>
2324

2425
<ItemGroup>
25-
<PackageReference Include="Cake.Core" Version="0.33.0" />
26-
<PackageReference Include="Cake.Issues" Version="0.9.0" />
27-
<PackageReference Include="Microsoft.CodeAnalysis.FxCopAnalyzers" Version="3.0.0" />
26+
<PackageReference Include="Cake.Core" Version="1.0.0" />
27+
<PackageReference Include="Cake.Issues" Version="1.0.0" />
28+
<PackageReference Include="Microsoft.CodeAnalysis.NetAnalyzers" Version="5.0.3">
29+
<PrivateAssets>all</PrivateAssets>
30+
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
31+
</PackageReference>
2832
<PackageReference Include="StyleCop.Analyzers" Version="1.1.118">
2933
<PrivateAssets>all</PrivateAssets>
3034
<IncludeAssets>runtime; build; native; contentfiles; analyzers</IncludeAssets>

0 commit comments

Comments
 (0)