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
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
namespace HotChocolate.Types.Analyzers.FileBuilders;
namespace HotChocolate.Types.Analyzers.Models;

public class GroupedDataLoaderInfo
{
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
using Microsoft.Extensions.DependencyInjection;
using Microsoft.Extensions.Caching.Memory;
using HotChocolate.PersistedOperations;
using HotChocolate.PersistedOperations.FileSystem;
using HotChocolate.PersistedOperations.InMemory;
using HotChocolate.Utilities;

namespace HotChocolate;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
using HotChocolate.Language;
using Microsoft.Extensions.Caching.Memory;

namespace HotChocolate.PersistedOperations.FileSystem;
namespace HotChocolate.PersistedOperations.InMemory;

/// <summary>
/// An implementation of <see cref="IOperationDocumentStorage"/> that uses an in-memory cache.
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,6 +1,4 @@
using StrawberryShake.CodeGeneration.CSharp.Builders;

namespace StrawberryShake.CodeGeneration.CSharp.Generators;
namespace StrawberryShake.CodeGeneration.CSharp.Builders;

internal class HashCodeBuilder : ICode
{
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
namespace StrawberryShake.CodeGeneration.CSharp;
namespace StrawberryShake.CodeGeneration;

public static class Keywords
{
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
using StrawberryShake.CodeGeneration.CSharp;

namespace StrawberryShake.CodeGeneration;

public class RuntimeTypeInfo : IEquatable<RuntimeTypeInfo>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
using System.Globalization;
using System.Text;
using HotChocolate;
using StrawberryShake.CodeGeneration.CSharp;
using Path = HotChocolate.Path;

namespace StrawberryShake.CodeGeneration.Utilities;
Expand Down
Loading