Skip to content

Commit 48ffbaa

Browse files
committed
Renamed project and namespace to remove specific clan references
1 parent 86d6c31 commit 48ffbaa

28 files changed

+49
-333
lines changed
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,4 +12,4 @@ RUN dotnet publish -o out
1212
FROM mcr.microsoft.com/dotnet/runtime:8.0
1313
WORKDIR /App
1414
COPY --from=build /App/out .
15-
ENTRYPOINT ["dotnet", "WLL Tracker.dll"]
15+
ENTRYPOINT ["dotnet", "Dockhound.dll"]
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<PropertyGroup>
44
<OutputType>Exe</OutputType>
55
<TargetFramework>net8.0</TargetFramework>
6-
<RootNamespace>WLL_Tracker</RootNamespace>
6+
<RootNamespace>Dockhound</RootNamespace>
77
<ImplicitUsings>enable</ImplicitUsings>
88
<Nullable>enable</Nullable>
99
<UserSecretsId>67cb0263-c209-4a85-9055-b6e132b33062</UserSecretsId>
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
using System.Text;
55
using System.Threading.Tasks;
66

7-
namespace WLL_Tracker.Enums
7+
namespace Dockhound.Enums
88
{
99
public enum EnvironmentState
1010
{
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
using System.Text;
55
using System.Threading.Tasks;
66

7-
namespace WLL_Tracker.Enums
7+
namespace Dockhound.Enums
88
{
99
public enum Faction
1010
{
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
using System.Text;
55
using System.Threading.Tasks;
66

7-
namespace WLL_Tracker.Enums;
7+
namespace Dockhound.Enums;
88

99
public enum TrackerType
1010
{

WLL Tracker/Extensions/StringExtensions.cs renamed to Dockhound/Extensions/StringExtensions.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
using System.Text;
66
using System.Threading.Tasks;
77

8-
namespace WLL_Tracker.Extensions
8+
namespace Dockhound.Extensions
99
{
1010
public static class StringExtensions
1111
{
Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -14,13 +14,13 @@
1414
using System.Threading.Tasks;
1515
using System.Windows.Input;
1616
using System.Xml.XPath;
17-
using WLL_Tracker.Enums;
18-
using WLL_Tracker.Logs;
19-
using WLL_Tracker.Modals;
20-
using WLL_Tracker.Models;
17+
using Dockhound.Enums;
18+
using Dockhound.Logs;
19+
using Dockhound.Modals;
20+
using Dockhound.Models;
2121
using static Microsoft.AspNetCore.Hosting.Internal.HostingApplication;
2222

23-
namespace WLL_Tracker;
23+
namespace Dockhound;
2424

2525

2626
public class InteractionHandler

WLL Tracker/Migrations/20250301104302_InitialCreate.Designer.cs renamed to Dockhound/Migrations/20250301104302_InitialCreate.Designer.cs

Lines changed: 4 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

WLL Tracker/Migrations/20250301104302_InitialCreate.cs renamed to Dockhound/Migrations/20250301104302_InitialCreate.cs

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

44
#nullable disable
55

6-
namespace WLL_Tracker.Migrations
6+
namespace Dockhound.Migrations
77
{
88
/// <inheritdoc />
99
public partial class InitialCreate : Migration

WLL Tracker/Migrations/WllTrackerContextModelSnapshot.cs renamed to Dockhound/Migrations/WllTrackerContextModelSnapshot.cs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,11 @@
44
using Microsoft.EntityFrameworkCore.Infrastructure;
55
using Microsoft.EntityFrameworkCore.Metadata;
66
using Microsoft.EntityFrameworkCore.Storage.ValueConversion;
7-
using WLL_Tracker.Models;
7+
using Dockhound.Models;
88

99
#nullable disable
1010

11-
namespace WLL_Tracker.Migrations
11+
namespace Dockhound.Migrations
1212
{
1313
[DbContext(typeof(WllTrackerContext))]
1414
partial class WllTrackerContextModelSnapshot : ModelSnapshot
@@ -22,7 +22,7 @@ protected override void BuildModel(ModelBuilder modelBuilder)
2222

2323
SqlServerModelBuilderExtensions.UseIdentityColumns(modelBuilder);
2424

25-
modelBuilder.Entity("WLL_Tracker.Logs.LogError", b =>
25+
modelBuilder.Entity("Dockhound.Logs.LogError", b =>
2626
{
2727
b.Property<int>("Id")
2828
.ValueGeneratedOnAdd()
@@ -57,7 +57,7 @@ protected override void BuildModel(ModelBuilder modelBuilder)
5757
b.ToTable("LogErrors");
5858
});
5959

60-
modelBuilder.Entity("WLL_Tracker.Logs.LogEvent", b =>
60+
modelBuilder.Entity("Dockhound.Logs.LogEvent", b =>
6161
{
6262
b.Property<int>("Id")
6363
.ValueGeneratedOnAdd()

0 commit comments

Comments
 (0)