Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/All.slnx
Original file line number Diff line number Diff line change
Expand Up @@ -342,7 +342,7 @@
<Folder Name="/Nitro/CommandLine/" />
<Folder Name="/Nitro/CommandLine/src/">
<Project Path="Nitro/CommandLine/src/CommandLine/Nitro.CommandLine.csproj" />
<Project Path="Nitro/CommandLine/src/CommandLine.Fusion.Compatibility/Nitro.CommandLine.Fusion.Compatibility.csproj" />
<Project Path="Nitro/CommandLine/src/CommandLine.FusionCompatibility/Nitro.CommandLine.FusionCompatibility.csproj" />
</Folder>
<Folder Name="/Nitro/CommandLine/test/">
<Project Path="Nitro/CommandLine/test/CommandLine.Tests/Nitro.CommandLine.Tests.csproj" />
Expand Down
2 changes: 1 addition & 1 deletion src/Nitro/CommandLine/Nitro.CommandLine.slnx
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Solution>
<Folder Name="/src/">
<Project Path="src/CommandLine/Nitro.CommandLine.csproj" />
<Project Path="src/CommandLine.Fusion.Compatibility/Nitro.CommandLine.Fusion.Compatibility.csproj" />
<Project Path="src/CommandLine.FusionCompatibility/Nitro.CommandLine.FusionCompatibility.csproj" />
</Folder>
<Folder Name="/test/">
<Project Path="test/CommandLine.Tests/Nitro.CommandLine.Tests.csproj" />
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
namespace ChilliCream.Nitro.CommandLine.Fusion.Compatibility;
namespace ChilliCream.Nitro.CommandLine.FusionCompatibility;

/// <summary>
/// Represents the configuration for an HTTP client that can be used to fetch data from a subgraph.
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
using System.Buffers;
using System.Text.Json;

namespace ChilliCream.Nitro.CommandLine.Fusion.Compatibility;
namespace ChilliCream.Nitro.CommandLine.FusionCompatibility;

