Skip to content

Commit

Permalink
fix: prevent dashes in namespace
Browse files Browse the repository at this point in the history
  • Loading branch information
TimothyMakkison committed Nov 7, 2024
1 parent 7d3b00a commit b0205b4
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('-', '_');

// 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 b0205b4

Please sign in to comment.