You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
1.0 KiB
27 lines
1.0 KiB
// Copyright (c) AlphaSierraPapa for the SharpDevelop Team (for details please see \doc\copyright.txt) |
|
// This code is distributed under the GNU LGPL (for details please see \doc\license.txt) |
|
|
|
using System; |
|
using ICSharpCode.SharpDevelop; |
|
using ICSharpCode.SharpDevelop.Dom; |
|
using ICSharpCode.SharpDevelop.Editor; |
|
using ICSharpCode.SharpDevelop.Gui; |
|
using ICSharpCode.SharpDevelop.Refactoring; |
|
|
|
namespace ICSharpCode.PackageManagement |
|
{ |
|
public class DocumentNamespaceCreator : IDocumentNamespaceCreator |
|
{ |
|
public void AddNamespace(ICompilationUnit compilationUnit, string newNamespace) |
|
{ |
|
if (WorkbenchSingleton.InvokeRequired) { |
|
WorkbenchSingleton.SafeThreadCall(() => AddNamespace(compilationUnit, newNamespace)); |
|
} else { |
|
IViewContent view = FileService.OpenFile(compilationUnit.FileName); |
|
var textEditor = view as ITextEditorProvider; |
|
IDocument document = textEditor.TextEditor.Document; |
|
NamespaceRefactoringService.AddUsingDeclaration(compilationUnit, document, compilationUnit.UsingScope, newNamespace, false); |
|
} |
|
} |
|
} |
|
}
|
|
|