internal static class JsonElementExtensions
{
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
using System.Text.Json;

namespace ChilliCream.Nitro.CommandLine.Fusion.Compatibility;
namespace ChilliCream.Nitro.CommandLine.FusionCompatibility;

/// <summary>
/// The runtime representation of subgraph-config.json.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
using System.Text;
using System.Text.Json;

namespace ChilliCream.Nitro.CommandLine.Fusion.Compatibility;
namespace ChilliCream.Nitro.CommandLine.FusionCompatibility;

/// <summary>
/// Represents the formatter for the core subgraph configuration.
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
using System.Text.Json;

namespace ChilliCream.Nitro.CommandLine.Fusion.Compatibility;
namespace ChilliCream.Nitro.CommandLine.FusionCompatibility;

/// <summary>
/// Represents the configuration for a subgraph.
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
namespace ChilliCream.Nitro.CommandLine.Fusion.Compatibility;
namespace ChilliCream.Nitro.CommandLine.FusionCompatibility;

/// <summary>
/// Represents the configuration for a WebSocket client that can be used to subscribe to a subgraph.
Expand Down

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
namespace ChilliCream.Nitro.CommandLine.Fusion.Compatibility;
namespace ChilliCream.Nitro.CommandLine.FusionCompatibility;

/// <summary>
/// Defines the names of the arguments that can be used with the fusion directives.
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
namespace ChilliCream.Nitro.CommandLine.Fusion.Compatibility;
namespace ChilliCream.Nitro.CommandLine.FusionCompatibility;

/// <summary>
/// Defines the names of the values that can be used with the fusion resolver kind enum.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,11 @@
using System.Text.Json;
using HotChocolate.Language;
using HotChocolate.Language.Utilities;
using static ChilliCream.Nitro.CommandLine.Fusion.Compatibility.FusionAbstractionResources;
using static ChilliCream.Nitro.CommandLine.Fusion.Compatibility.FusionGraphPackageConstants;
using static ChilliCream.Nitro.CommandLine.FusionCompatibility.FusionAbstractionResources;
using static ChilliCream.Nitro.CommandLine.FusionCompatibility.FusionGraphPackageConstants;
using static HotChocolate.Language.Utf8GraphQLParser;

namespace ChilliCream.Nitro.CommandLine.Fusion.Compatibility;
namespace ChilliCream.Nitro.CommandLine.FusionCompatibility;

/// <summary>
/// <para>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
namespace ChilliCream.Nitro.CommandLine.Fusion.Compatibility;
namespace ChilliCream.Nitro.CommandLine.FusionCompatibility;

/// <summary>
/// Defines constants that are used in the fusion graph package.
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
namespace ChilliCream.Nitro.CommandLine.Fusion.Compatibility;
namespace ChilliCream.Nitro.CommandLine.FusionCompatibility;

/// <summary>
/// Represents an exception that is thrown when a fusion graph package is invalid.
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
namespace ChilliCream.Nitro.CommandLine.Fusion.Compatibility;
namespace ChilliCream.Nitro.CommandLine.FusionCompatibility;

/// <summary>
/// The base type names for the fusion gateway.
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
using System.Diagnostics.CodeAnalysis;
using HotChocolate.Language;

namespace ChilliCream.Nitro.CommandLine.Fusion.Compatibility;
namespace ChilliCream.Nitro.CommandLine.FusionCompatibility;

/// <summary>
/// Helper class that tracks the namespaced fusion types.
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
namespace ChilliCream.Nitro.CommandLine.Fusion.Compatibility;
namespace ChilliCream.Nitro.CommandLine.FusionCompatibility;

/// <summary>
/// Represents a configuration for an HTTP client that can be used to fetch data from a subgraph.
Expand Down
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<RootNamespace>ChilliCream.Nitro.CommandLine.Fusion.Compatibility</RootNamespace>
<AssemblyName>ChilliCream.Nitro.CommandLine.Fusion.Compatibility</AssemblyName>
<PackageId>ChilliCream.Nitro.CommandLine.Fusion.Compatibility</PackageId>
<RootNamespace>ChilliCream.Nitro.CommandLine.FusionCompatibility</RootNamespace>
<AssemblyName>ChilliCream.Nitro.CommandLine.FusionCompatibility</AssemblyName>
<PackageId>ChilliCream.Nitro.CommandLine.FusionCompatibility</PackageId>
<IsPackable>true</IsPackable>
</PropertyGroup>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
using ChilliCream.Nitro.CommandLine.Client;
using ChilliCream.Nitro.CommandLine.Configuration;
using ChilliCream.Nitro.CommandLine.Helpers;
using ChilliCream.Nitro.CommandLine.Fusion.Compatibility;
using ChilliCream.Nitro.CommandLine.FusionCompatibility;
using ChilliCream.Nitro.CommandLine.Options;
using HotChocolate.Fusion.Logging;
using HotChocolate.Fusion.Packaging;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
<ProjectReference Include="..\..\..\..\HotChocolate\Fusion-vnext\src\Fusion.SourceSchema.Packaging\HotChocolate.Fusion.SourceSchema.Packaging.csproj" />
<ProjectReference Include="..\..\..\..\StrawberryShake\Client\src\Core\StrawberryShake.Core.csproj" />
<ProjectReference Include="..\..\..\..\StrawberryShake\Client\src\Transport.Http\StrawberryShake.Transport.Http.csproj" />
<ProjectReference Include="..\CommandLine.Fusion.Compatibility\Nitro.CommandLine.Fusion.Compatibility.csproj" />
<ProjectReference Include="..\CommandLine.FusionCompatibility\Nitro.CommandLine.FusionCompatibility.csproj" />
</ItemGroup>

<ItemGroup>
Expand Down
Loading