VCProjectConfigurationProperties Interface

Definition

Contains the properties of the project configuration.

public interface class VCProjectConfigurationProperties
public interface class VCProjectConfigurationProperties
__interface VCProjectConfigurationProperties
[System.Runtime.InteropServices.Guid("8E267027-33C6-11D3-8D52-00C04F8ECDB7")]
[System.Runtime.InteropServices.TypeLibType(System.Runtime.InteropServices.TypeLibTypeFlags.FDispatchable | System.Runtime.InteropServices.TypeLibTypeFlags.FDual)]
public interface VCProjectConfigurationProperties
[<System.Runtime.InteropServices.Guid("8E267027-33C6-11D3-8D52-00C04F8ECDB7")>]
[<System.Runtime.InteropServices.TypeLibType(System.Runtime.InteropServices.TypeLibTypeFlags.FDispatchable | System.Runtime.InteropServices.TypeLibTypeFlags.FDual)>]
type VCProjectConfigurationProperties = interface
Public Interface VCProjectConfigurationProperties
Attributes

Properties

ATLMinimizesCRunTimeLibraryUsage

Causes ATL to link to the C runtime libraries statically to minimize dependencies. It requires that the useOfATL property be set.

Attach

Specifies whether, when this project is debugged, the debugger should be attached to the process specified in the Command property.

CharacterSet

Tells the compiler to use the specified character set.

Command

If Remote specifies local debugging and Attach is false, the Command property specifies the executable file to start when you invoke the debugger. If Attach is true and Remote specifies remote debugging, the Command property specifies the process to which the debug process should be attached when you invoke the debugger.

CommandArguments

The arguments to pass to the process specified in Command when Attach is false.

ConfigurationType

Gets and sets the type of output this configuration generates.

DebuggerType

Specifies the debugger settings for managed or unmanaged code. If you specify a debugger type that does not match the code you are debugging, you cannot step into certain sections of code. For example, if you specify Managed debugger, you cannot step into unmanaged code.

DeleteExtensionsOnClean

Specifies which files in the intermediate directory to delete on clean or rebuild.

EnableManagedIncrementalBuild
HttpUrl

For ATL Server debugging, specifies the URL for the project.

IntermediateDirectory

Specifies a relative path to the intermediate file directory. It can include environment variables.

ManagedExtensions

Specifies that this configuration uses Visual C++. Exposes the functionality of the C++ compiler's /clr (Common Language Runtime Compilation) option.

OutputDirectory

Specifies the directory in which to place output. By default, it uses the project directory.

OutputPath

Specifies the location of the output files for this project's configuration.

PDBPath

Additional directories to search for symbol files.

Remote

Specifies local or remote debugging.

RemoteCommand

If Attach is false and Remote specifies remote debugging, the executable file starts when you invoke the debugger. If Attach is true and Remote specifies remote debugging, then the RemoteCommand property specifies the process to which the debug process should be attached when you invoke the debugger.

RemoteMachine

When Remote specifies remote debugging, the RemoteMachine property specifies the name of the machine that contains the program to debug.

SQLDebugging

Enables SQL debugging for the project.

useOfATL

Specifies how ATL is used by the configuration.

useOfMfc

Specifies how MFC is used by the configuration.

WholeProgramOptimization

Enables cross-module optimizations by delaying code generation to link time. Exposes the functionality of the compiler's /GL (Whole Program Optimization) option.

WorkingDirectory

The debugger's working directory. The default location is the directory containing the .vcxproj file.

Applies to