Is it possible to refresh WCF service reference from VS2010 addin?

后端 未结 2 421
故里飘歌
故里飘歌 2021-02-06 01:54

I want to \"simulate\" the Right click/Update service reference command in a VS2010 addin. I have a reference to the containing (Silverlight...) project, I know the name of the

相关标签:
2条回答
  • 2021-02-06 02:14

    I believe the visual studio command for this is "Project.UpdateServiceReference". So I guess you can try to select the node you're interested in, and run this command, like this:

    envDTE.Windows.Item(vsWindowKindSolutionExplorer).Activate();
    envDTE.ActiveWindow.Object.GetItem(@"MyProject\Service References\Proxy").Select(vsUISelectionType.vsUISelectionTypeSelect);
    envDTE.ExecuteCommand("Project.UpdateServiceReference");
    
    0 讨论(0)
  • 2021-02-06 02:20

    If you're looking for the more programmatic way to do this, you can do something like the following. This approach does not require using the DTE automation layer which will change the user's selection and execute a command. Note that this is within the context of a VSPackage with an IServiceProvider so that it can get instances to the core Visual Studio interfaces, etc...

    You may also be able to do this from within an Addin, but you'd need to get an IServiceProvider and add references to (at least) Microsoft.VisualStudio.Shell.Interop.dll and Microsoft.VisualStudio.WCFReference.Interop. Reference assemblies for these binaries are available in the Visual Studio 2010 SDK.

    IVsSolution solution = GetService(typeof(SVsSolution)) as IVsSolution;
    if (solution != null)
    {
        IVsHierarchy solutionHierarchy = solution as IVsHierarchy;
        if (null != solutionHierarchy)
        {
            IEnumHierarchies enumHierarchies;
            Guid nullGuid = Guid.Empty;
    
            ErrorHandler.ThrowOnFailure(solution.GetProjectEnum((uint)__VSENUMPROJFLAGS.EPF_ALLINSOLUTION, ref nullGuid, out enumHierarchies));
            if (enumHierarchies != null)
            {
                uint fetched;
                IVsHierarchy[] hierarchies = new IVsHierarchy[1];
                IVsWCFReferenceManagerFactory wcfReferenceManagerFactory = GetService(typeof(SVsWCFReferenceManagerFactory)) as IVsWCFReferenceManagerFactory;
                if (wcfReferenceManagerFactory != null)
                {
                    while (enumHierarchies.Next(1, hierarchies, out fetched) == 0 && fetched == 1)
                    {
                        if (wcfReferenceManagerFactory.IsReferenceManagerSupported(hierarchies[0]) == 1)
                        {
                            IVsWCFReferenceManager referenceManager = wcfReferenceManagerFactory.GetReferenceManager(hierarchies[0]);
                            var referenceGroupCollection = referenceManager.GetReferenceGroupCollection();
                            referenceGroupCollection.UpdateAll(null);
                        }
                    }
                }
            }
        }
    }
    

    I'd also recommend looking at the WCF Service Consumption Tools samples for the Visual Studio 2010 SDK.

    0 讨论(0)
提交回复
热议问题