Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Move out legacy components. #6573

Closed
wants to merge 2 commits into from
Closed
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
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
14 changes: 9 additions & 5 deletions .build/Helpers.cs
Original file line number Diff line number Diff line change
Expand Up @@ -12,25 +12,20 @@ static class Helpers
static readonly string[] Directories =
{
"GreenDonut",
Path.Combine("HotChocolate", "Analyzers"),
Path.Combine("HotChocolate", "ApolloFederation"),
Path.Combine("HotChocolate", "AspNetCore"),
Path.Combine("HotChocolate", "AzureFunctions"),
Path.Combine("HotChocolate", "Core"),
Path.Combine("HotChocolate", "Caching"),
Path.Combine("HotChocolate", "CodeGeneration"),
Path.Combine("HotChocolate", "Diagnostics"),
Path.Combine("HotChocolate", "Language"),
Path.Combine("HotChocolate", "PersistedQueries"),
Path.Combine("HotChocolate", "Utilities"),
Path.Combine("HotChocolate", "Data"),
Path.Combine("HotChocolate", "Filters"),
Path.Combine("HotChocolate", "Marten"),
Path.Combine("HotChocolate", "MongoDb"),
Path.Combine("HotChocolate", "Neo4J"),
Path.Combine("HotChocolate", "Raven"),
Path.Combine("HotChocolate", "Skimmed"),
Path.Combine("HotChocolate", "Stitching"),
Path.Combine("HotChocolate", "Fusion"),
Path.Combine("HotChocolate", "Spatial"),
Path.Combine("StrawberryShake", "Client"),
Expand All @@ -40,6 +35,15 @@ static class Helpers
"CookieCrumble"
};

static readonly string[] LegacyDirectories =
{
Path.Combine("HotChocolate", "Analyzers"),
Path.Combine("HotChocolate", "CodeGeneration"),
Path.Combine("HotChocolate", "Filters"),
Path.Combine("HotChocolate", "Neo4J"),
Path.Combine("HotChocolate", "Stitching"),
};

static IEnumerable<string> GetAllProjects(
string sourceDirectory,
IEnumerable<string> directories,
Expand Down
Loading
Loading