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