Skip to content

Commit 10df2e7

Browse files
CopilotMalcolmnixon
andcommitted
Update namespaces: align RepoConnectors folder with DemaConsulting.BuildMark.RepoConnectors namespace
Co-authored-by: Malcolmnixon <1863707+Malcolmnixon@users.noreply.github.com>
1 parent 87f1b1b commit 10df2e7

File tree

11 files changed

+15
-6
lines changed

11 files changed

+15
-6
lines changed

src/DemaConsulting.BuildMark/Program.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@
1919
// SOFTWARE.
2020

2121
using System.Reflection;
22+
using DemaConsulting.BuildMark.RepoConnectors;
2223

2324
namespace DemaConsulting.BuildMark;
2425

src/DemaConsulting.BuildMark/RepoConnectors/GitHubRepoConnector.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020

2121
using Octokit;
2222

23-
namespace DemaConsulting.BuildMark;
23+
namespace DemaConsulting.BuildMark.RepoConnectors;
2424

2525
/// <summary>
2626
/// GitHub repository connector implementation using Octokit.Net.

src/DemaConsulting.BuildMark/RepoConnectors/IRepoConnector.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
1919
// SOFTWARE.
2020

21-
namespace DemaConsulting.BuildMark;
21+
namespace DemaConsulting.BuildMark.RepoConnectors;
2222

2323
/// <summary>
2424
/// Interface for repository connectors that fetch repository information.

src/DemaConsulting.BuildMark/RepoConnectors/MockRepoConnector.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
1919
// SOFTWARE.
2020

21-
namespace DemaConsulting.BuildMark;
21+
namespace DemaConsulting.BuildMark.RepoConnectors;
2222

2323
/// <summary>
2424
/// Mock repository connector for deterministic testing.

src/DemaConsulting.BuildMark/RepoConnectors/ProcessRunner.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
using System.Diagnostics;
2222
using System.Text;
2323

24-
namespace DemaConsulting.BuildMark;
24+
namespace DemaConsulting.BuildMark.RepoConnectors;
2525

2626
/// <summary>
2727
/// Helper class for running external processes and capturing output.

src/DemaConsulting.BuildMark/RepoConnectors/RepoConnectorBase.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
1919
// SOFTWARE.
2020

21-
namespace DemaConsulting.BuildMark;
21+
namespace DemaConsulting.BuildMark.RepoConnectors;
2222

2323
/// <summary>
2424
/// Base class for repository connectors with common functionality.

src/DemaConsulting.BuildMark/RepoConnectors/RepoConnectorFactory.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
1919
// SOFTWARE.
2020

21-
namespace DemaConsulting.BuildMark;
21+
namespace DemaConsulting.BuildMark.RepoConnectors;
2222

2323
/// <summary>
2424
/// Factory for creating repository connector instances.

test/DemaConsulting.BuildMark.Tests/BuildInformationTests.cs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,8 @@
1818
// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
1919
// SOFTWARE.
2020

21+
using DemaConsulting.BuildMark.RepoConnectors;
22+
2123
namespace DemaConsulting.BuildMark.Tests;
2224

2325
/// <summary>

test/DemaConsulting.BuildMark.Tests/GitHubRepoConnectorTests.cs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,8 @@
1818
// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
1919
// SOFTWARE.
2020

21+
using DemaConsulting.BuildMark.RepoConnectors;
22+
2123
namespace DemaConsulting.BuildMark.Tests;
2224

2325
/// <summary>

test/DemaConsulting.BuildMark.Tests/MockRepoConnectorTests.cs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,8 @@
1818
// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
1919
// SOFTWARE.
2020

21+
using DemaConsulting.BuildMark.RepoConnectors;
22+
2123
namespace DemaConsulting.BuildMark.Tests;
2224

2325
/// <summary>

0 commit comments

Comments
 (0)