510 references to Value
aspire (14)
Certificates\CertificateGeneration\MacOSCertificateManager.cs (2)
285var subject = subjectMatch.Groups[1].Value; 299var hashes = matches.OfType<Match>().Select(m => m.Groups[1].Value).ToList();
Certificates\CertificateGeneration\UnixCertificateManager.cs (1)
959openSslDir = match.Groups[1].Value;
Certificates\CertificateHelpers.cs (1)
123openSslDir = match.Groups[1].Value;
Mcp\Docs\DocsIndexService.cs (2)
634.Select(static m => m.Groups[1].Value.ToLowerInvariant()) 641.Select(static m => m.Value.ToLowerInvariant())
Projects\FallbackProjectParser.cs (3)
293return match.Groups[1].Value; 312var identity = match.Groups[1].Value; 313var version = match.Groups[2].Value;
Utils\EnvironmentChecker\ContainerRuntimeCheck.cs (1)
378if (match.Success && Version.TryParse(match.Groups[1].Value, out var version))
Utils\EnvironmentChecker\WslEnvironmentCheck.cs (1)
98if (kernelVersionMatch.Success && int.TryParse(kernelVersionMatch.Groups[1].Value, out int majorVersion))
Utils\MarkdownToSpectreConverter.cs (3)
127var content = match.Groups[1].Value.Trim(); 176var content = match.Groups[1].Value; 220spectreMarkups.Add(match.Value);
Aspire.Cli.EndToEnd.Tests (3)
McpDocsE2ETests.cs (3)
149var slug = slugMatch.Groups[1].Value; 198var slug = slugMatch.Groups[1].Value; 247var slug = slugMatch.Groups[1].Value;
Aspire.Cli.Tests (4)
Mcp\E2E\McpDocsE2ETests.cs (3)
131var slug = slugMatch.Groups[1].Value; 175var slug = slugMatch.Groups[1].Value; 219var slug = slugMatch.Groups[1].Value;
Mcp\ListConsoleLogsToolTests.cs (1)
206return match.Success ? match.Groups[1].Value : string.Empty;
Aspire.Dashboard (4)
Model\ConnectionStringParser.cs (4)
231var hostPart = match.Groups[1].Value; 232var portPart = match.Groups[2].Value; 328host = match.Groups[1].Value; 329if (match.Groups[2].Success && int.TryParse(match.Groups[2].Value, out var portValue))
Aspire.Dashboard.Tests (2)
ConsoleLogsTests\UrlParserTests.cs (2)
103Assert.Equal("http://www.localhost:8080", match.Value.ToLowerInvariant()); 116Assert.Equal(expected, match.Value.ToLowerInvariant());
Aspire.EndToEnd.Tests (3)
tests\Shared\TemplatesTesting\AspireProject.cs (3)
144if (matches[0].Groups["tfm"].Value != tfmToUse.ToTFMString()) 146throw new XunitException($"Expected to find {tfmToUse.ToTFMString()} but found '{matches[0].Groups["tfm"].Value}' in {csprojPath}: {csprojContent}"); 218DashboardUrl = m.Groups["url"].Value;
Aspire.Hosting (4)
Dashboard\DashboardService.cs (1)
53Match { Success: true } match => match.Groups["name"].Value,
Dcp\DcpExecutor.cs (1)
584Match { Success: true } match => match.Groups["name"].Value,
Utils\ContainerReferenceParser.cs (2)
28match.Groups["image"].Value, 34=> group.Success ? group.Value : default;
Aspire.Hosting.Kubernetes (2)
KubernetesResource.cs (2)
509var conditionPath = $"({HelmExtensions.ScalarExpressionPattern().Match(paramExpression).Value.Trim()} | lower)"; 746return $"{expression.Captures[0].Value.Trim()}{typeConversion}".ToHelmExpression();
Aspire.Hosting.Python (3)
PythonVersionDetector.cs (3)
39return match.Groups[1].Value; 100return $"{match.Groups[1].Value}.{match.Groups[2].Value}";
Aspire.Hosting.Redis.Tests (1)
AddRedisTests.cs (1)
923return match.Groups[1].Value;
Aspire.Hosting.SqlServer (1)
SqlServerBuilderExtensions.cs (1)
281var count = matchGo.Groups["repeat"].Success ? int.Parse(matchGo.Groups["repeat"].Value, CultureInfo.InvariantCulture) : 1;
Aspire.Templates.Tests (6)
BuildAndRunTemplateTests.cs (2)
85var version = match.Groups[1].Value; 137var version = match.Groups[1].Value;
LocalhostTldHostnameTests.cs (1)
88var hostname = match.Groups[1].Value;
tests\Shared\TemplatesTesting\AspireProject.cs (3)
144if (matches[0].Groups["tfm"].Value != tfmToUse.ToTFMString()) 146throw new XunitException($"Expected to find {tfmToUse.ToTFMString()} but found '{matches[0].Groups["tfm"].Value}' in {csprojPath}: {csprojContent}"); 218DashboardUrl = m.Groups["url"].Value;
cdac-build-tool (1)
ContractDescriptorSourceFileEmitter.cs (1)
94var key = match.Groups[1].Captures[0].Value;
dotnet (8)
Commands\Test\MTP\Terminal\TerminalTestReporter.cs (6)
665bool weHaveFilePathAndCodeLine = !string.IsNullOrWhiteSpace(match.Groups["code"].Value); 671terminal.Append(match.Groups["code"].Value); 675terminal.Append(match.Groups["code1"].Value); 683if (!string.IsNullOrWhiteSpace(match.Groups["file"].Value)) 685int line = int.TryParse(match.Groups["line"].Value, out int value) ? value : 0; 686terminal.AppendLink(match.Groups["file"].Value, line);
Telemetry\MacAddressGetter.cs (2)
49if (!Regex.IsMatch(match.Value, ZeroRegex)) 51macAddress = match.Value;
dotnet-dev-certs (3)
src\aspnetcore\src\Shared\CertificateGeneration\MacOSCertificateManager.cs (2)
285var subject = subjectMatch.Groups[1].Value; 299var hashes = matches.OfType<Match>().Select(m => m.Groups[1].Value).ToList();
src\aspnetcore\src\Shared\CertificateGeneration\UnixCertificateManager.cs (1)
959openSslDir = match.Groups[1].Value;
dotnet-svcutil-lib (15)
FrameworkFork\Microsoft.CodeDom\Microsoft\CSharpCodeProvider.cs (6)
580ce.FileName = m.Groups[2].Value; 581ce.Line = int.Parse(m.Groups[4].Value, CultureInfo.InvariantCulture); 582ce.Column = int.Parse(m.Groups[5].Value, CultureInfo.InvariantCulture); 584if (string.Compare(m.Groups[full ? 6 : 1].Value, "warning", StringComparison.OrdinalIgnoreCase) == 0) 588ce.ErrorNumber = m.Groups[full ? 7 : 2].Value; 589ce.ErrorText = m.Groups[full ? 8 : 3].Value;
FrameworkFork\Microsoft.CodeDom\Microsoft\VBCodeProvider.cs (5)
549ce.FileName = m.Groups[1].Value; 550string rawLine = m.Groups[2].Value; 555if (string.Compare(m.Groups[3].Value, "warning", StringComparison.OrdinalIgnoreCase) == 0) 559ce.ErrorNumber = m.Groups[4].Value; 560ce.ErrorText = m.Groups[5].Value;
FrameworkFork\Microsoft.Xml\Xml\Serialization\SourceInfo.cs (4)
69object varA = ILG.GetVariable(match.Groups["a"].Value); 71object varIA = ILG.GetVariable(match.Groups["ia"].Value); 192Debug.Assert(match.Groups["arg"].Value == Arg); 193Debug.Assert(match.Groups["cast"].Value == CodeIdentifier.GetCSharpName(Type));
GenerateDocumentationAndConfigFiles (13)
src\roslyn\src\Workspaces\SharedUtilitiesAndExtensions\Compiler\Core\EditorConfig\Parsing\EditorConfigParser.cs (3)
73var sectionName = sectionMatches[0].Groups[1].Value; 88var key = propMatches[0].Groups[1].Value; 89var value = propMatches[0].Groups[2].Value;
src\roslyn\src\Workspaces\SharedUtilitiesAndExtensions\Compiler\Core\EditorConfig\Parsing\Sections\SectionMatcher.cs (10)
140var innerText = singleMatch.Groups[1].Value; 144var firstExtension = fileExtensionMatches[0].Value; 145var secondExtension = fileExtensionMatches[1].Value; 184var innerText = singleMatch.Groups[1].Value; 190if (fileExtensionMatch?.Value == mustMatchFileExtension) 196fileExtensionMatch?.Value == mustNotMatchFileExtension) 227var innerText = singleMatch.Groups[1].Value; 233if (match?.Value == firstFileExtension) 238if (match?.Value == secondFileExtension) 318if (!int.TryParse(match.Groups[i + 1].Value, out var matchedNum) ||
illink (2)
installer.tasks (1)
StaticFileRegeneration\TpnSectionHeader.cs (1)
162Name = numberListMatch.Groups["name"].Value,
Microsoft.AspNetCore.App.Analyzers (2)
RouteEmbeddedLanguage\Infrastructure\EmbeddedLanguageCommentDetector.cs (2)
46identifier = match.Groups["identifier"].Value; 48options = optionGroup.Captures.OfType<Capture>().Select(c => c.Value);
Microsoft.AspNetCore.Components.WebView.Maui (2)
src\BlazorWebView\src\SharedSource\StaticContentHotReloadManager.cs (2)
96 var assemblyName = match.Groups["AssemblyName"].Value; 97 var relativePath = match.Groups["RelativePath"].Value;
Microsoft.AspNetCore.Components.WebView.WindowsForms (2)
src\BlazorWebView\src\SharedSource\StaticContentHotReloadManager.cs (2)
96 var assemblyName = match.Groups["AssemblyName"].Value; 97 var relativePath = match.Groups["RelativePath"].Value;
Microsoft.AspNetCore.Components.WebView.Wpf (2)
src\BlazorWebView\src\SharedSource\StaticContentHotReloadManager.cs (2)
96 var assemblyName = match.Groups["AssemblyName"].Value; 97 var relativePath = match.Groups["RelativePath"].Value;
Microsoft.AspNetCore.DeveloperCertificates.XPlat (3)
src\aspnetcore\src\Shared\CertificateGeneration\MacOSCertificateManager.cs (2)
285var subject = subjectMatch.Groups[1].Value; 299var hashes = matches.OfType<Match>().Select(m => m.Groups[1].Value).ToList();
src\aspnetcore\src\Shared\CertificateGeneration\UnixCertificateManager.cs (1)
959openSslDir = match.Groups[1].Value;
Microsoft.AspNetCore.Rewrite (1)
BackReferenceCollection.cs (1)
18_backReferences.Add(references[i].Value);
Microsoft.AspNetCore.Server.Kestrel.Core (3)
src\aspnetcore\src\Shared\CertificateGeneration\MacOSCertificateManager.cs (2)
285var subject = subjectMatch.Groups[1].Value; 299var hashes = matches.OfType<Match>().Select(m => m.Groups[1].Value).ToList();
src\aspnetcore\src\Shared\CertificateGeneration\UnixCertificateManager.cs (1)
959openSslDir = match.Groups[1].Value;
Microsoft.Build (55)
BuildCheck\Infrastructure\EditorConfig\EditorConfigFile.cs (3)
91var sectionName = sectionMatch.Groups[1].Value; 102var key = propMatch.Groups[1].Value.ToLower(); 103var value = propMatch.Groups[2].Value;
BuildCheck\Infrastructure\EditorConfig\EditorConfigGlobsMatcher.cs (1)
56if (!int.TryParse(match.Groups[i + 1].Value, out int matchedNum) ||
Construction\Solution\SolutionFile.cs (9)
1080string referenceGuid = match.Groups["PROPERTYNAME"].Value.Trim(); 1098string propertyName = match.Groups["PROPERTYNAME"].Value.Trim(); 1099string propertyValue = match.Groups["PROPERTYVALUE"].Value.Trim(); 1506string projectTypeGuid = match.Groups["PROJECTTYPEGUID"].Value.Trim(); 1507proj.ProjectName = match.Groups["PROJECTNAME"].Value.Trim(); 1508proj.RelativePath = match.Groups["RELATIVEPATH"].Value.Trim(); 1509proj.ProjectGuid = match.Groups["PROJECTGUID"].Value.Trim(); 1606string projectGuid = match.Groups["PROPERTYNAME"].Value.Trim(); 1607string parentProjectGuid = match.Groups["PROPERTYVALUE"].Value.Trim();
Evaluation\Expander.cs (6)
1163string metadataName = itemMetadataMatch.Groups[RegularExpressions.NameGroup].Value; 1178itemType = itemMetadataMatch.Groups[RegularExpressions.ItemTypeGroup].Value; 1201metadataValue = itemMetadataMatch.Value; 3026bool isItemSpecModifier = s_itemSpecModifiers.TryGetValue(match.Value, out string name); 3031name = groupCollection[RegularExpressions.NameGroup].Value; 3032ProjectErrorUtilities.VerifyThrowInvalidProject(groupCollection[RegularExpressions.ItemSpecificationGroup].Length == 0, elementLocation, "QualifiedMetadataInTransformNotAllowed", match.Value, name);
Evaluation\IntrinsicFunctions.cs (1)
297return Path.Combine(NativeMethodsShared.FrameworkBasePath, m.Groups[0].Value) + Path.DirectorySeparatorChar;
Logging\TerminalLogger\TerminalLogger.cs (4)
308tlArg = tlArgMatches[^1].Groups["value"].Value; 315verbosityArg = verbosityArgMatches[^1].Groups["value"].Value; 322tlpArg.AddRange(tlpMatches.OfType<Match>().Select(m => m.Groups["value"].Value).Where(v => !string.IsNullOrEmpty(v))); 329clpArg.AddRange(clpMatches.OfType<Match>().Select(m => m.Groups["value"].Value).Where(v => !string.IsNullOrEmpty(v)));
src\msbuild\src\Shared\CanonicalError.cs (24)
354category = match.Groups["CATEGORY"].Value.Trim(); 368parsedMessage.line = ConvertToIntWithDefault(match.Groups["LINE"].Value.Trim()); 369parsedMessage.column = ConvertToIntWithDefault(match.Groups["COLUMN"].Value.Trim()); 370parsedMessage.text = (match.Groups["TEXT"].Value + messageOverflow).Trim(); 371parsedMessage.origin = match.Groups["FILENAME"].Value.Trim(); 386string origin = match.Groups["ORIGIN"].Value.Trim(); 387category = match.Groups["CATEGORY"].Value.Trim(); 388parsedMessage.code = match.Groups["CODE"].Value.Trim(); 389parsedMessage.text = (match.Groups["TEXT"].Value + messageOverflow).Trim(); 390parsedMessage.subcategory = match.Groups["SUBCATEGORY"].Value.Trim(); 416string location = match.Groups["LOCATION"].Value.Trim(); 417parsedMessage.origin = match.Groups["FILENAME"].Value.Trim(); 432parsedMessage.line = ConvertToIntWithDefault(match.Groups["LINE"].Value.Trim()); 439parsedMessage.line = ConvertToIntWithDefault(match.Groups["LINE"].Value.Trim()); 440parsedMessage.endLine = ConvertToIntWithDefault(match.Groups["ENDLINE"].Value.Trim()); 447parsedMessage.line = ConvertToIntWithDefault(match.Groups["LINE"].Value.Trim()); 448parsedMessage.column = ConvertToIntWithDefault(match.Groups["COLUMN"].Value.Trim()); 455parsedMessage.line = ConvertToIntWithDefault(match.Groups["LINE"].Value.Trim()); 456parsedMessage.column = ConvertToIntWithDefault(match.Groups["COLUMN"].Value.Trim()); 457parsedMessage.endColumn = ConvertToIntWithDefault(match.Groups["ENDCOLUMN"].Value.Trim()); 464parsedMessage.line = ConvertToIntWithDefault(match.Groups["LINE"].Value.Trim()); 465parsedMessage.column = ConvertToIntWithDefault(match.Groups["COLUMN"].Value.Trim()); 466parsedMessage.endLine = ConvertToIntWithDefault(match.Groups["ENDLINE"].Value.Trim()); 467parsedMessage.endColumn = ConvertToIntWithDefault(match.Groups["ENDCOLUMN"].Value.Trim());
Utilities\ProjectWriter.cs (7)
151Match itemVectorTransform = ItemVectorTransformRegex.Match(itemVectorTransforms[i].Value); 156base.WriteString(itemVectorTransform.Groups["PREFIX"].Value); 157base.WriteString(itemVectorTransform.Groups["TYPE"].Value); 158base.WriteRaw(itemVectorTransform.Groups["ARROW"].Value); 159base.WriteString(itemVectorTransform.Groups["TRANSFORM"].Value); 160base.WriteString(itemVectorTransform.Groups["SEPARATOR_SPECIFICATION"].Value); 161base.WriteString(itemVectorTransform.Groups["SUFFIX"].Value);
Microsoft.Build.Framework (2)
Utilities\FileMatcher.cs (2)
1887wildcardDirectoryPart = match.Groups["WILDCARDDIR"].Value; 1888filenamePart = match.Groups["FILENAME"].Value;
Microsoft.Build.Tasks.CodeAnalysis (19)
src\roslyn\src\Compilers\Core\MSBuildTask\CanonicalError.cs (19)
308string origin = match.Groups["ORIGIN"].Value.Trim(); 309string category = match.Groups["CATEGORY"].Value.Trim(); 310parsedMessage.code = match.Groups["CODE"].Value.Trim(); 311parsedMessage.text = (match.Groups["TEXT"].Value + messageOverflow).Trim(); 312parsedMessage.subcategory = match.Groups["SUBCATEGORY"].Value.Trim(); 338string location = match.Groups["LOCATION"].Value.Trim(); 339parsedMessage.origin = match.Groups["FILENAME"].Value.Trim(); 354parsedMessage.line = ConvertToIntWithDefault(match.Groups["LINE"].Value.Trim()); 361parsedMessage.line = ConvertToIntWithDefault(match.Groups["LINE"].Value.Trim()); 362parsedMessage.endLine = ConvertToIntWithDefault(match.Groups["ENDLINE"].Value.Trim()); 369parsedMessage.line = ConvertToIntWithDefault(match.Groups["LINE"].Value.Trim()); 370parsedMessage.column = ConvertToIntWithDefault(match.Groups["COLUMN"].Value.Trim()); 377parsedMessage.line = ConvertToIntWithDefault(match.Groups["LINE"].Value.Trim()); 378parsedMessage.column = ConvertToIntWithDefault(match.Groups["COLUMN"].Value.Trim()); 379parsedMessage.endColumn = ConvertToIntWithDefault(match.Groups["ENDCOLUMN"].Value.Trim()); 386parsedMessage.line = ConvertToIntWithDefault(match.Groups["LINE"].Value.Trim()); 387parsedMessage.column = ConvertToIntWithDefault(match.Groups["COLUMN"].Value.Trim()); 388parsedMessage.endLine = ConvertToIntWithDefault(match.Groups["ENDLINE"].Value.Trim()); 389parsedMessage.endColumn = ConvertToIntWithDefault(match.Groups["ENDCOLUMN"].Value.Trim());
Microsoft.Build.Tasks.Core (37)
AssemblyDependency\AssemblyFoldersFromConfig\AssemblyFoldersFromConfigResolver.cs (2)
105_targetRuntimeVersion = match.Groups["TARGETRUNTIMEVERSION"].Value.Trim(); 106_assemblyFolderConfigFile = match.Groups["ASSEMBLYFOLDERCONFIGFILE"].Value.Trim();
BootstrapperUtil\BuildMessage.cs (1)
36HelpId = int.Parse(match.Value, CultureInfo.InvariantCulture);
FindInvalidProjectReferences.cs (2)
129platformIdentity = match.Groups[PlatformSimpleNameGroup].Value.Trim(); 131string rawVersion = match.Groups[PlatformVersionGroup].Value.Trim();
NativeMethods.cs (6)
526match.Groups[2].Value) 528match.Groups[2].Value) 531if (!string.IsNullOrEmpty(match.Groups[1].Value)) 533name.Version = new Version(match.Groups[1].Value); 535if (!string.IsNullOrWhiteSpace(match.Groups[3].Value)) 537var value = match.Groups[3].Value;
ResolveSDKReference.cs (2)
589sdkSimpleName = match.Groups[SDKsimpleNameGroup].Value.Trim(); 591rawSdkVersion = match.Groups[SDKVersionGroup].Value.Trim();
src\msbuild\src\Shared\CanonicalError.cs (24)
354category = match.Groups["CATEGORY"].Value.Trim(); 368parsedMessage.line = ConvertToIntWithDefault(match.Groups["LINE"].Value.Trim()); 369parsedMessage.column = ConvertToIntWithDefault(match.Groups["COLUMN"].Value.Trim()); 370parsedMessage.text = (match.Groups["TEXT"].Value + messageOverflow).Trim(); 371parsedMessage.origin = match.Groups["FILENAME"].Value.Trim(); 386string origin = match.Groups["ORIGIN"].Value.Trim(); 387category = match.Groups["CATEGORY"].Value.Trim(); 388parsedMessage.code = match.Groups["CODE"].Value.Trim(); 389parsedMessage.text = (match.Groups["TEXT"].Value + messageOverflow).Trim(); 390parsedMessage.subcategory = match.Groups["SUBCATEGORY"].Value.Trim(); 416string location = match.Groups["LOCATION"].Value.Trim(); 417parsedMessage.origin = match.Groups["FILENAME"].Value.Trim(); 432parsedMessage.line = ConvertToIntWithDefault(match.Groups["LINE"].Value.Trim()); 439parsedMessage.line = ConvertToIntWithDefault(match.Groups["LINE"].Value.Trim()); 440parsedMessage.endLine = ConvertToIntWithDefault(match.Groups["ENDLINE"].Value.Trim()); 447parsedMessage.line = ConvertToIntWithDefault(match.Groups["LINE"].Value.Trim()); 448parsedMessage.column = ConvertToIntWithDefault(match.Groups["COLUMN"].Value.Trim()); 455parsedMessage.line = ConvertToIntWithDefault(match.Groups["LINE"].Value.Trim()); 456parsedMessage.column = ConvertToIntWithDefault(match.Groups["COLUMN"].Value.Trim()); 457parsedMessage.endColumn = ConvertToIntWithDefault(match.Groups["ENDCOLUMN"].Value.Trim()); 464parsedMessage.line = ConvertToIntWithDefault(match.Groups["LINE"].Value.Trim()); 465parsedMessage.column = ConvertToIntWithDefault(match.Groups["COLUMN"].Value.Trim()); 466parsedMessage.endLine = ConvertToIntWithDefault(match.Groups["ENDLINE"].Value.Trim()); 467parsedMessage.endColumn = ConvertToIntWithDefault(match.Groups["ENDCOLUMN"].Value.Trim());
Microsoft.Build.Utilities.Core (24)
src\msbuild\src\Shared\CanonicalError.cs (24)
354category = match.Groups["CATEGORY"].Value.Trim(); 368parsedMessage.line = ConvertToIntWithDefault(match.Groups["LINE"].Value.Trim()); 369parsedMessage.column = ConvertToIntWithDefault(match.Groups["COLUMN"].Value.Trim()); 370parsedMessage.text = (match.Groups["TEXT"].Value + messageOverflow).Trim(); 371parsedMessage.origin = match.Groups["FILENAME"].Value.Trim(); 386string origin = match.Groups["ORIGIN"].Value.Trim(); 387category = match.Groups["CATEGORY"].Value.Trim(); 388parsedMessage.code = match.Groups["CODE"].Value.Trim(); 389parsedMessage.text = (match.Groups["TEXT"].Value + messageOverflow).Trim(); 390parsedMessage.subcategory = match.Groups["SUBCATEGORY"].Value.Trim(); 416string location = match.Groups["LOCATION"].Value.Trim(); 417parsedMessage.origin = match.Groups["FILENAME"].Value.Trim(); 432parsedMessage.line = ConvertToIntWithDefault(match.Groups["LINE"].Value.Trim()); 439parsedMessage.line = ConvertToIntWithDefault(match.Groups["LINE"].Value.Trim()); 440parsedMessage.endLine = ConvertToIntWithDefault(match.Groups["ENDLINE"].Value.Trim()); 447parsedMessage.line = ConvertToIntWithDefault(match.Groups["LINE"].Value.Trim()); 448parsedMessage.column = ConvertToIntWithDefault(match.Groups["COLUMN"].Value.Trim()); 455parsedMessage.line = ConvertToIntWithDefault(match.Groups["LINE"].Value.Trim()); 456parsedMessage.column = ConvertToIntWithDefault(match.Groups["COLUMN"].Value.Trim()); 457parsedMessage.endColumn = ConvertToIntWithDefault(match.Groups["ENDCOLUMN"].Value.Trim()); 464parsedMessage.line = ConvertToIntWithDefault(match.Groups["LINE"].Value.Trim()); 465parsedMessage.column = ConvertToIntWithDefault(match.Groups["COLUMN"].Value.Trim()); 466parsedMessage.endLine = ConvertToIntWithDefault(match.Groups["ENDLINE"].Value.Trim()); 467parsedMessage.endColumn = ConvertToIntWithDefault(match.Groups["ENDCOLUMN"].Value.Trim());
Microsoft.CodeAnalysis (6)
CommandLine\AnalyzerConfig.cs (3)
226var sectionName = sectionMatches[0].Groups[1].Value; 238var key = propMatches[0].Groups[1].Value; 239var value = propMatches[0].Groups[2].Value;
CommandLine\AnalyzerConfig.SectionNameMatching.cs (1)
54if (!int.TryParse(match.Groups[i + 1].Value, out int matchedNum) ||
Diagnostic\DiagnosticInfo.cs (1)
141int value = int.Parse(match.Value[1..^1]);
SourceGeneration\AdditionalSourcesCollection.cs (1)
80throw new ArgumentException(string.Format(CodeAnalysisResources.HintNameInvalidSegment, hintName, match.Value, match.Index), nameof(hintName));
Microsoft.CodeAnalysis.Analyzers (13)
src\roslyn\src\Workspaces\SharedUtilitiesAndExtensions\Compiler\Core\EditorConfig\Parsing\EditorConfigParser.cs (3)
73var sectionName = sectionMatches[0].Groups[1].Value; 88var key = propMatches[0].Groups[1].Value; 89var value = propMatches[0].Groups[2].Value;
src\roslyn\src\Workspaces\SharedUtilitiesAndExtensions\Compiler\Core\EditorConfig\Parsing\Sections\SectionMatcher.cs (10)
140var innerText = singleMatch.Groups[1].Value; 144var firstExtension = fileExtensionMatches[0].Value; 145var secondExtension = fileExtensionMatches[1].Value; 184var innerText = singleMatch.Groups[1].Value; 190if (fileExtensionMatch?.Value == mustMatchFileExtension) 196fileExtensionMatch?.Value == mustNotMatchFileExtension) 227var innerText = singleMatch.Groups[1].Value; 233if (match?.Value == firstFileExtension) 238if (match?.Value == secondFileExtension) 318if (!int.TryParse(match.Groups[i + 1].Value, out var matchedNum) ||
Microsoft.CodeAnalysis.AnalyzerUtilities (13)
src\roslyn\src\Workspaces\SharedUtilitiesAndExtensions\Compiler\Core\EditorConfig\Parsing\EditorConfigParser.cs (3)
73var sectionName = sectionMatches[0].Groups[1].Value; 88var key = propMatches[0].Groups[1].Value; 89var value = propMatches[0].Groups[2].Value;
src\roslyn\src\Workspaces\SharedUtilitiesAndExtensions\Compiler\Core\EditorConfig\Parsing\Sections\SectionMatcher.cs (10)
140var innerText = singleMatch.Groups[1].Value; 144var firstExtension = fileExtensionMatches[0].Value; 145var secondExtension = fileExtensionMatches[1].Value; 184var innerText = singleMatch.Groups[1].Value; 190if (fileExtensionMatch?.Value == mustMatchFileExtension) 196fileExtensionMatch?.Value == mustNotMatchFileExtension) 227var innerText = singleMatch.Groups[1].Value; 233if (match?.Value == firstFileExtension) 238if (match?.Value == secondFileExtension) 318if (!int.TryParse(match.Groups[i + 1].Value, out var matchedNum) ||
Microsoft.CodeAnalysis.CodeStyle (14)
src\roslyn\src\Analyzers\Core\Analyzers\ValidateFormatString\AbstractValidateFormatStringDiagnosticAnalyzer.cs (1)
347var textInsideBrackets = match.Groups[1].Value;
src\roslyn\src\Workspaces\SharedUtilitiesAndExtensions\Compiler\Core\EditorConfig\Parsing\EditorConfigParser.cs (3)
73var sectionName = sectionMatches[0].Groups[1].Value; 88var key = propMatches[0].Groups[1].Value; 89var value = propMatches[0].Groups[2].Value;
src\roslyn\src\Workspaces\SharedUtilitiesAndExtensions\Compiler\Core\EditorConfig\Parsing\Sections\SectionMatcher.cs (10)
140var innerText = singleMatch.Groups[1].Value; 144var firstExtension = fileExtensionMatches[0].Value; 145var secondExtension = fileExtensionMatches[1].Value; 184var innerText = singleMatch.Groups[1].Value; 190if (fileExtensionMatch?.Value == mustMatchFileExtension) 196fileExtensionMatch?.Value == mustNotMatchFileExtension) 227var innerText = singleMatch.Groups[1].Value; 233if (match?.Value == firstFileExtension) 238if (match?.Value == secondFileExtension) 318if (!int.TryParse(match.Groups[i + 1].Value, out var matchedNum) ||
Microsoft.CodeAnalysis.CSharp (2)
Symbols\Synthesized\GeneratedNameParser.cs (2)
219displayFileName = groups[1].Value; 221var checksumString = groups[2].Value;
Microsoft.CodeAnalysis.Features (14)
CodeFixes\Configuration\ConfigurationUpdater.cs (8)
373parts = (optionName: match.Groups[1].Value.Trim(), 374optionValue: match.Groups[2].Value.Trim()); 463var untrimmedKey = groups[1].Value.ToString(); 465var value = groups[2].Value.ToString(); 466var severitySuffixInValue = groups[3].Value.ToString(); 467var commentValue = groups[4].Value.ToString(); 568var mostRecentHeaderText = groups[1].Value.ToString().ToLowerInvariant(); 601var match = headerRegex.Match(relativePath).Value;
ConvertNumericLiteral\AbstractConvertNumericLiteralCodeRefactoringProvider.cs (3)
135return (prefix: groups[1].Value, number: groups[2].Value, suffix: groups[3].Value);
EmbeddedLanguages\EmbeddedLanguageCommentDetector.cs (2)
43identifier = match.Groups["identifier"].Value; 47options = optionGroup.Captures.Select(c => c.Value);
src\roslyn\src\Analyzers\Core\Analyzers\ValidateFormatString\AbstractValidateFormatStringDiagnosticAnalyzer.cs (1)
347var textInsideBrackets = match.Groups[1].Value;
Microsoft.CodeAnalysis.ResxSourceGenerator (14)
AbstractResxGenerator.cs (1)
882.Select(m => m.Groups[1].Value)
src\roslyn\src\Workspaces\SharedUtilitiesAndExtensions\Compiler\Core\EditorConfig\Parsing\EditorConfigParser.cs (3)
73var sectionName = sectionMatches[0].Groups[1].Value; 88var key = propMatches[0].Groups[1].Value; 89var value = propMatches[0].Groups[2].Value;
src\roslyn\src\Workspaces\SharedUtilitiesAndExtensions\Compiler\Core\EditorConfig\Parsing\Sections\SectionMatcher.cs (10)
140var innerText = singleMatch.Groups[1].Value; 144var firstExtension = fileExtensionMatches[0].Value; 145var secondExtension = fileExtensionMatches[1].Value; 184var innerText = singleMatch.Groups[1].Value; 190if (fileExtensionMatch?.Value == mustMatchFileExtension) 196fileExtensionMatch?.Value == mustNotMatchFileExtension) 227var innerText = singleMatch.Groups[1].Value; 233if (match?.Value == firstFileExtension) 238if (match?.Value == secondFileExtension) 318if (!int.TryParse(match.Groups[i + 1].Value, out var matchedNum) ||
Microsoft.CodeAnalysis.Workspaces (15)
src\roslyn\src\Workspaces\SharedUtilitiesAndExtensions\Compiler\Core\EditorConfig\Parsing\EditorConfigParser.cs (3)
73var sectionName = sectionMatches[0].Groups[1].Value; 88var key = propMatches[0].Groups[1].Value; 89var value = propMatches[0].Groups[2].Value;
src\roslyn\src\Workspaces\SharedUtilitiesAndExtensions\Compiler\Core\EditorConfig\Parsing\Sections\SectionMatcher.cs (10)
140var innerText = singleMatch.Groups[1].Value; 144var firstExtension = fileExtensionMatches[0].Value; 145var secondExtension = fileExtensionMatches[1].Value; 184var innerText = singleMatch.Groups[1].Value; 190if (fileExtensionMatch?.Value == mustMatchFileExtension) 196fileExtensionMatch?.Value == mustNotMatchFileExtension) 227var innerText = singleMatch.Groups[1].Value; 233if (match?.Value == firstFileExtension) 238if (match?.Value == secondFileExtension) 318if (!int.TryParse(match.Groups[i + 1].Value, out var matchedNum) ||
Workspace\Solution\ProjectInfo.cs (2)
530return match.Success ? (match.Groups["name"].Value, match.Groups["flavor"].Value) : default;
Microsoft.Diagnostics.NETCore.Client (1)
DiagnosticsClient\DiagnosticsClient.cs (1)
459string group = match.Groups[1].Value;
Microsoft.DotNet.Arcade.Sdk (3)
src\CheckRequiredDotNetVersion.cs (1)
89var minSdkVersionStr = match.Groups[1].Value;
src\GenerateResxSource.cs (1)
507.Select(m => m.Groups[1].Value)
src\LocateDotNet.cs (1)
68var sdkVersion = match.Groups[1].Value;
Microsoft.DotNet.Build.Manifest (1)
BuildModelFactory.cs (1)
234string replacementUri = $"{Regex.Unescape(AzureDevOpsHostPattern)}/{m.Groups["account"].Value}";
Microsoft.DotNet.Build.Tasks.Installers (15)
src\CreateWixBuildWixpack.cs (12)
236_defineVariablesDictionary[match.Groups[1].Value] = ResolvePath(match.Groups[2].Value); 647string filename = match.Groups[1].Value.Trim('\"'); 966if (!string.IsNullOrEmpty(eqMatch.Groups[1].Value)) 969varName = eqMatch.Groups[1].Value; 970op = eqMatch.Groups[2].Value; 971value = eqMatch.Groups[3].Success ? eqMatch.Groups[3].Value : eqMatch.Groups[4].Value; 976value = eqMatch.Groups[5].Success ? eqMatch.Groups[5].Value : eqMatch.Groups[6].Value; 977op = eqMatch.Groups[7].Value; 978varName = eqMatch.Groups[9].Value;
src\GenerateCurrentVersion.cs (3)
103if (!DateTime.TryParseExact(match.Groups[1].Value, dateFormat, enUS, DateTimeStyles.AssumeLocal, out buildIdDate)) 105Log.LogError("The OfficialBuildId doesn't follow the expected({0}.rr) format: '{1}'", dateFormat, match.Groups[1].Value); 110GeneratedRevision = match.Groups[2].Value;
Microsoft.DotNet.HotReload.Utils.Generator (2)
EditAndContinueCapabilitiesParser.cs (2)
19yield return new Token { Value = c.Value }; 22yield return new Token { Value = c.Value };
Microsoft.DotNet.HotReload.Watch (2)
Process\WebServerProcessStateObserver.cs (1)
47onServerListening(match.Groups["url"].Value);
UI\BuildOutput.cs (1)
26if (match.Groups[1].Value == "error")
Microsoft.DotNet.SourceBuild.Tasks (2)
src\WriteBuildOutputProps.cs (2)
123match => match.Groups?["FirstPartChar"].Value.ToUpperInvariant() 133match => match.Groups?["FirstPartChar"].Value.ToUpperInvariant()
Microsoft.DotNet.XliffTasks (1)
StringExtensions.cs (1)
48int index = int.Parse(placeholder.Groups[1].Value);
Microsoft.Extensions.AI.Abstractions (2)
Functions\AIFunctionFactory.cs (2)
1193memberName = $"{match.Groups[1].Value}_{match.Groups[2].Value}";
Microsoft.Extensions.AI.Evaluation.Quality (1)
EvaluationMetricExtensions.cs (1)
112if (valueGroup.Value is not string matchText ||
Microsoft.Extensions.AI.OpenAI.Tests (1)
OpenAIAssistantChatClientIntegrationTests.cs (1)
133var dr = await ac.DeleteThreadAsync(m.Value);
Microsoft.Maui.Controls (13)
ShadowTypeConverter.cs (12)
84 var brush = ParseBrush(matches[0].Value); 85 var offsetX = float.Parse(matches[1].Value, CultureInfo.InvariantCulture); 86 var offsetY = float.Parse(matches[2].Value, CultureInfo.InvariantCulture); 96 var offsetX = float.Parse(matches[0].Value, CultureInfo.InvariantCulture); 97 var offsetY = float.Parse(matches[1].Value, CultureInfo.InvariantCulture); 98 var radius = float.Parse(matches[2].Value, CultureInfo.InvariantCulture); 99 var brush = ParseBrush(matches[3].Value); 110 var offsetX = float.Parse(matches[0].Value, CultureInfo.InvariantCulture); 111 var offsetY = float.Parse(matches[1].Value, CultureInfo.InvariantCulture); 112 var radius = float.Parse(matches[2].Value, CultureInfo.InvariantCulture); 113 var brush = ParseBrush(matches[3].Value); 114 var opacity = float.Parse(matches[4].Value, CultureInfo.InvariantCulture);
WebView\WebView.cs (1)
308 var matchedString = singleQuotes[i].Value;
Microsoft.Maui.Controls.DesignTools (1)
ColorDesignTypeConverter.cs (1)
208 var funcName = match?.Groups?["func"]?.Value;
Microsoft.ML.Data (6)
Dirty\IniFileUtils.cs (1)
43string count = match.Groups[1].Value;
EntryPoints\EntryPointNode.cs (5)
1081match.Groups["Name"].Value, 1082int.Parse(match.Groups["NumericAccessor"].Value)); 1088match.Groups["Name"].Value, 1089match.Groups["StringAccessor"].Value); 1092return new SimpleVariableBinding(match.Groups["Name"].Value);
Microsoft.ML.InternalCodeAnalyzer (1)
NameFixProvider.cs (1)
124yield return match.Value;
Microsoft.ML.ResultProcessor (11)
ResultProcessor.cs (11)
612timeElapsed = mc.Groups["timeElapsed"].Value; 613executionDate = mc.Groups["executionDate"].Value; 621if (mc.Groups["memoryType"].Value == "Virtual") 622virtualMemory = mc.Groups["memoryUsage"].Value; 623else if (mc.Groups["memoryType"].Value == "Physical") 624physicalMemory = mc.Groups["memoryUsage"].Value; 798string name = matchNameValueDeviation.Groups["name"].Value; 799Double doubleValue = Double.Parse(matchNameValueDeviation.Groups["value"].Value, CultureInfo.InvariantCulture); 801float deviation = (float)Double.Parse(matchNameValueDeviation.Groups["deviation"].Value, CultureInfo.InvariantCulture); 818string name = matchNameValue.Groups["name"].Value; 819float value = float.Parse(matchNameValue.Groups["value"].Value, CultureInfo.InvariantCulture);
Microsoft.NET.Build.Containers (10)
AuthHandshakeMessageHandler.cs (2)
139keyValues.Add(match.Groups["key"].Value, match.Groups["value"].Value);
ContainerHelpers.cs (5)
201var namePortion = referenceMatch.Groups[1].Value; 213containerRegistry = isRegistrySpecified ? registryPortion.Value 218containerName = imageNamePortion.Value; 241containerTag = tagPortion.Success ? tagPortion.Value : null; 245containerDigest = digestPortion.Success ? digestPortion.Value : null;
DigestUtils.cs (2)
124algorithm = match.Groups[1].Value; 125encoded = match.Groups[2].Value;
ImageBuilder.cs (1)
283if (match.Success && int.TryParse(match.Groups["port"].Value, out int port))
Microsoft.NET.Sdk.Publish.Tasks (2)
WebConfigTelemetry.cs (2)
103string projectRelativePath = match.Groups["RELATIVEPATH"].Value.Trim(); 111string projectGuid = match.Groups["PROJECTGUID"].Value.Trim();
Microsoft.NET.Sdk.StaticWebAssets.Tasks (5)
OverrideHtmlAssetPlaceholders.cs (3)
79return GeneratePreloadLinks(resources, e.Groups["group"]?.Value); 85string assetPath = e.Groups["fileName"].Value + e.Groups["fileExtension"].Value;
UpdateExternallyDefinedStaticWebAssets.cs (2)
171fingerprint = fingerprintGroup.Value; 172newRelativePath = relativePath.Replace(fingerprintGroup.Value, "#[{fingerprint}]");
Microsoft.TestPlatform.CoreUtilities (2)
Utilities\TimeSpanParser.cs (2)
33var value = match.Groups["value"].Value; 39var suffix = match.Groups["suffix"].Value;
Microsoft.TestPlatform.Filter.Source (1)
FastFilter.cs (1)
141result = match.Value;
Microsoft.VisualStudio.TestPlatform.Common (3)
src\vstest\src\Microsoft.TestPlatform.Filter.Source\FastFilter.cs (1)
141result = match.Value;
Utilities\RunSettingsProviderExtensions.cs (2)
114var attrName = match.Groups[AttributeNameString].Value; 115var attrValue = match.Groups[AttributeValueString].Value;
Microsoft.VisualStudio.TestPlatform.Extensions.Html.TestLogger (1)
HtmlLogger.cs (1)
487return InvalidXmlCharsRegex.Replace(str, m => $@"\u{(ushort)m.Value[0]:x4}");
Microsoft.VisualStudio.TestPlatform.Extensions.Trx.TestLogger (1)
XML\XmlPersistence.cs (1)
688char x = match.Value[0];
Microsoft.Web.XmlTransform (7)
XmlElementContext.cs (3)
313if (argumentCaptures.Count == 1 && !String.IsNullOrEmpty(argumentCaptures[0].Value)) { 314arguments = argumentCaptures[0].Value; 318return match.Groups["name"].Captures[0].Value;
XmlTransforms.cs (4)
410string attributeName = captureTagName.Value; 421strbuilder.Append(match.Value); 559string name = attrnames[i].Value; 563val = EscapeDirRegexSpecialCharacter(attrvalues[i].Value, false);
Microsoft.Win32.Msi (4)
ActionStartEventArgs.cs (3)
50ActionTime = match.Success ? match.Groups["actionTime"].Value : null; 51ActionName = match.Success ? match.Groups["actionName"].Value : null; 52ActionDescription = match.Success ? match.Groups["actionDescription"].Value : null;
ProgressEventArgs.cs (1)
37fields.Add(Convert.ToInt32(match.Groups["value"].Value));
NuGet.Configuration (3)
PackageSource\PackageSourceProvider.cs (3)
355match.Groups["user"].Value, 356match.Groups["pass"].Value, 358validAuthenticationTypesText: match.Groups["authTypes"].Value);
PlatformDocAnalyzer (2)
PlatformDocAnalyzer.cs (2)
137string name = match.Groups[1].Value; 138string innerXml = match.Groups[2].Value;
PresentationBuildTasks (2)
Microsoft\Build\Tasks\Windows\UidManager.cs (2)
1319switch (match.Value) 1332return match.Value;
RepoTasks (3)
src\aspnetcore\src\Shared\CertificateGeneration\MacOSCertificateManager.cs (2)
285var subject = subjectMatch.Groups[1].Value; 299var hashes = matches.OfType<Match>().Select(m => m.Groups[1].Value).ToList();
src\aspnetcore\src\Shared\CertificateGeneration\UnixCertificateManager.cs (1)
959openSslDir = match.Groups[1].Value;
Roslyn.Diagnostics.Analyzers (13)
src\roslyn\src\Workspaces\SharedUtilitiesAndExtensions\Compiler\Core\EditorConfig\Parsing\EditorConfigParser.cs (3)
73var sectionName = sectionMatches[0].Groups[1].Value; 88var key = propMatches[0].Groups[1].Value; 89var value = propMatches[0].Groups[2].Value;
src\roslyn\src\Workspaces\SharedUtilitiesAndExtensions\Compiler\Core\EditorConfig\Parsing\Sections\SectionMatcher.cs (10)
140var innerText = singleMatch.Groups[1].Value; 144var firstExtension = fileExtensionMatches[0].Value; 145var secondExtension = fileExtensionMatches[1].Value; 184var innerText = singleMatch.Groups[1].Value; 190if (fileExtensionMatch?.Value == mustMatchFileExtension) 196fileExtensionMatch?.Value == mustNotMatchFileExtension) 227var innerText = singleMatch.Groups[1].Value; 233if (match?.Value == firstFileExtension) 238if (match?.Value == secondFileExtension) 318if (!int.TryParse(match.Groups[i + 1].Value, out var matchedNum) ||
System.Data.Common (3)
src\runtime\src\libraries\Common\src\System\Data\Common\DbConnectionOptions.Common.cs (3)
442string keyname = (firstKey ? keypair.Value : keypair.Value.Replace("==", "=")).ToLowerInvariant(); 443string? keyvalue = keyvalues[indexValue++].Value;
System.Data.Odbc (3)
src\runtime\src\libraries\Common\src\System\Data\Common\DbConnectionOptions.Common.cs (3)
442string keyname = (firstKey ? keypair.Value : keypair.Value.Replace("==", "=")).ToLowerInvariant(); 443string? keyvalue = keyvalues[indexValue++].Value;
System.Data.OleDb (3)
DbConnectionOptions.cs (3)
795string keyname = (firstKey ? keypair.Value : keypair.Value.Replace("==", "=")).ToLowerInvariant(); 796string? keyvalue = keyvalues[indexValue++].Value;
System.Private.Xml (24)
System\Xml\Serialization\SourceInfo.cs (4)
73object varA = ILG.GetVariable(match.Groups["a"].Value); 75object varIA = ILG.GetVariable(match.Groups["ia"].Value); 194Debug.Assert(match.Groups["arg"].Value == Arg); 195Debug.Assert(match.Groups["cast"].Value == CodeIdentifier.GetCSharpName(Type!));
System\Xml\Serialization\XmlSerializationReaderILGen.cs (20)
2710Debug.Assert(match.Groups["locA1"].Value == match.Groups["locA2"].Value); 2711Debug.Assert(match.Groups["locA1"].Value == match.Groups["locA3"].Value); 2712Debug.Assert(match.Groups["locI1"].Value == match.Groups["locI2"].Value); 2714LocalBuilder localA = ilg.GetLocal(match.Groups["locA1"].Value); 2715LocalBuilder localI = ilg.GetLocal(match.Groups["locI1"].Value); 2756System.Diagnostics.Debug.Assert(CodeGenerator.GetVariableType(ilg.GetVariable(match.Groups["a"].Value)).IsArray); 2757ilg.Load(ilg.GetVariable(match.Groups["a"].Value)); 2758ilg.Load(ilg.GetVariable(match.Groups["ia"].Value)); 2800object oVar = ilg.GetVariable(match.Groups["locA1"].Value); 2836Type varType = CodeGenerator.GetVariableType(ilg.GetVariable(match.Groups["a"].Value)); 3528ilg.Ldstr(match.Groups["qnames"].Value); 3537LocalBuilder localO = ilg.GetLocal(match.Groups["o"].Value); 3540ilg.Ldstr(match.Groups["qnames"].Value); 3549LocalBuilder localO = ilg.GetLocal(match.Groups["o"].Value); 3561LocalBuilder localO = ilg.GetLocal(match.Groups["o"].Value); 3575ilg.Ldc(int.Parse(match.Groups["index"].Value, CultureInfo.InvariantCulture)); 3588ilg.Ldc(int.Parse(match.Groups["index"].Value, CultureInfo.InvariantCulture));
System.Text.RegularExpressions (9)
System\Text\RegularExpressions\Capture.cs (3)
63/// <see cref="Value"/> property. 67/// <c>ToString</c> is actually an internal call to the <see cref="Value"/> property. 69public override string ToString() => Value;
System\Text\RegularExpressions\GroupCollection.cs (1)
29/// <see langword="false" /> and whose <see cref="Capture.Value" /> property equals
System\Text\RegularExpressions\Match.cs (1)
30/// If a pattern match is successful, the <see cref="Capture.Value"/> property contains the matched
System\Text\RegularExpressions\Regex.Match.cs (2)
298/// is found, the returned <see cref="System.Text.RegularExpressions.Match"/> object's <see cref="Capture.Value"/> property contains the 404/// is found, the returned <see cref="System.Text.RegularExpressions.Match"/> object's <see cref="Capture.Value"/> property contains the
System\Text\RegularExpressions\Regex.Split.cs (2)
309state.results.Add(match.Groups[i].Value); 337state.results.Add(match.Groups[i].Value);
System.Windows.Forms (1)
System\Windows\Forms\Controls\ToolStrips\ToolStripSettingsManager.cs (1)
197string key = match.Value;
tlens (4)
src\runtime\src\tools\illink\external\Mono.Options\Options.cs (4)
1191flag = m.Groups["flag"].Value; 1192name = m.Groups["name"].Value; 1195sep = m.Groups["sep"].Value; 1196value = m.Groups["value"].Value;
vstest.console (4)
Internal\MSBuildLogger.cs (3)
465place = match.Groups["code"].Value; 466file = match.Groups["file"].Value; 467line = match.Groups["line"].Value;
Processors\CLIRunSettingsArgumentProcessor.cs (1)
210if (string.Compare(match.Value, node) == 0)
vstest.console.arm64 (4)
src\vstest\src\vstest.console\Internal\MSBuildLogger.cs (3)
465place = match.Groups["code"].Value; 466file = match.Groups["file"].Value; 467line = match.Groups["line"].Value;
src\vstest\src\vstest.console\Processors\CLIRunSettingsArgumentProcessor.cs (1)
210if (string.Compare(match.Value, node) == 0)