Skip to content

Commit

Permalink
fix: add Dart to the public API export
Browse files Browse the repository at this point in the history
  • Loading branch information
andrueastman committed Jan 16, 2025
1 parent 1b2cece commit f3aaddc
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/Kiota.Builder/Export/PublicAPIExportService.cs
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@
using Kiota.Builder.Configuration;
using Kiota.Builder.Writers;
using Kiota.Builder.Writers.CSharp;
using Kiota.Builder.Writers.Dart;
using Kiota.Builder.Writers.Go;
using Kiota.Builder.Writers.Java;
using Kiota.Builder.Writers.Php;
Expand Down Expand Up @@ -124,6 +125,7 @@ private static ILanguageConventionService GetLanguageConventionServiceFromConfig
GenerationLanguage.Swift => new SwiftConventionService(generationConfiguration.ClientNamespaceName),
GenerationLanguage.Ruby => new RubyConventionService(),
GenerationLanguage.CLI => new CSharpConventionService(),
GenerationLanguage.Dart => new DartConventionService(),
_ => throw new ArgumentOutOfRangeException(nameof(generationConfiguration), generationConfiguration.Language, null)
};
}
Expand Down

0 comments on commit f3aaddc

Please sign in to comment.