8 references to DefineConstants
Microsoft.Build.Tasks.CodeAnalysis.Sdk (8)
src\Compilers\Core\MSBuildTask\Csc.cs (3)
232commandLine.AppendSwitchUnquotedIfNotNull("/define:", GetDefineConstantsSwitch(DefineConstants, Log)); 573CheckHostObjectSupport(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)
509commandLine.AppendSwitchUnquotedIfNotNull("/define:", Vbc.GetDefineConstantsSwitch(this.DefineConstants)); 852CheckHostObjectSupport(param = nameof(DefineConstants), vbcHostObject.SetDefineConstants(DefineConstants));