| File: ManifestUtil\ConvertUtil.cs | Web Access |
| Project: src\msbuild\src\Tasks\Microsoft.Build.Tasks.csproj (Microsoft.Build.Tasks.Core) |
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. using System; using System.Diagnostics; using System.Globalization; namespace Microsoft.Build.Tasks.Deployment.ManifestUtilities { internal static class ConvertUtil { public static bool ToBoolean(string value) { return ToBoolean(value, false); } public static bool ToBoolean(string value, bool defaultValue) { if (!String.IsNullOrEmpty(value)) { try { return Convert.ToBoolean(value, CultureInfo.InvariantCulture); } catch (FormatException) { Debug.Fail($"Invalid value '{value}' for {typeof(bool).Name}, returning {defaultValue}"); } catch (ArgumentException) { Debug.Fail($"Invalid value '{value}' for {typeof(bool).Name}, returning {defaultValue}"); } } return defaultValue; } } }