Skip to content

Commit 4773a6f

Browse files
committed
Updated namespaces
1 parent abfe189 commit 4773a6f

File tree

13 files changed

+24
-24
lines changed

13 files changed

+24
-24
lines changed

src/CodeUpdater/CodeUpdater/CodeUpdater.csproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@
77
<Nullable>enable</Nullable>
88
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
99
<LangVersion>latest</LangVersion>
10-
<RootNamespace>ProgrammerAL.CodeUpdater</RootNamespace>
11-
<AssemblyName>ProgrammerAL.CodeUpdater</AssemblyName>
10+
<RootNamespace>ProgrammerAL.Tools.CodeUpdater</RootNamespace>
11+
<AssemblyName>ProgrammerAL.Tools.CodeUpdater</AssemblyName>
1212
</PropertyGroup>
1313

1414
<ItemGroup>

src/CodeUpdater/CodeUpdater/CompileRunner.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,11 +6,11 @@
66
using System.Text;
77
using System.Threading.Tasks;
88

9-
using ProgrammerAL.CodeUpdater.Helpers;
9+
using ProgrammerAL.Tools.CodeUpdater.Helpers;
1010

1111
using Serilog;
1212

13-
namespace ProgrammerAL.CodeUpdater;
13+
namespace ProgrammerAL.Tools.CodeUpdater;
1414
public class CompileRunner(ILogger Logger, IRunProcessHelper RunProcessHelper)
1515
{
1616
public async ValueTask<CompileResults> CompileProjectsAsync(UpdateWork updateWork, string npmBuildCommand)

src/CodeUpdater/CodeUpdater/Helpers/RunProcessHelper.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,9 @@
88
using Serilog;
99

1010
using ProgrammerAl.SourceGenerators.PublicInterfaceGenerator.Attributes;
11-
using static ProgrammerAL.CodeUpdater.Helpers.RunProcessHelper;
11+
using static ProgrammerAL.Tools.CodeUpdater.Helpers.RunProcessHelper;
1212

13-
namespace ProgrammerAL.CodeUpdater.Helpers;
13+
namespace ProgrammerAL.Tools.CodeUpdater.Helpers;
1414

1515
[GenerateInterface]
1616
public class RunProcessHelper(ILogger Logger) : IRunProcessHelper

src/CodeUpdater/CodeUpdater/Options/CommandOptions.cs

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

99
using CommandLine;
1010

11-
namespace ProgrammerAL.CodeUpdater.Options;
11+
namespace ProgrammerAL.Tools.CodeUpdater.Options;
1212
public class CommandOptions
1313
{
1414
[Option(shortName: 'c', longName: "config-file", Required = true, HelpText = "Path to the file to use for config values when updating code")]

src/CodeUpdater/CodeUpdater/Options/UpdateOptions.cs

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

10-
namespace ProgrammerAL.CodeUpdater;
10+
namespace ProgrammerAL.Tools.CodeUpdater;
1111
public class UpdateOptions
1212
{
1313
/// <summary>

src/CodeUpdater/CodeUpdater/PreRunValidator.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,11 +7,11 @@
77
using System.Text.Json;
88
using System.Threading.Tasks;
99

10-
using ProgrammerAL.CodeUpdater.Helpers;
10+
using ProgrammerAL.Tools.CodeUpdater.Helpers;
1111

1212
using Serilog;
1313

14-
namespace ProgrammerAL.CodeUpdater;
14+
namespace ProgrammerAL.Tools.CodeUpdater;
1515
public class PreRunValidator(ILogger Logger, IRunProcessHelper RunProcessHelper)
1616
{
1717
public async ValueTask<bool> VerifyCanRunAsync(UpdateWork updateWork)

src/CodeUpdater/CodeUpdater/Program.cs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,10 +7,10 @@
77

88
using CommandLine;
99

10-
using ProgrammerAL.CodeUpdater;
11-
using ProgrammerAL.CodeUpdater.Helpers;
12-
using ProgrammerAL.CodeUpdater.Options;
13-
using ProgrammerAL.CodeUpdater.Updaters;
10+
using ProgrammerAL.Tools.CodeUpdater;
11+
using ProgrammerAL.Tools.CodeUpdater.Helpers;
12+
using ProgrammerAL.Tools.CodeUpdater.Options;
13+
using ProgrammerAL.Tools.CodeUpdater.Updaters;
1414

1515
using Serilog;
1616

src/CodeUpdater/CodeUpdater/Results.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 ProgrammerAL.CodeUpdater;
8+
namespace ProgrammerAL.Tools.CodeUpdater;
99

1010
public record CSharpUpdateResult(string CsprojFile, NugetUpdateResults NugetUpdates, CsprojValueUpdateResultType LangVersionUpdate, CsprojValueUpdateResultType TargetFrameworkUpdate);
1111

src/CodeUpdater/CodeUpdater/Updaters/CSharpUpdater.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,12 @@
33
using System.Collections.Immutable;
44
using System.Linq;
55

6-
using ProgrammerAL.CodeUpdater.Helpers;
7-
using ProgrammerAL.CodeUpdater.Options;
6+
using ProgrammerAL.Tools.CodeUpdater.Helpers;
7+
using ProgrammerAL.Tools.CodeUpdater.Options;
88

99
using Serilog;
1010

11-
namespace ProgrammerAL.CodeUpdater.Updaters;
11+
namespace ProgrammerAL.Tools.CodeUpdater.Updaters;
1212

1313
public class CSharpUpdater
1414
{

src/CodeUpdater/CodeUpdater/Updaters/CsProjUpdater.cs

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

99
using Serilog;
1010

11-
namespace ProgrammerAL.CodeUpdater.Updaters;
11+
namespace ProgrammerAL.Tools.CodeUpdater.Updaters;
1212

1313
public class CsProjUpdater(ILogger Logger, UpdateOptions UpdateOptions)
1414
{

0 commit comments

Comments
 (0)