Skip to content

Commit 81b1edc

Browse files
authored
Merge pull request #2715 from Azure/autogenerate
Autogenerate
2 parents 4f3e06e + d04c753 commit 81b1edc

File tree

51 files changed

+24793
-179
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

51 files changed

+24793
-179
lines changed

.github/workflows/main.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,8 @@ jobs:
1818

1919
- name: Setup .NET Core
2020
uses: actions/[email protected]
21+
with:
22+
dotnet-version: '5.0.x'
2123

2224
- name: Install NPM modules
2325
run: npm ci
Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
// Copyright (c) Microsoft Corporation.
2+
// Licensed under the MIT License.
3+
import { SchemaPostProcessor } from '../models';
4+
import { replaceCyclicRef } from './helpers';
5+
6+
export const postProcessor: SchemaPostProcessor = async (namespace, apiVersion, schema) => {
7+
replaceCyclicRef(schema.definitions?.Step?.properties?.steps?.oneOf[0]?.items);
8+
}

0 commit comments

Comments
 (0)