Udostępnij za pośrednictwem


Właściwość VCResourceCompilerTool.ResourceOutputFileName —

Pobiera lub ustawia nazwę pliku zasobów.

Przestrzeń nazw:  Microsoft.VisualStudio.VCProjectEngine
Zestaw:  Microsoft.VisualStudio.VCProjectEngine (w Microsoft.VisualStudio.VCProjectEngine.dll)

Składnia

'Deklaracja
Property ResourceOutputFileName As String
string ResourceOutputFileName { get; set; }
property String^ ResourceOutputFileName {
    String^ get ();
    void set (String^ value);
}
abstract ResourceOutputFileName : string with get, set
function get ResourceOutputFileName () : String 
function set ResourceOutputFileName (value : String)

Wartość właściwości

Typ: String
Nazwa pliku zasobów.

Uwagi

ResourceOutputFileNameudostępnia opcję /fo kompilatora zasobów.

Przykłady

Zobacz Porady: kompilowanie przykładowego kodu dla rozszerzalności modelu projektów informacje na temat skompilować i uruchomić ten przykład.

Poniższy przykład modyfikuje ResourceOutputFileName właściwość w zintegrowane środowisko programistyczne (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 VCResourceCompilerTool
        prj = DTE.Solution.Projects.Item(1).Object
        cfgs = prj.Configurations
        cfg = cfgs.Item(1)
        tool = cfg.Tools("VCResourceCompilerTool")
        tool.ResourceOutputFileName = "$(IntDir)/somefile.res"
    End Sub
End Module

Zabezpieczenia programu .NET Framework

Zobacz też

Informacje

VCResourceCompilerTool Interfejs

Przestrzeń nazw Microsoft.VisualStudio.VCProjectEngine