-
Notifications
You must be signed in to change notification settings - Fork 5.2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Readme files added for python and csharp sdk (#6282)
* Readme files added for python and csharp sdk * Fixed namespace in python readme * Added swagger to sdk config
- Loading branch information
Showing
3 changed files
with
55 additions
and
0 deletions.
There are no files selected for viewing
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
## C# | ||
|
||
These settings apply only when `--csharp` is specified on the command line. | ||
Please also specify `--csharp-sdks-folder=<path to "SDKs" directory of your azure-sdk-for-net clone>`. | ||
|
||
```yaml $(csharp) | ||
csharp: | ||
azure-arm: true | ||
license-header: MICROSOFT_MIT_NO_VERSION | ||
payload-flattening-threshold: 1 | ||
clear-output-folder: true | ||
client-side-validation: false | ||
namespace: Microsoft.PlayFab | ||
output-folder: $(csharp-sdks-folder)/playfab/management/Microsoft.PlayFab/GeneratedProtocol | ||
``` |
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
## Python | ||
|
||
These settings apply only when `--python` is specified on the command line. | ||
Please also specify `--python-sdks-folder=<path to the root directory of your azure-sdk-for-python clone>`. | ||
|
||
``` yaml $(track2) | ||
azure-arm: true | ||
license-header: MICROSOFT_MIT_NO_VERSION | ||
namespace: azure.mgmt.playfab | ||
package-name: azure-mgmt-playfab | ||
package-version: 2021-12-08-preview | ||
clear-output-folder: true | ||
``` | ||
``` yaml $(python-mode) == 'update' && $(track2) | ||
no-namespace-folders: true | ||
output-folder: $(python-sdks-folder)/playfab/azure-mgmt-playfab/azure/mgmt/playfab | ||
``` | ||
``` yaml $(python-mode) == 'create' && $(track2) | ||
basic-setup-py: true | ||
output-folder: $(python-sdks-folder)/playfab/azure-mgmt-playfab | ||
``` |