Note

Access to this page requires authorization. You can try signing in or .

Access to this page requires authorization. You can try .

VCLinkerTool.EnableCOMDATFolding Property

Definition

Namespace:
Microsoft.VisualStudio.VCProjectEngine
Assembly:
Microsoft.VisualStudio.VCProjectEngine.dll
Package:
Microsoft.VisualStudio.VCProjectEngine v17.14.40264

Important

Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.

Removes redundant COMDAT symbols from the linker output.

public:
 property Microsoft::VisualStudio::VCProjectEngine::optFoldingType EnableCOMDATFolding { Microsoft::VisualStudio::VCProjectEngine::optFoldingType get(); void set(Microsoft::VisualStudio::VCProjectEngine::optFoldingType value); };
public:
 property Microsoft::VisualStudio::VCProjectEngine::optFoldingType EnableCOMDATFolding { Microsoft::VisualStudio::VCProjectEngine::optFoldingType get(); void set(Microsoft::VisualStudio::VCProjectEngine::optFoldingType value); };
[System.Runtime.InteropServices.DispId(81)]
public Microsoft.VisualStudio.VCProjectEngine.optFoldingType EnableCOMDATFolding { [System.Runtime.InteropServices.DispId(81)] get; [System.Runtime.InteropServices.DispId(81)] set; }
[<System.Runtime.InteropServices.DispId(81)>]
[<get: System.Runtime.InteropServices.DispId(81)>]
[<set: System.Runtime.InteropServices.DispId(81)>]
member this.EnableCOMDATFolding : Microsoft.VisualStudio.VCProjectEngine.optFoldingType with get, set
Public Property EnableCOMDATFolding As optFoldingType

Property Value

An optFoldingType enumeration.

Attributes

Examples

The following example modifies the EnableCOMDATFolding property in the integrated development environment (IDE):

' add reference to Microsoft.VisualStudio.VCProjectEngine 
Imports EnvDTE 
Imports Microsoft.VisualStudio.VCProjectEngine 

Public Module Module1 
 Sub Test() 
 Dim prj As VCProject 
 Dim cfgs, tools As IVCCollection 
 Dim cfg As VCConfiguration 
 Dim tool As VCLinkerTool 
 prj = DTE.Solution.Projects.Item(1).Object 
 cfgs = prj.Configurations 
 cfg = cfgs.Item(1) 
 tool = cfg.Tools("VCLinkerTool") 
 tool.EnableCOMDATFolding = optFoldingType.optNoFolding 
 End Sub 
End Module 

Remarks

EnableCOMDATFolding exposes the functionality of the /OPT (Optimizations) linker option.

Use the optFoldingType enumeration to set the value of this property.

Applies to