Compartilhar via


Propriedade VCManagedResourceCompilerTool.OutputFileName

Obtém o nome do arquivo de saída final para a qual este arquivo. resx contribui.

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

Sintaxe

'Declaração
ReadOnly Property OutputFileName As String
string OutputFileName { get; }
property String^ OutputFileName {
    String^ get ();
}
abstract OutputFileName : string with get
function get OutputFileName () : String

Valor de propriedade

Tipo: String
Uma seqüência de caracteres que representa o nome do arquivo de saída final.

Comentários

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

Exemplos

' Add a reference to Microsoft.VisualStudio.VCProjectEngine and have a 
' Visual C++ project loaded before running this example.
Imports EnvDTE
Imports Microsoft.VisualStudio.VCProjectEngine
Public Module Module1
    Sub Test()
        Dim prj As VCProject
        Dim cfgs, tools As IVCCollection
        Dim cfg As VCFileConfiguration
        Dim tool As VCManagedResourceCompilerTool
        Dim file As VCFile
        prj = DTE.Solution.Projects.Item(1).Object
        file = prj.Files("Form1.resx")
        cfgs = file.FileConfigurations
        cfg = cfgs.Item(1)
        tool = cfg.Tool
        MsgBox("Output file name: " & tool.OutputFileName)
    End Sub
End Module

Segurança do .NET Framework

Consulte também

Referência

VCManagedResourceCompilerTool Interface

Namespace Microsoft.VisualStudio.VCProjectEngine