Propriedade VCMidlTool.DLLDataFileName
Obtém ou define o nome do arquivo DLLDATA. o padrão é dlldata.c.
Namespace: Microsoft.VisualStudio.VCProjectEngine
Assembly: Microsoft.VisualStudio.VCProjectEngine (em Microsoft.VisualStudio.VCProjectEngine.dll)
'Declaração
Property DLLDataFileName As String
string DLLDataFileName { get; set; }
property String^ DLLDataFileName {
String^ get ();
void set (String^ value);
}
abstract DLLDataFileName : string with get, set
function get DLLDataFileName () : String
function set DLLDataFileName (value : String)
Tipo: System.String
O nome do arquivo DLLDATA.
DLLDataFileNameapresenta a funcionalidade da opção MIDL /dlldata.
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 DLLDataFileName propriedade no ambiente de desenvolvimento integrado (IDE):
[Visual Basic]
' 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 VCMidlTool
prj = DTE.Solution.Projects.Item(1).Object
cfgs = prj.Configurations
cfg = cfgs.Item(1)
tool = cfg.Tools("VCMIDLTool")
tool.DLLDataFileName = "somename.c"
End Sub
End Module
- Confiança total para o chamador imediato. O membro não pode ser usado por código parcialmente confiável. Para obter mais informações, consulte Usando bibliotecas de código parcialmente confiáveis.