VCWebDeploymentTool.RelativePath 属性

获取或设置相对于虚拟目录的路径,发生部署时,主项目输出将复制到此路径。

命名空间:  Microsoft.VisualStudio.VCProjectEngine
程序集:  Microsoft.VisualStudio.VCProjectEngine(在 Microsoft.VisualStudio.VCProjectEngine.dll 中)

语法

声明
Property RelativePath As String
string RelativePath { get; set; }
property String^ RelativePath {
    String^ get ();
    void set (String^ value);
}
abstract RelativePath : string with get, set
function get RelativePath () : String
function set RelativePath (value : String)

属性值

类型:System.String
相对于虚拟目录的路径,发生部署时,主项目输出将复制到此路径。

备注

默认情况下,相对路径是框。

示例

有关如何编译和运行此示例的信息,请参见 如何:编译项目模型扩展性示例代码

下面的示例在集成开发环境 (ide) 使用 RelativePath 属性 (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.RelativePath = "relativePathName"
      MsgBox(wdt.RelativePath)
   End Sub
End Module

.NET Framework 安全性

请参见

参考

VCWebDeploymentTool 接口

Microsoft.VisualStudio.VCProjectEngine 命名空间