protected override void DoHostTestInitialize()
        {
            _instance = this;

            base.DoHostTestInitialize();

            Helpers = new HelperWrapper(VisualStudio);

            Solution.Open(_solutionPath);
            Solution.WaitForFullyLoaded(); // This will get modified after bug 627108 get fixed
        }
예제 #2
0
        protected override void DoHostTestInitialize()
        {
            base.DoHostTestInitialize();

            VsHost  = VisualStudio;
            Helpers = new HelperWrapper(VisualStudio);

            Solution.Open(SolutionPath);
            Solution.WaitForFullyLoaded(); // This will get modified after bug 627108 get fixed

            _webProject               = Solution[ProjectName];
            _libmanConfig             = _webProject[LibManManifestFile];
            _pathToLibmanFile         = Path.Combine(SolutionRootPath, ProjectName, LibManManifestFile);
            _initialLibmanFileContent = File.ReadAllText(_pathToLibmanFile);
        }