Skip to content

Commit

Permalink
Fix Microsoft.Resources naming issue (#10318)
Browse files Browse the repository at this point in the history
* Fix Microsoft.Resources naming issue

The 'operation' enum conflicts with the 'operation' object definition
during .NET sdk generation. Renaming the enum to avoid that.

* Use camel case enum name
  • Loading branch information
eladperets authored Aug 3, 2020
1 parent cb01675 commit b7002b3
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -5930,7 +5930,7 @@
"Delete"
],
"x-ms-enum": {
"name": "operation",
"name": "tagsPatchOperation",
"modelAsString": true,
"values": [
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6083,7 +6083,7 @@
"Delete"
],
"x-ms-enum": {
"name": "operation",
"name": "tagsPatchOperation",
"modelAsString": true,
"values": [
{
Expand Down

0 comments on commit b7002b3

Please sign in to comment.