adjusted csharp codegen to allow for nullable properties #557
Workflow file for this run
This file contains hidden or 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
| name: Samples C# .Net 6 Client | |
| on: | |
| push: | |
| paths: | |
| - samples/client/petstore/csharp/restsharp/net6/** | |
| pull_request: | |
| paths: | |
| - samples/client/petstore/csharp/restsharp/net6/** | |
| jobs: | |
| build: | |
| name: Build .Net clients | |
| runs-on: ubuntu-latest | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| sample: | |
| - samples/client/petstore/csharp/restsharp/net6/ParameterMappings/ | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: actions/[email protected] | |
| with: | |
| dotnet-version: '6.0.x' | |
| - name: Build | |
| working-directory: ${{ matrix.sample }} | |
| run: dotnet build Org.OpenAPITools.sln |