-
Notifications
You must be signed in to change notification settings - Fork 387
Preserve standalone date and timestamp names during C# normalization #11741
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
Draft
Copilot
wants to merge
14
commits into
main
Choose a base branch
from
copilot/tighten-date-normalization
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Draft
Changes from all commits
Commits
Show all changes
14 commits
Select commit
Hold shift + click to select a range
d38cc15
test: preserve standalone date member names
Copilot 6ebd670
fix: preserve standalone date member names
Copilot c5ff33c
test: update standalone timestamp expectations
Copilot 5f37608
fix: honor normalized CodeGenMember property names
Copilot 3bd56ec
fix(csharp-generator): scope normalized CodeGenMember property matching
Copilot 3a07cbd
fix(csharp-generator): normalize CodeGenMember mappings
Copilot 8936e7b
test(csharp-generator): map emitted date property name
Copilot 2e8a833
test(csharp-generator): refine normalized member mappings
Copilot 6d45b4f
fix(csharp-generator): normalize expiration names to expires
Copilot af853be
test(csharp-generator): snapshot customized normalized members
Copilot 84a5848
fix(csharp-generator): reuse noun mappings for date names
Copilot a731b05
fix(csharp-generator): preserve custom required property metadata
Copilot 190437b
fix(csharp-generator): map raw CodeGenMember names through identifier…
Copilot 1392c25
fix(csharp-generator): resolve CodeGenMember names via identifier casing
Copilot 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
Some comments aren't visible on the classic Files Changed page.
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
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
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
28 changes: 28 additions & 0 deletions
28
...TestData/ModelCustomizationTests/CustomCodeReplacesAcronymNormalizedProperty(Expected).cs
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 |
|---|---|---|
| @@ -0,0 +1,28 @@ | ||
| // <auto-generated/> | ||
|
|
||
| #nullable disable | ||
|
|
||
| using System; | ||
| using System.Collections.Generic; | ||
| using Sample; | ||
|
|
||
| namespace Sample.Models | ||
| { | ||
| public partial class MockInputModel | ||
| { | ||
| private protected readonly global::System.Collections.Generic.IDictionary<string, global::System.BinaryData> _additionalBinaryDataProperties; | ||
|
|
||
| public MockInputModel(string foo) | ||
| { | ||
| global::Sample.Argument.AssertNotNull(foo, nameof(foo)); | ||
|
|
||
| Foo = foo; | ||
| } | ||
|
|
||
| internal MockInputModel(string foo, global::System.Collections.Generic.IDictionary<string, global::System.BinaryData> additionalBinaryDataProperties) | ||
| { | ||
| Foo = foo; | ||
| _additionalBinaryDataProperties = additionalBinaryDataProperties; | ||
| } | ||
| } | ||
| } |
14 changes: 14 additions & 0 deletions
14
...ata/ModelCustomizationTests/CustomCodeReplacesAcronymNormalizedProperty/MockInputModel.cs
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 |
|---|---|---|
| @@ -0,0 +1,14 @@ | ||
| #nullable disable | ||
|
|
||
| using Sample; | ||
| using SampleTypeSpec; | ||
| using Microsoft.TypeSpec.Generator.Customizations; | ||
|
|
||
| namespace Sample.Models | ||
| { | ||
| public partial class MockInputModel | ||
| { | ||
| [CodeGenMember("IPFoo")] | ||
| public string Foo { get; set; } | ||
| } | ||
| } |
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.
Uh oh!
There was an error while loading. Please reload this page.