-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
6 changed files
with
38 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -53,3 +53,4 @@ config.wyam.* | |
|
||
#Testresults | ||
[Tt]est[Rr]esults | ||
.history/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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 | ||
{ | ||
/// <summary> | ||
/// This namespace contain types related to running AsciiDoctorJ. | ||
/// </summary> | ||
[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 |