Skip to content

Commit cde0e1a

Browse files
committed
Merge pull request #1128 from SlavaRa/feature/fix_warnings
[CI] Fixes a bug that occurs when running the CI/build.bat
2 parents 33f63da + 790cfcc commit cde0e1a

File tree

1 file changed

+2
-2
lines changed
  • External/Plugins/CodeRefactor/Commands

1 file changed

+2
-2
lines changed

External/Plugins/CodeRefactor/Commands/Rename.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,8 +28,8 @@ public class Rename : RefactorCommand<IDictionary<String, List<SearchMatch>>>
2828
private String oldFileName;
2929
private String newFileName;
3030

31-
public string TargetName { get; }
32-
public string NewName { get; }
31+
public string TargetName { get; private set; }
32+
public string NewName { get; private set; }
3333

3434
/// <summary>
3535
/// A new Rename refactoring command.

0 commit comments

Comments
 (0)