You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/Features/Core/Portable/CodeRefactorings/SyncNamespace/AbstractSyncNamespaceCodeRefactoringProvider.MoveFileCodeAction.cs
+3-5Lines changed: 3 additions & 5 deletions
Original file line number
Diff line number
Diff line change
@@ -2,8 +2,6 @@
2
2
// The .NET Foundation licenses this file to you under the MIT license.
3
3
// See the LICENSE file in the project root for more information.
Copy file name to clipboardExpand all lines: src/Features/Core/Portable/CodeRefactorings/SyncNamespace/AbstractSyncNamespaceCodeRefactoringProvider.State.cs
+23-21Lines changed: 23 additions & 21 deletions
Original file line number
Diff line number
Diff line change
@@ -2,8 +2,6 @@
2
2
// The .NET Foundation licenses this file to you under the MIT license.
3
3
// See the LICENSE file in the project root for more information.
4
4
5
-
#nullable disable
6
-
7
5
usingSystem.Collections.Generic;
8
6
usingSystem.Diagnostics;
9
7
usingSystem.IO;
@@ -43,29 +41,29 @@ internal sealed class State
43
41
/// This is the new name we want to change the namespace to.
44
42
/// Empty string means global namespace, whereas null means change namespace action is not available.
45
43
/// </summary>
46
-
publicstringTargetNamespace{get;}
44
+
publicstring?TargetNamespace{get;}
47
45
48
46
/// <summary>
49
47
/// This is the part of the declared namespace that is contained in default namespace.
50
48
/// We will use this to construct target folder to move the file to.
51
49
/// For example, if default namespace is `A` and declared namespace is `A.B.C`,
0 commit comments