Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Do Not Merge, test moniker config #2139

Open
wants to merge 15 commits into
base: main
Choose a base branch
from
4 changes: 3 additions & 1 deletion .openpublishing.publish.config.json
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,9 @@
"docset_name": "azuredotnet",
"open_to_public_contributors": false,
"monikers": [
"azure-dotnet"
"azure-dotnet",
"azure-dotnet-preview",
"azure-dotnet-legacy"
],
"version": 0,
"build_source_folder": ".",
Expand Down
14 changes: 13 additions & 1 deletion api/overview/azure/messaging.eventhubs-readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,19 @@ ms.devlang: dotnet
ms.service: eventhubs
---

# Azure Event Hubs client library for .NET - Version 5.6.2
# Azure Event Hubs client library for .NET (H1)

::: moniker range="azure-dotnet-preview"
Azure Event Hubs client library for .NET - Preview
::: moniker-end

::: moniker range="azure-dotnet"
Azure Event Hubs client library for .NET - Version 5.6.2
::: moniker-end

::: moniker range="azure-dotnet-legacy"
Azure Event Hubs client library for .NET - Legacy
::: moniker-end


Azure Event Hubs is a highly scalable publish-subscribe service that can ingest millions of events per second and stream them to multiple consumers. This lets you process and analyze the massive amounts of data produced by your connected devices and applications. Once Event Hubs has collected the data, you can retrieve, transform, and store it by using any real-time analytics provider or with batching/storage adapters. If you would like to know more about Azure Event Hubs, you may wish to review: [What is Event Hubs](https://docs.microsoft.com/azure/event-hubs/event-hubs-about).
Expand Down
38 changes: 17 additions & 21 deletions docfx.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,26 +12,30 @@
"**/includes/**"
],
"src": "api",
"dest": "api"
"dest": "api",
"group": "all"
},
{
"files": [
"**/toc.yml"
],
"src": "api",
"dest": "api/azure_ref_toc"
"dest": "api/azure_ref_toc",
"group": "all"
},
{
"files": [
"index.md"
]
],
"group": "all"
},
{
"files": [
"toc.yml"
],
"src": "breadcrumb",
"dest": "azure_breadcrumb"
"dest": "azure_breadcrumb",
"group": "all"
},
{
"files": [
Expand All @@ -42,7 +46,8 @@
"**/includes/**"
],
"src": "docs-ref-conceptual",
"dest": "azure"
"dest": "azure",
"group": "all"
}
],
"resource": [
Expand All @@ -55,14 +60,16 @@
],
"exclude": [
"**/obj/**"
]
],
"group": "all"
}
],
"overwrite": [
{
"files": [
"api/overwrites/**/*.md"
]
],
"group": "all"
}
],
"globalMetadata": {
Expand Down Expand Up @@ -100,6 +107,9 @@
}
}
},
"groups" : {
"all":{"moniker_range": "azure-dotnet || azure-dotnet-preview || azure-dotnet-legacy" }
},
"fileMetadata": {
"ms.service": {
"api/Azure.Communication*.yml": "azure-communication-services",
Expand Down Expand Up @@ -695,20 +705,6 @@
"https://authoring-docs-microsoft.poolparty.biz/devrel/f0234678-3067-4edc-abf7-8142d54bb7d2"
]
},
"version": {
"api/overview/azure/**/*.yml": [
"azure-dotnet",
"azure-dotnet-preview",
"azure-dotnet-legacy"
]
},
"monikers": {
"api/overview/azure/**/*.yml": [
"azure-dotnet",
"azure-dotnet-preview",
"azure-dotnet-legacy"
]
},
"langs": {
"api/**.yml": [
"csharp",
Expand Down