VCProject.Save Method

Definition

Saves the project file (.vcxproj).

public:
 void Save();
public:
 void Save();
void Save();
[System.Runtime.InteropServices.DispId(809)]
public void Save ();
[<System.Runtime.InteropServices.DispId(809)>]
abstract member Save : unit -> unit
Public Sub Save ()
Attributes

Examples

See How to: Compile Example Code for Project Model Extensibility for information about how to compile and run this example.

The following example uses Save in the integrated development environment (IDE):

' add reference to Microsoft.VisualStudio.VCProjectEngine  
Imports EnvDTE  
Imports Microsoft.VisualStudio.VCProjectEngine  

Public Module Module1  
    Sub Test()  
        Dim prj As VCProject  
        prj = DTE.Solution.Projects.Item(1).Object  
        prj.Save()  
    End Sub  
End Module  

Applies to