|
9 | 9 | <Image></Image> |
10 | 10 | </Images> |
11 | 11 | </Refactoring>--> |
12 | | - <Refactoring Id="ReplaceEnumHasFlagWithBitwiseOperation" Title="Replace Enum.HasFlag method with bitwise operation" ExtensionVersion="0.9.90"> |
| 12 | + <Refactoring Id="ReplaceEnumHasFlagWithBitwiseOperation" Title="Replace Enum.HasFlag method with bitwise operation" ExtensionVersion="0.91.0"> |
13 | 13 | <Syntaxes> |
14 | 14 | <Syntax>Enum.HasFlag method invocation</Syntax> |
15 | 15 | </Syntaxes> |
|
226 | 226 | <Syntax>missing parameter</Syntax> |
227 | 227 | </Syntaxes> |
228 | 228 | </Refactoring> |
229 | | - <Refactoring Id="DuplicateStatement" Title="Duplicate statement" ExtensionVersion="0.0.0"> |
| 229 | + <Refactoring Id="DuplicateStatement" Title="Duplicate statement" ExtensionVersion="0.91.0"> |
230 | 230 | <Syntaxes> |
231 | 231 | <Syntax>do statement</Syntax> |
232 | 232 | <Syntax>fixed statement</Syntax> |
|
410 | 410 | <Syntax>yield return statement in method/property/indexer</Syntax> |
411 | 411 | </Syntaxes> |
412 | 412 | </Refactoring> |
413 | | - <Refactoring Id="ChangeMethodReturnTypeToVoid" Title="Change method return type to void" ExtensionVersion="0.9.90"> |
| 413 | + <Refactoring Id="ChangeMethodReturnTypeToVoid" Title="Change method return type to void" ExtensionVersion="0.91.0"> |
414 | 414 | <Syntaxes> |
415 | 415 | <Syntax>method</Syntax> |
416 | 416 | </Syntaxes> |
|
446 | 446 | </Syntaxes> |
447 | 447 | <Scope></Scope> |
448 | 448 | </Refactoring> |
449 | | - <Refactoring Id="IntroduceUsingStaticDirective" Title="Introduce using static directive" ExtensionVersion="0.9.90"> |
| 449 | + <Refactoring Id="IntroduceUsingStaticDirective" Title="Introduce using static directive" ExtensionVersion="0.91.0"> |
450 | 450 | <Syntaxes> |
451 | 451 | <Syntax>member access expression (public or internal static class)</Syntax> |
452 | 452 | </Syntaxes> |
|
517 | 517 | <Syntax>singleline/multiline xml documentation comment</Syntax> |
518 | 518 | </Syntaxes> |
519 | 519 | </Refactoring> |
520 | | - <Refactoring Id="RemoveAllXmlComments" Title="Remove all xml comments" IsEnabledByDefault="false" ExtensionVersion="0.0.0"> |
| 520 | + <Refactoring Id="RemoveAllXmlComments" Title="Remove all xml comments" IsEnabledByDefault="false" ExtensionVersion="0.91.0"> |
521 | 521 | <Syntaxes> |
522 | 522 | <Syntax>singleline/multiline xml documentation comment</Syntax> |
523 | 523 | </Syntaxes> |
|
532 | 532 | <Syntax>region directive</Syntax> |
533 | 533 | </Syntaxes> |
534 | 534 | </Refactoring> |
535 | | - <Refactoring Id="RemoveConditionFromLastElseIf" Title="Remove condition from last else-if" ExtensionVersion="0.0.0"> |
| 535 | + <Refactoring Id="RemoveConditionFromLastElseIf" Title="Remove condition from last else-if" ExtensionVersion="0.91.0"> |
536 | 536 | <Syntaxes> |
537 | 537 | <Syntax>else clause</Syntax> |
538 | 538 | </Syntaxes> |
539 | 539 | <Scope>else keyword</Scope> |
540 | 540 | </Refactoring> |
541 | | - <Refactoring Id="RemoveStatement" Title="Remove statement" ExtensionVersion="0.0.0"> |
| 541 | + <Refactoring Id="RemoveStatement" Title="Remove statement" ExtensionVersion="0.91.0"> |
542 | 542 | <Syntaxes> |
543 | 543 | <Syntax>do statement</Syntax> |
544 | 544 | <Syntax>fixed statement</Syntax> |
|
556 | 556 | </Syntaxes> |
557 | 557 | <Scope>open/close brace</Scope> |
558 | 558 | </Refactoring> |
559 | | - <Refactoring Id="ReplaceAnonymousMethodWithLambdaExpression" Title="Replace anonymous method with lambda expression" ExtensionVersion="0.0.0"> |
| 559 | + <Refactoring Id="ReplaceAnonymousMethodWithLambdaExpression" Title="Replace anonymous method with lambda expression" ExtensionVersion="0.91.0"> |
560 | 560 | <Syntaxes> |
561 | 561 | <Syntax>anonymous method</Syntax> |
562 | 562 | </Syntaxes> |
|
658 | 658 | <Syntax>property identifier</Syntax> |
659 | 659 | </Syntaxes> |
660 | 660 | </Refactoring> |
661 | | - <Refactoring Id="ReplaceCountWithLengthOrLengthWithCount" Title="Replace 'Count/Length' with 'Length/Count'" ExtensionVersion="0.0.0"> |
| 661 | + <Refactoring Id="ReplaceCountWithLengthOrLengthWithCount" Title="Replace 'Count/Length' with 'Length/Count'" ExtensionVersion="0.91.0"> |
662 | 662 | <Syntaxes> |
663 | 663 | <Syntax>member access expression</Syntax> |
664 | 664 | </Syntaxes> |
665 | 665 | <Scope>name</Scope> |
666 | 666 | </Refactoring> |
667 | | - <Refactoring Id="ReplaceDoStatementWithWhileStatement" Title="Replace do statement with while statement" ExtensionVersion="0.9.90"> |
| 667 | + <Refactoring Id="ReplaceDoStatementWithWhileStatement" Title="Replace do statement with while statement" ExtensionVersion="0.91.0"> |
668 | 668 | <Syntaxes> |
669 | 669 | <Syntax>do statement</Syntax> |
670 | 670 | </Syntaxes> |
671 | 671 | <Scope>do keyword</Scope> |
672 | 672 | </Refactoring> |
673 | | - <Refactoring Id="ReplaceWhileStatementWithDoStatement" Title="Replace while statement with do statement" ExtensionVersion="0.9.90"> |
| 673 | + <Refactoring Id="ReplaceWhileStatementWithDoStatement" Title="Replace while statement with do statement" ExtensionVersion="0.91.0"> |
674 | 674 | <Syntaxes> |
675 | 675 | <Syntax>while statement</Syntax> |
676 | 676 | </Syntaxes> |
|
693 | 693 | <Syntax>selected attribute list</Syntax> |
694 | 694 | </Syntaxes> |
695 | 695 | </Refactoring> |
696 | | - <Refactoring Id="SplitVariableDeclaration" Title="Split variable declaration " ExtensionVersion="0.0.0"> |
| 696 | + <Refactoring Id="SplitVariableDeclaration" Title="Split variable declaration " ExtensionVersion="0.91.0"> |
697 | 697 | <Syntaxes> |
698 | 698 | <Syntax>local declaration</Syntax> |
699 | 699 | <Syntax>field declaration</Syntax> |
|
0 commit comments