Notitie
Voor toegang tot deze pagina is autorisatie vereist. U kunt proberen u aan te melden of de directory te wijzigen.
Voor toegang tot deze pagina is autorisatie vereist. U kunt proberen de mappen te wijzigen.
Available only within the Package Manager Console in Visual Studio on Windows.
Displays information about the default or specified project. Get-Project specifically returns a referent to the Visual Studio DTE (Development Tools Environment) object for the project.
Syntax
Get-Project [[-Name] <string>] [-All] [<CommonParameters>]
Parameters
| Parameter | Description |
|---|---|
| Name | Specifies the project to display, defaulting to the default project selected in the Package Manager Console. The -Name switch is itself optional. |
| All | Displays information for every project in the solution; the order of projects is not deterministic. |
None of these parameters accept pipeline input or wildcard characters.
Common Parameters
Get-Project supports the following common PowerShell parameters: Debug, Error Action, ErrorVariable, OutBuffer, OutVariable, PipelineVariable, Verbose, WarningAction, and WarningVariable.
Examples
# Displays information for the default project
Get-Project
# Displays information for a project in the solution
Get-Project MyProjectName
# Displays information for all projects in the solution
Get-Project -All