VCProjectEngine.CreateProject, méthode
Crée un projet.
Espace de noms : Microsoft.VisualStudio.VCProjectEngine
Assembly : Microsoft.VisualStudio.VCProjectEngine (dans Microsoft.VisualStudio.VCProjectEngine.dll)
Syntaxe
'Déclaration
Function CreateProject ( _
projectName As String _
) As Object
Object CreateProject(
string projectName
)
Object^ CreateProject(
[InAttribute] String^ projectName
)
abstract CreateProject :
projectName:string -> Object
function CreateProject(
projectName : String
) : Object
Paramètres
- projectName
Type : System.String
Obligatoire.Nom du fichier projet (.vcxproj).
Valeur de retour
Type : System.Object
Objet VCProject.
Exemples
CreateProject ne peut pas être appelé du script.Il doit être appelé d'une application qui a créé une nouvelle instance du moteur de projet.
' compile with vbc /r:Microsoft.VisualStudio.VCProjectEngine.dll
Option Strict Off
Imports Microsoft.VisualStudio.VCProjectEngine
Module Module1
Sub Main()
Dim Engine As VCProjectEngine
Dim myproj As VCProject
Engine = New VCProjectEngineObject()
myproj = Engine.CreateProject("xxxj")
myproj.ProjectFile("c:\Documents and Settings\test\xxx.vcxproj");
myproj.Save()
End Sub
End Module
Sécurité .NET Framework
- Confiance totale accordée à l'appelant immédiat. Ce membre ne peut pas être utilisé par du code d'un niveau de confiance partiel. Pour plus d'informations, consultez Utilisation de bibliothèques à partir de code d'un niveau de confiance partiel.