7 changed files with 68 additions and 4 deletions
@ -0,0 +1,22 @@ |
|||||||
|
// 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; |
||||||
|
|
||||||
|
namespace ICSharpCode.PackageManagement.EnvDTE |
||||||
|
{ |
||||||
|
public class ItemOperations |
||||||
|
{ |
||||||
|
IPackageManagementFileService fileService; |
||||||
|
|
||||||
|
public ItemOperations(IPackageManagementFileService fileService) |
||||||
|
{ |
||||||
|
this.fileService = fileService; |
||||||
|
} |
||||||
|
|
||||||
|
public void OpenFile(string fileName) |
||||||
|
{ |
||||||
|
fileService.OpenFile(fileName); |
||||||
|
} |
||||||
|
} |
||||||
|
} |
||||||
Loading…
Reference in new issue