Skip to content

Commit

Permalink
Fix up namespaces in Redpoint.Uet.BuildPipeline.Providers.Deployment (#…
Browse files Browse the repository at this point in the history
  • Loading branch information
hach-que authored Dec 2, 2024
1 parent e241648 commit 427f19c
Show file tree
Hide file tree
Showing 9 changed files with 16 additions and 9 deletions.
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
namespace Redpoint.Uet.BuildPipeline.Providers.Deployment
{
using Redpoint.RuntimeJson;
using Redpoint.Uet.Configuration.Plugin;
using Redpoint.Uet.Configuration.Project;
using Redpoint.Uet.BuildPipeline.Providers.Deployment.Plugin.BackblazeB2;
using Redpoint.Uet.BuildPipeline.Providers.Deployment.Project.Custom;
using Redpoint.Uet.BuildPipeline.Providers.Deployment.Project.Steam;
using System.Text.Json.Serialization;

[RuntimeJsonProvider(typeof(DeploymentProviderSourceGenerationContext))]
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
namespace Redpoint.Uet.BuildPipeline.Providers.Deployment
{
using Redpoint.Uet.Configuration.Plugin;
using Redpoint.Uet.Configuration.Project;
using Redpoint.Uet.BuildPipeline.Providers.Deployment.Plugin.BackblazeB2;
using Redpoint.Uet.BuildPipeline.Providers.Deployment.Project.Custom;
using Redpoint.Uet.BuildPipeline.Providers.Deployment.Project.Steam;
using System.Text.Json;
using System.Text.Json.Serialization;

Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
namespace Redpoint.Uet.Configuration.Plugin
namespace Redpoint.Uet.BuildPipeline.Providers.Deployment.Plugin.BackblazeB2
{
using System.Text.Json.Serialization;

Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
namespace Redpoint.Uet.Configuration.Project
namespace Redpoint.Uet.BuildPipeline.Providers.Deployment.Project.Custom
{
using System.Text.Json.Serialization;

Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
namespace Redpoint.Uet.Configuration.Project
namespace Redpoint.Uet.BuildPipeline.Providers.Deployment.Project.Package
{
using System.Text.Json.Serialization;

Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
namespace Redpoint.Uet.Configuration.Project
namespace Redpoint.Uet.BuildPipeline.Providers.Deployment.Project.Package
{
public enum BuildConfigProjectDeploymentPackageType
{
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
namespace Redpoint.Uet.Configuration.Project
namespace Redpoint.Uet.BuildPipeline.Providers.Deployment.Project.Steam
{
using Redpoint.Uet.BuildPipeline.Providers.Deployment.Project.Package;
using System.Text.Json.Serialization;

public class BuildConfigProjectDeploymentSteam
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
using Redpoint.ProcessExecution;
using Redpoint.RuntimeJson;
using Redpoint.Uet.BuildGraph;
using Redpoint.Uet.BuildPipeline.Providers.Deployment.Project.Package;
using Redpoint.Uet.Configuration;
using Redpoint.Uet.Configuration.Dynamic;
using Redpoint.Uet.Configuration.Project;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
namespace UET.Commands.Internal.Runback
{
using Redpoint.Uet.BuildPipeline.Providers.Deployment.Plugin.BackblazeB2;
using Redpoint.Uet.BuildPipeline.Providers.Deployment.Project.Custom;
using Redpoint.Uet.BuildPipeline.Providers.Deployment.Project.Steam;
using Redpoint.Uet.BuildPipeline.Providers.Prepare.Plugin.Custom;
using Redpoint.Uet.BuildPipeline.Providers.Prepare.Project.Custom;
using Redpoint.Uet.BuildPipeline.Providers.Prepare.Project.DownloadPlugin;
Expand Down

0 comments on commit 427f19c

Please sign in to comment.