Proprietà VCReference.CopyLocal

Ottiene o imposta un valore che indica se automaticamente copiare il riferimento alla directory di destinazione.

Spazio dei nomi:  Microsoft.VisualStudio.VCProjectEngine
Assembly:  Microsoft.VisualStudio.VCProjectEngine (in Microsoft.VisualStudio.VCProjectEngine.dll)

Sintassi

'Dichiarazione
Property CopyLocal As Boolean
bool CopyLocal { get; set; }
property bool CopyLocal {
    bool get ();
    void set (bool value);
}
abstract CopyLocal : bool with get, set
function get CopyLocal () : boolean
function set CopyLocal (value : boolean)

Valore proprietà

Tipo: System.Boolean
true se Visual Studio vengono copiati automaticamente il riferimento alla directory di destinazione; in caso contrario, false.

Esempi

Vedere Procedura: compilare codice di esempio per l'Extensibility del modello di progetto per informazioni su come compilare ed eseguire l'esempio.

Nell'esempio seguente viene elencato il valore della proprietà di CopyLocal del riferimento all'assembly:

' Add a reference to Microsoft.VisualStudio.VCProjectEngine and have a 
' Visual C++ project loaded before running this example.
Imports EnvDTE
Imports Microsoft.VisualStudio.VCProjectEngine

Public Module Module1
    Sub Test()
        Dim prj As VCProject
        Dim vcar As VCAssemblyReference
        prj = DTE.Solution.Projects.Item(1).Object
        vcar = prj.VCReferences.item(1)
        MsgBox("Copy local? " & vcar.CopyLocal.ToString)
    End Sub
End Module

Sicurezza di .NET Framework

Vedere anche

Riferimenti

VCReference Interfaccia

Spazio dei nomi Microsoft.VisualStudio.VCProjectEngine