Propriedade VCCLCompilerTool.InlineFunctionExpansion
Obtém ou define o nível de expansão da função in-line para a compilação.InlineFunctionExpansionexpõe a funcionalidade do compilador /Ob (expansão de função embutida) opções.
Namespace: Microsoft.VisualStudio.VCProjectEngine
Assembly: Microsoft.VisualStudio.VCProjectEngine (em Microsoft.VisualStudio.VCProjectEngine.dll)
Sintaxe
'Declaração
Property InlineFunctionExpansion As inlineExpansionOption
inlineExpansionOption InlineFunctionExpansion { get; set; }
property inlineExpansionOption InlineFunctionExpansion {
inlineExpansionOption get ();
void set (inlineExpansionOption value);
}
abstract InlineFunctionExpansion : inlineExpansionOption with get, set
function get InlineFunctionExpansion () : inlineExpansionOption
function set InlineFunctionExpansion (value : inlineExpansionOption)
Valor de propriedade
Tipo: Microsoft.VisualStudio.VCProjectEngine.inlineExpansionOption
An inlineExpansionOption value.
Exemplos
Consulte Como: compilar o código de exemplo para extensibilidade do modelo de projeto para obter informações sobre como compilar e executar esse exemplo.
O exemplo seguinte modifica a InlineFunctionExpansion propriedade no ambiente de desenvolvimento integrado (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 VCCLCompilerTool
prj = DTE.Solution.Projects.Item(1).Object
cfgs = prj.Configurations
cfg = cfgs.Item(1)
tool = cfg.Tools("VCCLCompilerTool")
tool.InlineFunctionExpansion = inlineExpansionOption.expandAnySuitable
End Sub
End Module
Segurança do .NET Framework
- Confiança total para o chamador imediato. O membro não pode ser usado por código parcialmente confiável. Para obter mais informações, consulte Usando bibliotecas de código parcialmente confiáveis.