3 changed files with 18 additions and 1 deletions
@ -0,0 +1,16 @@ |
|||||||
|
// 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 |
||||||
|
{ |
||||||
|
public class ServiceLocator |
||||||
|
{ |
||||||
|
static readonly PackageManagementService packageManagementService = new PackageManagementService(); |
||||||
|
|
||||||
|
public static IPackageManagementService PackageManagementService { |
||||||
|
get { return packageManagementService; } |
||||||
|
} |
||||||
|
} |
||||||
|
} |
Loading…
Reference in new issue