共用方式為


VCWebDeploymentTool.ApplicationMappings 屬性

取得或設定由分號分隔、且相關於主專案輸出的檔案擴充程式之清單。

命名空間:  Microsoft.VisualStudio.VCProjectEngine
組件:  Microsoft.VisualStudio.VCProjectEngine (在 Microsoft.VisualStudio.VCProjectEngine.dll 中)

語法

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

屬性值

型別:System.String
由分號分隔、且相關於主專案輸出的檔案擴充程式之清單。

備註

只將句點及副檔名,必須包含在清單中的每個項目。

只有在主專案輸出是網際網路伺服器應用程式發展介面 (ISAPI) 延伸時,才應該設定這個屬性。

範例

請參閱HOW TO:編譯專案模型擴充性的範例程式碼如需有關如何編譯及執行這個範例資訊。

下列範例會使用ApplicationMappings在整合式的開發環境 (IDE) 中的屬性:

' add reference to Microsoft.VisualStudio.VCProjectEngine
Imports EnvDTE
Imports Microsoft.VisualStudio.VCProjectEngine
Public Module Module1

    Sub Main()
        Dim prj As VCProject
        Dim cfgs, tools As IVCCollection
        Dim cfg As VCConfiguration
        Dim wdt As VCWebDeploymentTool
        prj = DTE.Solution.Projects.Item(1).Object
        cfgs = prj.Configurations
        cfg = cfgs.Item(1)
        wdt = cfg.Tools("VCWebDeploymentTool")
        wdt.ApplicationMappings = "*.srf;*.dll"
    End Sub
End Module

.NET Framework 安全性

請參閱

參考

VCWebDeploymentTool 介面

Microsoft.VisualStudio.VCProjectEngine 命名空間