[CSharp] feat!: add useDateOnly flag (#17471)

* feat: DateOnly for client

* fix: generated doc for csharp

* doc: fix generators README for csharp

* add DateOnly option for aspnet

* refactor: update csharp docs

* refactor: fix typo

* finish

* finish

* finish

* regenerate

* rebuild and regenerate

* fix build error

* finish

* revert path

* regenerate

* remove exceed samples

* regenerate

* add DateOnly to nullable

* remove obsolete file from list

* update test files list

* remove obsolete sample build

* revert manual tests

* revert samples to master and regenerate

* remove new samples

* remove eol

* remove eol

* add new specs

* try fix test

* update tests

* update files

* remove eol

* revert

* remove eol

* regenerate

* add net6+ support to aspnetcore

* add jobs
This commit is contained in:
Anakael
2024-01-10 06:34:14 +03:00
committed by GitHub
parent 9b62b9bb05
commit 11caad92df
189 changed files with 8858 additions and 277 deletions

View File

@@ -4,7 +4,7 @@
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**DateOnlyProperty** | **DateTime** | | [optional]
**DateOnlyProperty** | **DateOnly** | | [optional]
[[Back to Model list]](../../README.md#documentation-for-models) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to README]](../../README.md)

View File

@@ -5,7 +5,7 @@
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**VarByte** | **byte[]** | |
**Date** | **DateTime** | |
**Date** | **DateOnly** | |
**Number** | **decimal** | |
**Password** | **string** | |
**Binary** | **System.IO.Stream** | | [optional]

View File

@@ -8,7 +8,7 @@ Name | Type | Description | Notes
**ArrayItemsNullable** | **List<Object>** | | [optional]
**ArrayNullableProp** | **List<Object>** | | [optional]
**BooleanProp** | **bool** | | [optional]
**DateProp** | **DateTime** | | [optional]
**DateProp** | **DateOnly** | | [optional]
**DatetimeProp** | **DateTime** | | [optional]
**IntegerProp** | **int** | | [optional]
**NumberProp** | **decimal** | | [optional]

View File

@@ -4,7 +4,7 @@
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**RequiredNotNullableDateProp** | **DateTime** | |
**RequiredNotNullableDateProp** | **DateOnly** | |
**RequiredNotnullableArrayOfString** | **List<string>** | |
**RequiredNotnullableBooleanProp** | **bool** | |
**RequiredNotnullableDatetimeProp** | **DateTime** | |
@@ -17,7 +17,7 @@ Name | Type | Description | Notes
**RequiredNotnullableintegerProp** | **int** | |
**RequiredNullableArrayOfString** | **List<string>** | |
**RequiredNullableBooleanProp** | **bool** | |
**RequiredNullableDateProp** | **DateTime** | |
**RequiredNullableDateProp** | **DateOnly** | |
**RequiredNullableDatetimeProp** | **DateTime** | |
**RequiredNullableEnumInteger** | **int** | |
**RequiredNullableEnumIntegerOnly** | **int** | |
@@ -26,9 +26,9 @@ Name | Type | Description | Notes
**RequiredNullableOuterEnumDefaultValue** | **OuterEnumDefaultValue** | |
**RequiredNullableStringProp** | **string** | |
**RequiredNullableUuid** | **Guid** | |
**NotRequiredNotnullableDateProp** | **DateTime** | | [optional]
**NotRequiredNotnullableDateProp** | **DateOnly** | | [optional]
**NotRequiredNotnullableintegerProp** | **int** | | [optional]
**NotRequiredNullableDateProp** | **DateTime** | | [optional]
**NotRequiredNullableDateProp** | **DateOnly** | | [optional]
**NotRequiredNullableIntegerProp** | **int** | | [optional]
**NotrequiredNotnullableArrayOfString** | **List<string>** | | [optional]
**NotrequiredNotnullableBooleanProp** | **bool** | | [optional]