Skip to content

Commit

Permalink
fix namespaces
Browse files Browse the repository at this point in the history
  • Loading branch information
AnakinRaW committed May 26, 2024
1 parent 8cdd11b commit d38ac41
Show file tree
Hide file tree
Showing 6 changed files with 9 additions and 7 deletions.
4 changes: 2 additions & 2 deletions src/ModVerify/GameVerificationException.cs
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
using System;
using System.Collections.Generic;
using System.Text;
using AET.ModVerify.Steps;
using AnakinRaW.CommonUtilities.SimplePipeline;
using RepublicAtWar.DevLauncher.Petroglyph.Verification.Steps;

namespace RepublicAtWar.DevLauncher.Petroglyph.Verification;
namespace AET.ModVerify;

public sealed class GameVerificationException(IEnumerable<GameVerificationStep> failedSteps) : Exception
{
Expand Down
1 change: 1 addition & 0 deletions src/ModVerify/ModVerify.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
<Title>AET.ModVerify</Title>
<Product>AET.ModVerify</Product>
<PackageId>AlamoEngineTools.ModVerify</PackageId>
<RootNamespace>AET.ModVerify</RootNamespace>
<PackageTags>alamo,petroglyph,glyphx</PackageTags>
</PropertyGroup>

Expand Down
2 changes: 1 addition & 1 deletion src/ModVerify/Steps/GameVerificationStep.cs
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
using PG.StarWarsGame.Engine.FileSystem;
using PG.StarWarsGame.Engine.Pipeline;

namespace RepublicAtWar.DevLauncher.Petroglyph.Verification.Steps;
namespace AET.ModVerify.Steps;

public abstract class GameVerificationStep(CreateGameDatabaseStep createDatabaseStep, IGameRepository repository, IServiceProvider serviceProvider)
: PipelineStep(serviceProvider)
Expand Down
3 changes: 2 additions & 1 deletion src/ModVerify/Steps/VerifyReferencedModelsStep.cs
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,8 @@
using PG.StarWarsGame.Files.ALO.Files.Particles;
using PG.StarWarsGame.Files.ALO.Services;
using PG.StarWarsGame.Files.ChunkFiles.Data;
namespace RepublicAtWar.DevLauncher.Petroglyph.Verification.Steps;

namespace AET.ModVerify.Steps;

internal class VerifyReferencedModelsStep(CreateGameDatabaseStep createDatabaseStep, IGameRepository repository, IServiceProvider serviceProvider)
: GameVerificationStep(createDatabaseStep, repository, serviceProvider)
Expand Down
2 changes: 1 addition & 1 deletion src/ModVerify/VerificationError.cs
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
using System;
using AnakinRaW.CommonUtilities;

namespace RepublicAtWar.DevLauncher.Petroglyph.Verification;
namespace AET.ModVerify;

public class VerificationError
{
Expand Down
4 changes: 2 additions & 2 deletions src/ModVerify/VerifyPipeline.cs
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,12 @@
using System.Linq;
using System.Threading;
using System.Threading.Tasks;
using AET.ModVerify.Steps;
using AnakinRaW.CommonUtilities.SimplePipeline;
using PG.StarWarsGame.Engine.FileSystem;
using PG.StarWarsGame.Engine.Pipeline;
using RepublicAtWar.DevLauncher.Petroglyph.Verification.Steps;

namespace RepublicAtWar.DevLauncher.Petroglyph.Verification;
namespace AET.ModVerify;

public class VerifyFocPipeline(IList<string> modDirectories, string gameDirectory, string fallbackGameDirectory, IServiceProvider serviceProvider)
: ParallelPipeline(serviceProvider, 4, false)
Expand Down

0 comments on commit d38ac41

Please sign in to comment.