diff --git a/.github/workflows/publishDocs.yml b/.github/workflows/publishDocs.yml index e1d1004f..a2bea1cc 100644 --- a/.github/workflows/publishDocs.yml +++ b/.github/workflows/publishDocs.yml @@ -15,7 +15,7 @@ jobs: steps: - name: checkout - uses: actions/checkout@v2.3.4 #https://github.com/actions/checkout + uses: actions/checkout@v2 with: fetch-depth: 0 # GitVersion is somewhat irritated when fetch-depth is "1".... ref: ${{ github.event.ref }} @@ -27,7 +27,7 @@ jobs: key: ${{ runner.os }}-doc-tools-${{ hashFiles('recipe.cake') }} - name: Publishing documentaiton - uses: cake-build/cake-action@v1 + uses: cake-build/cake-action@v2 with: script-path: recipe.cake target: Force-Publish-Documentation diff --git a/.gitignore b/.gitignore index 744daad5..8636f286 100644 --- a/.gitignore +++ b/.gitignore @@ -53,3 +53,4 @@ config.wyam.* #Testresults [Tt]est[Rr]esults +.history/ diff --git a/README.md b/README.md index 5ee39b3b..d648db02 100644 --- a/README.md +++ b/README.md @@ -13,6 +13,7 @@ makes [asciidoctorj](https://github.com/asciidoctor/asciidoctorj) available as a - [Install](#install) - [Usage](#usage) +- [Discussion](#discussion) - [Maintainer](#maintainer) - [Contributing](#contributing) - [Contributors](#contributors) @@ -36,6 +37,11 @@ Task("MyTask").Does(() => { .WithDestinationDir(distDir)); }); ``` +## Discussion + +If you have questions, search for an existing one, or create a new discussion on the Cake GitHub repository, using the `extension-q-a` category. + +[![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) ## Maintainer diff --git a/src/Cake.AsciiDoctorJ.Tests/Cake.AsciiDoctorJ.Tests.csproj b/src/Cake.AsciiDoctorJ.Tests/Cake.AsciiDoctorJ.Tests.csproj index 85dfb0ec..bd575d4e 100644 --- a/src/Cake.AsciiDoctorJ.Tests/Cake.AsciiDoctorJ.Tests.csproj +++ b/src/Cake.AsciiDoctorJ.Tests/Cake.AsciiDoctorJ.Tests.csproj @@ -19,8 +19,8 @@ - - + + runtime; build; native; contentfiles; analyzers; buildtransitive all @@ -31,7 +31,7 @@ runtime; build; native; contentfiles; analyzers; buildtransitive all - + all runtime; build; native; contentfiles; analyzers; buildtransitive diff --git a/src/Cake.AsciiDoctorJ/Cake.AsciiDoctorJ.csproj b/src/Cake.AsciiDoctorJ/Cake.AsciiDoctorJ.csproj index 7b94a233..3ab71117 100644 --- a/src/Cake.AsciiDoctorJ/Cake.AsciiDoctorJ.csproj +++ b/src/Cake.AsciiDoctorJ/Cake.AsciiDoctorJ.csproj @@ -37,9 +37,9 @@ all runtime; build; native; contentfiles; analyzers; buildtransitive - + - + all runtime; build; native; contentfiles; analyzers; buildtransitive diff --git a/src/Cake.AsciiDoctorJ/Namespaces.cs b/src/Cake.AsciiDoctorJ/Namespaces.cs new file mode 100644 index 00000000..9dc2f60b --- /dev/null +++ b/src/Cake.AsciiDoctorJ/Namespaces.cs @@ -0,0 +1,24 @@ +using System.Runtime.CompilerServices; + +// This file enables generation of namespace documentation, +// see https://cakebuild.net/community/contributing/documentation#namespaces. +#pragma warning disable SA1403 // File may only contain a single namespace +#pragma warning disable SA1649 // File name should match first type name +#pragma warning disable SA1402 // File may only contain a single type + +// ReSharper disable UnusedMember.Global +// ReSharper disable UnusedType.Global +namespace Cake.AsciiDoctorJ +{ + /// + /// This namespace contain types related to running AsciiDoctorJ. + /// + [CompilerGenerated] + internal class NamespaceDoc + { + } +} + +#pragma warning restore SA1403 // File may only contain a single namespace +#pragma warning restore SA1649 // File name should match first type name +#pragma warning restore SA1402 // File may only contain a single type