15 writes to Value
Microsoft.Build.Tasks.Core (2)
Microsoft.CodeAnalysis.CSharp (1)
Microsoft.CodeAnalysis.VisualBasic (4)
Microsoft.DotNet.Build.Tasks.Installers (1)
Microsoft.DotNet.XliffTasks (4)
System.ComponentModel.TypeConverter (1)
System.Private.Xml.Linq (2)
493 references to Value
aspire (10)
Aspire.Cli.Tests (7)
Aspire.Dashboard (1)
Aspire.Hosting.RemoteHost (1)
ConfigurationSchemaGenerator (1)
dotnet (3)
dotnet-svcutil-lib (5)
GenerateDocumentationAndConfigFiles (18)
ilc (13)
Microsoft.AspNetCore.DataProtection (1)
Microsoft.AspNetCore.OpenApi.SourceGenerators (10)
Microsoft.AspNetCore.Rewrite (16)
Microsoft.Build.Tasks.Core (25)
RoslynCodeTaskFactory\RoslynCodeTaskFactory.cs (14)
375if (String.IsNullOrWhiteSpace(includeAttribute?.Value))
383taskInfo.References.Add(includeAttribute.Value.Trim());
389if (String.IsNullOrWhiteSpace(namespaceAttribute?.Value))
397taskInfo.Namespaces.Add(namespaceAttribute.Value.Trim());
459if (String.IsNullOrWhiteSpace(sourceAttribute.Value))
469string sourcePath = sourceAttribute.Value.Trim();
481if (String.IsNullOrWhiteSpace(typeAttribute.Value))
489if (!Enum.TryParse(typeAttribute.Value.Trim(), ignoreCase: true, result: out RoslynCodeTaskFactoryCodeType codeType))
491log.LogErrorWithCodeFromResources("CodeTaskFactory.InvalidCodeType", typeAttribute.Value, String.Join(", ", Enum.GetNames(typeof(RoslynCodeTaskFactoryCodeType))));
500if (String.IsNullOrWhiteSpace(languageAttribute.Value))
507if (ValidCodeLanguages.ContainsKey(languageAttribute.Value))
510taskInfo.CodeLanguage = languageAttribute.Value.ToUpperInvariant();
519if (validLanguage.Value.Contains(languageAttribute.Value))
530log.LogErrorWithCodeFromResources("CodeTaskFactory.InvalidCodeLanguage", languageAttribute.Value, String.Join(", ", ValidCodeLanguages.Keys));
Microsoft.CodeAnalysis (3)
Microsoft.CodeAnalysis.Analyzers (19)
Microsoft.CodeAnalysis.AnalyzerUtilities (18)
Microsoft.CodeAnalysis.CodeStyle (15)
Microsoft.CodeAnalysis.CSharp (5)
Microsoft.CodeAnalysis.Features (8)
Microsoft.CodeAnalysis.ResxSourceGenerator (19)
Microsoft.CodeAnalysis.VisualBasic (8)
Microsoft.CodeAnalysis.Workspaces (19)
Microsoft.DotNet.Arcade.Sdk (3)
Microsoft.DotNet.Build.Manifest (2)
Microsoft.DotNet.Build.Tasks.Installers (6)
Microsoft.DotNet.Build.Tasks.Packaging (2)
Microsoft.DotNet.Build.Tasks.VisualStudio (1)
Microsoft.DotNet.MacOsPkg.Core (1)
Microsoft.DotNet.NuGetRepack.Tasks (9)
Microsoft.DotNet.SourceBuild.Tasks (10)
Microsoft.DotNet.XliffTasks (16)
Microsoft.Extensions.FileProviders.Embedded (1)
Microsoft.Maui.Resizetizer (31)
Microsoft.NET.Build.Tasks (26)
Microsoft.NET.Sdk.BlazorWebAssembly.Tasks (3)
Microsoft.NET.Sdk.StaticWebAssets.Tasks (4)
Microsoft.TestPlatform.TestHostRuntimeProvider (2)
NuGet.Configuration (14)
Settings\SettingElement.cs (5)
109MutableAttributes.Add(existingAttribute.Name.LocalName, existingAttribute.Value);
275if (attribute != null && !attributeValues.Value.Contains(attribute.Value.Trim()))
278string.Format(CultureInfo.CurrentCulture, Resources.AttributeValueNotAllowed, attribute.Name.LocalName, attribute.Value.Trim(), element.Name.LocalName),
289if (attribute != null && attributeValues.Value.Contains(attribute.Value.Trim()))
292string.Format(CultureInfo.CurrentCulture, Resources.AttributeValueNotAllowed, attribute.Name.LocalName, attribute.Value.Trim(), element.Name.LocalName),
NuGet.PackageManagement (5)
NuGet.Packaging (47)
NuGet.Protocol (9)
Roslyn.Diagnostics.Analyzers (18)
sdk-tasks (14)
System.ComponentModel.TypeConverter (1)
System.Private.CoreLib.Generators (20)
System.Private.Xml.Linq (23)
System\Xml\Linq\XLinq.cs (6)
320_resolver.AddFirst(a.Name.NamespaceName.Length == 0 ? string.Empty : a.Name.LocalName, XNamespace.Get(a.Value));
338_resolver.Add(a.Name.NamespaceName.Length == 0 ? string.Empty : a.Name.LocalName, XNamespace.Get(a.Value));
384_writer.WriteAttributeString(GetPrefixOfNamespace(ns, false), localName, namespaceName.Length == 0 && localName == "xmlns" ? XNamespace.xmlnsPrefixNamespace : namespaceName, a.Value);
404await _writer.WriteAttributeStringAsync(GetPrefixOfNamespace(ns, false), localName, namespaceName.Length == 0 && localName == "xmlns" ? XNamespace.xmlnsPrefixNamespace : namespaceName, a.Value).ConfigureAwait(false);
553_writer.WriteAttributeString(GetPrefixOfNamespace(ns, false), localName, namespaceName.Length == 0 && localName == "xmlns" ? XNamespace.xmlnsPrefixNamespace : namespaceName, a.Value);
578_resolver.Add(a.Name.NamespaceName.Length == 0 ? string.Empty : a.Name.LocalName, XNamespace.Get(a.Value));