Skip to content

Commit

Permalink
fix: support - symbols in csproj names (#1921)
Browse files Browse the repository at this point in the history
* fix: support - symbols in csproj names

* fix: revert

* fix: remove -,@ symbols in namespaces

---------

Co-authored-by: Chris Pulman <[email protected]>
  • Loading branch information
TimothyMakkison and ChrisPulman authored Nov 8, 2024
1 parent 8cb6f75 commit 5e7b693
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 5e7b693

Please sign in to comment.