8 references to DefineConstants
Microsoft.Build.Tasks.CodeAnalysis (8)
src\roslyn\src\Compilers\Core\MSBuildTask\Csc.cs (3)
243
commandLine.AppendSwitchUnquotedIfNotNull("/define:", GetDefineConstantsSwitch(
DefineConstants
, Log));
584
CheckHostObjectSupport(param = nameof(
DefineConstants
), cscHostObject.SetDefineConstants(GetDefineConstantsSwitch(
DefineConstants
, Log)));
src\roslyn\src\Compilers\Core\MSBuildTask\ManagedCompiler.cs (2)
147
set { _store[nameof(
DefineConstants
)] = value; }
148
get { return (string?)_store[nameof(
DefineConstants
)]; }
src\roslyn\src\Compilers\Core\MSBuildTask\Vbc.cs (3)
522
commandLine.AppendSwitchUnquotedIfNotNull("/define:", Vbc.GetDefineConstantsSwitch(this.
DefineConstants
));
865
CheckHostObjectSupport(param = nameof(
DefineConstants
), vbcHostObject.SetDefineConstants(
DefineConstants
));