private NamespaceAdjuster(
     Package package,
     ISolutionSelectionService solutionSelectionService,
     IInnerPathFinder innerPathFinder,
     INamespaceAdjusterOptions options)
 {
     _package = package;
     _solutionSelectionService = solutionSelectionService;
     _innerPathFinder          = innerPathFinder;
     _options = options;
 }
 public static void Initialize(
     Package package,
     ISolutionSelectionService solutionSelectionService,
     IInnerPathFinder innerPathFinder,
     INamespaceAdjusterOptions options)
 {
     Instance = new NamespaceAdjuster(
         package,
         solutionSelectionService,
         innerPathFinder,
         options);
     Instance.Initialize();
 }
Example #3
0
 public VsServiceInfo(NamespaceAdjuster namespaceAdjuster)
 {
     NamespaceAdjuster        = namespaceAdjuster;
     SolutionSelectionService = new SolutionSelectionService();
     InnerPathFinder          = new InnerPathFinderService();
 }
 public VsServiceInfo()
 {
     SolutionSelectionService = new SolutionSelectionService();
     InnerPathFinder          = new InnerPathFinderService();
 }