#197 Produce AsyncAPI documents at build time (AsyncAPI.Saunter.Generator.Build)#219
Draft
smoerijf wants to merge 75 commits intoasyncapi:mainfrom
Draft
#197 Produce AsyncAPI documents at build time (AsyncAPI.Saunter.Generator.Build)#219smoerijf wants to merge 75 commits intoasyncapi:mainfrom
smoerijf wants to merge 75 commits intoasyncapi:mainfrom
Conversation
added 30 commits
July 6, 2024 14:27
…uments, default all. Added support for env vars
…data to package
… parameter handling
…-global-dotnet-tool' into asyncapi#197-Produce-AsyncAPI-documents-at-build-time # Conflicts: # src/AsyncAPI.Saunter.Generator.Cli/Commands/TofileInternal.cs
…with local nuget source
…d project to populate the local nuget source
… fix the build pipeline
added 11 commits
July 11, 2024 23:43
…-global-dotnet-tool' into asyncapi#197-more-logging # Conflicts: # .github/workflows/ci.yaml # .gitignore # Saunter.sln # src/AsyncAPI.Saunter.Generator.Cli/Commands/TofileInternal.cs # src/AsyncAPI.Saunter.Generator.Cli/SwashbuckleImport/CommandRunner.cs # src/AsyncAPI.Saunter.Generator.Cli/readme.md # test/AsyncAPI.Saunter.Generator.Cli.Tests/AsyncAPI.Saunter.Generator.Cli.Tests.csproj # test/AsyncAPI.Saunter.Generator.Cli.Tests/IntegrationTests.cs # test/AsyncAPI.Saunter.Generator.Cli.Tests/PackAndInstallLocalTests.cs # test/Saunter.Tests/Generation/DocumentGeneratorTests/InterfaceAttributeTests.cs
smoerijf
commented
Jul 13, 2024
| env: | ||
| PATH: ${{ github.env.PATH }}:/home/runner/.dotnet/tools | ||
|
|
||
| unit-test: |
Contributor
Author
There was a problem hiding this comment.
removed separate unittest step because it causes a lot duplicate work:
- It builds to whole solution again, while the build itself already does this
- I couldn't get it working to let the test-job depend on the build job build output and use that to run tests.
added 16 commits
July 13, 2024 16:47
…at failed to generate specs, fixed now. Added an external nuget dependancy to the example project (nlog) because that made spec generation fail, fixed now. And now also testing both .NET6 & .NET8
…i#197-more-logging # Conflicts: # Saunter.sln # examples/StreetlightsAPI/StreetlightsAPI.csproj # src/AsyncAPI.Saunter.Generator.Cli/ToFile/ServiceProviderBuilder.cs # src/AsyncAPI.Saunter.Generator.Cli/readme.md # test/AsyncAPI.Saunter.Generator.Cli.Tests/AsyncAPI.Saunter.Generator.Cli.Tests.csproj # test/AsyncAPI.Saunter.Generator.Cli.Tests/IntegrationTests.cs
…-global-dotnet-tool' into asyncapi#197-more-logging
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Ready for review, but depends on PR #217
Nuget package to generate AsyncAPI specs at build time, by injecting .targets file via the nuget package. In the injected post-build target the startup assembly is used to extract the AsyncAPI spec and those files are written to files.
Closes:
#197