Skip to content

Commit 076724b

Browse files
committed
chore: Update namespaces to match new org
1 parent 0381bb6 commit 076724b

14 files changed

+13
-17
lines changed

TraceableLdapClient.slnx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,9 @@
55
<Project Path="example/WorkerService/WorkerService.csproj" />
66
</Folder>
77
<Folder Name="/src/">
8-
<Project Path="src/TraceableLdapClient/TraceableLdapClient.csproj" />
8+
<Project Path="src/AlbusKavaliro.TraceableLdapClient/AlbusKavaliro.TraceableLdapClient.csproj" />
99
</Folder>
1010
<Folder Name="/tests/">
11-
<Project Path="tests/TraceableLdapClient.Tests/TraceableLdapClient.Tests.csproj" />
11+
<Project Path="tests/AlbusKavaliro.TraceableLdapClient.Tests/AlbusKavaliro.TraceableLdapClient.Tests.csproj" />
1212
</Folder>
1313
</Solution>

example/WorkerService/Program.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
using System.DirectoryServices.Protocols;
22
using System.Net;
3-
using TraceableLdapClient;
3+
using AlbusKavaliro.TraceableLdapClient;
44
using WorkerService;
55

66
HostApplicationBuilder builder = Host.CreateApplicationBuilder(args);

example/WorkerService/Worker.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
using System.DirectoryServices.Protocols;
2-
using TraceableLdapClient;
2+
using AlbusKavaliro.TraceableLdapClient;
33

44
namespace WorkerService;
55

example/WorkerService/WorkerService.csproj

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@
88
<PackageReference Include="Microsoft.Extensions.Hosting" />
99
</ItemGroup>
1010

11-
<ItemGroup>
12-
<ProjectReference Include="../../src/TraceableLdapClient/TraceableLdapClient.csproj" />
13-
<ProjectReference Include="../ServiceDefaults/ServiceDefaults.csproj" />
11+
<ItemGroup>
12+
<ProjectReference Include="../../src/AlbusKavaliro.TraceableLdapClient/AlbusKavaliro.TraceableLdapClient.csproj" />
13+
<ProjectReference Include="../ServiceDefaults/ServiceDefaults.csproj" />
1414
</ItemGroup>
1515
</Project>

src/TraceableLdapClient/TraceableLdapClient.csproj renamed to src/AlbusKavaliro.TraceableLdapClient/AlbusKavaliro.TraceableLdapClient.csproj

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,5 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22

3-
<PropertyGroup>
4-
<PackageId>AlbusKavaliro.TraceableLdapClient</PackageId>
5-
</PropertyGroup>
6-
73
<ItemGroup Label="Microsoft">
84
<PackageReference Include="System.DirectoryServices.Protocols" />
95
</ItemGroup>

src/TraceableLdapClient/ILdapConnection.cs renamed to src/AlbusKavaliro.TraceableLdapClient/ILdapConnection.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
using System.Net;
33
using System.Security.Cryptography.X509Certificates;
44

5-
namespace TraceableLdapClient;
5+
namespace AlbusKavaliro.TraceableLdapClient;
66

77
/// <inheritdoc cref="LdapConnection"/>
88
public interface ILdapConnection : IDisposable

src/TraceableLdapClient/TraceableLdapConnection.cs renamed to src/AlbusKavaliro.TraceableLdapClient/TraceableLdapConnection.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
using System.Net;
55
using System.Security.Cryptography.X509Certificates;
66

7-
namespace TraceableLdapClient;
7+
namespace AlbusKavaliro.TraceableLdapClient;
88

99
public class TraceableLdapConnection : ILdapConnection
1010
{
File renamed without changes.
File renamed without changes.

tests/TraceableLdapClient.Tests/TraceableLdapClient.Tests.csproj renamed to tests/AlbusKavaliro.TraceableLdapClient.Tests/AlbusKavaliro.TraceableLdapClient.Tests.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,6 @@
1010
<PackageReference Include="Testcontainers" />
1111
</ItemGroup>
1212
<ItemGroup>
13-
<ProjectReference Include="../../src/TraceableLdapClient/TraceableLdapClient.csproj" />
13+
<ProjectReference Include="../../src/AlbusKavaliro.TraceableLdapClient/AlbusKavaliro.TraceableLdapClient.csproj" />
1414
</ItemGroup>
1515
</Project>

0 commit comments

Comments
 (0)