Skip to content

Commit 29d2aa0

Browse files
committed
Make comments more consistent
1 parent 684ca38 commit 29d2aa0

1,034 files changed

Lines changed: 5296 additions & 5296 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

Build/Context.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ namespace DotNetNuke.Build
1515
using Cake.Frosting;
1616
using Cake.Json;
1717

18-
/// <inheritdoc/>
18+
/// <inheritdoc />
1919
public class Context : FrostingContext
2020
{
2121
/// <summary>Initializes a new instance of the <see cref="Context"/> class.</summary>

Build/Lifetime.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,12 +10,12 @@ namespace DotNetNuke.Build
1010
using Cake.Core.IO;
1111
using Cake.Frosting;
1212

13-
/// <inheritdoc/>
13+
/// <inheritdoc />
1414
public sealed class Lifetime : FrostingLifetime<Context>
1515
{
1616
private static readonly string[] CorepackToolNames = ["corepack", "corepack.cmd",];
1717

18-
/// <inheritdoc/>
18+
/// <inheritdoc />
1919
public override void Setup(Context context, ISetupContext info)
2020
{
2121
context.IsRunningInCI = context.HasEnvironmentVariable("TF_BUILD");
@@ -33,7 +33,7 @@ public override void Setup(Context context, ISetupContext info)
3333
}
3434
}
3535

36-
/// <inheritdoc/>
36+
/// <inheritdoc />
3737
public override void Teardown(Context context, ITeardownContext info)
3838
{
3939
if (context.Settings.Version == "auto" && !context.IsRunningInCI)

Build/Tasks/Build.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ namespace DotNetNuke.Build.Tasks
2323
[IsDependentOn(typeof(BuildNpmPackages))]
2424
public sealed class Build : FrostingTask<Context>
2525
{
26-
/// <inheritdoc/>
26+
/// <inheritdoc />
2727
public override void Run(Context context)
2828
{
2929
var cleanLog = context.ArtifactsDir.Path.CombineWithFilePath("clean.binlog");

Build/Tasks/BuildAll.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ namespace DotNetNuke.Build.Tasks
1919
[IsDependentOn(typeof(GeneratePackagesChecksums))]
2020
public sealed class BuildAll : FrostingTask<Context>
2121
{
22-
/// <inheritdoc/>
22+
/// <inheritdoc />
2323
public override void Run(Context context)
2424
{
2525
RevertSqlDataProvider(context);

Build/Tasks/BuildNpmPackages.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ namespace DotNetNuke.Build.Tasks
1212
/// <summary>Builds the npm packages for the entire solution.</summary>
1313
public sealed class BuildNpmPackages : FrostingTask<Context>
1414
{
15-
/// <inheritdoc/>
15+
/// <inheritdoc />
1616
public override void Run(Context context)
1717
{
1818
var corepackCommand = new CommandSettings

Build/Tasks/BuildServerSetVersion.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ namespace DotNetNuke.Build.Tasks
1212
[IsDependentOn(typeof(SetVersion))]
1313
public sealed class BuildServerSetVersion : FrostingTask<Context>
1414
{
15-
/// <inheritdoc/>
15+
/// <inheritdoc />
1616
public override void Run(Context context)
1717
{
1818
Console.WriteLine($"##vso[build.updatebuildnumber]{context.Version.FullSemVer}.{context.BuildId}");

Build/Tasks/BuildToTempFolder.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ public sealed class BuildToTempFolder : FrostingTask<Context>
1818
{
1919
private static readonly string[] SampleModuleArtifactsPattern = ["SampleModules/*.zip",];
2020

21-
/// <inheritdoc/>
21+
/// <inheritdoc />
2222
public override void Run(Context context)
2323
{
2424
if (context.Settings.CopySampleProjects)

Build/Tasks/CleanArtifacts.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ namespace DotNetNuke.Build.Tasks
1414
/// <summary>A cake task to clean the artifacts directory.</summary>
1515
public sealed class CleanArtifacts : FrostingTask<Context>
1616
{
17-
/// <inheritdoc/>
17+
/// <inheritdoc />
1818
public override void Run(Context context)
1919
{
2020
context.CleanDirectory(context.ArtifactsDir);

Build/Tasks/CleanTemp.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ namespace DotNetNuke.Build.Tasks
1414
/// <summary>A cake task to clean the temp directory.</summary>
1515
public sealed class CleanTemp : FrostingTask<Context>
1616
{
17-
/// <inheritdoc/>
17+
/// <inheritdoc />
1818
public override void Run(Context context)
1919
{
2020
context.CleanDirectory(context.TempDir);

Build/Tasks/CleanWebsite.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ namespace DotNetNuke.Build.Tasks
1414
/// <summary>A cake task to clean the website directory.</summary>
1515
public sealed class CleanWebsite : FrostingTask<Context>
1616
{
17-
/// <inheritdoc/>
17+
/// <inheritdoc />
1818
public override void Run(Context context)
1919
{
2020
context.CleanDirectory(context.WebsiteDir);

0 commit comments

Comments
 (0)