Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[COLDFIX] Missing Usings #36

Merged
merged 1 commit into from
Dec 24, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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