ManifestWriter.WriteManifest Method

Definition

Writes the specified manifest object to XML.

Overloads

WriteManifest(Manifest)

Writes the specified object representation of a manifest to XML. The name of the output file is inferred from the SourcePath property of the manifest.

WriteManifest(Manifest, Stream)

Writes the specified object representation of a manifest to XML.

WriteManifest(Manifest, String)

Writes the specified object representation of a manifest to XML.

WriteManifest(Manifest, String, String)

Writes the specified object representation of a manifest to XML.

WriteManifest(Manifest)

Writes the specified object representation of a manifest to XML. The name of the output file is inferred from the SourcePath property of the manifest.

public:
 static void WriteManifest(Microsoft::Build::Tasks::Deployment::ManifestUtilities::Manifest ^ manifest);
public static void WriteManifest (Microsoft.Build.Tasks.Deployment.ManifestUtilities.Manifest manifest);
static member WriteManifest : Microsoft.Build.Tasks.Deployment.ManifestUtilities.Manifest -> unit
Public Shared Sub WriteManifest (manifest As Manifest)

Parameters

manifest
Manifest

The object representation of the manifest.

Remarks

Writes the specified object representation of a manifest to XML. The name of the output file is inferred from the SourcePath property of the manifest.

Applies to

WriteManifest(Manifest, Stream)

Writes the specified object representation of a manifest to XML.

public:
 static void WriteManifest(Microsoft::Build::Tasks::Deployment::ManifestUtilities::Manifest ^ manifest, System::IO::Stream ^ output);
public static void WriteManifest (Microsoft.Build.Tasks.Deployment.ManifestUtilities.Manifest manifest, System.IO.Stream output);
static member WriteManifest : Microsoft.Build.Tasks.Deployment.ManifestUtilities.Manifest * System.IO.Stream -> unit
Public Shared Sub WriteManifest (manifest As Manifest, output As Stream)

Parameters

manifest
Manifest

The object representation of the manifest.

output
Stream

Specifies an output stream.

Remarks

Writes the specified object representation of a manifest to XML.

Applies to

WriteManifest(Manifest, String)

Writes the specified object representation of a manifest to XML.

public:
 static void WriteManifest(Microsoft::Build::Tasks::Deployment::ManifestUtilities::Manifest ^ manifest, System::String ^ path);
public static void WriteManifest (Microsoft.Build.Tasks.Deployment.ManifestUtilities.Manifest manifest, string path);
static member WriteManifest : Microsoft.Build.Tasks.Deployment.ManifestUtilities.Manifest * string -> unit
Public Shared Sub WriteManifest (manifest As Manifest, path As String)

Parameters

manifest
Manifest

The object representation of the manifest.

path
String

The name of the output file.

Remarks

Writes the specified object representation of a manifest to XML.

Applies to

WriteManifest(Manifest, String, String)

Writes the specified object representation of a manifest to XML.

public:
 static void WriteManifest(Microsoft::Build::Tasks::Deployment::ManifestUtilities::Manifest ^ manifest, System::String ^ path, System::String ^ targetframeWorkVersion);
public static void WriteManifest (Microsoft.Build.Tasks.Deployment.ManifestUtilities.Manifest manifest, string path, string targetframeWorkVersion);
static member WriteManifest : Microsoft.Build.Tasks.Deployment.ManifestUtilities.Manifest * string * string -> unit
Public Shared Sub WriteManifest (manifest As Manifest, path As String, targetframeWorkVersion As String)

Parameters

manifest
Manifest

The object representation of the manifest.

path
String

The name of the output file.

targetframeWorkVersion
String

The target framework version.

Applies to