次の方法で共有


IVsSolutionBuildManager2.set_StartupProject Method

Sets the startup project that will be run when the F5 key is pressed.

Namespace:  Microsoft.VisualStudio.Shell.Interop
Assembly:  Microsoft.VisualStudio.Shell.Interop (in Microsoft.VisualStudio.Shell.Interop.dll)

Syntax

'宣言
Function set_StartupProject ( _
    pHierarchy As IVsHierarchy _
) As Integer
'使用
Dim instance As IVsSolutionBuildManager2
Dim pHierarchy As IVsHierarchy
Dim returnValue As Integer

returnValue = instance.set_StartupProject(pHierarchy)
int set_StartupProject(
    IVsHierarchy pHierarchy
)
int set_StartupProject(
    [InAttribute] IVsHierarchy^ pHierarchy
)
function set_StartupProject(
    pHierarchy : IVsHierarchy
) : int

Parameters

Return Value

Type: System.Int32

If the method succeeds, it returns S_OK. If it fails, it returns an error code.

Implements

IVsSolutionBuildManager.set_StartupProject(IVsHierarchy)

Remarks

COM Signature

From vsshell.idl:

HRESULT IVsSolutionBuildManager2::set_StartupProject(
   [in] IVsHierarchy *pHierarchy
);

Normally, the environment uses the settings in the Solution Configuration property pages for the startup project started when DebugLaunch is called. You can programmatically get and set the startup project using get_StartupProject and set_StartupProject.

Note

get_StartupProject and set_StartupProject only have the ability to set a single startup project. If you want to set multiple startup projects, you should use the Solution Configuration property pages or go through the automation model, specifically, DTE.Solution.SolutionBuild.StartupProjects. For more information, see Automation Model.

Permissions

See Also

Reference

IVsSolutionBuildManager2 Interface

IVsSolutionBuildManager2 Members

Microsoft.VisualStudio.Shell.Interop Namespace