Partilhar via


Propriedade VCWebServiceProxyGeneratorTool.Output

Obtém ou define o nome do arquivo de saída.

Namespace:  Microsoft.VisualStudio.VCProjectEngine
Assembly:  Microsoft.VisualStudio.VCProjectEngine (em Microsoft.VisualStudio.VCProjectEngine.dll)

Sintaxe

'Declaração
Property Output As String
string Output { get; set; }
property String^ Output {
    String^ get ();
    void set (String^ value);
}
abstract Output : string with get, set
function get Output () : String
function set Output (value : String)

Valor de propriedade

Tipo: System.String
O nome do arquivo de saída.

Exemplos

Consulte Como: compilar o código de exemplo para extensibilidade do modelo de projeto para obter informações sobre como compilar e executar esse exemplo.

O exemplo seguinte modifica a VCWebServiceProxyGeneratorTool do objeto Output propriedade no ambiente de desenvolvimento integrado (IDE):

' add reference to Microsoft.VisualStudio.VCProjectEngine
Imports EnvDTE
Imports Microsoft.VisualStudio.VCProjectEngine

Public Module Module1
    Sub Test()
        Dim prj As VCProject
        Dim cfgs, tools As IVCCollection
        Dim cfg As VCConfiguration
        Dim tool As VCWebServiceProxyGeneratorTool
        prj = DTE.Solution.Projects.Item(1).Object
        cfgs = prj.Configurations
        cfg = cfgs.Item(1)
        tool = cfg.Tools("VCWebServiceProxyGeneratorTool")
        tool.Output = "$(TargetDir)\test"
    End Sub
End Module

Segurança do .NET Framework

Consulte também

Referência

VCWebServiceProxyGeneratorTool Interface

Namespace Microsoft.VisualStudio.VCProjectEngine