10 references to PlatformMethodValue
Microsoft.CodeAnalysis.NetAnalyzers (10)
Microsoft.NetCore.Analyzers\InteropServices\PlatformCompatibilityAnalyzer.cs (1)
529else if (value.AnalysisValues.Contains(new PlatformMethodValue(info.PlatformName, EmptyVersion, false)))
Microsoft.NetCore.Analyzers\InteropServices\PlatformCompatibilityAnalyzer.OperationVisitor.cs (3)
164infosBuilder.Add(new PlatformMethodValue(name, versions.SupportedFirst, negated: false)); 169infosBuilder.Add(new PlatformMethodValue(name, versions.UnsupportedFirst, negated: true)); 172infosBuilder.Add(new PlatformMethodValue(name, versions.UnsupportedSecond, negated: true));
Microsoft.NetCore.Analyzers\InteropServices\PlatformCompatibilityAnalyzer.Value.cs (6)
38=> new PlatformMethodValue(PlatformName, Version, !Negated); 52var info = new PlatformMethodValue(platformName, EmptyVersion, negated: false); 65var info = new PlatformMethodValue(osPlatformNamesBuilder[i], EmptyVersion, negated: false); 82var info = new PlatformMethodValue(platformName, version, negated: false); 90var info = new PlatformMethodValue(literal.ConstantValue.Value.ToString(), version, negated: false); 101var info = new PlatformMethodValue(platformName, version, negated: false);