| MSBuildProjectSetConfiguration Method |
This is used to set the active configuration and platform used when
evaluating the properties.
Namespace: SandcastleBuilder.Utils.MSBuildAssembly: SandcastleBuilder.Utils (in SandcastleBuilder.Utils.dll) Version: 2014.11.22.0
Syntax public void SetConfiguration(
string configuration,
string platform,
string outDir
)
Public Sub SetConfiguration (
configuration As String,
platform As String,
outDir As String
)
public:
void SetConfiguration(
String^ configuration,
String^ platform,
String^ outDir
)
member SetConfiguration :
configuration : string *
platform : string *
outDir : string -> unit
Parameters
- configuration
- Type: SystemString
The active configuration - platform
- Type: SystemString
The active platform - outDir
- Type: SystemString
The output directory
Remarks If the platform is set to any variation of "Any CPU" and
it isn't found in the project, it will be converted to "AnyCPU"
(no space). This works around an issue with Team Build that
includes the space even though it should not be present.
See Also