Skip to content

Commit

Permalink
fix: remove -,@ symbols in namespaces
Browse files Browse the repository at this point in the history
  • Loading branch information
TimothyMakkison committed Nov 8, 2024
1 parent 7d3b00a commit 744d4df
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions InterfaceStubGenerator.Shared/Parser.cs
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,9 @@ CancellationToken cancellationToken

refitInternalNamespace = $"{refitInternalNamespace ?? string.Empty}RefitInternalGenerated";

// Remove - as they are valid in csproj, but invalid in a namespace
refitInternalNamespace = refitInternalNamespace.Replace('-', '_').Replace('@', '_');

// we're going to create a new compilation that contains the attribute.
// TODO: we should allow source generators to provide source during initialize, so that this step isn't required.
var options = (CSharpParseOptions)compilation.SyntaxTrees[0].Options;
Expand Down

0 comments on commit 744d4df

Please sign in to comment.