40 references to FalseString
Microsoft.Build (3)
Construction\ProjectUsingTaskParameterElement.cs (2)
109
return String.IsNullOrEmpty(outputAttribute) ? bool.
FalseString
: outputAttribute;
126
return String.IsNullOrEmpty(requiredAttribute) ? bool.
FalseString
: requiredAttribute;
Logging\TerminalLogger\TerminalLogger.cs (1)
278
tlEnvVariable.Equals("off", StringComparison.InvariantCultureIgnoreCase) || tlEnvVariable.Equals(bool.
FalseString
, StringComparison.InvariantCultureIgnoreCase);
Microsoft.Build.Engine.OM.UnitTests (7)
Construction\UsingTaskBodyElement_Tests.cs (1)
28
Assert.Equal(body.Evaluate, bool.
FalseString
, true);
Construction\UsingTaskParameterElement_Tests.cs (6)
70
Assert.Equal(bool.
FalseString
, parameter.Output);
71
Assert.Equal(bool.
FalseString
, parameter.Required);
162
Assert.Equal(bool.
FalseString
, parameter.Output);
176
Assert.Equal(bool.
FalseString
, parameter.Required);
204
Assert.Equal(bool.
FalseString
, parameter.Output);
218
Assert.Equal(bool.
FalseString
, parameter.Required);
Microsoft.Build.Engine.UnitTests (12)
BackEnd\LoggingConfigurationTelemetry_Tests.cs (1)
41
telemetry.GetProperties().Where(kv => kv.Value != bool.
FalseString
).ShouldBeEmpty();
BackEnd\TaskRegistry_Tests.cs (7)
1395
string output = bool.
FalseString
;
1420
string output = bool.
FalseString
;
1436
string output = bool.
FalseString
;
1462
string output = bool.
FalseString
;
1484
string output = bool.
FalseString
;
1776
List<ProjectUsingTaskElement> elementList = CreateTaskBodyElementWithAttributes(bool.
FalseString
, body);
1821
string evaluate = bool.
FalseString
;
Construction\SolutionProjectGenerator_Tests.cs (1)
1273
Assert.Contains(@"BuildProjectInSolution=""" + bool.
FalseString
+ @"""", solutionConfigurationContents);
TerminalLoggerConfiguration_Tests.cs (3)
61
TerminalLoggerDefault = bool.
FalseString
,
89
TerminalLoggerDefault = bool.
FalseString
,
147
TerminalLoggerDefault = bool.
FalseString
,
Microsoft.Build.Tasks.UnitTests (1)
ProjectExtensionsImportTestBase.cs (1)
93
project.GetPropertyValue(PropertyNameToEnableImport).ShouldBe(bool.
FalseString
, StringCompareShould.IgnoreCase);
Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost (4)
Build\ProjectBuildManager.cs (3)
42
{ PropertyNames.BuildProjectReferences, bool.
FalseString
},
43
{ PropertyNames.BuildingProject, bool.
FalseString
},
57
{ PropertyNames.ShouldUnsetParentConfigurationAndPlatform, bool.
FalseString
}
MSBuild\ProjectFile\Extensions.cs (1)
72
!string.Equals(referenceOutputAssemblyText, bool.
FalseString
, StringComparison.OrdinalIgnoreCase);
Microsoft.Gen.MetadataExtractor.Unit.Tests (1)
GeneratorTests.cs (1)
127
["build_property.GenerateMetadataReport"] = bool.
FalseString
,
Microsoft.Gen.MetricsReports.Unit.Tests (1)
GeneratorTests.cs (1)
88
["build_property.GenerateMetricsReport"] = bool.
FalseString
,
Microsoft.Maui.Controls (1)
VisualElement\VisualElement.cs (1)
2450
if (strValue.Equals(bool.
FalseString
, StringComparison.OrdinalIgnoreCase))
Microsoft.Maui.Controls.DesignTools (1)
VisibilityDesignTypeConverter.cs (1)
9
private static readonly string[] validValues = ["Collapse", "Hidden", bool.
FalseString
, bool.TrueString, "Visible"];
Microsoft.VisualBasic.Core (3)
Microsoft\VisualBasic\CompilerServices\BooleanType.vb (1)
27
If System.String.Compare(Value, Boolean.
FalseString
, True, loc) = 0 Then
Microsoft\VisualBasic\CompilerServices\Conversions.vb (2)
34
If String.Compare(Value, Boolean.
FalseString
, True, loc) = 0 Then
2152
Return Boolean.
FalseString
MSBuild (3)
XMake.cs (3)
2904
terminalLoggerDefault = bool.
FalseString
;
2905
KnownTelemetry.LoggingConfigurationTelemetry.TerminalLoggerDefault = bool.
FalseString
;
2982
terminalLoggerArg = bool.
FalseString
;
System.Net.Quic (1)
src\libraries\Common\src\System\AppContextSwitchHelper.cs (1)
26
if (str == "0" || string.Equals(str, bool.
FalseString
, StringComparison.OrdinalIgnoreCase))
System.Text.Json (2)
System\Text\Json\Document\JsonElement.cs (2)
1630
/// For <see cref="JsonValueKind.False"/>, <see cref="bool.
FalseString
"/> is returned.
1657
return bool.
FalseString
;