ApplicationIdentity Constructors

Definition

Initializes a new instance of the ApplicationIdentity class.

Overloads

ApplicationIdentity(String, AssemblyIdentity, AssemblyIdentity)

Initializes a new instance of the ApplicationIdentity class.

ApplicationIdentity(String, String, String)

Initializes a new instance of the ApplicationIdentity class.

ApplicationIdentity(String, AssemblyIdentity, AssemblyIdentity)

Initializes a new instance of the ApplicationIdentity class.

public:
 ApplicationIdentity(System::String ^ url, Microsoft::Build::Tasks::Deployment::ManifestUtilities::AssemblyIdentity ^ deployManifestIdentity, Microsoft::Build::Tasks::Deployment::ManifestUtilities::AssemblyIdentity ^ applicationManifestIdentity);
public ApplicationIdentity (string url, Microsoft.Build.Tasks.Deployment.ManifestUtilities.AssemblyIdentity deployManifestIdentity, Microsoft.Build.Tasks.Deployment.ManifestUtilities.AssemblyIdentity applicationManifestIdentity);
new Microsoft.Build.Tasks.Deployment.ManifestUtilities.ApplicationIdentity : string * Microsoft.Build.Tasks.Deployment.ManifestUtilities.AssemblyIdentity * Microsoft.Build.Tasks.Deployment.ManifestUtilities.AssemblyIdentity -> Microsoft.Build.Tasks.Deployment.ManifestUtilities.ApplicationIdentity
Public Sub New (url As String, deployManifestIdentity As AssemblyIdentity, applicationManifestIdentity As AssemblyIdentity)

Parameters

url
String

The deployment provider URL for the ClickOnce deployment manifest.

deployManifestIdentity
AssemblyIdentity

Assembly identity of the ClickOnce deployment manifest.

applicationManifestIdentity
AssemblyIdentity

Assembly identity of the ClickOnce application manifest.

Applies to

ApplicationIdentity(String, String, String)

Initializes a new instance of the ApplicationIdentity class.

public:
 ApplicationIdentity(System::String ^ url, System::String ^ deployManifestPath, System::String ^ applicationManifestPath);
public ApplicationIdentity (string url, string deployManifestPath, string applicationManifestPath);
new Microsoft.Build.Tasks.Deployment.ManifestUtilities.ApplicationIdentity : string * string * string -> Microsoft.Build.Tasks.Deployment.ManifestUtilities.ApplicationIdentity
Public Sub New (url As String, deployManifestPath As String, applicationManifestPath As String)

Parameters

url
String

The deployment provider URL for the ClickOnce deployment manifest.

deployManifestPath
String

Path to ClickOnce deployment manifest. The assembly identity will be obtained from the specified file.

applicationManifestPath
String

Path to ClickOnce application manifest. The assembly identity will be obtained from the specified file.

Applies to