Skip to content

Commit f0f589d

Browse files
authored
Merge pull request #48 from neuroglia-io/feat-multi-service-document
Update the `AsyncApiDocumentGenerator` to support generating documents built upon multiple service types
2 parents beb1258 + 7887cd7 commit f0f589d

File tree

27 files changed

+75
-56
lines changed

27 files changed

+75
-56
lines changed

src/Neuroglia.AsyncApi.AspNetCore.UI/Neuroglia.AsyncApi.AspNetCore.UI.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
<RepositoryUrl>https://github.com/neuroglia-io/asyncapi</RepositoryUrl>
1313
<RepositoryType>git</RepositoryType>
1414
<PackageTags>neuroglia asyncapi async api asp ui</PackageTags>
15-
<Version>3.0.3</Version>
15+
<Version>3.0.4</Version>
1616
<NeutralLanguage>en</NeutralLanguage>
1717
<PackageLicenseExpression>Apache-2.0</PackageLicenseExpression>
1818
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>

src/Neuroglia.AsyncApi.AspNetCore.UI/Pages/Shared/v2/_V2AsyncApi.cshtml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
<div class="pb-3">
99
<span class="h1 p-0 m-0 align-middle">@document.Info.Title </span>
1010
<span class="badge fs-5 rounded-pill bg-secondary text-light align-middle">@document.Info.Version</span>
11-
<div class="btn-group ms-1" role="group" data-bs-toggle="tooltip" data-bs-placement="bottom" title="Download Async API document">
11+
<div class="btn-group ms-1" role="group" data-bs-toggle="tooltip" data-bs-placement="top" title="Download Async API document">
1212
<button id="downloadBtnGroup" type="button" class="btn btn-sm dropdown-toggle" data-bs-toggle="dropdown" aria-expanded="false">
1313
<i class="bi bi-download"></i>
1414
</button>

src/Neuroglia.AsyncApi.AspNetCore.UI/Pages/Shared/v3/_V3AsyncApi.cshtml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
<div class="pb-3 mb-3">
1010
<span class="h1 p-0 m-0 align-middle">@document.Info.Title </span>
1111
<span class="badge fs-5 rounded-pill bg-dark text-light align-middle">@document.Info.Version</span>
12-
<div class="btn-group ms-1" role="group" data-bs-toggle="tooltip" data-bs-placement="bottom" title="Download Async API document">
12+
<div class="btn-group ms-1" role="group" data-bs-toggle="tooltip" data-bs-placement="top" title="Download Async API document">
1313
<button id="downloadBtnGroup" type="button" class="btn btn-sm dropdown-toggle" data-bs-toggle="dropdown" aria-expanded="false">
1414
<i class="bi bi-download"></i>
1515
</button>

src/Neuroglia.AsyncApi.AspNetCore/Neuroglia.AsyncApi.AspNetCore.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
<RepositoryUrl>https://github.com/neuroglia-io/asyncapi</RepositoryUrl>
1313
<RepositoryType>git</RepositoryType>
1414
<PackageTags>neuroglia asyncapi async api asp</PackageTags>
15-
<Version>3.0.3</Version>
15+
<Version>3.0.4</Version>
1616
<NeutralLanguage>en</NeutralLanguage>
1717
<PackageLicenseExpression>Apache-2.0</PackageLicenseExpression>
1818
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>

src/Neuroglia.AsyncApi.Client.Bindings.All/Neuroglia.AsyncApi.Client.Bindings.All.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
<RepositoryUrl>https://github.com/neuroglia-io/asyncapi</RepositoryUrl>
1212
<RepositoryType>git</RepositoryType>
1313
<PackageTags>neuroglia asyncapi async api client binding all</PackageTags>
14-
<Version>3.0.3</Version>
14+
<Version>3.0.4</Version>
1515
<NeutralLanguage>en</NeutralLanguage>
1616
<PackageLicenseExpression>Apache-2.0</PackageLicenseExpression>
1717
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>

src/Neuroglia.AsyncApi.Client.Bindings.Amqp/Neuroglia.AsyncApi.Client.Bindings.Amqp.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
<RepositoryUrl>https://github.com/neuroglia-io/asyncapi</RepositoryUrl>
1212
<RepositoryType>git</RepositoryType>
1313
<PackageTags>neuroglia asyncapi async api client binding amqp</PackageTags>
14-
<Version>3.0.3</Version>
14+
<Version>3.0.4</Version>
1515
<NeutralLanguage>en</NeutralLanguage>
1616
<PackageLicenseExpression>Apache-2.0</PackageLicenseExpression>
1717
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>

src/Neuroglia.AsyncApi.Client.Bindings.Http/Neuroglia.AsyncApi.Client.Bindings.Http.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
<RepositoryUrl>https://github.com/neuroglia-io/asyncapi</RepositoryUrl>
1212
<RepositoryType>git</RepositoryType>
1313
<PackageTags>neuroglia asyncapi async api client binding http</PackageTags>
14-
<Version>3.0.3</Version>
14+
<Version>3.0.4</Version>
1515
<NeutralLanguage>en</NeutralLanguage>
1616
<PackageLicenseExpression>Apache-2.0</PackageLicenseExpression>
1717
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>

src/Neuroglia.AsyncApi.Client.Bindings.Kafka/Neuroglia.AsyncApi.Client.Bindings.Kafka.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
<RepositoryUrl>https://github.com/neuroglia-io/asyncapi</RepositoryUrl>
1212
<RepositoryType>git</RepositoryType>
1313
<PackageTags>neuroglia asyncapi async api client binding kafka</PackageTags>
14-
<Version>3.0.3</Version>
14+
<Version>3.0.4</Version>
1515
<NeutralLanguage>en</NeutralLanguage>
1616
<PackageLicenseExpression>Apache-2.0</PackageLicenseExpression>
1717
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>

src/Neuroglia.AsyncApi.Client.Bindings.Mqtt/Neuroglia.AsyncApi.Client.Bindings.Mqtt.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
<RepositoryUrl>https://github.com/neuroglia-io/asyncapi</RepositoryUrl>
1212
<RepositoryType>git</RepositoryType>
1313
<PackageTags>neuroglia asyncapi async api client binding mqtt</PackageTags>
14-
<Version>3.0.3</Version>
14+
<Version>3.0.4</Version>
1515
<NeutralLanguage>en</NeutralLanguage>
1616
<PackageLicenseExpression>Apache-2.0</PackageLicenseExpression>
1717
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>

src/Neuroglia.AsyncApi.Client.Bindings.Nats/Neuroglia.AsyncApi.Client.Bindings.Nats.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
<RepositoryUrl>https://github.com/neuroglia-io/asyncapi</RepositoryUrl>
1212
<RepositoryType>git</RepositoryType>
1313
<PackageTags>neuroglia asyncapi async api client binding nats</PackageTags>
14-
<Version>3.0.3</Version>
14+
<Version>3.0.4</Version>
1515
<NeutralLanguage>en</NeutralLanguage>
1616
<PackageLicenseExpression>Apache-2.0</PackageLicenseExpression>
1717
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>

0 commit comments

Comments
 (0)