forked from OpenAPITools/openapi-generator
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'OpenAPITools:master' into master
- Loading branch information
Showing
24,599 changed files
with
1,640,888 additions
and
454,522 deletions.
The diff you're trying to view is too large. We only load the first 3000 changed files.
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
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
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
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
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
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
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,42 @@ | ||
name: Samples C# .Net Framework Clients | ||
|
||
on: | ||
push: | ||
paths: | ||
- samples/client/petstore/csharp/generichost/net4.7/** | ||
- samples/client/petstore/csharp/generichost/net4.8/** | ||
pull_request: | ||
paths: | ||
- samples/client/petstore/csharp/generichost/net4.7/** | ||
- samples/client/petstore/csharp/generichost/net4.8/** | ||
jobs: | ||
build: | ||
name: Build .Net projects | ||
runs-on: windows-2019 | ||
strategy: | ||
fail-fast: false | ||
matrix: | ||
sample: | ||
- samples/client/petstore/csharp/generichost/net4.7/AllOf | ||
- samples/client/petstore/csharp/generichost/net4.7/AnyOf | ||
- samples/client/petstore/csharp/generichost/net4.7/AnyOfNoCompare | ||
- samples/client/petstore/csharp/generichost/net4.7/FormModels | ||
- samples/client/petstore/csharp/generichost/net4.7/OneOf | ||
- samples/client/petstore/csharp/generichost/net4.7/Petstore | ||
- samples/client/petstore/csharp/generichost/net4.7/UseDateTimeForDate | ||
|
||
- samples/client/petstore/csharp/generichost/net4.8/AllOf | ||
- samples/client/petstore/csharp/generichost/net4.8/AnyOf | ||
- samples/client/petstore/csharp/generichost/net4.8/AnyOfNoCompare | ||
- samples/client/petstore/csharp/generichost/net4.8/FormModels | ||
- samples/client/petstore/csharp/generichost/net4.8/OneOf | ||
- samples/client/petstore/csharp/generichost/net4.8/Petstore | ||
- samples/client/petstore/csharp/generichost/net4.8/UseDateTimeForDate | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- name: Build | ||
working-directory: ${{ matrix.sample }} | ||
run: dotnet build Org.OpenAPITools.sln | ||
- name: Test | ||
working-directory: ${{ matrix.sample }} | ||
run: dotnet test Org.OpenAPITools.sln |
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 |
---|---|---|
@@ -1,12 +1,18 @@ | ||
name: Samples C# .Net Standard | ||
name: Samples C# .Net Standard Client | ||
|
||
on: | ||
push: | ||
paths: | ||
- 'samples/client/petstore/csharp/**netstandard**/' | ||
- samples/client/petstore/csharp/generichost/standard2.0/** | ||
- samples/client/petstore/csharp/httpclient/standard2.0/** | ||
- samples/client/petstore/csharp/restsharp/standard2.0/** | ||
- samples/client/petstore/csharp/unityWebRequest/standard2.0/** | ||
pull_request: | ||
paths: | ||
- 'samples/client/petstore/csharp/**netstandard**/' | ||
- samples/client/petstore/csharp/generichost/standard2.0/** | ||
- samples/client/petstore/csharp/httpclient/standard2.0/** | ||
- samples/client/petstore/csharp/restsharp/standard2.0/** | ||
- samples/client/petstore/csharp/unityWebRequest/standard2.0/** | ||
jobs: | ||
build: | ||
name: Build .Net projects | ||
|
@@ -15,8 +21,11 @@ jobs: | |
fail-fast: false | ||
matrix: | ||
sample: | ||
# clients | ||
- samples/client/petstore/csharp/OpenAPIClient-generichost-netstandard2.0 | ||
- samples/client/petstore/csharp/generichost/standard2.0/Petstore/ | ||
- samples/client/petstore/csharp/httpclient/standard2.0/Petstore/ | ||
- samples/client/petstore/csharp/restsharp/standard2.0/Petstore/ | ||
- samples/client/petstore/csharp/restsharp/standard2.0/ConditionalSerialization/ | ||
# - samples/client/petstore/csharp/unityWebRequest/standard2.0/Petstore/ | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- uses: actions/[email protected] | ||
|
@@ -25,6 +34,8 @@ jobs: | |
- name: Build | ||
working-directory: ${{ matrix.sample }} | ||
run: dotnet build Org.OpenAPITools.sln | ||
- name: Test | ||
working-directory: ${{ matrix.sample }} | ||
run: dotnet test Org.OpenAPITools.sln | ||
# skip tests as petstore server it not running | ||
# these tests are run in appveyor instead | ||
#- name: Test | ||
# working-directory: ${{ matrix.sample }} | ||
# run: dotnet test Org.OpenAPITools.sln |
Oops, something went wrong.