mirror of https://github.com/dapr/docs.git
Merge pull request #3088 from philliphoff/philliphoff-sdk-docs
[WIP] Inclusion of Pluggable Components (.NET) SDK docs
This commit is contained in:
commit
ee77dfe53a
|
@ -23,3 +23,6 @@
|
||||||
[submodule "sdkdocs/js"]
|
[submodule "sdkdocs/js"]
|
||||||
path = sdkdocs/js
|
path = sdkdocs/js
|
||||||
url = https://github.com/dapr/js-sdk.git
|
url = https://github.com/dapr/js-sdk.git
|
||||||
|
[submodule "sdkdocs/pluggable-components/dotnet"]
|
||||||
|
path = sdkdocs/pluggable-components/dotnet
|
||||||
|
url = https://github.com/dapr-sandbox/components-dotnet-sdk
|
||||||
|
|
|
@ -67,6 +67,10 @@ id = "G-60C6Q1ETC1"
|
||||||
source = "../sdkdocs/dotnet/daprdocs/content/en/dotnet-sdk-docs"
|
source = "../sdkdocs/dotnet/daprdocs/content/en/dotnet-sdk-docs"
|
||||||
target = "content/developing-applications/sdks/dotnet"
|
target = "content/developing-applications/sdks/dotnet"
|
||||||
lang = "en"
|
lang = "en"
|
||||||
|
[[module.mounts]]
|
||||||
|
source = "../sdkdocs/pluggable-components/dotnet/daprdocs/content/en/dotnet-sdk-docs"
|
||||||
|
target = "content/developing-applications/develop-components/pluggable-components/pluggable-components-sdks/pluggable-components-dotnet"
|
||||||
|
lang = "en"
|
||||||
[[module.mounts]]
|
[[module.mounts]]
|
||||||
source = "../sdkdocs/dotnet/daprdocs/content/en/dotnet-sdk-contributing"
|
source = "../sdkdocs/dotnet/daprdocs/content/en/dotnet-sdk-contributing"
|
||||||
target = "content/contributing/sdk-contrib/"
|
target = "content/contributing/sdk-contrib/"
|
||||||
|
|
|
@ -0,0 +1,17 @@
|
||||||
|
---
|
||||||
|
type: docs
|
||||||
|
title: "Pluggable components SDKs"
|
||||||
|
linkTitle: "SDKs"
|
||||||
|
weight: 2000
|
||||||
|
description: "Develop pluggable components in your favorite language"
|
||||||
|
no_list: true
|
||||||
|
is_preview: true
|
||||||
|
---
|
||||||
|
|
||||||
|
The Dapr SDKs are the easiest way for you to create pluggable components. Choose your favorite language and start creating components in minutes.
|
||||||
|
|
||||||
|
## Pluggable components SDKs
|
||||||
|
|
||||||
|
| Language | Status |
|
||||||
|
|----------|:------:|
|
||||||
|
| [.NET]({{< ref pluggable-components-dotnet >}}) | In development |
|
|
@ -13,3 +13,12 @@
|
||||||
{{ end }}
|
{{ end }}
|
||||||
</div>
|
</div>
|
||||||
{{ end }}
|
{{ end }}
|
||||||
|
|
||||||
|
<!-- Check the variable that indicates whether this is a preview doc set.
|
||||||
|
If yes, display a banner. -->
|
||||||
|
{{ if .Params.is_preview }}
|
||||||
|
{{ $color := "primary" }}
|
||||||
|
<div class="pageinfo pageinfo-{{ $color }}">
|
||||||
|
<p>This is documentation on a preview feature.</p>
|
||||||
|
</div>
|
||||||
|
{{ end }}
|
||||||
|
|
|
@ -0,0 +1 @@
|
||||||
|
Subproject commit c753c3a6ac4222cc6a30147c533c71051aef87ea
|
Loading…
Reference in New Issue