Skip to content

Commit

Permalink
Fixed missing usings (#36)
Browse files Browse the repository at this point in the history
  • Loading branch information
candoumbe authored Dec 24, 2022
1 parent 62ee1f3 commit 20f32f4
Show file tree
Hide file tree
Showing 3 changed files with 19 additions and 3 deletions.
6 changes: 5 additions & 1 deletion src/Candoumbe.Pipelines/Components/Configuration.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,8 @@
namespace Candoumbe.Pipelines.Components
using Nuke.Common.Tooling;

using System.ComponentModel;

namespace Candoumbe.Pipelines.Components
{
/// <summary>
/// Configuration that can be used to compile an application
Expand Down
12 changes: 11 additions & 1 deletion src/Candoumbe.Pipelines/Components/IBenchmark.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,14 @@
namespace Candoumbe.Pipelines.Components;
using Nuke.Common;
using Nuke.Common.IO;
using Nuke.Common.ProjectModel;
using Nuke.Common.Tooling;
using Nuke.Common.Tools.DotNet;

using System.Collections.Generic;

using static Nuke.Common.Tools.DotNet.DotNetTasks;

namespace Candoumbe.Pipelines.Components;

/// <summary>
/// Defines a directory to store benchmarks result
Expand Down
4 changes: 3 additions & 1 deletion src/Candoumbe.Pipelines/Components/IHaveConfiguration.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
namespace Candoumbe.Pipelines.Components;
using Nuke.Common;

namespace Candoumbe.Pipelines.Components;

/// <summary>
/// Marks a pipeline that offers configuration support.
Expand Down

0 comments on commit 20f32f4

Please sign in to comment.