ManagedCommandLineInfo Constructors

Definition

Overloads

ManagedCommandLineInfo(IEnumerable<String>, IEnumerable<String>, String, String)

Initializes a new instance of the ManagedCommandLineInfo struct.

ManagedCommandLineInfo(IEnumerable<String>, IEnumerable<String>, String, String, IReadOnlyCollection<String>, Exception)

Initializes a new instance of the ManagedCommandLineInfo struct.

ManagedCommandLineInfo(IEnumerable<String>, IEnumerable<String>, String, String)

Initializes a new instance of the ManagedCommandLineInfo struct.

public:
 ManagedCommandLineInfo(System::Collections::Generic::IEnumerable<System::String ^> ^ commandLineArgs, System::Collections::Generic::IEnumerable<System::String ^> ^ projectReferences, System::String ^ targetPath, System::String ^ configuration);
public ManagedCommandLineInfo (System.Collections.Generic.IEnumerable<string> commandLineArgs, System.Collections.Generic.IEnumerable<string> projectReferences, string targetPath, string configuration);
new Microsoft.VisualStudio.Workspace.Extensions.ManagedCommandLineInfo : seq<string> * seq<string> * string * string -> Microsoft.VisualStudio.Workspace.Extensions.ManagedCommandLineInfo
Public Sub New (commandLineArgs As IEnumerable(Of String), projectReferences As IEnumerable(Of String), targetPath As String, configuration As String)

Parameters

commandLineArgs
IEnumerable<String>

The full command line args

projectReferences
IEnumerable<String>

The project references

targetPath
String

The target path

configuration
String

The configuration

Applies to

ManagedCommandLineInfo(IEnumerable<String>, IEnumerable<String>, String, String, IReadOnlyCollection<String>, Exception)

Initializes a new instance of the ManagedCommandLineInfo struct.

public:
 ManagedCommandLineInfo(System::Collections::Generic::IEnumerable<System::String ^> ^ commandLineArgs, System::Collections::Generic::IEnumerable<System::String ^> ^ projectReferences, System::String ^ targetPath, System::String ^ configuration, System::Collections::Generic::IReadOnlyCollection<System::String ^> ^ buildErrors, Exception ^ buildException);
public ManagedCommandLineInfo (System.Collections.Generic.IEnumerable<string> commandLineArgs, System.Collections.Generic.IEnumerable<string> projectReferences, string targetPath, string configuration, System.Collections.Generic.IReadOnlyCollection<string> buildErrors, Exception buildException);
new Microsoft.VisualStudio.Workspace.Extensions.ManagedCommandLineInfo : seq<string> * seq<string> * string * string * System.Collections.Generic.IReadOnlyCollection<string> * Exception -> Microsoft.VisualStudio.Workspace.Extensions.ManagedCommandLineInfo
Public Sub New (commandLineArgs As IEnumerable(Of String), projectReferences As IEnumerable(Of String), targetPath As String, configuration As String, buildErrors As IReadOnlyCollection(Of String), buildException As Exception)

Parameters

commandLineArgs
IEnumerable<String>

The full command line args

projectReferences
IEnumerable<String>

The project references

targetPath
String

The target path

configuration
String

The configuration

buildErrors
IReadOnlyCollection<String>

The design time build errors

buildException
Exception

The design time build exception

Applies to