-
Notifications
You must be signed in to change notification settings - Fork 6k
[csharp] clean boolean additional properties #6899
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
wing328
merged 11 commits into
swagger-api:master
from
jimschubert:csharp-clean-boolean-additionalProperties-6784
Nov 15, 2017
Merged
Changes from all commits
Commits
Show all changes
11 commits
Select commit
Hold shift + click to select a range
36a3c67
[csharp] Convert "false" properties to booleans
jimschubert 6c4a32c
[nancyfx] Clean up async default option handling
jimschubert a8192e6
[nancyfx] Include asyncServer=false in sample script
jimschubert 59cde60
[csharp] Regenerate samples
jimschubert 9a07807
[csharp] Resolve .net 4 generation issues
jimschubert 2b50b24
[csharp] Regenerate .net 4.0 sample
jimschubert 74c0c79
[csharp] Resolve .NET 4.0 sample compile
jimschubert 681b5f8
[csharp] Revert bin/csharp-petstore.sh to 3.5
jimschubert b8effd4
[csharp] Regenerate .NET 3.5 sample
jimschubert 918b623
[csharp] Resolve nuget issue with existing files
jimschubert ea4623e
[csharp] Update -all.sh, regenerate samples
jimschubert File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,14 @@ | ||
#!/bin/sh | ||
|
||
# C# Petstore API client | ||
# C# Petstore API client (.NET 3.5) | ||
./bin/csharp-petstore.sh | ||
|
||
# C# Petstore API client with PropertyChanged | ||
./bin/csharp-property-changed-petstore.sh | ||
|
||
# C# Petstore API client (v5.0 for .net standarnd 1.3+) | ||
./bin/csharp-petstore-net-standard.sh | ||
|
||
# C# Petstore API client (.NET 4.0) | ||
./bin/csharp-petstore-net-40.sh | ||
|
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
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
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
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
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
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@wing328 Your commit when you implemented .NET 4.0 generator added
csharp-petstore-net-40.sh
as well as modifying this file. It looked to me like you may not have meant to makecsharp-petstore.sh
compile .NET 4.0?Feel free to revert this change and the changes in
csharp-petstore-all.sh
.I would actually be cool with making this file compile .NET 4.5 as the minimal example (since 4.5 is an in-place update to 4.0 anyway), and create a separate script for .NET 3.5.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I was my mistake. Thanks for fixing it.