Proprietà VCWebServiceProxyGeneratorTool.Output
Ottiene o imposta il nome file di output.
Spazio dei nomi: Microsoft.VisualStudio.VCProjectEngine
Assembly: Microsoft.VisualStudio.VCProjectEngine (in Microsoft.VisualStudio.VCProjectEngine.dll)
Sintassi
'Dichiarazione
Property Output As String
string Output { get; set; }
property String^ Output {
String^ get ();
void set (String^ value);
}
abstract Output : string with get, set
function get Output () : String
function set Output (value : String)
Valore proprietà
Tipo: System.String
il nome file di output.
Esempi
vedere Procedura: compilare codice di esempio per l'Extensibility del modello di progetto per informazioni su come compilare ed eseguire l'esempio.
l'esempio seguente modifica VCWebServiceProxyGeneratorTool oggetto Output proprietà nell'ambiente di sviluppo (IDE) integrato (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 VCWebServiceProxyGeneratorTool
prj = DTE.Solution.Projects.Item(1).Object
cfgs = prj.Configurations
cfg = cfgs.Item(1)
tool = cfg.Tools("VCWebServiceProxyGeneratorTool")
tool.Output = "$(TargetDir)\test"
End Sub
End Module
Sicurezza di .NET Framework
- Attendibilità totale per il chiamante immediato. Impossibile utilizzare questo membro in codice parzialmente attendibile. Per ulteriori informazioni, vedere Utilizzo di librerie da codice parzialmente attendibile.