├── .gitattributes ├── .github ├── CODEOWNERS ├── ISSUE_TEMPLATE │ └── validation-rule-request.md └── workflows │ ├── codeql-analysis.yml │ ├── codeql-js-analysis.yml │ └── validate.yml ├── .gitignore ├── .nuget ├── NuGet.exe └── NuGet.pdb ├── BeforeBuild.sh ├── BuildAndTest.cmd ├── BuildPackagesFromLayoutDirectory.cmd ├── DelistCurrentPackages.cmd ├── LICENSE ├── NuGet.Config ├── PublishSignedPackages.cmd ├── README.md ├── ReleaseHistory.md ├── SECURITY.md ├── ado-build.yml ├── docs ├── Contributing a SARIF Validation Rule.md ├── Producing effective SARIF.md ├── Rule factoring.xlsx ├── Rule reference page template.md ├── SARIF Validation Rule Authoring Principles.md ├── ValidationRules.md ├── ValidationRules │ └── RULEID.RULEFRIENDLYNAME.cs ├── devbox-setup.md ├── how-to.md ├── json-map.md ├── multitool-usage.md └── query-mode.md ├── lgtm.yml ├── npm ├── sarif-multitool-darwin │ ├── README.md │ ├── bin.js │ ├── index.d.ts │ ├── index.js │ └── package.json ├── sarif-multitool-linux │ ├── README.md │ ├── bin.js │ ├── index.d.ts │ ├── index.js │ └── package.json ├── sarif-multitool-win32 │ ├── README.md │ ├── bin.js │ ├── index.d.ts │ ├── index.js │ └── package.json └── sarif-multitool │ ├── README.md │ ├── bin.js │ ├── index.d.ts │ ├── index.js │ └── package.json ├── policies ├── github.config.sarif-external-properties └── github.config.xml ├── refs └── Octokit.dll ├── scripts ├── BuildAndTest.ps1 ├── BuildMultitoolForNpm.ps1 ├── BuildPackagesFromSigningDirectory.ps1 ├── DeleteTestOutputs.ps1 ├── DelistCurrentPackages.ps1 ├── Get-VersionConstants.ps1 ├── New-VersionConstantsFile.ps1 ├── NuGetUtilities.psm1 ├── Projects.psm1 ├── RegistrySettings.ps1 ├── ScriptUtilities.psm1 └── semmle │ └── semmle-suites ├── src ├── .editorconfig ├── BinSkim.targets ├── BinSkimConfiguration.xml ├── Directory.Packages.props ├── Directory.Solution.props ├── Key.snk ├── Nuget │ └── Sarif.Multitool.nuspec ├── Samples │ ├── Sarif.Sdk.Sample.sln │ ├── Sarif.Sdk.Sample │ │ ├── App.config │ │ ├── CreateOptions.cs │ │ ├── LoadOptions.cs │ │ ├── Program.cs │ │ ├── SampleSourceFiles │ │ │ └── AnalysisSample.cs │ │ └── Sarif.Sdk.Sample.csproj │ ├── SarifDeferredSample │ │ ├── App.config │ │ ├── Program.cs │ │ ├── SarifDeferredSample.csproj │ │ └── SarifDeferredSample.txt │ ├── SarifToCsv │ │ ├── App.config │ │ ├── CsvWriter.cs │ │ ├── Program.cs │ │ ├── SarifCsvColumnWriters.cs │ │ ├── SarifToCsv.csproj │ │ ├── SarifToCsv.sln │ │ ├── SdkExtensions.cs │ │ └── WriteContext.cs │ └── SarifTrim │ │ ├── App.config │ │ ├── ConsoleWatch.cs │ │ ├── Program.cs │ │ ├── SarifTrim.csproj │ │ └── SarifTrim.sln ├── Sarif.Converters │ ├── AndroidStudioConverter.cs │ ├── AndroidStudioProblem.cs │ ├── AndroidStudioStrings.cs │ ├── BuiltInConverterFactory.cs │ ├── ClangAnalyzerConverter.cs │ ├── ClangTidyConverter.cs │ ├── ClangTidyObjectModel │ │ ├── ClangTidyConsoleDiagnostic.cs │ │ ├── ClangTidyDiagnostic.cs │ │ ├── ClangTidyDiagnosticMessage.cs │ │ ├── ClangTidyReplacement.cs │ │ └── ClangTidyReport.cs │ ├── ContrastSecurityConverter.cs │ ├── ContrastSecurityRuleIds.cs │ ├── ConverterFactory.cs │ ├── ConverterResources.Designer.cs │ ├── ConverterResources.resx │ ├── CppCheckConverter.cs │ ├── CppCheckError.cs │ ├── CppCheckLocation.cs │ ├── CppCheckStrings.cs │ ├── Extensions.cs │ ├── FlawFinderConverter.cs │ ├── FlawFinderCsvResult.cs │ ├── FortifyConverter.cs │ ├── FortifyFprConverter.cs │ ├── FortifyFprStrings.cs │ ├── FortifyIssue.cs │ ├── FortifyPathElement.cs │ ├── FortifyStrings.cs │ ├── FortifyUtilities.cs │ ├── FxCopConverter.cs │ ├── GlobalSuppressions.cs │ ├── HdfConverter.cs │ ├── HdfModel │ │ ├── ControlDescription.cs │ │ ├── ControlGroup.cs │ │ ├── ControlResult.cs │ │ ├── ControlResultStatus.cs │ │ ├── ControlResultStatusConverter.cs │ │ ├── Converter.cs │ │ ├── Dependency.cs │ │ ├── ExecJsonControl.cs │ │ ├── ExecJsonProfile.cs │ │ ├── HdfFile.cs │ │ ├── MinMaxValueCheckConverter.cs │ │ ├── Platform.cs │ │ ├── Ref.cs │ │ ├── RefConverter.cs │ │ ├── Reference.cs │ │ ├── Serialize.cs │ │ ├── SkippedDueToWaiver.cs │ │ ├── SkippedDueToWaiverConverter.cs │ │ ├── SourceLocation.cs │ │ ├── StatisticBlock.cs │ │ ├── StatisticHash.cs │ │ ├── Statistics.cs │ │ ├── SupportedPlatform.cs │ │ └── WaiverData.cs │ ├── IgnoreOptions.cs │ ├── LogReader.cs │ ├── MSBuildConverter.cs │ ├── PREFastConverter.cs │ ├── PREFastObjectModel │ │ ├── AdditionalInfo.cs │ │ ├── Category.cs │ │ ├── Defect.cs │ │ ├── DefectList.cs │ │ ├── KeyEvent.cs │ │ ├── PREFastPath.cs │ │ └── SFA.cs │ ├── PluginConverterFactory.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── PylintConverter.cs │ ├── PylintObjectModel │ │ ├── PylintLog.cs │ │ ├── PylintLogEntry.cs │ │ └── PylintLogReader.cs │ ├── RulesData │ │ └── ContrastSecurity.sarif │ ├── Sarif.Converters.csproj │ ├── Schemata │ │ └── FxCopReport.xsd │ ├── SemmleQlConverter.cs │ ├── SparseReader.cs │ ├── SparseReaderDispatchTable.cs │ ├── StaticDriverVerifierConverter.cs │ ├── StringReference.cs │ ├── TSLintConverter.cs │ ├── TSLintLogReader.cs │ ├── TSLintObjectModel │ │ ├── TSLintLog.cs │ │ ├── TSLintLogEntry.cs │ │ ├── TSLintLogFix.cs │ │ └── TSLintLogPosition.cs │ ├── TextFormats │ │ ├── BaseTabularReader.cs │ │ ├── CsvReader.cs │ │ └── TsvReader.cs │ ├── ToolFileConverterBase.cs │ ├── ToolFormat.cs │ └── ToolFormatConverter.cs ├── Sarif.Driver │ ├── ArgumentSplitter.cs │ ├── BrandedVersionAttribute.cs │ ├── DisposableEnumerable.cs │ ├── DisposableEnumerableView.cs │ ├── DriverExtensionMethods.cs │ ├── DriverResources.Designer.cs │ ├── DriverResources.resx │ ├── DriverUtilities.cs │ ├── DumpEventsCommand.cs │ ├── DumpEventsOptions.cs │ ├── EnumerableExtensions.cs │ ├── EnvironmentVariables.cs │ ├── ExceptionStrings.Designer.cs │ ├── ExportEventsCommand.cs │ ├── ExportEventsOptions.cs │ ├── FileSpecifier.cs │ ├── FileStreamExtensionMethods.cs │ ├── IEnvironmentVariables.cs │ ├── KeyEventImportance.cs │ ├── MurmurHash.cs │ ├── OrderedFileSpecifier.cs │ ├── Pair.cs │ ├── PathExtensions.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── ReferenceEqualityComparer`1.cs │ ├── RentalStream.cs │ ├── ResultsSummaryLogger.cs │ ├── Sarif.Driver.csproj │ ├── Sdk │ │ ├── AggregatingLogger.cs │ │ ├── AnalysisApplicability.cs │ │ ├── AnalyzeOptionsBase.cs │ │ ├── CommandBase.cs │ │ ├── CommonOptionsBase.cs │ │ ├── CompositionUtilities.cs │ │ ├── ConsoleEventsListener.cs │ │ ├── DefaultDriverOptions.cs │ │ ├── DriverCommand.cs │ │ ├── DriverEventId.cs │ │ ├── DriverEventNames.cs │ │ ├── DriverEventSource.cs │ │ ├── DriverSdkExtensions.cs │ │ ├── EntryPointUtilities.cs │ │ ├── ExitApplicationException.cs │ │ ├── ExitReason.cs │ │ ├── ExportConfigurationCommandBase.cs │ │ ├── ExportConfigurationOptions.cs │ │ ├── ExportRulesMetadataCommandBase.cs │ │ ├── ExportRulesMetadataOptions.cs │ │ ├── FileFormat.cs │ │ ├── FileProcessingData.cs │ │ ├── MultifileCommandBase.cs │ │ ├── MultifileOptionsBase.cs │ │ ├── MultithreadedAnalyzeCommandBase.cs │ │ ├── PluginDriverCommand.cs │ │ ├── RuleEnabledState.cs │ │ ├── SingleFileOptionsBase.cs │ │ └── Skimmer.cs │ ├── SemanticVersion.cs │ ├── SkimmerIdComparer.cs │ ├── StringExtensions.cs │ ├── TempDirectory.cs │ ├── TempFile.cs │ └── XmlWriterExtensions.cs ├── Sarif.Multitool.Library │ ├── AbsoluteUriCommand.cs │ ├── AbsoluteUriOptions.cs │ ├── AnalyzeTestOptions.cs │ ├── ApplyPolicyCommand.cs │ ├── ApplyPolicyOptions.cs │ ├── CommandUtilities.cs │ ├── ConvertCommand.cs │ ├── ConvertOptions.cs │ ├── EnvironmentVariableGetter.cs │ ├── ExportValidationConfigurationCommand.cs │ ├── ExportValidationConfigurationOptions.cs │ ├── ExportValidationRulesMetadataCommand.cs │ ├── ExportValidationRulesMetadataOptions.cs │ ├── Extensions.cs │ ├── FileWorkItemsCommand.cs │ ├── FileWorkItemsOptions.cs │ ├── IEnvironmentVariableGetter.cs │ ├── IntegerExtensions.cs │ ├── JTokenExtensions.cs │ ├── MergeCommand.cs │ ├── MergeOptions.cs │ ├── MultitoolResources.Designer.cs │ ├── MultitoolResources.resx │ ├── OptionsInterpretter.cs │ ├── PageCommand.cs │ ├── PageOptions.cs │ ├── QueryCommand.cs │ ├── QueryOptions.cs │ ├── RebaseUriCommand.cs │ ├── RebaseUriOptions.cs │ ├── ResultMatchingCommand.cs │ ├── ResultMatchingOptions.cs │ ├── RewriteCommand.cs │ ├── RewriteOptions.cs │ ├── Rules │ │ ├── ADO1011.ReferenceFinalSchema.cs │ │ ├── ADO1013.ProvideRequiredSarifLogProperties.cs │ │ ├── ADO1014.ProvideRequiredRunProperties.cs │ │ ├── ADO1015.ProvideRequiredResultProperties.cs │ │ ├── ADO1016.ProvideRequiredLocationProperties.cs │ │ ├── ADO1017.ProvideRequiredPhysicalLocationProperties.cs │ │ ├── ADO1018.ProvideRequiredToolProperties.cs │ │ ├── ADO2012.ProvideRequiredReportingDescriptorProperties.cs │ │ ├── Base1011.ReferenceFinalSchema.cs │ │ ├── Base1013.ProvideRequiredSarifLogProperties.cs │ │ ├── Base1014.ProvideRequiredRunProperties.cs │ │ ├── Base1015.ProvideRequiredResultProperties.cs │ │ ├── Base1016.ProvideRequiredLocationProperties.cs │ │ ├── Base1017.ProvideRequiredPhysicalLocationProperties.cs │ │ ├── Base1018.ProvideRequiredToolProperties.cs │ │ ├── Base2012.ProvideRequiredReportingDescriptorProperties.cs │ │ ├── GH1001.ProvideRequiredLocationProperties.cs │ │ ├── GH1002.InlineThreadFlowLocations.cs │ │ ├── GH1003.ProvideRequiredRegionProperties.cs │ │ ├── GH1004.ReviewArraysThatExceedConfigurableDefaults.cs │ │ ├── GH1005.LocationsMustBeRelativeUrisOrFilePaths.cs │ │ ├── GH1006.ProvideCheckoutPath.cs │ │ ├── GH1007.ProvideFullyFormattedMessageStrings.cs │ │ ├── GH1011.ReferenceFinalSchema.cs │ │ ├── GH1013.ProvideRequiredSarifLogProperties.cs │ │ ├── GH1014.ProvideRequiredRunProperties.cs │ │ ├── GH1015.ProvideRequiredResultProperties.cs │ │ ├── GH1016.ProvideRequiredLocationProperties.cs │ │ ├── GH1017.ProvideRequiredPhysicalLocationProperties.cs │ │ ├── GH1018.ProvideRequiredToolProperties.cs │ │ ├── GH2012.ProvideRequiredReportingDescriptorProperties.cs │ │ ├── RuleId.cs │ │ ├── RuleResources.Designer.cs │ │ ├── RuleResources.resx │ │ ├── SARIF1001.RuleIdentifiersMustBeValid.cs │ │ ├── SARIF1002.UrisMustBeValid.cs │ │ ├── SARIF1004.ExpressUriBaseIdsCorrectly.cs │ │ ├── SARIF1005.UriMustBeAbsolute.cs │ │ ├── SARIF1006.InvocationPropertiesMustBeConsistent.cs │ │ ├── SARIF1007.RegionPropertiesMustBeConsistent.cs │ │ ├── SARIF1008.PhysicalLocationPropertiesMustBeConsistent.cs │ │ ├── SARIF1009.IndexPropertiesMustBeConsistentWithArrays.cs │ │ ├── SARIF1010.RuleIdMustBeConsistent.cs │ │ ├── SARIF1011.ReferenceFinalSchema.cs │ │ ├── SARIF1012.MessageArgumentsMustBeConsistentWithRule.cs │ │ ├── SARIF2001.TerminateMessagesWithPeriod.cs │ │ ├── SARIF2002.ProvideMessageArguments.cs │ │ ├── SARIF2003.ProvideVersionControlProvenance.cs │ │ ├── SARIF2004.OptimizeFileSize.cs │ │ ├── SARIF2005.ProvideToolProperties.cs │ │ ├── SARIF2006.UrisShouldBeReachable.cs │ │ ├── SARIF2007.ExpressPathsRelativeToRepoRoot.cs │ │ ├── SARIF2008.ProvideSchema.cs │ │ ├── SARIF2009.ConsiderConventionalIdentifierValues.cs │ │ ├── SARIF2010.ProvideCodeSnippets.cs │ │ ├── SARIF2011.ProvideContextRegion.cs │ │ ├── SARIF2012.ProvideRuleProperties.cs │ │ ├── SARIF2013.ProvideEmbeddedFileContent.cs │ │ ├── SARIF2014.ProvideDynamicMessageContent.cs │ │ ├── SARIF2015.EnquoteDynamicMessageContent.cs │ │ ├── SARIF2016.FileUrisShouldBeRelative.cs │ │ └── SarifValidationSkimmerBase.cs │ ├── Sarif.Multitool.Library.csproj │ ├── SarifPropertyName.cs │ ├── SarifValidationContext.cs │ ├── StringExtensions.cs │ ├── SuppressCommand.cs │ ├── SuppressOptions.cs │ ├── ValidateCommand.cs │ ├── ValidateOptions.cs │ └── default.configuration.xml ├── Sarif.Multitool │ ├── AnalyzeTestCommand.cs │ ├── AnalyzeTestContext.cs │ ├── AnalyzeTestSkimmer.cs │ ├── App.config │ ├── DotnetToolSettings.xml │ ├── MultitoolResources.Designer.cs │ ├── MultitoolResources.resx │ ├── Program.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── Sarif.Multitool.csproj │ ├── appsettings.json │ └── appsettings.local.json ├── Sarif.Sdk.CodeQL.sln ├── Sarif.Sdk.runsettings ├── Sarif.Sdk.sln ├── Sarif.WorkItems │ ├── README.md │ ├── Sarif.WorkItems.csproj │ ├── SarifWorkItemContext.cs │ ├── SarifWorkItemFiler.cs │ ├── SarifWorkItemModel.cs │ ├── SarifWorkItemModelTransformer.cs │ ├── SarifWorkItemsExtensions.cs │ ├── WorkItemsResources.Designer.cs │ └── WorkItemsResources.resx ├── Sarif │ ├── AggregatingArtifactsProvider.cs │ ├── AnalyzeContextBase.cs │ ├── ArtifactProvider.cs │ ├── Autogenerated │ │ ├── Address.cs │ │ ├── AddressComparer.cs │ │ ├── AddressEqualityComparer.cs │ │ ├── Artifact.cs │ │ ├── ArtifactChange.cs │ │ ├── ArtifactChangeComparer.cs │ │ ├── ArtifactChangeEqualityComparer.cs │ │ ├── ArtifactComparer.cs │ │ ├── ArtifactContent.cs │ │ ├── ArtifactContentComparer.cs │ │ ├── ArtifactContentEqualityComparer.cs │ │ ├── ArtifactEqualityComparer.cs │ │ ├── ArtifactLocation.cs │ │ ├── ArtifactLocationComparer.cs │ │ ├── ArtifactLocationEqualityComparer.cs │ │ ├── ArtifactRoles.cs │ │ ├── Attachment.cs │ │ ├── AttachmentComparer.cs │ │ ├── AttachmentEqualityComparer.cs │ │ ├── BaselineState.cs │ │ ├── CodeFlow.cs │ │ ├── CodeFlowComparer.cs │ │ ├── CodeFlowEqualityComparer.cs │ │ ├── ColumnKind.cs │ │ ├── ComparerExtensions.cs │ │ ├── ConfigurationOverride.cs │ │ ├── ConfigurationOverrideComparer.cs │ │ ├── ConfigurationOverrideEqualityComparer.cs │ │ ├── Conversion.cs │ │ ├── ConversionComparer.cs │ │ ├── ConversionEqualityComparer.cs │ │ ├── Edge.cs │ │ ├── EdgeComparer.cs │ │ ├── EdgeEqualityComparer.cs │ │ ├── EdgeTraversal.cs │ │ ├── EdgeTraversalComparer.cs │ │ ├── EdgeTraversalEqualityComparer.cs │ │ ├── ExceptionData.cs │ │ ├── ExceptionDataComparer.cs │ │ ├── ExceptionDataEqualityComparer.cs │ │ ├── ExternalProperties.cs │ │ ├── ExternalPropertiesComparer.cs │ │ ├── ExternalPropertiesEqualityComparer.cs │ │ ├── ExternalPropertyFileReference.cs │ │ ├── ExternalPropertyFileReferenceComparer.cs │ │ ├── ExternalPropertyFileReferenceEqualityComparer.cs │ │ ├── ExternalPropertyFileReferences.cs │ │ ├── ExternalPropertyFileReferencesComparer.cs │ │ ├── ExternalPropertyFileReferencesEqualityComparer.cs │ │ ├── FailureLevel.cs │ │ ├── Fix.cs │ │ ├── FixComparer.cs │ │ ├── FixEqualityComparer.cs │ │ ├── Graph.cs │ │ ├── GraphComparer.cs │ │ ├── GraphEqualityComparer.cs │ │ ├── GraphTraversal.cs │ │ ├── GraphTraversalComparer.cs │ │ ├── GraphTraversalEqualityComparer.cs │ │ ├── ISarifNode.cs │ │ ├── Invocation.cs │ │ ├── InvocationComparer.cs │ │ ├── InvocationEqualityComparer.cs │ │ ├── Location.cs │ │ ├── LocationComparer.cs │ │ ├── LocationEqualityComparer.cs │ │ ├── LocationRelationship.cs │ │ ├── LocationRelationshipComparer.cs │ │ ├── LocationRelationshipEqualityComparer.cs │ │ ├── LogicalLocation.cs │ │ ├── LogicalLocationComparer.cs │ │ ├── LogicalLocationEqualityComparer.cs │ │ ├── Message.cs │ │ ├── MessageComparer.cs │ │ ├── MessageEqualityComparer.cs │ │ ├── MultiformatMessageString.cs │ │ ├── MultiformatMessageStringComparer.cs │ │ ├── MultiformatMessageStringEqualityComparer.cs │ │ ├── Node.cs │ │ ├── NodeComparer.cs │ │ ├── NodeEqualityComparer.cs │ │ ├── Notification.cs │ │ ├── NotificationComparer.cs │ │ ├── NotificationEqualityComparer.cs │ │ ├── PhysicalLocation.cs │ │ ├── PhysicalLocationComparer.cs │ │ ├── PhysicalLocationEqualityComparer.cs │ │ ├── PropertyBag.cs │ │ ├── PropertyBagComparer.cs │ │ ├── PropertyBagEqualityComparer.cs │ │ ├── Rectangle.cs │ │ ├── RectangleComparer.cs │ │ ├── RectangleEqualityComparer.cs │ │ ├── Region.cs │ │ ├── RegionComparer.cs │ │ ├── RegionEqualityComparer.cs │ │ ├── Replacement.cs │ │ ├── ReplacementComparer.cs │ │ ├── ReplacementEqualityComparer.cs │ │ ├── ReportingConfiguration.cs │ │ ├── ReportingConfigurationComparer.cs │ │ ├── ReportingConfigurationEqualityComparer.cs │ │ ├── ReportingDescriptor.cs │ │ ├── ReportingDescriptorComparer.cs │ │ ├── ReportingDescriptorEqualityComparer.cs │ │ ├── ReportingDescriptorReference.cs │ │ ├── ReportingDescriptorReferenceComparer.cs │ │ ├── ReportingDescriptorReferenceEqualityComparer.cs │ │ ├── ReportingDescriptorRelationship.cs │ │ ├── ReportingDescriptorRelationshipComparer.cs │ │ ├── ReportingDescriptorRelationshipEqualityComparer.cs │ │ ├── Result.cs │ │ ├── ResultComparer.cs │ │ ├── ResultEqualityComparer.cs │ │ ├── ResultKind.cs │ │ ├── ResultProvenance.cs │ │ ├── ResultProvenanceComparer.cs │ │ ├── ResultProvenanceEqualityComparer.cs │ │ ├── Run.cs │ │ ├── RunAutomationDetails.cs │ │ ├── RunAutomationDetailsComparer.cs │ │ ├── RunAutomationDetailsEqualityComparer.cs │ │ ├── RunComparer.cs │ │ ├── RunEqualityComparer.cs │ │ ├── SarifLog.cs │ │ ├── SarifLogComparer.cs │ │ ├── SarifLogEqualityComparer.cs │ │ ├── SarifNodeKind.cs │ │ ├── SarifRewritingVisitor.cs │ │ ├── SarifVersion.cs │ │ ├── SpecialLocations.cs │ │ ├── SpecialLocationsComparer.cs │ │ ├── SpecialLocationsEqualityComparer.cs │ │ ├── Stack.cs │ │ ├── StackComparer.cs │ │ ├── StackEqualityComparer.cs │ │ ├── StackFrame.cs │ │ ├── StackFrameComparer.cs │ │ ├── StackFrameEqualityComparer.cs │ │ ├── Suppression.cs │ │ ├── SuppressionComparer.cs │ │ ├── SuppressionEqualityComparer.cs │ │ ├── SuppressionKind.cs │ │ ├── SuppressionStatus.cs │ │ ├── ThreadFlow.cs │ │ ├── ThreadFlowComparer.cs │ │ ├── ThreadFlowEqualityComparer.cs │ │ ├── ThreadFlowLocation.cs │ │ ├── ThreadFlowLocationComparer.cs │ │ ├── ThreadFlowLocationEqualityComparer.cs │ │ ├── ThreadFlowLocationImportance.cs │ │ ├── Tool.cs │ │ ├── ToolComparer.cs │ │ ├── ToolComponent.cs │ │ ├── ToolComponentComparer.cs │ │ ├── ToolComponentContents.cs │ │ ├── ToolComponentEqualityComparer.cs │ │ ├── ToolComponentReference.cs │ │ ├── ToolComponentReferenceComparer.cs │ │ ├── ToolComponentReferenceEqualityComparer.cs │ │ ├── ToolEqualityComparer.cs │ │ ├── TranslationMetadata.cs │ │ ├── TranslationMetadataComparer.cs │ │ ├── TranslationMetadataEqualityComparer.cs │ │ ├── VersionControlDetails.cs │ │ ├── VersionControlDetailsComparer.cs │ │ ├── VersionControlDetailsEqualityComparer.cs │ │ ├── WebRequest.cs │ │ ├── WebRequestComparer.cs │ │ ├── WebRequestEqualityComparer.cs │ │ ├── WebResponse.cs │ │ ├── WebResponseComparer.cs │ │ └── WebResponseEqualityComparer.cs │ ├── Baseline │ │ ├── DefaultBaseline │ │ │ ├── ArtifactLocationBaselineEquals.cs │ │ │ ├── CodeFlowBaselineEquals.cs │ │ │ ├── DefaultBaselineExtensions.cs │ │ │ ├── ListComparisonHelpers.cs │ │ │ ├── LocationBaselineEquals.cs │ │ │ ├── PhysicalLocationBaselineEquals.cs │ │ │ ├── ResultBaselineEquals.cs │ │ │ ├── StackBaselineEquals.cs │ │ │ ├── StackFrameBaselineEquals.cs │ │ │ ├── ThreadFlowBaselineEquals.cs │ │ │ └── ThreadFlowLocationBaselineEquals.cs │ │ ├── ISarifLogBaseliner.cs │ │ ├── ResultMatching │ │ │ ├── DataStructures │ │ │ │ ├── ExtractedResult.cs │ │ │ │ └── MatchedResults.cs │ │ │ ├── DictionaryMergeBehaviors.cs │ │ │ ├── ExactMatchers │ │ │ │ ├── ExactResultMatcherFactory.cs │ │ │ │ ├── FullFingerprintResultMatcher.cs │ │ │ │ └── IdenticalResultMatcher.cs │ │ │ ├── HeuristicMatchers │ │ │ │ ├── ContextRegionHeuristicMatcher.cs │ │ │ │ ├── HeuristicMatcher.cs │ │ │ │ ├── HeuristicResultMatcherFactory.cs │ │ │ │ ├── IResultMatchingComparer.cs │ │ │ │ └── PartialFingerprintResultMatcher.cs │ │ │ ├── IResultMatcher.cs │ │ │ ├── ISarifLogMatcher.cs │ │ │ ├── RemappingCalculators │ │ │ │ ├── IRemappingCalculator.cs │ │ │ │ └── SarifLogRemapping.cs │ │ │ ├── ResultMatchingBaselinerFactory.cs │ │ │ └── SarifLogResultMatcher.cs │ │ ├── SarifBaselineType.cs │ │ ├── SarifLogBaseliner.cs │ │ ├── SarifLogBaselinerFactory.cs │ │ └── V2 │ │ │ ├── ResultMatchingComparer.cs │ │ │ ├── TrustMap.cs │ │ │ ├── V2ResultMatcher.cs │ │ │ ├── WhatComparer.cs │ │ │ ├── WhatComponent.cs │ │ │ ├── WhatMap.cs │ │ │ └── WhereComparer.cs │ ├── BlameHunk.cs │ ├── Cache.cs │ ├── CodeGenHints.json │ ├── ConsoleStreamCapture.cs │ ├── CopyrightNotice.txt │ ├── Core │ │ ├── Artifact.cs │ │ ├── ArtifactLocation.cs │ │ ├── CodeFlow.cs │ │ ├── ExceptionData.cs │ │ ├── IPropertyBagHolder.cs │ │ ├── Invocation.cs │ │ ├── Location.cs │ │ ├── LogicalLocation.cs │ │ ├── Message.cs │ │ ├── MultiformatMessageString.cs │ │ ├── Notification.cs │ │ ├── PropertyBagHolder.cs │ │ ├── Region.cs │ │ ├── ReportingConfiguration.cs │ │ ├── ReportingDescriptor.cs │ │ ├── Result.cs │ │ ├── ResultLevelKind.cs │ │ ├── Run.cs │ │ ├── RunAutomationDetails.cs │ │ ├── SarifLog.cs │ │ ├── SerializedPropertyInfo.cs │ │ ├── SerializedPropertyInfoComparer.cs │ │ ├── SerializedPropertyInfoEqualityComparer.cs │ │ ├── Stack.cs │ │ ├── StackFrame.cs │ │ ├── Tags.cs │ │ ├── ThreadFlow.cs │ │ ├── ThreadflowLocation.cs │ │ ├── Tool.cs │ │ ├── ToolComponent.cs │ │ ├── ToolComponentReference.cs │ │ ├── WebMessageUtilities.cs │ │ ├── WebRequest.cs │ │ └── WebResponse.cs │ ├── CustomDictionary.xml │ ├── DefaultTraces.cs │ ├── EnumeratedArtifact.cs │ ├── Errors.cs │ ├── ExternalProcess.cs │ ├── FailureLevelSet.cs │ ├── FileEncoding.cs │ ├── FileRegionsCache.cs │ ├── FileSearcherHelper.cs │ ├── FileSystem.cs │ ├── FilteringStrategies.cs │ ├── GitHelper.cs │ ├── GlobalSuppressions.cs │ ├── HashData.cs │ ├── HashUtilities.cs │ ├── HttpClientWrapper.cs │ ├── IAnalysisContext.cs │ ├── IAnalysisLogger.cs │ ├── IArtifactProvider.cs │ ├── IBlameHunk.cs │ ├── IConsoleCapture.cs │ ├── IEnumeratedArtifact.cs │ ├── IFileSystem.cs │ ├── IHttpClient.cs │ ├── IOption.cs │ ├── IOptionsProvider.cs │ ├── IResultLogWriter.cs │ ├── IToolFileConverter.cs │ ├── IntegerSet.cs │ ├── LineInfo.cs │ ├── LogicalLocationKind.cs │ ├── Map │ │ ├── JsonMapBuilder.cs │ │ ├── JsonMapNode.cs │ │ ├── JsonMapSettings.cs │ │ └── LongArrayDeltaConverter.cs │ ├── MessageUtilities.cs │ ├── MultiplyByPrimesHash.cs │ ├── MultithreadedZipArchiveArtifactProvider.cs │ ├── NewLineIndex.cs │ ├── NotYetAutoGenerated │ │ ├── Address.cs │ │ ├── Invocation.cs │ │ ├── Location.cs │ │ ├── ReportingConfiguration.cs │ │ ├── ReportingDescriptor.cs │ │ ├── Result.cs │ │ ├── Run.cs │ │ └── SarifLog.cs │ ├── Notes.cs │ ├── Numeric │ │ └── Long.cs │ ├── OffsetInfo.cs │ ├── OptionallyEmittedData.cs │ ├── OrderSensitiveValueComparisonList.cs │ ├── PeekableStream.cs │ ├── PerLanguageOption.cs │ ├── Processors │ │ ├── Generic │ │ │ ├── GenericActionPipeline.cs │ │ │ ├── GenericFoldAction.cs │ │ │ ├── GenericMappingAction.cs │ │ │ ├── IFoldAction.cs │ │ │ ├── IGenericAction.cs │ │ │ └── IMapAction.cs │ │ └── Log │ │ │ ├── SarifLogActionTuple.cs │ │ │ ├── SarifLogActions.cs │ │ │ ├── SarifLogExtensionMethods.cs │ │ │ ├── SarifLogPipeline.cs │ │ │ └── SarifLogStageFactory.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── PropertiesDictionary.cs │ ├── PropertiesDictionaryExtensionMethods.cs │ ├── Query │ │ ├── BitArrayExtensions.cs │ │ ├── CompareOperator.cs │ │ ├── Evaluators │ │ │ ├── BoolEvaluator.cs │ │ │ ├── DateTimeEvaluator.cs │ │ │ ├── DoubleEvaluator.cs │ │ │ ├── EnumEvaluator.cs │ │ │ ├── EvaluatorFactory.cs │ │ │ ├── ExpressionEvaluators.cs │ │ │ ├── IExpressionEvaluator.cs │ │ │ ├── LongEvaluator.cs │ │ │ ├── PropertyBagPropertyEvaluator.cs │ │ │ ├── SarifEvaluators.cs │ │ │ ├── SetEvaluator.cs │ │ │ └── StringEvaluator.cs │ │ ├── ExpressionParser.cs │ │ ├── Expressions.cs │ │ ├── IExpression.cs │ │ ├── QueryParseException.cs │ │ └── StringSlice.cs │ ├── Readers │ │ ├── DateTimeConverter.cs │ │ ├── DeferredDictionary.cs │ │ ├── DeferredDictionaryConverter.cs │ │ ├── DeferredList.cs │ │ ├── DeferredListConverter.cs │ │ ├── EnumConverter.cs │ │ ├── FlagsEnumConverter.cs │ │ ├── JsonInnerTextReader.cs │ │ ├── JsonPositionedTextReader.cs │ │ ├── LineMappingStreamReader.cs │ │ ├── NonDisposingDelegatingStream.cs │ │ ├── OverflowCorrector.cs │ │ ├── PropertyBagConverter.cs │ │ ├── ResultDiffingVisitor.cs │ │ ├── SarifContractResolver.cs │ │ ├── SarifDeferredContractResolver.cs │ │ ├── SarifVersionConverter.cs │ │ ├── SerializedPropertyInfoConverter.cs │ │ ├── UriConverter.cs │ │ └── VersionConverter.cs │ ├── ResultKindSet.cs │ ├── RuleKind.cs │ ├── RuleKindSet.cs │ ├── RuleUtilities.cs │ ├── RuntimeConditions.cs │ ├── Sarif.csproj │ ├── Sarif.ruleset │ ├── SarifConstants.cs │ ├── SarifExtensionMethods.cs │ ├── SarifUtilities.cs │ ├── Schemata │ │ ├── Sarif-1.0.0.schema.json │ │ ├── sarif-2.1.0-rtm.5.json │ │ ├── sarif-2.1.0-rtm.6.json │ │ ├── sarif-external-property-file-2.1.0-rtm.5.json │ │ └── sarif-external-property-file-2.1.0-rtm.6.json │ ├── SdkResources.Designer.cs │ ├── SdkResources.resx │ ├── SinglethreadedZipArchiveArtifactProvider.cs │ ├── SplittingStrategy.cs │ ├── StringSet.cs │ ├── StringToVersionMap.cs │ ├── SupportedPlatform.cs │ ├── ToDotNet │ │ ├── ToDotNet.targets │ │ └── packages.config │ ├── TypedPropertiesDictionary.cs │ ├── TypedPropertiesDictionaryConverter.cs │ ├── UriHelper.cs │ ├── UriUtilities.cs │ ├── VersionConstants.cs │ ├── VersionOne │ │ ├── Autogenerated │ │ │ ├── AlgorithmKindVersionOne.cs │ │ │ ├── AnnotatedCodeLocationImportanceVersionOne.cs │ │ │ ├── AnnotatedCodeLocationKindVersionOne.cs │ │ │ ├── AnnotatedCodeLocationVersionOne.cs │ │ │ ├── AnnotatedCodeLocationVersionOneEqualityComparer.cs │ │ │ ├── AnnotationVersionOne.cs │ │ │ ├── AnnotationVersionOneEqualityComparer.cs │ │ │ ├── BaselineStateVersionOne.cs │ │ │ ├── CodeFlowVersionOne.cs │ │ │ ├── CodeFlowVersionOneEqualityComparer.cs │ │ │ ├── ExceptionDataVersionOne.cs │ │ │ ├── ExceptionDataVersionOneEqualityComparer.cs │ │ │ ├── FileChangeVersionOne.cs │ │ │ ├── FileChangeVersionOneEqualityComparer.cs │ │ │ ├── FileDataVersionOne.cs │ │ │ ├── FileDataVersionOneEqualityComparer.cs │ │ │ ├── FixVersionOne.cs │ │ │ ├── FixVersionOneEqualityComparer.cs │ │ │ ├── FormattedRuleMessageVersionOne.cs │ │ │ ├── FormattedRuleMessageVersionOneEqualityComparer.cs │ │ │ ├── HashVersionOne.cs │ │ │ ├── HashVersionOneEqualityComparer.cs │ │ │ ├── IRuleVersionOneVersionOne.cs │ │ │ ├── ISarifNodeVersionOneVersionOne.cs │ │ │ ├── InvocationVersionOne.cs │ │ │ ├── InvocationVersionOneEqualityComparer.cs │ │ │ ├── LocationVersionOne.cs │ │ │ ├── LocationVersionOneEqualityComparer.cs │ │ │ ├── LogicalLocationVersionOne.cs │ │ │ ├── LogicalLocationVersionOneEqualityComparer.cs │ │ │ ├── NotificationLevelVersionOne.cs │ │ │ ├── NotificationVersionOne.cs │ │ │ ├── NotificationVersionOneEqualityComparer.cs │ │ │ ├── PhysicalLocationVersionOne.cs │ │ │ ├── PhysicalLocationVersionOneEqualityComparer.cs │ │ │ ├── RegionVersionOne.cs │ │ │ ├── RegionVersionOneEqualityComparer.cs │ │ │ ├── ReplacementVersionOne.cs │ │ │ ├── ReplacementVersionOneEqualityComparer.cs │ │ │ ├── ResultLevelVersionOne.cs │ │ │ ├── ResultVersionOne.cs │ │ │ ├── ResultVersionOneEqualityComparer.cs │ │ │ ├── RuleConfigurationVersionOne.cs │ │ │ ├── RuleVersionOne.cs │ │ │ ├── RuleVersionOneEqualityComparer.cs │ │ │ ├── RunVersionOne.cs │ │ │ ├── RunVersionOneEqualityComparer.cs │ │ │ ├── SarifLogVersionOne.cs │ │ │ ├── SarifLogVersionOneEqualityComparer.cs │ │ │ ├── SarifNodeKindVersionOneVersionOne.cs │ │ │ ├── SarifRewritingVisitorVersionOne.cs │ │ │ ├── SarifVersionVersionOne.cs │ │ │ ├── StackFrameVersionOne.cs │ │ │ ├── StackFrameVersionOneEqualityComparer.cs │ │ │ ├── StackVersionOne.cs │ │ │ ├── StackVersionOneEqualityComparer.cs │ │ │ ├── SuppressionStatesVersionOne.cs │ │ │ ├── TaintKindVersionOne.cs │ │ │ ├── ToolVersionOne.cs │ │ │ └── ToolVersionOneEqualityComparer.cs │ │ ├── Core │ │ │ ├── IPropertyBagHolderVersionOne.cs │ │ │ ├── IRuleVersionOne.cs │ │ │ ├── PropertyBagHolderVersionOne.cs │ │ │ └── TagsCollectionVersionOne.cs │ │ ├── Readers │ │ │ ├── AnnotatedCodeLocationIdConverter.cs │ │ │ └── SarifContractResolverVersionOne.cs │ │ └── SarifUtilitiesVersionOne.cs │ ├── Visitors │ │ ├── AddFileReferencesVisitor.cs │ │ ├── ExtractAllArtifactLocationsVisitor.cs │ │ ├── FilteringVisitor.cs │ │ ├── GitHubIngestionVisitor.cs │ │ ├── InsertOptionalDataVisitor.cs │ │ ├── MakeUrisAbsoluteVisitor.cs │ │ ├── PartitioningVisitor.cs │ │ ├── PerRunPerRuleSplittingVisitor.cs │ │ ├── PerRunPerTargetPerRuleSplittingVisitor.cs │ │ ├── PerRunPerTargetSplittingVisitor.cs │ │ ├── RebaseUriVisitor.cs │ │ ├── RemoveOptionalDataVisitor.cs │ │ ├── RunMergingVisitor.cs │ │ ├── SarifCurrentToVersionOneVisitor.cs │ │ ├── SarifTransformerUtilities.cs │ │ ├── SarifVersionOneToCurrentVisitor.cs │ │ ├── SortingVisitor.cs │ │ ├── SplittingVisitor.cs │ │ ├── SuppressVisitor.cs │ │ ├── UnknownEncodingException.cs │ │ ├── UpdateIndicesFromLegacyDataVisitor.cs │ │ └── VersionOneLogicalLocationKeyToLogicalLocationDataVisitor.cs │ ├── Warnings.cs │ ├── Writers │ │ ├── BaseLogger.cs │ │ ├── CacheByFileHashLogger.cs │ │ ├── CachingLogger.cs │ │ ├── ConsoleLogger.cs │ │ ├── LogFilePersistenceOptions.cs │ │ ├── MemoryStreamSarifLogger.cs │ │ ├── MimeType.cs │ │ ├── PrereleaseCompatibilityTransformer.cs │ │ ├── RegionComponents.cs │ │ ├── ResultLogJsonWriter.cs │ │ ├── SarifConsolidator.cs │ │ ├── SarifLogger.cs │ │ ├── SarifOneZeroZeroLogger.cs │ │ └── SarifPartitioner.cs │ └── ZipArchiveArtifact.cs ├── Shared │ └── CommonAssemblyInfo.cs ├── Test.EndToEnd.Baselining │ ├── BaseliningDetailEnricher.cs │ ├── BaseliningDetailLogger.cs │ ├── BaseliningSummary.cs │ ├── BaseliningTester.cs │ ├── Extensions │ │ ├── ArtifactUriEnumeration.cs │ │ ├── DirectResultMatchingComparer.cs │ │ ├── IEnumerableStringExtensions.cs │ │ ├── ResultEnumeration.cs │ │ ├── ResultTextFormatter.cs │ │ └── SarifLogExtensions.cs │ ├── Options │ │ ├── DebugOptions.cs │ │ ├── OptionsBase.cs │ │ ├── RebuildDebugLogsOptions.cs │ │ └── RunOptions.cs │ ├── Program.cs │ └── Test.EndToEnd.Baselining.csproj ├── Test.FunctionalTests.Sarif │ ├── ConverterTestData │ │ └── PREfast │ │ │ └── src │ │ │ ├── AdvancedAliasing │ │ │ ├── AA_IndexAlias.cpp │ │ │ ├── AA_IndexAlias.expects.txt │ │ │ ├── AA_PropertyAlias.cpp │ │ │ ├── AA_PropertyAlias.expects.txt │ │ │ ├── AA_RememberOldAlias.cpp │ │ │ ├── AA_RememberOldAlias.expects.txt │ │ │ └── env.lst │ │ │ ├── AdvancedAnnotations │ │ │ ├── AN_Basic_C6053_4.cpp │ │ │ ├── AN_Basic_C6053_4.expects.txt │ │ │ ├── AN_Basic_C6387.cpp │ │ │ ├── AN_Basic_C6387.expects.txt │ │ │ ├── AN_FunctionAndInAnnotations.cpp │ │ │ ├── AN_FunctionAndInAnnotations.expects.txt │ │ │ ├── AN_InOptAnnotations.cpp │ │ │ ├── AN_InOptAnnotations.expects.txt │ │ │ ├── AN_OutWithDefect.cpp │ │ │ ├── AN_OutWithDefect.expects.txt │ │ │ └── env.lst │ │ │ ├── AdvancedBranches │ │ │ ├── AB_IrrelevantBranch.cpp │ │ │ ├── AB_IrrelevantBranch.expects.txt │ │ │ ├── AB_IrrelevantLoop.cpp │ │ │ ├── AB_IrrelevantLoop.expects.txt │ │ │ ├── AB_IrrelevantSwitch.cpp │ │ │ ├── AB_IrrelevantSwitch.expects.txt │ │ │ ├── AB_SecondLoop.cpp │ │ │ ├── AB_SecondLoop.expects.txt │ │ │ └── env.lst │ │ │ ├── AdvancedFunctions │ │ │ ├── AF_LocalRemoteFunctions.cpp │ │ │ ├── AF_LocalRemoteFunctions.expects.txt │ │ │ ├── AF_LocalRemoteFunctions.h │ │ │ └── env.lst │ │ │ ├── AdvancedMerging │ │ │ ├── AM_AliasAndMaybeZero.cpp │ │ │ ├── AM_AliasAndMaybeZero.expects.txt │ │ │ ├── AM_AliasAndSetValue.cpp │ │ │ ├── AM_AliasAndSetValue.expects.txt │ │ │ ├── AM_BranchAndMaybeZero.cpp │ │ │ ├── AM_BranchAndMaybeZero.expects.txt │ │ │ ├── AM_BranchAndSetValue.cpp │ │ │ ├── AM_BranchAndSetValue.expects.txt │ │ │ └── env.lst │ │ │ ├── C28182 │ │ │ ├── C28182Example.cpp │ │ │ ├── env.lst │ │ │ └── expects.txt │ │ │ ├── C6001 │ │ │ ├── C6001Example.cpp │ │ │ ├── env.lst │ │ │ └── expects.txt │ │ │ ├── C6011 │ │ │ ├── C6011Example.cpp │ │ │ ├── env.lst │ │ │ └── expects.txt │ │ │ ├── C6029 │ │ │ ├── C6029Example.cpp │ │ │ ├── env.lst │ │ │ └── expects.txt │ │ │ ├── C6059 │ │ │ ├── C6059Example.cpp │ │ │ ├── env.lst │ │ │ └── expects.txt │ │ │ ├── C6200 │ │ │ ├── C6200Example.cpp │ │ │ ├── env.lst │ │ │ └── expects.txt │ │ │ ├── C6305 │ │ │ ├── AdvancedC6305.cpp │ │ │ ├── AdvancedC6305.expects.txt │ │ │ ├── C6305Example.cpp │ │ │ ├── env.lst │ │ │ └── expects.txt │ │ │ ├── C6385 │ │ │ ├── C6385Example.cpp │ │ │ ├── env.lst │ │ │ └── expects.txt │ │ │ ├── C6386 │ │ │ ├── C6386Example.cpp │ │ │ ├── env.lst │ │ │ └── expects.txt │ │ │ ├── CombinedWarnings │ │ │ ├── C28182Example.cpp │ │ │ ├── C6001Example.cpp │ │ │ ├── C6011Example.cpp │ │ │ ├── C6029Example.cpp │ │ │ ├── C6200Example.cpp │ │ │ ├── C6385Example.cpp │ │ │ ├── C6386Example.cpp │ │ │ ├── env.lst │ │ │ ├── expects28182.txt │ │ │ ├── expects6001.txt │ │ │ ├── expects6011.txt │ │ │ ├── expects6029.txt │ │ │ ├── expects6200.txt │ │ │ ├── expects6385.txt │ │ │ ├── expects6386.txt │ │ │ └── run.pl │ │ │ ├── Complex │ │ │ ├── C6001 │ │ │ │ ├── C6001Example2.cpp │ │ │ │ └── C6001Example3.cpp │ │ │ ├── C6385 │ │ │ │ ├── C6385Example2.cpp │ │ │ │ └── C6385Example3.cpp │ │ │ ├── C6386 │ │ │ │ ├── C6386Example2.cpp │ │ │ │ └── C6386Example3.cpp │ │ │ ├── env.lst │ │ │ ├── expects6001_1.txt │ │ │ ├── expects6001_2.txt │ │ │ ├── expects6385_1.txt │ │ │ ├── expects6385_2.txt │ │ │ ├── expects6386_1.txt │ │ │ └── expects6386_2.txt │ │ │ ├── ExpectedOutput │ │ │ ├── AA_IndexAlias.xml │ │ │ ├── AA_PropertyAlias.xml │ │ │ ├── AA_RememberOldAlias.xml │ │ │ ├── AB_IrrelevantBranch.xml │ │ │ ├── AB_IrrelevantLoop.xml │ │ │ ├── AB_IrrelevantSwitch.xml │ │ │ ├── AB_SecondLoop.xml │ │ │ ├── AF_LocalRemoteFunctions.xml │ │ │ ├── AM_AliasAndMaybeZero.xml │ │ │ ├── AM_AliasAndSetValue.xml │ │ │ ├── AM_BranchAndMaybeZero.xml │ │ │ ├── AM_BranchAndSetValue.xml │ │ │ ├── AN_Basic_C6053_4.xml │ │ │ ├── AN_Basic_C6387.xml │ │ │ ├── AN_FunctionAndInAnnotations.xml │ │ │ ├── AN_InOptAnnotations.xml │ │ │ ├── AN_OutWithDefect.xml │ │ │ ├── AdvancedC6305.xml │ │ │ ├── C28182output1.xml │ │ │ ├── C6001output1.xml │ │ │ ├── C6001output2.xml │ │ │ ├── C6001output3.xml │ │ │ ├── C6011output1.xml │ │ │ ├── C6029output1.xml │ │ │ ├── C6059output1.xml │ │ │ ├── C6200output1.xml │ │ │ ├── C6305output1.xml │ │ │ ├── C6385output1.xml │ │ │ ├── C6385output2.xml │ │ │ ├── C6385output3.xml │ │ │ ├── C6386output1.xml │ │ │ ├── C6386output2.xml │ │ │ ├── C6386output3.xml │ │ │ ├── CombinedOutput1.xml │ │ │ ├── FixedTFS260613.xml │ │ │ ├── FixedTFS331675.xml │ │ │ ├── FixedTFS348783.xml │ │ │ ├── FixedTFS360455.xml │ │ │ ├── FixedTFS370524.xml │ │ │ ├── FixedTFS372959.xml │ │ │ ├── FixedTFS373273.xml │ │ │ ├── FixedTFS375867.xml │ │ │ ├── FixedTFS378661.xml │ │ │ ├── LongConditionsoutput1.xml │ │ │ ├── LongMacrooutput1.xml │ │ │ ├── RelevantkeyEventsoutput1.xml │ │ │ ├── RelevantkeyEventsoutput2.xml │ │ │ ├── Standardc6259output1.xml │ │ │ ├── Standardc6282output1.xml │ │ │ ├── Standardc6306output1.xml │ │ │ └── Standardc6316output1.xml │ │ │ ├── FixedBugs │ │ │ ├── TFS260613.cpp │ │ │ ├── TFS260613.expects.txt │ │ │ ├── TFS331675.cpp │ │ │ ├── TFS331675.expects.txt │ │ │ ├── TFS348783.cpp │ │ │ ├── TFS348783.expects.txt │ │ │ ├── TFS360455.cpp │ │ │ ├── TFS360455.expects.txt │ │ │ ├── TFS370524.cpp │ │ │ ├── TFS370524.expects.txt │ │ │ ├── TFS372959.cpp │ │ │ ├── TFS372959.expects.txt │ │ │ ├── TFS373273.cpp │ │ │ ├── TFS373273.expects.txt │ │ │ ├── TFS375867.cpp │ │ │ ├── TFS375867.expects.txt │ │ │ ├── TFS378661.cpp │ │ │ ├── TFS378661.expects.txt │ │ │ └── env.lst │ │ │ ├── LongMacroCondition │ │ │ ├── LongConditions.cpp │ │ │ ├── LongMacro.cpp │ │ │ ├── env.lst │ │ │ ├── expectsConditions.txt │ │ │ └── expectsMacro.txt │ │ │ ├── RelevantKeyEvents │ │ │ ├── RelevantKeyEvents2.cpp │ │ │ ├── RelevantkeyEvents.cpp │ │ │ ├── env.lst │ │ │ ├── expects1.txt │ │ │ └── expects2.txt │ │ │ └── StandardUx │ │ │ ├── Standardc6259.cxx │ │ │ ├── Standardc6282.cxx │ │ │ ├── Standardc6306.cxx │ │ │ ├── Standardc6316.cxx │ │ │ ├── env.lst │ │ │ ├── expects6259.txt │ │ │ ├── expects6282.txt │ │ │ ├── expects6306.txt │ │ │ ├── expects6309.txt │ │ │ └── expects6316.txt │ ├── DefaultObjectPopulatingVisitor.cs │ ├── DirectProducerTestData │ │ ├── BinSkim │ │ │ ├── Corrupted_Native_x86_VS2013_Default.exe.sarif │ │ │ ├── MixedMode_x86_VS2013_MissingPdb.dll.sarif │ │ │ ├── MixedMode_x86_VS2015_Default.exe.sarif │ │ │ ├── RefreshFiles.cmd │ │ │ ├── Uwp_x86_VS2015_DefaultBlankApp.exe.sarif │ │ │ ├── clang.execstack.sarif │ │ │ └── gcc.no_fortification_required.sarif │ │ └── Semmle │ │ │ ├── Readme.md │ │ │ └── SarifSdk.sarif │ ├── Multitool │ │ ├── BaselineOptionTests.cs │ │ └── ValidateCommandTests.cs │ ├── MultitoolCommandLineTests.cs │ ├── PropertyBagConverterTests.cs │ ├── SarifConverterTests.cs │ ├── SarifLogEqualityComparerTests.cs │ ├── SarifValidatorTests.cs │ ├── Test.FunctionalTests.Sarif.csproj │ ├── TestData │ │ ├── Multitool │ │ │ ├── BaselineOption │ │ │ │ ├── ExpectedOutputs │ │ │ │ │ ├── TEST1001.ValidateWithBaseline.sarif │ │ │ │ │ ├── TEST1002.ValidateBaseline.NoResults.sarif │ │ │ │ │ ├── TEST1003.ValidateBaseline.AbsentResults.sarif │ │ │ │ │ ├── TEST1004.ValidateBaseline.NewResults.sarif │ │ │ │ │ ├── TEST1005.ValidateBaseline.UnchangedResults.sarif │ │ │ │ │ ├── TEST1006.ValidateBaseline.UpdatedResults.sarif │ │ │ │ │ ├── TEST1007.ValidateBaseline.LessResultsThanBaseline.sarif │ │ │ │ │ └── TEST1008.ValidateBaseline.InlineUpdate.sarif │ │ │ │ └── Inputs │ │ │ │ │ ├── TEST1001.Baseline.sarif │ │ │ │ │ ├── TEST1002.Baseline.sarif │ │ │ │ │ ├── TEST1003.Baseline.sarif │ │ │ │ │ ├── TEST1004.Baseline.sarif │ │ │ │ │ ├── TEST1005.Baseline.sarif │ │ │ │ │ ├── TEST1006.Baseline.sarif │ │ │ │ │ ├── TEST1007.Baseline.sarif │ │ │ │ │ ├── TEST1008.Baseline.sarif │ │ │ │ │ └── ToBeValidated.sarif │ │ │ └── ValidateCommand │ │ │ │ ├── ExpectedOutputs │ │ │ │ ├── GH1001.ProvideRequiredLocationProperties_Invalid.sarif │ │ │ │ ├── GH1001.ProvideRequiredLocationProperties_Valid.sarif │ │ │ │ ├── GH1002.InlineThreadFlowLocations_Invalid.sarif │ │ │ │ ├── GH1002.InlineThreadFlowLocations_Valid.sarif │ │ │ │ ├── GH1003.ProvideRequiredRegionProperties_Invalid.sarif │ │ │ │ ├── GH1003.ProvideRequiredRegionProperties_Valid.sarif │ │ │ │ ├── GH1004.ReviewArraysThatExceedConfigurableDefaults_Invalid.sarif │ │ │ │ ├── GH1004.ReviewArraysThatExceedConfigurableDefaults_Valid.sarif │ │ │ │ ├── GH1005.LocationsMustBeRelativeUrisOrFilePaths_Invalid.sarif │ │ │ │ ├── GH1005.LocationsMustBeRelativeUrisOrFilePaths_Valid.sarif │ │ │ │ ├── GH1006.ProvideCheckoutPath_Invalid.sarif │ │ │ │ ├── GH1006.ProvideCheckoutPath_Valid.sarif │ │ │ │ ├── GH1007.ProvideFullyFormattedMessageStrings_Invalid.sarif │ │ │ │ ├── GH1007.ProvideFullyFormattedMessageStrings_Valid.sarif │ │ │ │ ├── JSON1001.SyntaxError.sarif │ │ │ │ ├── JSON1002.DeserializationError.sarif │ │ │ │ ├── SARIF1001.RuleIdentifiersMustBeValid_Invalid.sarif │ │ │ │ ├── SARIF1001.RuleIdentifiersMustBeValid_Valid.sarif │ │ │ │ ├── SARIF1002.UrisMustBeValid_Invalid.sarif │ │ │ │ ├── SARIF1002.UrisMustBeValid_Valid.sarif │ │ │ │ ├── SARIF1004.ExpressUriBaseIdsCorrectly_Invalid.sarif │ │ │ │ ├── SARIF1004.ExpressUriBaseIdsCorrectly_Valid.sarif │ │ │ │ ├── SARIF1005.UriMustBeAbsolute_Invalid.sarif │ │ │ │ ├── SARIF1005.UriMustBeAbsolute_Valid.sarif │ │ │ │ ├── SARIF1006.InvocationPropertiesMustBeConsistent_Invalid.sarif │ │ │ │ ├── SARIF1006.InvocationPropertiesMustBeConsistent_Valid.sarif │ │ │ │ ├── SARIF1007.RegionPropertiesMustBeConsistent_Invalid.sarif │ │ │ │ ├── SARIF1007.RegionPropertiesMustBeConsistent_Valid.sarif │ │ │ │ ├── SARIF1008.PhysicalLocationPropertiesMustBeConsistent_Invalid.sarif │ │ │ │ ├── SARIF1008.PhysicalLocationPropertiesMustBeConsistent_Valid.sarif │ │ │ │ ├── SARIF1009.IndexPropertiesMustBeConsistentWithArrays_Invalid.sarif │ │ │ │ ├── SARIF1009.IndexPropertiesMustBeConsistentWithArrays_Valid.sarif │ │ │ │ ├── SARIF1010.RuleIdMustBeConsistent_Invalid.sarif │ │ │ │ ├── SARIF1010.RuleIdMustBeConsistent_Valid.sarif │ │ │ │ ├── SARIF1011.ReferenceFinalSchema_Invalid.sarif │ │ │ │ ├── SARIF1011.ReferenceFinalSchema_Valid.sarif │ │ │ │ ├── SARIF1012.MessageArgumentsMustBeConsistentWithRule_Invalid.sarif │ │ │ │ ├── SARIF1012.MessageArgumentsMustBeConsistentWithRule_Valid.sarif │ │ │ │ ├── SARIF2001.TerminateMessagesWithPeriod_Invalid.sarif │ │ │ │ ├── SARIF2001.TerminateMessagesWithPeriod_Valid.sarif │ │ │ │ ├── SARIF2002.ProvideMessageArguments_Invalid.sarif │ │ │ │ ├── SARIF2002.ProvideMessageArguments_Valid.sarif │ │ │ │ ├── SARIF2003.ProvideVersionControlProvenance_Invalid.sarif │ │ │ │ ├── SARIF2003.ProvideVersionControlProvenance_Valid.sarif │ │ │ │ ├── SARIF2004.OptimizeFileSize_Invalid.sarif │ │ │ │ ├── SARIF2004.OptimizeFileSize_Valid.sarif │ │ │ │ ├── SARIF2005.ProvideToolProperties_DottedQuadFileVersion_Invalid.sarif │ │ │ │ ├── SARIF2005.ProvideToolProperties_DottedQuadFileVersion_Valid.sarif │ │ │ │ ├── SARIF2005.ProvideToolProperties_Invalid.sarif │ │ │ │ ├── SARIF2005.ProvideToolProperties_MissingInformationUri_Invalid.sarif │ │ │ │ ├── SARIF2005.ProvideToolProperties_MissingInformationUri_Valid.sarif │ │ │ │ ├── SARIF2005.ProvideToolProperties_Valid.sarif │ │ │ │ ├── SARIF2006.UrisShouldBeReachable_Invalid.sarif │ │ │ │ ├── SARIF2006.UrisShouldBeReachable_Valid.sarif │ │ │ │ ├── SARIF2007.ExpressPathsRelativeToRepoRoot_DoNotLoadNotRelatedUriBaseId_Invalid.sarif │ │ │ │ ├── SARIF2007.ExpressPathsRelativeToRepoRoot_Invalid.sarif │ │ │ │ ├── SARIF2007.ExpressPathsRelativeToRepoRoot_LoadRelatedUriBaseId_Valid.sarif │ │ │ │ ├── SARIF2007.ExpressPathsRelativeToRepoRoot_Valid.sarif │ │ │ │ ├── SARIF2007.ExpressPathsRelativeToRepoRoot_WithoutVersionControlProvenance_Valid.sarif │ │ │ │ ├── SARIF2008.ProvideSchema_Invalid.sarif │ │ │ │ ├── SARIF2008.ProvideSchema_Valid.sarif │ │ │ │ ├── SARIF2009.ConsiderConventionalIdentifierValues_Invalid.sarif │ │ │ │ ├── SARIF2009.ConsiderConventionalIdentifierValues_Valid.sarif │ │ │ │ ├── SARIF2010.ProvideCodeSnippets_Invalid.sarif │ │ │ │ ├── SARIF2010.ProvideCodeSnippets_Valid.sarif │ │ │ │ ├── SARIF2010.ProvideCodeSnippets_WithEmbeddedContent.sarif │ │ │ │ ├── SARIF2011.ProvideContextRegion_Invalid.sarif │ │ │ │ ├── SARIF2011.ProvideContextRegion_Valid.sarif │ │ │ │ ├── SARIF2012.ProvideRuleProperties_Invalid.sarif │ │ │ │ ├── SARIF2012.ProvideRuleProperties_Valid.sarif │ │ │ │ ├── SARIF2012.ProvideRuleProperties_WithoutRuleMetadata.sarif │ │ │ │ ├── SARIF2012.ProvideRuleProperties_WithoutRules.sarif │ │ │ │ ├── SARIF2013.ProvideEmbeddedFileContent_Invalid.sarif │ │ │ │ ├── SARIF2013.ProvideEmbeddedFileContent_Valid.sarif │ │ │ │ ├── SARIF2014.ProvideDynamicMessageContent_Invalid.sarif │ │ │ │ ├── SARIF2014.ProvideDynamicMessageContent_Valid.sarif │ │ │ │ ├── SARIF2015.EnquoteDynamicMessageContent_Invalid.sarif │ │ │ │ ├── SARIF2015.EnquoteDynamicMessageContent_Valid.sarif │ │ │ │ ├── SARIF2016.FileUrisShouldBeRelative_Invalid.sarif │ │ │ │ └── SARIF2016.FileUrisShouldBeRelative_Valid.sarif │ │ │ │ └── Inputs │ │ │ │ ├── GH1001.ProvideRequiredLocationProperties_Invalid.sarif │ │ │ │ ├── GH1001.ProvideRequiredLocationProperties_Valid.sarif │ │ │ │ ├── GH1002.InlineThreadFlowLocations_Invalid.sarif │ │ │ │ ├── GH1002.InlineThreadFlowLocations_Valid.sarif │ │ │ │ ├── GH1003.ProvideRequiredRegionProperties_Invalid.sarif │ │ │ │ ├── GH1003.ProvideRequiredRegionProperties_Valid.sarif │ │ │ │ ├── GH1004.ReviewArraysThatExceedConfigurableDefaults_Invalid.sarif │ │ │ │ ├── GH1004.ReviewArraysThatExceedConfigurableDefaults_Valid.sarif │ │ │ │ ├── GH1005.LocationsMustBeRelativeUrisOrFilePaths_Invalid.sarif │ │ │ │ ├── GH1005.LocationsMustBeRelativeUrisOrFilePaths_Valid.sarif │ │ │ │ ├── GH1006.ProvideCheckoutPath_Invalid.sarif │ │ │ │ ├── GH1006.ProvideCheckoutPath_Valid.sarif │ │ │ │ ├── GH1007.ProvideFullyFormattedMessageStrings_Invalid.sarif │ │ │ │ ├── GH1007.ProvideFullyFormattedMessageStrings_Valid.sarif │ │ │ │ ├── JSON1001.SyntaxError.sarif │ │ │ │ ├── JSON1002.DeserializationError.sarif │ │ │ │ ├── SARIF1001.RuleIdentifiersMustBeValid_Invalid.sarif │ │ │ │ ├── SARIF1001.RuleIdentifiersMustBeValid_Valid.sarif │ │ │ │ ├── SARIF1002.UrisMustBeValid_Invalid.sarif │ │ │ │ ├── SARIF1002.UrisMustBeValid_Valid.sarif │ │ │ │ ├── SARIF1004.ExpressUriBaseIdsCorrectly_Invalid.sarif │ │ │ │ ├── SARIF1004.ExpressUriBaseIdsCorrectly_Valid.sarif │ │ │ │ ├── SARIF1005.UriMustBeAbsolute_Invalid.sarif │ │ │ │ ├── SARIF1005.UriMustBeAbsolute_Valid.sarif │ │ │ │ ├── SARIF1006.InvocationPropertiesMustBeConsistent_Invalid.sarif │ │ │ │ ├── SARIF1006.InvocationPropertiesMustBeConsistent_Valid.sarif │ │ │ │ ├── SARIF1007.RegionPropertiesMustBeConsistent_Invalid.sarif │ │ │ │ ├── SARIF1007.RegionPropertiesMustBeConsistent_Valid.sarif │ │ │ │ ├── SARIF1008.PhysicalLocationPropertiesMustBeConsistent_Invalid.sarif │ │ │ │ ├── SARIF1008.PhysicalLocationPropertiesMustBeConsistent_Valid.sarif │ │ │ │ ├── SARIF1009.IndexPropertiesMustBeConsistentWithArrays_Invalid.sarif │ │ │ │ ├── SARIF1009.IndexPropertiesMustBeConsistentWithArrays_Valid.sarif │ │ │ │ ├── SARIF1010.RuleIdMustBeConsistent_Invalid.sarif │ │ │ │ ├── SARIF1010.RuleIdMustBeConsistent_Valid.sarif │ │ │ │ ├── SARIF1011.ReferenceFinalSchema_Invalid.sarif │ │ │ │ ├── SARIF1011.ReferenceFinalSchema_Valid.sarif │ │ │ │ ├── SARIF1012.MessageArgumentsMustBeConsistentWithRule_Invalid.sarif │ │ │ │ ├── SARIF1012.MessageArgumentsMustBeConsistentWithRule_Valid.sarif │ │ │ │ ├── SARIF2001.TerminateMessagesWithPeriod_Invalid.sarif │ │ │ │ ├── SARIF2001.TerminateMessagesWithPeriod_Valid.sarif │ │ │ │ ├── SARIF2002.ProvideMessageArguments_Invalid.sarif │ │ │ │ ├── SARIF2002.ProvideMessageArguments_Valid.sarif │ │ │ │ ├── SARIF2003.ProvideVersionControlProvenance_Invalid.sarif │ │ │ │ ├── SARIF2003.ProvideVersionControlProvenance_Valid.sarif │ │ │ │ ├── SARIF2004.OptimizeFileSize_Invalid.sarif │ │ │ │ ├── SARIF2004.OptimizeFileSize_Valid.sarif │ │ │ │ ├── SARIF2005.ProvideToolProperties_DottedQuadFileVersion.sarif │ │ │ │ ├── SARIF2005.ProvideToolProperties_Invalid.sarif │ │ │ │ ├── SARIF2005.ProvideToolProperties_MissingInformationUri.sarif │ │ │ │ ├── SARIF2005.ProvideToolProperties_Valid.sarif │ │ │ │ ├── SARIF2006.UrisShouldBeReachable_Invalid.sarif │ │ │ │ ├── SARIF2006.UrisShouldBeReachable_Valid.sarif │ │ │ │ ├── SARIF2007.ExpressPathsRelativeToRepoRoot_DoNotLoadNotRelatedUriBaseId_Invalid.sarif │ │ │ │ ├── SARIF2007.ExpressPathsRelativeToRepoRoot_Invalid.sarif │ │ │ │ ├── SARIF2007.ExpressPathsRelativeToRepoRoot_LoadRelatedUriBaseId_Valid.sarif │ │ │ │ ├── SARIF2007.ExpressPathsRelativeToRepoRoot_Valid.sarif │ │ │ │ ├── SARIF2007.ExpressPathsRelativeToRepoRoot_WithoutVersionControlProvenance_Valid.sarif │ │ │ │ ├── SARIF2008.ProvideSchema_Invalid.sarif │ │ │ │ ├── SARIF2008.ProvideSchema_Valid.sarif │ │ │ │ ├── SARIF2009.ConsiderConventionalIdentifierValues_Invalid.sarif │ │ │ │ ├── SARIF2009.ConsiderConventionalIdentifierValues_Valid.sarif │ │ │ │ ├── SARIF2010.ProvideCodeSnippets_Invalid.sarif │ │ │ │ ├── SARIF2010.ProvideCodeSnippets_Valid.sarif │ │ │ │ ├── SARIF2010.ProvideCodeSnippets_WithEmbeddedContent.sarif │ │ │ │ ├── SARIF2011.ProvideContextRegion_Invalid.sarif │ │ │ │ ├── SARIF2011.ProvideContextRegion_Valid.sarif │ │ │ │ ├── SARIF2012.ProvideRuleProperties_Invalid.sarif │ │ │ │ ├── SARIF2012.ProvideRuleProperties_Valid.sarif │ │ │ │ ├── SARIF2012.ProvideRuleProperties_WithoutRuleMetadata.sarif │ │ │ │ ├── SARIF2012.ProvideRuleProperties_WithoutRules.sarif │ │ │ │ ├── SARIF2013.ProvideEmbeddedFileContent_Invalid.sarif │ │ │ │ ├── SARIF2013.ProvideEmbeddedFileContent_Valid.sarif │ │ │ │ ├── SARIF2014.ProvideDynamicMessageContent_Invalid.sarif │ │ │ │ ├── SARIF2014.ProvideDynamicMessageContent_Valid.sarif │ │ │ │ ├── SARIF2015.EnquoteDynamicMessageContent_Invalid.sarif │ │ │ │ ├── SARIF2015.EnquoteDynamicMessageContent_Valid.sarif │ │ │ │ ├── SARIF2016.FileUrisShouldBeRelative_Invalid.sarif │ │ │ │ ├── SARIF2016.FileUrisShouldBeRelative_Valid.sarif │ │ │ │ └── SimpleExample.sarif-external-properties.json │ │ └── Partitioning │ │ │ ├── FilterByPredicate │ │ │ ├── ExpectedOutputs │ │ │ │ ├── AlwaysFalsePredicate.sarif │ │ │ │ ├── AlwaysTruePredicate.sarif │ │ │ │ └── RuleIdPredicate.sarif │ │ │ └── Inputs │ │ │ │ └── FilterByPredicate.sarif │ │ │ └── Partition │ │ │ ├── ExpectedOutputs │ │ │ ├── TST0001.sarif │ │ │ ├── TST0002.sarif │ │ │ ├── TST9999.sarif │ │ │ └── TrivialPartitionFunction.sarif │ │ │ └── Inputs │ │ │ └── Partition.sarif │ ├── Writers │ │ ├── FilterByPredicateTests.cs │ │ └── PartitionTests.cs │ ├── default.configuration.xml │ ├── v1 │ │ ├── ConverterTestData │ │ │ ├── AndroidStudio │ │ │ │ ├── AndroidStudio_issueLog1_raw.xml │ │ │ │ ├── AndroidStudio_issueLog1_raw.xml.sarif │ │ │ │ ├── AndroidStudio_issueLog2_raw.xml │ │ │ │ ├── AndroidStudio_issueLog2_raw.xml.sarif │ │ │ │ ├── AndroidStudio_issueLog3_raw.xml │ │ │ │ ├── AndroidStudio_issueLog3_raw.xml.sarif │ │ │ │ ├── AndroidStudio_issueLog4_raw.xml │ │ │ │ ├── AndroidStudio_issueLog4_raw.xml.sarif │ │ │ │ ├── AndroidStudio_issueLog5_raw.xml │ │ │ │ ├── AndroidStudio_issueLog5_raw.xml.sarif │ │ │ │ ├── AndroidStudio_issueLog6_raw.xml │ │ │ │ ├── AndroidStudio_issueLog6_raw.xml.sarif │ │ │ │ ├── AndroidStudio_issueLog7_raw.xml │ │ │ │ ├── AndroidStudio_issueLog7_raw.xml.sarif │ │ │ │ ├── AndroidStudio_issueLog8_raw.xml │ │ │ │ ├── AndroidStudio_issueLog8_raw.xml.sarif │ │ │ │ ├── attributeKeyMissing.xml │ │ │ │ ├── attributeKeyMissing.xml.sarif │ │ │ │ ├── extraComment.xml │ │ │ │ ├── extraComment.xml.sarif │ │ │ │ ├── fileEmpty.xml │ │ │ │ ├── fileEmpty.xml.sarif │ │ │ │ ├── minimalIssueWithoutPackageOrHintElement.xml │ │ │ │ ├── minimalIssueWithoutPackageOrHintElement.xml.sarif │ │ │ │ ├── moduleEmpty.xml │ │ │ │ ├── moduleEmpty.xml.sarif │ │ │ │ ├── packageBeforeModule.xml │ │ │ │ ├── packageBeforeModule.xml.sarif │ │ │ │ ├── packageEmpty.xml │ │ │ │ ├── packageEmpty.xml.sarif │ │ │ │ ├── problemClassSeverityMissing.xml │ │ │ │ ├── problemClassSeverityMissing.xml.sarif │ │ │ │ ├── singleIssue.xml │ │ │ │ ├── singleIssue.xml.sarif │ │ │ │ ├── singleIssueWithEmptyHints.xml │ │ │ │ ├── singleIssueWithEmptyHints.xml.sarif │ │ │ │ ├── singleIssueWithHints.xml │ │ │ │ ├── singleIssueWithHints.xml.sarif │ │ │ │ ├── twoIssues.xml │ │ │ │ └── twoIssues.xml.sarif │ │ │ ├── ClangAnalyzer │ │ │ │ ├── ArrayDataTypes.xml │ │ │ │ ├── ArrayDataTypes.xml.sarif │ │ │ │ ├── BadMissingString.xml │ │ │ │ ├── BadMissingString.xml.sarif │ │ │ │ ├── ClangAnalyzer_issueLog1_raw.xml │ │ │ │ ├── ClangAnalyzer_issueLog1_raw.xml.sarif │ │ │ │ ├── DictionaryDataTypes.xml │ │ │ │ ├── DictionaryDataTypes.xml.sarif │ │ │ │ ├── DivByZero.xml │ │ │ │ ├── DivByZero.xml.sarif │ │ │ │ ├── FileNumberCoverage.xml │ │ │ │ ├── FileNumberCoverage.xml.sarif │ │ │ │ ├── GarbageValueLog.xml │ │ │ │ ├── GarbageValueLog.xml.sarif │ │ │ │ ├── MediumLog.xml │ │ │ │ ├── MediumLog.xml.sarif │ │ │ │ ├── MissingLocation.xml │ │ │ │ ├── MissingLocation.xml.sarif │ │ │ │ ├── Readme.txt │ │ │ │ ├── RealLog.xml │ │ │ │ └── RealLog.xml.sarif │ │ │ ├── CppCheck │ │ │ │ ├── CppCheck_issueLog1_raw.xml │ │ │ │ ├── CppCheck_issueLog1_raw.xml.sarif │ │ │ │ └── README.txt │ │ │ ├── Fortify │ │ │ │ ├── bannedAPIs_java.xml │ │ │ │ ├── bannedAPIs_java.xml.sarif │ │ │ │ ├── bannedAPIs_m0.xml │ │ │ │ ├── bannedAPIs_m0.xml.sarif │ │ │ │ ├── bannedAPIs_m1.xml │ │ │ │ ├── bannedAPIs_m1.xml.sarif │ │ │ │ └── src │ │ │ │ │ └── bannedAPIs.java │ │ │ ├── FxCop │ │ │ │ ├── FxCopExampleReport2.xml │ │ │ │ ├── FxCopExampleReport2.xml.sarif │ │ │ │ ├── FxCopExceptions.xml │ │ │ │ ├── FxCopExceptions.xml.sarif │ │ │ │ ├── FxCopNoTargets.xml │ │ │ │ ├── FxCopNoTargets.xml.sarif │ │ │ │ ├── FxCopProjectAllMessageStates.fxcop │ │ │ │ ├── FxCopReportAllMessageStates.xml │ │ │ │ ├── FxCopReportAllMessageStates.xml.sarif │ │ │ │ ├── FxCopReportOneMessage.xml │ │ │ │ ├── FxCopReportOneMessage.xml.sarif │ │ │ │ ├── FxCopReportResource.xml │ │ │ │ ├── FxCopReportResource.xml.sarif │ │ │ │ ├── FxCop_issueLog1_raw.xml │ │ │ │ └── FxCop_issueLog1_raw.xml.sarif │ │ │ ├── PREfast │ │ │ │ ├── AA_IndexAlias.cpp.xml │ │ │ │ ├── AA_IndexAlias.cpp.xml.sarif │ │ │ │ ├── AA_RememberOldAlias.cpp.xml │ │ │ │ ├── AA_RememberOldAlias.cpp.xml.sarif │ │ │ │ ├── AB_IrrelevantBranch.cpp.xml │ │ │ │ ├── AB_IrrelevantBranch.cpp.xml.sarif │ │ │ │ ├── AB_IrrelevantLoop.cpp.xml │ │ │ │ ├── AB_IrrelevantLoop.cpp.xml.sarif │ │ │ │ ├── AB_IrrelevantSwitch.cpp.xml │ │ │ │ ├── AB_IrrelevantSwitch.cpp.xml.sarif │ │ │ │ ├── AB_SecondLoop.cpp.xml │ │ │ │ ├── AB_SecondLoop.cpp.xml.sarif │ │ │ │ ├── AF_LocalRemoteFunctions.cpp.xml │ │ │ │ ├── AF_LocalRemoteFunctions.cpp.xml.sarif │ │ │ │ ├── AM_AliasAndMaybeZero.cpp.xml │ │ │ │ ├── AM_AliasAndMaybeZero.cpp.xml.sarif │ │ │ │ ├── AM_AliasAndSetValue.cpp.xml │ │ │ │ ├── AM_AliasAndSetValue.cpp.xml.sarif │ │ │ │ ├── AM_BranchAndMaybeZero.cpp.xml │ │ │ │ ├── AM_BranchAndMaybeZero.cpp.xml.sarif │ │ │ │ ├── AM_BranchAndSetValue.cpp.xml │ │ │ │ ├── AM_BranchAndSetValue.cpp.xml.sarif │ │ │ │ ├── AN_Basic_C6053_4.cpp.xml │ │ │ │ ├── AN_Basic_C6053_4.cpp.xml.sarif │ │ │ │ ├── AN_Basic_C6387.cpp.xml │ │ │ │ ├── AN_Basic_C6387.cpp.xml.sarif │ │ │ │ ├── AN_FunctionAndInAnnotations.cpp.xml │ │ │ │ ├── AN_FunctionAndInAnnotations.cpp.xml.sarif │ │ │ │ ├── AN_InOptAnnotations.cpp.xml │ │ │ │ ├── AN_InOptAnnotations.cpp.xml.sarif │ │ │ │ ├── AN_OutWithDefect.cpp.xml │ │ │ │ ├── AN_OutWithDefect.cpp.xml.sarif │ │ │ │ ├── AdvancedC6305.cpp.xml │ │ │ │ ├── AdvancedC6305.cpp.xml.sarif │ │ │ │ ├── C28182Example.cpp.xml │ │ │ │ ├── C28182Example.cpp.xml.sarif │ │ │ │ ├── C6001Example.cpp.xml │ │ │ │ ├── C6001Example.cpp.xml.sarif │ │ │ │ ├── C6001Example2.cpp.xml │ │ │ │ ├── C6001Example2.cpp.xml.sarif │ │ │ │ ├── C6001Example3.cpp.xml │ │ │ │ ├── C6001Example3.cpp.xml.sarif │ │ │ │ ├── C6011Example.cpp.xml │ │ │ │ ├── C6011Example.cpp.xml.sarif │ │ │ │ ├── C6059Example.cpp.xml │ │ │ │ ├── C6059Example.cpp.xml.sarif │ │ │ │ ├── C6200Example.cpp.xml │ │ │ │ ├── C6200Example.cpp.xml.sarif │ │ │ │ ├── C6305Example.cpp.xml │ │ │ │ ├── C6305Example.cpp.xml.sarif │ │ │ │ ├── C6385Example.cpp.xml │ │ │ │ ├── C6385Example.cpp.xml.sarif │ │ │ │ ├── C6385Example2.cpp.xml │ │ │ │ ├── C6385Example2.cpp.xml.sarif │ │ │ │ ├── C6385Example3.cpp.xml │ │ │ │ ├── C6385Example3.cpp.xml.sarif │ │ │ │ ├── C6386Example.cpp.xml │ │ │ │ ├── C6386Example.cpp.xml.sarif │ │ │ │ ├── C6386Example2.cpp.xml │ │ │ │ ├── C6386Example2.cpp.xml.sarif │ │ │ │ ├── C6386Example3.cpp.xml │ │ │ │ ├── C6386Example3.cpp.xml.sarif │ │ │ │ ├── Expected-001.xml │ │ │ │ ├── Expected-001.xml.sarif │ │ │ │ ├── Expected-002.xml │ │ │ │ ├── Expected-002.xml.sarif │ │ │ │ ├── Expected-003.xml │ │ │ │ ├── Expected-003.xml.sarif │ │ │ │ ├── Expected-005.xml │ │ │ │ ├── Expected-005.xml.sarif │ │ │ │ ├── Expected-008.xml │ │ │ │ ├── Expected-008.xml.sarif │ │ │ │ ├── Expected-010.xml │ │ │ │ ├── Expected-010.xml.sarif │ │ │ │ ├── Expected-011-amd64.xml │ │ │ │ ├── Expected-011-amd64.xml.sarif │ │ │ │ ├── Expected-011.xml │ │ │ │ ├── Expected-011.xml.sarif │ │ │ │ ├── Expected-013.xml │ │ │ │ ├── Expected-013.xml.sarif │ │ │ │ ├── Expected-014.xml │ │ │ │ ├── Expected-014.xml.sarif │ │ │ │ ├── Expected-016-amd64.xml │ │ │ │ ├── Expected-016-amd64.xml.sarif │ │ │ │ ├── Expected-016.xml │ │ │ │ ├── Expected-016.xml.sarif │ │ │ │ ├── Expected-017.xml │ │ │ │ ├── Expected-017.xml.sarif │ │ │ │ ├── Expected-020.xml │ │ │ │ ├── Expected-020.xml.sarif │ │ │ │ ├── Expected-021.xml │ │ │ │ ├── Expected-021.xml.sarif │ │ │ │ ├── Expected-022.xml │ │ │ │ ├── Expected-022.xml.sarif │ │ │ │ ├── Expected-023.xml │ │ │ │ ├── Expected-023.xml.sarif │ │ │ │ ├── Expected-024.xml │ │ │ │ ├── Expected-024.xml.sarif │ │ │ │ ├── Expected-031.xml │ │ │ │ ├── Expected-031.xml.sarif │ │ │ │ ├── Expected-032.xml │ │ │ │ ├── Expected-032.xml.sarif │ │ │ │ ├── Expected-035.xml │ │ │ │ ├── Expected-035.xml.sarif │ │ │ │ ├── Expected-036.xml │ │ │ │ ├── Expected-036.xml.sarif │ │ │ │ ├── Expected-037.xml │ │ │ │ ├── Expected-037.xml.sarif │ │ │ │ ├── Expected-038-amd64.xml │ │ │ │ ├── Expected-038-amd64.xml.sarif │ │ │ │ ├── Expected-038.xml │ │ │ │ ├── Expected-038.xml.sarif │ │ │ │ ├── Expected-039.xml │ │ │ │ ├── Expected-039.xml.sarif │ │ │ │ ├── Expected-040.xml │ │ │ │ ├── Expected-040.xml.sarif │ │ │ │ ├── Expected-041.xml │ │ │ │ ├── Expected-041.xml.sarif │ │ │ │ ├── Expected-042.xml │ │ │ │ ├── Expected-042.xml.sarif │ │ │ │ ├── Expected-043.xml │ │ │ │ ├── Expected-043.xml.sarif │ │ │ │ ├── Expected-045.xml │ │ │ │ ├── Expected-045.xml.sarif │ │ │ │ ├── Expected-046.xml │ │ │ │ ├── Expected-046.xml.sarif │ │ │ │ ├── Expected-047.xml │ │ │ │ ├── Expected-047.xml.sarif │ │ │ │ ├── Expected-048.xml │ │ │ │ ├── Expected-048.xml.sarif │ │ │ │ ├── Expected-049.xml │ │ │ │ ├── Expected-049.xml.sarif │ │ │ │ ├── Expected-050.xml │ │ │ │ ├── Expected-050.xml.sarif │ │ │ │ ├── Expected-051.xml │ │ │ │ ├── Expected-051.xml.sarif │ │ │ │ ├── Expected-052.xml │ │ │ │ ├── Expected-052.xml.sarif │ │ │ │ ├── Expected-054.xml │ │ │ │ ├── Expected-054.xml.sarif │ │ │ │ ├── Expected-055.xml │ │ │ │ ├── Expected-055.xml.sarif │ │ │ │ ├── Expected-057.xml │ │ │ │ ├── Expected-057.xml.sarif │ │ │ │ ├── Expected-058.xml │ │ │ │ ├── Expected-058.xml.sarif │ │ │ │ ├── Expected-059.xml │ │ │ │ ├── Expected-059.xml.sarif │ │ │ │ ├── Expected-060.xml │ │ │ │ ├── Expected-060.xml.sarif │ │ │ │ ├── Expected-061.xml │ │ │ │ ├── Expected-061.xml.sarif │ │ │ │ ├── Expected-062.xml │ │ │ │ ├── Expected-062.xml.sarif │ │ │ │ ├── Expected-063.xml │ │ │ │ ├── Expected-063.xml.sarif │ │ │ │ ├── Expected-065.xml │ │ │ │ ├── Expected-065.xml.sarif │ │ │ │ ├── Expected-066.xml │ │ │ │ ├── Expected-066.xml.sarif │ │ │ │ ├── Expected-067.xml │ │ │ │ ├── Expected-067.xml.sarif │ │ │ │ ├── Expected-070.xml │ │ │ │ ├── Expected-070.xml.sarif │ │ │ │ ├── Expected-071.xml │ │ │ │ ├── Expected-071.xml.sarif │ │ │ │ ├── Expected-072.xml │ │ │ │ ├── Expected-072.xml.sarif │ │ │ │ ├── Expected-073.xml │ │ │ │ ├── Expected-073.xml.sarif │ │ │ │ ├── Expected-074.xml │ │ │ │ ├── Expected-074.xml.sarif │ │ │ │ ├── Expected-075.xml │ │ │ │ ├── Expected-075.xml.sarif │ │ │ │ ├── Expected-076.xml │ │ │ │ ├── Expected-076.xml.sarif │ │ │ │ ├── Expected-077.xml │ │ │ │ ├── Expected-077.xml.sarif │ │ │ │ ├── Expected-078.xml │ │ │ │ ├── Expected-078.xml.sarif │ │ │ │ ├── Expected-079.xml │ │ │ │ ├── Expected-079.xml.sarif │ │ │ │ ├── Expected-080.xml │ │ │ │ ├── Expected-080.xml.sarif │ │ │ │ ├── Expected-081.xml │ │ │ │ ├── Expected-081.xml.sarif │ │ │ │ ├── Expected-082.xml │ │ │ │ ├── Expected-082.xml.sarif │ │ │ │ ├── Expected-083.xml │ │ │ │ ├── Expected-083.xml.sarif │ │ │ │ ├── Expected-084.xml │ │ │ │ ├── Expected-084.xml.sarif │ │ │ │ ├── Expected-085.xml │ │ │ │ ├── Expected-085.xml.sarif │ │ │ │ ├── Expected-086.xml │ │ │ │ ├── Expected-086.xml.sarif │ │ │ │ ├── Expected-087.xml │ │ │ │ ├── Expected-087.xml.sarif │ │ │ │ ├── Expected-088.xml │ │ │ │ ├── Expected-088.xml.sarif │ │ │ │ ├── Expected-089-amd64.xml │ │ │ │ ├── Expected-089-amd64.xml.sarif │ │ │ │ ├── Expected-089.xml │ │ │ │ ├── Expected-089.xml.sarif │ │ │ │ ├── Expected-090.xml │ │ │ │ ├── Expected-090.xml.sarif │ │ │ │ ├── Expected-091.xml │ │ │ │ ├── Expected-091.xml.sarif │ │ │ │ ├── Expected-092.xml │ │ │ │ ├── Expected-092.xml.sarif │ │ │ │ ├── Expected-093.xml │ │ │ │ ├── Expected-093.xml.sarif │ │ │ │ ├── Expected-094.xml │ │ │ │ ├── Expected-094.xml.sarif │ │ │ │ ├── Expected-095.xml │ │ │ │ ├── Expected-095.xml.sarif │ │ │ │ ├── Expected-096.xml │ │ │ │ ├── Expected-096.xml.sarif │ │ │ │ ├── Expected-097.xml │ │ │ │ ├── Expected-097.xml.sarif │ │ │ │ ├── Expected-100.xml │ │ │ │ ├── Expected-100.xml.sarif │ │ │ │ ├── Expected-101.xml │ │ │ │ ├── Expected-101.xml.sarif │ │ │ │ ├── Expected-102.xml │ │ │ │ ├── Expected-102.xml.sarif │ │ │ │ ├── Expected-103.xml │ │ │ │ ├── Expected-103.xml.sarif │ │ │ │ ├── Expected-104.xml │ │ │ │ ├── Expected-104.xml.sarif │ │ │ │ ├── Expected-106.xml │ │ │ │ ├── Expected-106.xml.sarif │ │ │ │ ├── Expected-107.xml │ │ │ │ ├── Expected-107.xml.sarif │ │ │ │ ├── Expected-108.xml │ │ │ │ ├── Expected-108.xml.sarif │ │ │ │ ├── Expected-109.xml │ │ │ │ ├── Expected-109.xml.sarif │ │ │ │ ├── Expected-110-amd64.xml │ │ │ │ ├── Expected-110-amd64.xml.sarif │ │ │ │ ├── Expected-110.xml │ │ │ │ ├── Expected-110.xml.sarif │ │ │ │ ├── Expected-111.xml │ │ │ │ ├── Expected-111.xml.sarif │ │ │ │ ├── Expected-112.xml │ │ │ │ ├── Expected-112.xml.sarif │ │ │ │ ├── Expected-113.xml │ │ │ │ ├── Expected-113.xml.sarif │ │ │ │ ├── Expected-116.xml │ │ │ │ ├── Expected-116.xml.sarif │ │ │ │ ├── Expected-117.xml │ │ │ │ ├── Expected-117.xml.sarif │ │ │ │ ├── Expected-121.xml │ │ │ │ ├── Expected-121.xml.sarif │ │ │ │ ├── Expected-122.xml │ │ │ │ ├── Expected-122.xml.sarif │ │ │ │ ├── Expected-123.xml │ │ │ │ ├── Expected-123.xml.sarif │ │ │ │ ├── Expected-126.xml │ │ │ │ ├── Expected-126.xml.sarif │ │ │ │ ├── Expected-127.xml │ │ │ │ ├── Expected-127.xml.sarif │ │ │ │ ├── Expected-128.xml │ │ │ │ ├── Expected-128.xml.sarif │ │ │ │ ├── Expected-129.xml │ │ │ │ ├── Expected-129.xml.sarif │ │ │ │ ├── Expected-130.xml │ │ │ │ ├── Expected-130.xml.sarif │ │ │ │ ├── Expected-131.xml │ │ │ │ ├── Expected-131.xml.sarif │ │ │ │ ├── Expected-132.xml │ │ │ │ ├── Expected-132.xml.sarif │ │ │ │ ├── Expected-134.xml │ │ │ │ ├── Expected-134.xml.sarif │ │ │ │ ├── Expected-136.xml │ │ │ │ ├── Expected-136.xml.sarif │ │ │ │ ├── Expected-137.xml │ │ │ │ ├── Expected-137.xml.sarif │ │ │ │ ├── Expected-138.xml │ │ │ │ ├── Expected-138.xml.sarif │ │ │ │ ├── Expected-139.xml │ │ │ │ ├── Expected-139.xml.sarif │ │ │ │ ├── Expected-140.xml │ │ │ │ ├── Expected-140.xml.sarif │ │ │ │ ├── Expected-141-amd64.xml │ │ │ │ ├── Expected-141-amd64.xml.sarif │ │ │ │ ├── Expected-141.xml │ │ │ │ ├── Expected-141.xml.sarif │ │ │ │ ├── Expected-146.xml │ │ │ │ ├── Expected-146.xml.sarif │ │ │ │ ├── Expected-150.xml │ │ │ │ ├── Expected-150.xml.sarif │ │ │ │ ├── Expected-152.xml │ │ │ │ ├── Expected-152.xml.sarif │ │ │ │ ├── Expected-155.xml │ │ │ │ ├── Expected-155.xml.sarif │ │ │ │ ├── Expected-156.xml │ │ │ │ ├── Expected-156.xml.sarif │ │ │ │ ├── Expected-157.xml │ │ │ │ ├── Expected-157.xml.sarif │ │ │ │ ├── Expected-160.xml │ │ │ │ ├── Expected-160.xml.sarif │ │ │ │ ├── Expected-162.xml │ │ │ │ ├── Expected-162.xml.sarif │ │ │ │ ├── Expected-163.xml │ │ │ │ ├── Expected-163.xml.sarif │ │ │ │ ├── Expected-166.xml │ │ │ │ ├── Expected-166.xml.sarif │ │ │ │ ├── Expected-167.xml │ │ │ │ ├── Expected-167.xml.sarif │ │ │ │ ├── Expected-168.xml │ │ │ │ ├── Expected-168.xml.sarif │ │ │ │ ├── Expected-169.xml │ │ │ │ ├── Expected-169.xml.sarif │ │ │ │ ├── Expected-170.xml │ │ │ │ ├── Expected-170.xml.sarif │ │ │ │ ├── Expected-171.xml │ │ │ │ ├── Expected-171.xml.sarif │ │ │ │ ├── Expected-172.xml │ │ │ │ ├── Expected-172.xml.sarif │ │ │ │ ├── Expected-173.xml │ │ │ │ ├── Expected-173.xml.sarif │ │ │ │ ├── Expected-178.xml │ │ │ │ ├── Expected-178.xml.sarif │ │ │ │ ├── Expected-179.xml │ │ │ │ ├── Expected-179.xml.sarif │ │ │ │ ├── Expected-180.xml │ │ │ │ ├── Expected-180.xml.sarif │ │ │ │ ├── Expected-181.xml │ │ │ │ ├── Expected-181.xml.sarif │ │ │ │ ├── Expected-182.xml │ │ │ │ ├── Expected-182.xml.sarif │ │ │ │ ├── Expected-185.xml │ │ │ │ ├── Expected-185.xml.sarif │ │ │ │ ├── Expected-186.xml │ │ │ │ ├── Expected-186.xml.sarif │ │ │ │ ├── Expected-188.xml │ │ │ │ ├── Expected-188.xml.sarif │ │ │ │ ├── Expected-192.xml │ │ │ │ ├── Expected-192.xml.sarif │ │ │ │ ├── Expected-193.xml │ │ │ │ ├── Expected-193.xml.sarif │ │ │ │ ├── Expected-194.xml │ │ │ │ ├── Expected-194.xml.sarif │ │ │ │ ├── Expected-197-amd64.xml │ │ │ │ ├── Expected-197-amd64.xml.sarif │ │ │ │ ├── Expected-197.xml │ │ │ │ ├── Expected-197.xml.sarif │ │ │ │ ├── Expected-198-amd64.xml │ │ │ │ ├── Expected-198-amd64.xml.sarif │ │ │ │ ├── Expected-198.xml │ │ │ │ ├── Expected-198.xml.sarif │ │ │ │ ├── Expected-199-amd64.xml │ │ │ │ ├── Expected-199-amd64.xml.sarif │ │ │ │ ├── Expected-199.xml │ │ │ │ ├── Expected-199.xml.sarif │ │ │ │ ├── Expected-201.xml │ │ │ │ ├── Expected-201.xml.sarif │ │ │ │ ├── Expected-203.xml │ │ │ │ ├── Expected-203.xml.sarif │ │ │ │ ├── Expected-205-amd64.xml │ │ │ │ ├── Expected-205-amd64.xml.sarif │ │ │ │ ├── Expected-205.xml │ │ │ │ ├── Expected-205.xml.sarif │ │ │ │ ├── LongConditions.cpp.xml │ │ │ │ ├── LongConditions.cpp.xml.sarif │ │ │ │ ├── LongMacro.cpp.xml │ │ │ │ ├── LongMacro.cpp.xml.sarif │ │ │ │ ├── MissingPathElement.xml │ │ │ │ ├── ProducePREfastXml.cmd │ │ │ │ ├── RelevantKeyEvents2.cpp.xml │ │ │ │ ├── RelevantKeyEvents2.cpp.xml.sarif │ │ │ │ ├── RelevantkeyEvents.cpp.xml │ │ │ │ ├── RelevantkeyEvents.cpp.xml.sarif │ │ │ │ ├── Standardc6259.cxx.xml │ │ │ │ ├── Standardc6259.cxx.xml.sarif │ │ │ │ ├── Standardc6282.cxx.xml │ │ │ │ ├── Standardc6282.cxx.xml.sarif │ │ │ │ ├── Standardc6306.cxx.xml │ │ │ │ ├── Standardc6306.cxx.xml.sarif │ │ │ │ ├── Standardc6316.cxx.xml │ │ │ │ ├── Standardc6316.cxx.xml.sarif │ │ │ │ ├── TFS260613.cpp.xml │ │ │ │ ├── TFS260613.cpp.xml.sarif │ │ │ │ ├── TFS348783.cpp.xml │ │ │ │ ├── TFS348783.cpp.xml.sarif │ │ │ │ ├── TFS370524.cpp.xml │ │ │ │ ├── TFS370524.cpp.xml.sarif │ │ │ │ ├── TFS372959.cpp.xml │ │ │ │ ├── TFS372959.cpp.xml.sarif │ │ │ │ ├── TFS373273.cpp.xml │ │ │ │ ├── TFS373273.cpp.xml.sarif │ │ │ │ ├── TFS375867.cpp.xml │ │ │ │ ├── TFS375867.cpp.xml.sarif │ │ │ │ ├── TFS378661.cpp.xml │ │ │ │ └── TFS378661.cpp.xml.sarif │ │ │ ├── Pylint │ │ │ │ ├── Pylint-01.json │ │ │ │ └── Pylint-01.json.sarif │ │ │ ├── SemmleQL │ │ │ │ ├── results.csv │ │ │ │ └── results.csv.sarif │ │ │ ├── StaticDriverVerifier │ │ │ │ ├── cancelspinlock_bug1.tt │ │ │ │ ├── cancelspinlock_bug1.tt.sarif │ │ │ │ ├── checkadddevice_bug1.tt │ │ │ │ ├── checkadddevice_bug1.tt.sarif │ │ │ │ ├── checkdriverunload_bug1.tt │ │ │ │ ├── checkdriverunload_bug1.tt.sarif │ │ │ │ ├── checkirpmjpnp_bug1.tt │ │ │ │ ├── checkirpmjpnp_bug1.tt.sarif │ │ │ │ ├── dispatchroutine_bug1.tt │ │ │ │ ├── dispatchroutine_bug1.tt.sarif │ │ │ │ ├── iocompletion_bug1.tt │ │ │ │ ├── iocompletion_bug1.tt.sarif │ │ │ │ ├── iodpcroutine_bug1.tt │ │ │ │ ├── iodpcroutine_bug1.tt.sarif │ │ │ │ ├── isrroutine_bug1.tt │ │ │ │ ├── isrroutine_bug1.tt.sarif │ │ │ │ └── src │ │ │ │ │ ├── fail_driver1.c │ │ │ │ │ ├── fail_driver1.h │ │ │ │ │ └── sdv │ │ │ │ │ ├── rules │ │ │ │ │ └── wdm │ │ │ │ │ │ ├── cancelroutine.h │ │ │ │ │ │ ├── cancelroutine.slic │ │ │ │ │ │ ├── cancelspinlock.h │ │ │ │ │ │ ├── cancelspinlock.slic │ │ │ │ │ │ ├── checkadddevice.h │ │ │ │ │ │ ├── checkadddevice.slic │ │ │ │ │ │ ├── checkdriverunload.h │ │ │ │ │ │ ├── checkdriverunload.slic │ │ │ │ │ │ ├── checkirpmjpnp.h │ │ │ │ │ │ ├── checkirpmjpnp.slic │ │ │ │ │ │ ├── dispatchroutine.h │ │ │ │ │ │ ├── dispatchroutine.slic │ │ │ │ │ │ ├── iocompletion.h │ │ │ │ │ │ ├── iocompletion.slic │ │ │ │ │ │ ├── iodpcroutine.h │ │ │ │ │ │ ├── iodpcroutine.slic │ │ │ │ │ │ ├── isrroutine.h │ │ │ │ │ │ ├── isrroutine.slic │ │ │ │ │ │ ├── kedpcroutine.h │ │ │ │ │ │ ├── kedpcroutine.slic │ │ │ │ │ │ ├── rules.txt │ │ │ │ │ │ ├── startioroutine.h │ │ │ │ │ │ ├── startioroutine.slic │ │ │ │ │ │ ├── workerthread.h │ │ │ │ │ │ └── workerthread.slic │ │ │ │ │ └── sdv-harness.c │ │ │ └── TSLint │ │ │ │ ├── TSLint-01.json │ │ │ │ ├── TSLint-01.json.sarif │ │ │ │ ├── TSLint-02.json │ │ │ │ ├── TSLint-02.json.sarif │ │ │ │ ├── TSLint-03.json │ │ │ │ ├── TSLint-03.json.sarif │ │ │ │ ├── TSLint-04.json │ │ │ │ ├── TSLint-04.json.sarif │ │ │ │ ├── TSLint-05.json │ │ │ │ ├── TSLint-05.json.sarif │ │ │ │ ├── TSLint-06.json │ │ │ │ ├── TSLint-06.json.sarif │ │ │ │ ├── TSLint-07.json │ │ │ │ ├── TSLint-07.json.sarif │ │ │ │ ├── TSLint-08.json │ │ │ │ ├── TSLint-08.json.sarif │ │ │ │ ├── TSLint-09.json │ │ │ │ ├── TSLint-09.json.sarif │ │ │ │ ├── TSLint-10.json │ │ │ │ ├── TSLint-10.json.sarif │ │ │ │ ├── TSLint-11.json │ │ │ │ └── TSLint-11.json.sarif │ │ ├── DirectProducerTestData │ │ │ ├── BinSkim │ │ │ │ ├── BinSkim.AllRules.sarif │ │ │ │ ├── Corrupted_Native_x86_VS2013_Default.exe.sarif │ │ │ │ ├── ManagedInteropAssemblyForAtlTestLibrary.dll.sarif │ │ │ │ ├── ManagedResourcesOnly.dll.sarif │ │ │ │ ├── Managed_x86_VS2013_Wpf.exe.sarif │ │ │ │ ├── MixedMode_x64_VS2013_Default.dll.sarif │ │ │ │ ├── MixedMode_x64_VS2013_NoPdb.exe.sarif │ │ │ │ ├── MixedMode_x86_VS2013_Default.exe.sarif │ │ │ │ ├── MixedMode_x86_VS2013_MissingPdb.dll.sarif │ │ │ │ ├── Native_x64_VS2013_Default.dll.sarif │ │ │ │ ├── Native_x64_VS2015_Default.dll.sarif │ │ │ │ ├── Native_x86_VS2013_Default.exe.sarif │ │ │ │ ├── Native_x86_VS2013_PdbMissing.exe.sarif │ │ │ │ ├── Native_x86_VS2013_ResourceOnly.dll.sarif │ │ │ │ ├── Native_x86_VS2015_AtlProxyStubPS.dll.sarif │ │ │ │ ├── Native_x86_VS2015_Default.exe.sarif │ │ │ │ └── ProduceSarifTestCases.cmd │ │ │ ├── Roslyn │ │ │ │ └── RoslynLog.sarif │ │ │ └── WebSkim │ │ │ │ ├── LocalizedBundleDoubleNesting.sarif │ │ │ │ ├── NestedLocationsFromAppX.sarif │ │ │ │ ├── NestedLocationsFromDirectoryNoTrailingSlash.sarif │ │ │ │ ├── NestedLocationsFromDirectoryTrailingSlash.sarif │ │ │ │ ├── ProduceSarifTestCases.cmd │ │ │ │ ├── RelatedLocations.sarif │ │ │ │ └── SimpleBundleDoubleNesting.sarif │ │ └── SpecExamples │ │ │ ├── Comprehensive.sarif │ │ │ ├── Minimal.sarif │ │ │ ├── README.md │ │ │ ├── RecommendedWithSource.sarif │ │ │ ├── RecommendedWithoutSource.sarif │ │ │ └── RuleMetadata.sarif │ └── v2 │ │ ├── ConverterTestData │ │ ├── AndroidStudio │ │ │ ├── AndroidStudio.sarif │ │ │ ├── AndroidStudio_issueLog1_raw.xml │ │ │ ├── AndroidStudio_issueLog1_raw.xml.sarif │ │ │ ├── AndroidStudio_issueLog2_raw.xml │ │ │ ├── AndroidStudio_issueLog2_raw.xml.sarif │ │ │ ├── AndroidStudio_issueLog3_raw.xml │ │ │ ├── AndroidStudio_issueLog3_raw.xml.sarif │ │ │ ├── AndroidStudio_issueLog4_raw.xml │ │ │ ├── AndroidStudio_issueLog4_raw.xml.sarif │ │ │ ├── AndroidStudio_issueLog5_raw.xml │ │ │ ├── AndroidStudio_issueLog5_raw.xml.sarif │ │ │ ├── AndroidStudio_issueLog6_raw.xml │ │ │ ├── AndroidStudio_issueLog6_raw.xml.sarif │ │ │ ├── AndroidStudio_issueLog7_raw.xml │ │ │ ├── AndroidStudio_issueLog7_raw.xml.sarif │ │ │ ├── AndroidStudio_issueLog8_raw.xml │ │ │ ├── AndroidStudio_issueLog8_raw.xml.sarif │ │ │ ├── README.md │ │ │ ├── attributeKeyMissing.xml │ │ │ ├── attributeKeyMissing.xml.sarif │ │ │ ├── extraComment.xml │ │ │ ├── extraComment.xml.sarif │ │ │ ├── fileEmpty.xml │ │ │ ├── fileEmpty.xml.sarif │ │ │ ├── minimalIssueWithoutPackageOrHintElement.xml │ │ │ ├── minimalIssueWithoutPackageOrHintElement.xml.sarif │ │ │ ├── moduleEmpty.xml │ │ │ ├── moduleEmpty.xml.sarif │ │ │ ├── packageBeforeModule.xml │ │ │ ├── packageBeforeModule.xml.sarif │ │ │ ├── packageEmpty.xml │ │ │ ├── packageEmpty.xml.sarif │ │ │ ├── problemClassSeverityMissing.xml │ │ │ ├── problemClassSeverityMissing.xml.sarif │ │ │ ├── singleIssue.xml │ │ │ ├── singleIssue.xml.sarif │ │ │ ├── singleIssueWithEmptyHints.xml │ │ │ ├── singleIssueWithEmptyHints.xml.sarif │ │ │ ├── singleIssueWithHints.xml │ │ │ ├── singleIssueWithHints.xml.sarif │ │ │ ├── twoIssues.xml │ │ │ └── twoIssues.xml.sarif │ │ ├── ClangAnalyzer │ │ │ ├── ArrayDataTypes.xml │ │ │ ├── ArrayDataTypes.xml.sarif │ │ │ ├── BadMissingString.xml │ │ │ ├── BadMissingString.xml.sarif │ │ │ ├── ClangAnalyzer_issueLog1_raw.xml │ │ │ ├── ClangAnalyzer_issueLog1_raw.xml.sarif │ │ │ ├── DictionaryDataTypes.xml │ │ │ ├── DictionaryDataTypes.xml.sarif │ │ │ ├── DivByZero.xml │ │ │ ├── DivByZero.xml.sarif │ │ │ ├── FileNumberCoverage.xml │ │ │ ├── FileNumberCoverage.xml.sarif │ │ │ ├── GarbageValueLog.xml │ │ │ ├── GarbageValueLog.xml.sarif │ │ │ ├── MediumLog.xml │ │ │ ├── MediumLog.xml.sarif │ │ │ ├── MissingLocation.xml │ │ │ ├── MissingLocation.xml.sarif │ │ │ ├── Readme.txt │ │ │ ├── RealLog.xml │ │ │ └── RealLog.xml.sarif │ │ ├── ContrastSecurity │ │ │ ├── WebGoat.xml │ │ │ └── WebGoat.xml.sarif │ │ ├── CppCheck │ │ │ ├── CppCheck.sarif │ │ │ ├── CppCheck_issueLog1_raw.xml │ │ │ ├── CppCheck_issueLog1_raw.xml.sarif │ │ │ ├── README.md │ │ │ └── README.txt │ │ ├── Fortify │ │ │ ├── bannedAPIs_java.xml │ │ │ ├── bannedAPIs_java.xml.sarif │ │ │ ├── bannedAPIs_m0.xml │ │ │ ├── bannedAPIs_m0.xml.sarif │ │ │ ├── bannedAPIs_m1.xml │ │ │ ├── bannedAPIs_m1.xml.sarif │ │ │ └── src │ │ │ │ └── bannedAPIs.java │ │ ├── FortifyFpr │ │ │ ├── FortifyTest.fpr │ │ │ ├── FortifyTest.fpr.sarif │ │ │ ├── OneResultBasic.fpr │ │ │ ├── OneResultBasic.fpr.sarif │ │ │ ├── OneResultBasic.fvdl │ │ │ ├── OneResultWithTwoTraces.fpr │ │ │ ├── OneResultWithTwoTraces.fpr.sarif │ │ │ ├── OneResultWithTwoTraces.fvdl │ │ │ ├── ScanWithFailureLevelMatrices.fpr │ │ │ ├── ScanWithFailureLevelMatrices.fpr.sarif │ │ │ ├── ScanWithFailureLevelMatrices.fvdl │ │ │ ├── TwoResultsWithNodeRefs.fpr │ │ │ ├── TwoResultsWithNodeRefs.fpr.sarif │ │ │ ├── TwoResultsWithNodeRefs.fvdl │ │ │ └── src │ │ │ │ ├── ContentFileViewModel.cs │ │ │ │ ├── Controllers │ │ │ │ └── ContentFileHandlingController.cs │ │ │ │ └── DocumentValidator.cs │ │ ├── FxCop │ │ │ ├── FxCopExceptions.xml │ │ │ ├── FxCopExceptions.xml.sarif │ │ │ ├── FxCopNoTargets.xml │ │ │ ├── FxCopNoTargets.xml.sarif │ │ │ ├── Readme.md │ │ │ ├── SarifSdkTest.fxcop │ │ │ ├── SarifSdkTest.fxcop.sarif │ │ │ ├── SarifSdkTest.xml │ │ │ └── SarifSdkTest.xml.sarif │ │ ├── MSBuild │ │ │ ├── NoErrors.txt │ │ │ ├── NoErrors.txt.sarif │ │ │ ├── SomeErrors.txt │ │ │ └── SomeErrors.txt.sarif │ │ ├── PREfast │ │ │ ├── AA_IndexAlias.cpp.xml │ │ │ ├── AA_IndexAlias.cpp.xml.sarif │ │ │ ├── AA_RememberOldAlias.cpp.xml │ │ │ ├── AA_RememberOldAlias.cpp.xml.sarif │ │ │ ├── AB_IrrelevantBranch.cpp.xml │ │ │ ├── AB_IrrelevantBranch.cpp.xml.sarif │ │ │ ├── AB_IrrelevantLoop.cpp.xml │ │ │ ├── AB_IrrelevantLoop.cpp.xml.sarif │ │ │ ├── AB_IrrelevantSwitch.cpp.xml │ │ │ ├── AB_IrrelevantSwitch.cpp.xml.sarif │ │ │ ├── AB_SecondLoop.cpp.xml │ │ │ ├── AB_SecondLoop.cpp.xml.sarif │ │ │ ├── AF_LocalRemoteFunctions.cpp.xml │ │ │ ├── AF_LocalRemoteFunctions.cpp.xml.sarif │ │ │ ├── AM_AliasAndMaybeZero.cpp.xml │ │ │ ├── AM_AliasAndMaybeZero.cpp.xml.sarif │ │ │ ├── AM_AliasAndSetValue.cpp.xml │ │ │ ├── AM_AliasAndSetValue.cpp.xml.sarif │ │ │ ├── AM_BranchAndMaybeZero.cpp.xml │ │ │ ├── AM_BranchAndMaybeZero.cpp.xml.sarif │ │ │ ├── AM_BranchAndSetValue.cpp.xml │ │ │ ├── AM_BranchAndSetValue.cpp.xml.sarif │ │ │ ├── AN_Basic_C6053_4.cpp.xml │ │ │ ├── AN_Basic_C6053_4.cpp.xml.sarif │ │ │ ├── AN_Basic_C6387.cpp.xml │ │ │ ├── AN_Basic_C6387.cpp.xml.sarif │ │ │ ├── AN_FunctionAndInAnnotations.cpp.xml │ │ │ ├── AN_FunctionAndInAnnotations.cpp.xml.sarif │ │ │ ├── AN_InOptAnnotations.cpp.xml │ │ │ ├── AN_InOptAnnotations.cpp.xml.sarif │ │ │ ├── AN_OutWithDefect.cpp.xml │ │ │ ├── AN_OutWithDefect.cpp.xml.sarif │ │ │ ├── AdvancedC6305.cpp.xml │ │ │ ├── AdvancedC6305.cpp.xml.sarif │ │ │ ├── C28182Example.cpp.xml │ │ │ ├── C28182Example.cpp.xml.sarif │ │ │ ├── C6001Example.cpp.xml │ │ │ ├── C6001Example.cpp.xml.sarif │ │ │ ├── C6001Example2.cpp.xml │ │ │ ├── C6001Example2.cpp.xml.sarif │ │ │ ├── C6001Example3.cpp.xml │ │ │ ├── C6001Example3.cpp.xml.sarif │ │ │ ├── C6011Example.cpp.xml │ │ │ ├── C6011Example.cpp.xml.sarif │ │ │ ├── C6059Example.cpp.xml │ │ │ ├── C6059Example.cpp.xml.sarif │ │ │ ├── C6200Example.cpp.xml │ │ │ ├── C6200Example.cpp.xml.sarif │ │ │ ├── C6305Example.cpp.xml │ │ │ ├── C6305Example.cpp.xml.sarif │ │ │ ├── C6385Example.cpp.xml │ │ │ ├── C6385Example.cpp.xml.sarif │ │ │ ├── C6385Example2.cpp.xml │ │ │ ├── C6385Example2.cpp.xml.sarif │ │ │ ├── C6385Example3.cpp.xml │ │ │ ├── C6385Example3.cpp.xml.sarif │ │ │ ├── C6386Example.cpp.xml │ │ │ ├── C6386Example.cpp.xml.sarif │ │ │ ├── C6386Example2.cpp.xml │ │ │ ├── C6386Example2.cpp.xml.sarif │ │ │ ├── C6386Example3.cpp.xml │ │ │ ├── C6386Example3.cpp.xml.sarif │ │ │ ├── Expected-001.xml │ │ │ ├── Expected-001.xml.sarif │ │ │ ├── Expected-002.xml │ │ │ ├── Expected-002.xml.sarif │ │ │ ├── Expected-003.xml │ │ │ ├── Expected-003.xml.sarif │ │ │ ├── Expected-005.xml │ │ │ ├── Expected-005.xml.sarif │ │ │ ├── Expected-008.xml │ │ │ ├── Expected-008.xml.sarif │ │ │ ├── Expected-010.xml │ │ │ ├── Expected-010.xml.sarif │ │ │ ├── Expected-011-amd64.xml │ │ │ ├── Expected-011-amd64.xml.sarif │ │ │ ├── Expected-011.xml │ │ │ ├── Expected-011.xml.sarif │ │ │ ├── Expected-013.xml │ │ │ ├── Expected-013.xml.sarif │ │ │ ├── Expected-014.xml │ │ │ ├── Expected-014.xml.sarif │ │ │ ├── Expected-016-amd64.xml │ │ │ ├── Expected-016-amd64.xml.sarif │ │ │ ├── Expected-016.xml │ │ │ ├── Expected-016.xml.sarif │ │ │ ├── Expected-017.xml │ │ │ ├── Expected-017.xml.sarif │ │ │ ├── Expected-020.xml │ │ │ ├── Expected-020.xml.sarif │ │ │ ├── Expected-021.xml │ │ │ ├── Expected-021.xml.sarif │ │ │ ├── Expected-022.xml │ │ │ ├── Expected-022.xml.sarif │ │ │ ├── Expected-023.xml │ │ │ ├── Expected-023.xml.sarif │ │ │ ├── Expected-024.xml │ │ │ ├── Expected-024.xml.sarif │ │ │ ├── Expected-031.xml │ │ │ ├── Expected-031.xml.sarif │ │ │ ├── Expected-032.xml │ │ │ ├── Expected-032.xml.sarif │ │ │ ├── Expected-035.xml │ │ │ ├── Expected-035.xml.sarif │ │ │ ├── Expected-036.xml │ │ │ ├── Expected-036.xml.sarif │ │ │ ├── Expected-037.xml │ │ │ ├── Expected-037.xml.sarif │ │ │ ├── Expected-038-amd64.xml │ │ │ ├── Expected-038-amd64.xml.sarif │ │ │ ├── Expected-038.xml │ │ │ ├── Expected-038.xml.sarif │ │ │ ├── Expected-039.xml │ │ │ ├── Expected-039.xml.sarif │ │ │ ├── Expected-040.xml │ │ │ ├── Expected-040.xml.sarif │ │ │ ├── Expected-041.xml │ │ │ ├── Expected-041.xml.sarif │ │ │ ├── Expected-042.xml │ │ │ ├── Expected-042.xml.sarif │ │ │ ├── Expected-043.xml │ │ │ ├── Expected-043.xml.sarif │ │ │ ├── Expected-045.xml │ │ │ ├── Expected-045.xml.sarif │ │ │ ├── Expected-046.xml │ │ │ ├── Expected-046.xml.sarif │ │ │ ├── Expected-047.xml │ │ │ ├── Expected-047.xml.sarif │ │ │ ├── Expected-048.xml │ │ │ ├── Expected-048.xml.sarif │ │ │ ├── Expected-049.xml │ │ │ ├── Expected-049.xml.sarif │ │ │ ├── Expected-050.xml │ │ │ ├── Expected-050.xml.sarif │ │ │ ├── Expected-051.xml │ │ │ ├── Expected-051.xml.sarif │ │ │ ├── Expected-052.xml │ │ │ ├── Expected-052.xml.sarif │ │ │ ├── Expected-054.xml │ │ │ ├── Expected-054.xml.sarif │ │ │ ├── Expected-055.xml │ │ │ ├── Expected-055.xml.sarif │ │ │ ├── Expected-057.xml │ │ │ ├── Expected-057.xml.sarif │ │ │ ├── Expected-058.xml │ │ │ ├── Expected-058.xml.sarif │ │ │ ├── Expected-059.xml │ │ │ ├── Expected-059.xml.sarif │ │ │ ├── Expected-060.xml │ │ │ ├── Expected-060.xml.sarif │ │ │ ├── Expected-061.xml │ │ │ ├── Expected-061.xml.sarif │ │ │ ├── Expected-062.xml │ │ │ ├── Expected-062.xml.sarif │ │ │ ├── Expected-063.xml │ │ │ ├── Expected-063.xml.sarif │ │ │ ├── Expected-065.xml │ │ │ ├── Expected-065.xml.sarif │ │ │ ├── Expected-066.xml │ │ │ ├── Expected-066.xml.sarif │ │ │ ├── Expected-067.xml │ │ │ ├── Expected-067.xml.sarif │ │ │ ├── Expected-070.xml │ │ │ ├── Expected-070.xml.sarif │ │ │ ├── Expected-071.xml │ │ │ ├── Expected-071.xml.sarif │ │ │ ├── Expected-072.xml │ │ │ ├── Expected-072.xml.sarif │ │ │ ├── Expected-073.xml │ │ │ ├── Expected-073.xml.sarif │ │ │ ├── Expected-074.xml │ │ │ ├── Expected-074.xml.sarif │ │ │ ├── Expected-075.xml │ │ │ ├── Expected-075.xml.sarif │ │ │ ├── Expected-076.xml │ │ │ ├── Expected-076.xml.sarif │ │ │ ├── Expected-077.xml │ │ │ ├── Expected-077.xml.sarif │ │ │ ├── Expected-078.xml │ │ │ ├── Expected-078.xml.sarif │ │ │ ├── Expected-079.xml │ │ │ ├── Expected-079.xml.sarif │ │ │ ├── Expected-080.xml │ │ │ ├── Expected-080.xml.sarif │ │ │ ├── Expected-081.xml │ │ │ ├── Expected-081.xml.sarif │ │ │ ├── Expected-082.xml │ │ │ ├── Expected-082.xml.sarif │ │ │ ├── Expected-083.xml │ │ │ ├── Expected-083.xml.sarif │ │ │ ├── Expected-084.xml │ │ │ ├── Expected-084.xml.sarif │ │ │ ├── Expected-085.xml │ │ │ ├── Expected-085.xml.sarif │ │ │ ├── Expected-086.xml │ │ │ ├── Expected-086.xml.sarif │ │ │ ├── Expected-087.xml │ │ │ ├── Expected-087.xml.sarif │ │ │ ├── Expected-088.xml │ │ │ ├── Expected-088.xml.sarif │ │ │ ├── Expected-089-amd64.xml │ │ │ ├── Expected-089-amd64.xml.sarif │ │ │ ├── Expected-089.xml │ │ │ ├── Expected-089.xml.sarif │ │ │ ├── Expected-090.xml │ │ │ ├── Expected-090.xml.sarif │ │ │ ├── Expected-091.xml │ │ │ ├── Expected-091.xml.sarif │ │ │ ├── Expected-092.xml │ │ │ ├── Expected-092.xml.sarif │ │ │ ├── Expected-093.xml │ │ │ ├── Expected-093.xml.sarif │ │ │ ├── Expected-094.xml │ │ │ ├── Expected-094.xml.sarif │ │ │ ├── Expected-095.xml │ │ │ ├── Expected-095.xml.sarif │ │ │ ├── Expected-096.xml │ │ │ ├── Expected-096.xml.sarif │ │ │ ├── Expected-097.xml │ │ │ ├── Expected-097.xml.sarif │ │ │ ├── Expected-100.xml │ │ │ ├── Expected-100.xml.sarif │ │ │ ├── Expected-101.xml │ │ │ ├── Expected-101.xml.sarif │ │ │ ├── Expected-102.xml │ │ │ ├── Expected-102.xml.sarif │ │ │ ├── Expected-103.xml │ │ │ ├── Expected-103.xml.sarif │ │ │ ├── Expected-104.xml │ │ │ ├── Expected-104.xml.sarif │ │ │ ├── Expected-106.xml │ │ │ ├── Expected-106.xml.sarif │ │ │ ├── Expected-107.xml │ │ │ ├── Expected-107.xml.sarif │ │ │ ├── Expected-108.xml │ │ │ ├── Expected-108.xml.sarif │ │ │ ├── Expected-109.xml │ │ │ ├── Expected-109.xml.sarif │ │ │ ├── Expected-110-amd64.xml │ │ │ ├── Expected-110-amd64.xml.sarif │ │ │ ├── Expected-110.xml │ │ │ ├── Expected-110.xml.sarif │ │ │ ├── Expected-111.xml │ │ │ ├── Expected-111.xml.sarif │ │ │ ├── Expected-112.xml │ │ │ ├── Expected-112.xml.sarif │ │ │ ├── Expected-113.xml │ │ │ ├── Expected-113.xml.sarif │ │ │ ├── Expected-116.xml │ │ │ ├── Expected-116.xml.sarif │ │ │ ├── Expected-117.xml │ │ │ ├── Expected-117.xml.sarif │ │ │ ├── Expected-121.xml │ │ │ ├── Expected-121.xml.sarif │ │ │ ├── Expected-122.xml │ │ │ ├── Expected-122.xml.sarif │ │ │ ├── Expected-123.xml │ │ │ ├── Expected-123.xml.sarif │ │ │ ├── Expected-126.xml │ │ │ ├── Expected-126.xml.sarif │ │ │ ├── Expected-127.xml │ │ │ ├── Expected-127.xml.sarif │ │ │ ├── Expected-128.xml │ │ │ ├── Expected-128.xml.sarif │ │ │ ├── Expected-129.xml │ │ │ ├── Expected-129.xml.sarif │ │ │ ├── Expected-130.xml │ │ │ ├── Expected-130.xml.sarif │ │ │ ├── Expected-131.xml │ │ │ ├── Expected-131.xml.sarif │ │ │ ├── Expected-132.xml │ │ │ ├── Expected-132.xml.sarif │ │ │ ├── Expected-134.xml │ │ │ ├── Expected-134.xml.sarif │ │ │ ├── Expected-136.xml │ │ │ ├── Expected-136.xml.sarif │ │ │ ├── Expected-137.xml │ │ │ ├── Expected-137.xml.sarif │ │ │ ├── Expected-138.xml │ │ │ ├── Expected-138.xml.sarif │ │ │ ├── Expected-139.xml │ │ │ ├── Expected-139.xml.sarif │ │ │ ├── Expected-140.xml │ │ │ ├── Expected-140.xml.sarif │ │ │ ├── Expected-141-amd64.xml │ │ │ ├── Expected-141-amd64.xml.sarif │ │ │ ├── Expected-141.xml │ │ │ ├── Expected-141.xml.sarif │ │ │ ├── Expected-146.xml │ │ │ ├── Expected-146.xml.sarif │ │ │ ├── Expected-150.xml │ │ │ ├── Expected-150.xml.sarif │ │ │ ├── Expected-152.xml │ │ │ ├── Expected-152.xml.sarif │ │ │ ├── Expected-155.xml │ │ │ ├── Expected-155.xml.sarif │ │ │ ├── Expected-156.xml │ │ │ ├── Expected-156.xml.sarif │ │ │ ├── Expected-157.xml │ │ │ ├── Expected-157.xml.sarif │ │ │ ├── Expected-160.xml │ │ │ ├── Expected-160.xml.sarif │ │ │ ├── Expected-162.xml │ │ │ ├── Expected-162.xml.sarif │ │ │ ├── Expected-163.xml │ │ │ ├── Expected-163.xml.sarif │ │ │ ├── Expected-166.xml │ │ │ ├── Expected-166.xml.sarif │ │ │ ├── Expected-167.xml │ │ │ ├── Expected-167.xml.sarif │ │ │ ├── Expected-168.xml │ │ │ ├── Expected-168.xml.sarif │ │ │ ├── Expected-169.xml │ │ │ ├── Expected-169.xml.sarif │ │ │ ├── Expected-170.xml │ │ │ ├── Expected-170.xml.sarif │ │ │ ├── Expected-171.xml │ │ │ ├── Expected-171.xml.sarif │ │ │ ├── Expected-172.xml │ │ │ ├── Expected-172.xml.sarif │ │ │ ├── Expected-173.xml │ │ │ ├── Expected-173.xml.sarif │ │ │ ├── Expected-178.xml │ │ │ ├── Expected-178.xml.sarif │ │ │ ├── Expected-179.xml │ │ │ ├── Expected-179.xml.sarif │ │ │ ├── Expected-180.xml │ │ │ ├── Expected-180.xml.sarif │ │ │ ├── Expected-181.xml │ │ │ ├── Expected-181.xml.sarif │ │ │ ├── Expected-182.xml │ │ │ ├── Expected-182.xml.sarif │ │ │ ├── Expected-185.xml │ │ │ ├── Expected-185.xml.sarif │ │ │ ├── Expected-186.xml │ │ │ ├── Expected-186.xml.sarif │ │ │ ├── Expected-188.xml │ │ │ ├── Expected-188.xml.sarif │ │ │ ├── Expected-192.xml │ │ │ ├── Expected-192.xml.sarif │ │ │ ├── Expected-193.xml │ │ │ ├── Expected-193.xml.sarif │ │ │ ├── Expected-194.xml │ │ │ ├── Expected-194.xml.sarif │ │ │ ├── Expected-197-amd64.xml │ │ │ ├── Expected-197-amd64.xml.sarif │ │ │ ├── Expected-197.xml │ │ │ ├── Expected-197.xml.sarif │ │ │ ├── Expected-198-amd64.xml │ │ │ ├── Expected-198-amd64.xml.sarif │ │ │ ├── Expected-198.xml │ │ │ ├── Expected-198.xml.sarif │ │ │ ├── Expected-199-amd64.xml │ │ │ ├── Expected-199-amd64.xml.sarif │ │ │ ├── Expected-199.xml │ │ │ ├── Expected-199.xml.sarif │ │ │ ├── Expected-201.xml │ │ │ ├── Expected-201.xml.sarif │ │ │ ├── Expected-203.xml │ │ │ ├── Expected-203.xml.sarif │ │ │ ├── Expected-205-amd64.xml │ │ │ ├── Expected-205-amd64.xml.sarif │ │ │ ├── Expected-205.xml │ │ │ ├── Expected-205.xml.sarif │ │ │ ├── LongConditions.cpp.xml │ │ │ ├── LongConditions.cpp.xml.sarif │ │ │ ├── LongMacro.cpp.xml │ │ │ ├── LongMacro.cpp.xml.sarif │ │ │ ├── MissingPathElement.xml │ │ │ ├── MissingPathElement.xml.sarif │ │ │ ├── ProducePREfastXml.cmd │ │ │ ├── RelevantKeyEvents2.cpp.xml │ │ │ ├── RelevantKeyEvents2.cpp.xml.sarif │ │ │ ├── RelevantkeyEvents.cpp.xml │ │ │ ├── RelevantkeyEvents.cpp.xml.sarif │ │ │ ├── Standardc6259.cxx.xml │ │ │ ├── Standardc6259.cxx.xml.sarif │ │ │ ├── Standardc6282.cxx.xml │ │ │ ├── Standardc6282.cxx.xml.sarif │ │ │ ├── Standardc6306.cxx.xml │ │ │ ├── Standardc6306.cxx.xml.sarif │ │ │ ├── Standardc6316.cxx.xml │ │ │ ├── Standardc6316.cxx.xml.sarif │ │ │ ├── TFS260613.cpp.xml │ │ │ ├── TFS260613.cpp.xml.sarif │ │ │ ├── TFS348783.cpp.xml │ │ │ ├── TFS348783.cpp.xml.sarif │ │ │ ├── TFS370524.cpp.xml │ │ │ ├── TFS370524.cpp.xml.sarif │ │ │ ├── TFS372959.cpp.xml │ │ │ ├── TFS372959.cpp.xml.sarif │ │ │ ├── TFS373273.cpp.xml │ │ │ ├── TFS373273.cpp.xml.sarif │ │ │ ├── TFS375867.cpp.xml │ │ │ ├── TFS375867.cpp.xml.sarif │ │ │ ├── TFS378661.cpp.xml │ │ │ └── TFS378661.cpp.xml.sarif │ │ ├── Pylint │ │ │ ├── PyLint.sarif │ │ │ ├── Pylint-01.json │ │ │ ├── Pylint-01.json.sarif │ │ │ └── README.md │ │ ├── SemmleQL │ │ │ ├── EmbeddedLocations.csv │ │ │ ├── EmbeddedLocations.csv.sarif │ │ │ ├── Simple.csv │ │ │ ├── Simple.csv.sarif │ │ │ ├── results.csv │ │ │ └── results.csv.sarif │ │ ├── StaticDriverVerifier │ │ │ ├── cancelspinlock_bug1.tt │ │ │ ├── cancelspinlock_bug1.tt.sarif │ │ │ ├── checkadddevice_bug1.tt │ │ │ ├── checkadddevice_bug1.tt.sarif │ │ │ ├── checkdriverunload_bug1.tt │ │ │ ├── checkdriverunload_bug1.tt.sarif │ │ │ ├── checkirpmjpnp_bug1.tt │ │ │ ├── checkirpmjpnp_bug1.tt.sarif │ │ │ ├── dispatchroutine_bug1.tt │ │ │ ├── dispatchroutine_bug1.tt.sarif │ │ │ ├── iocompletion_bug1.tt │ │ │ ├── iocompletion_bug1.tt.sarif │ │ │ ├── iodpcroutine_bug1.tt │ │ │ ├── iodpcroutine_bug1.tt.sarif │ │ │ ├── isrroutine_bug1.tt │ │ │ ├── isrroutine_bug1.tt.sarif │ │ │ └── src │ │ │ │ ├── fail_driver1.c │ │ │ │ ├── fail_driver1.h │ │ │ │ └── sdv │ │ │ │ ├── rules │ │ │ │ └── wdm │ │ │ │ │ ├── cancelroutine.h │ │ │ │ │ ├── cancelroutine.slic │ │ │ │ │ ├── cancelspinlock.h │ │ │ │ │ ├── cancelspinlock.slic │ │ │ │ │ ├── checkadddevice.h │ │ │ │ │ ├── checkadddevice.slic │ │ │ │ │ ├── checkdriverunload.h │ │ │ │ │ ├── checkdriverunload.slic │ │ │ │ │ ├── checkirpmjpnp.h │ │ │ │ │ ├── checkirpmjpnp.slic │ │ │ │ │ ├── dispatchroutine.h │ │ │ │ │ ├── dispatchroutine.slic │ │ │ │ │ ├── iocompletion.h │ │ │ │ │ ├── iocompletion.slic │ │ │ │ │ ├── iodpcroutine.h │ │ │ │ │ ├── iodpcroutine.slic │ │ │ │ │ ├── isrroutine.h │ │ │ │ │ ├── isrroutine.slic │ │ │ │ │ ├── kedpcroutine.h │ │ │ │ │ ├── kedpcroutine.slic │ │ │ │ │ ├── rules.txt │ │ │ │ │ ├── startioroutine.h │ │ │ │ │ ├── startioroutine.slic │ │ │ │ │ ├── workerthread.h │ │ │ │ │ └── workerthread.slic │ │ │ │ └── sdv-harness.c │ │ └── TSLint │ │ │ ├── README.md │ │ │ ├── TSLint-01.json │ │ │ ├── TSLint-01.json.sarif │ │ │ ├── TSLint-02.json │ │ │ ├── TSLint-02.json.sarif │ │ │ ├── TSLint-03.json │ │ │ ├── TSLint-03.json.sarif │ │ │ ├── TSLint-04.json │ │ │ ├── TSLint-04.json.sarif │ │ │ ├── TSLint-05.json │ │ │ ├── TSLint-05.json.sarif │ │ │ ├── TSLint-06.json │ │ │ ├── TSLint-06.json.sarif │ │ │ ├── TSLint-07.json │ │ │ ├── TSLint-07.json.sarif │ │ │ ├── TSLint-08.json │ │ │ ├── TSLint-08.json.sarif │ │ │ ├── TSLint-09.json │ │ │ ├── TSLint-09.json.sarif │ │ │ ├── TSLint-10.json │ │ │ ├── TSLint-10.json.sarif │ │ │ ├── TSLint-11.json │ │ │ ├── TSLint-11.json.sarif │ │ │ └── TSLint.sarif │ │ ├── ObsoleteFormats │ │ └── ComprehensivePrereleaseTwoZeroZero.sarif │ │ └── SpecExamples │ │ ├── Comprehensive.sarif │ │ ├── InlineExternalProperties.sarif │ │ ├── Minimal.sarif │ │ ├── README.md │ │ ├── RecommendedWithSource.sarif │ │ ├── RecommendedWithoutSource.sarif │ │ └── RuleMetadata.sarif ├── Test.Plugins │ ├── Test.Plugins.csproj │ └── TestWorkItemModelTransformer.cs ├── Test.UnitTests.Sarif.Converters │ ├── AndroidStudioConverterTests.cs │ ├── AndroidStudioProblemTests.cs │ ├── AndroidStudioStringsTests.cs │ ├── BuiltinConverterFactoryTests.cs │ ├── ClangAnalyzerConverterTests.cs │ ├── ClangTidyConverterTests.cs │ ├── ConverterTestsBase.cs │ ├── CppCheckConverterTests.cs │ ├── CppCheckErrorTests.cs │ ├── CppCheckLocationTests.cs │ ├── CppCheckStringsTests.cs │ ├── FlawFinderConverterTests.cs │ ├── FortifyConverterTests.cs │ ├── FortifyFprConverterTests.cs │ ├── FortifyFprStringsTests.cs │ ├── FortifyIssueTests.cs │ ├── FortifyPathElementTests.cs │ ├── FortifyStringsTests.cs │ ├── FortifyUtilitiesTests.cs │ ├── FxCopConverterTests.cs │ ├── HdfConverterTests.cs │ ├── MSBuildConverterTests.cs │ ├── PylintConverterTests.cs │ ├── TSLintConverterTests.cs │ ├── TSLintLogReaderTests.cs │ ├── Test.UnitTests.Sarif.Converters.csproj │ ├── TestData │ │ ├── ClangTidyConverter │ │ │ ├── ExpectedOutputs │ │ │ │ ├── NoResults.sarif │ │ │ │ ├── ValidResults.sarif │ │ │ │ └── ValidResultsWithLog.sarif │ │ │ └── Inputs │ │ │ │ ├── Empty.yaml │ │ │ │ ├── InvalidResult.yaml │ │ │ │ ├── ValidResults.yaml │ │ │ │ └── ValidResultsWithLog.yaml │ │ ├── FlawFinderConverter │ │ │ ├── ExpectedOutputs │ │ │ │ ├── NoResults.sarif │ │ │ │ └── ValidResults.sarif │ │ │ └── Inputs │ │ │ │ ├── Empty.csv │ │ │ │ ├── InvalidHeader.csv │ │ │ │ ├── InvalidResult.csv │ │ │ │ ├── OldVersionResult.csv │ │ │ │ ├── OnlyHeaderLine.csv │ │ │ │ └── ValidResults.csv │ │ ├── HdfConverter │ │ │ ├── ExpectedOutputs │ │ │ │ ├── NoResults.sarif │ │ │ │ └── ValidResults.sarif │ │ │ └── Inputs │ │ │ │ ├── Empty.json │ │ │ │ ├── InvalidResult.json │ │ │ │ └── ValidResults.json │ │ └── MSBuildConverter │ │ │ ├── ExpectedOutputs │ │ │ ├── NoResults.sarif │ │ │ └── ValidResults.sarif │ │ │ └── Inputs │ │ │ ├── Empty.ERR │ │ │ ├── InvalidResult.ERR │ │ │ └── ValidResults.ERR │ ├── TextFormats │ │ ├── CsvReaderTests.cs │ │ └── TsvReaderTests.cs │ ├── ToolFileConverterBaseTests.cs │ └── ToolFormatConverterTests.cs ├── Test.UnitTests.Sarif.Driver │ ├── DriverExtensionMethodsTests.cs │ ├── DriverUtilitiesTests.cs │ ├── FileSpecifierTests.cs │ ├── FunctionlessTestRule.cs │ ├── ITestAnalyzeCommand.cs │ ├── NotesTests.cs │ ├── PathExtensionsTests.cs │ ├── Sdk │ │ ├── CommonOptionsBaseTests.cs │ │ ├── DriverSdkExtensionsTests.cs │ │ ├── EntryPointUtilitiesTests.cs │ │ ├── ExportConfigurationCommandBaseTests.cs │ │ ├── FormatForVisualStudioTests.cs │ │ ├── MockFactory.cs │ │ ├── MultithreadedAnalyzeCommandBaseTests.cs │ │ ├── OrderedFileSpecifierTests.cs │ │ ├── PluginDriverCommandTests.cs │ │ ├── RuleUtilitiesTests.cs │ │ ├── SarifLoggerTests.cs │ │ ├── SkimmerBaseTestResources.Designer.cs │ │ ├── SkimmerBaseTestResources.resx │ │ ├── SkimmerBaseTests.cs │ │ └── TestSkimmerBase.cs │ ├── SkimmerIdComparerTests.cs │ ├── Test.UnitTests.Sarif.Driver.csproj │ ├── TestExportConfigurationCommand.cs │ ├── TestMultithreadedAnalyzeCommand.cs │ ├── TestRule.cs │ └── TestRuleBase.cs ├── Test.UnitTests.Sarif.Multitool.Library │ ├── ApplyPolicyCommandTests.cs │ ├── BaselineOptionTests.cs │ ├── ConvertCommandTests.cs │ ├── ExportValidationRulesMetadataCommandTests.cs │ ├── ExtensionsTests.cs │ ├── GenericCommandTests.cs │ ├── LogResultTests.cs │ ├── MemoryStreamToStringBuilder.cs │ ├── MergeCommandTests.cs │ ├── MergeCommandUnitTests.cs │ ├── OptionsInterpretterTests.cs │ ├── PageCommandTests.cs │ ├── QueryCommandTests.cs │ ├── RebaseUriCommandTests.cs │ ├── RewriteCommandTests.cs │ ├── Rules │ │ └── SarifValidationSkimmerBaseTests.cs │ ├── SuppressCommandTests.cs │ ├── Test.UnitTests.Sarif.Multitool.Library.csproj │ ├── TestData │ │ ├── ApplyPolicyCommand │ │ │ ├── WithPolicy.sarif │ │ │ └── WithPolicy2.sarif │ │ ├── ConvertCommand │ │ │ └── SemmleQlSample.csv │ │ ├── ExportValidationRulesMetadataCommand │ │ │ └── ExpectedOutputs │ │ │ │ ├── MarkdownFullDescription.md │ │ │ │ ├── MarkdownShortDescription.md │ │ │ │ ├── NoDescription.md │ │ │ │ ├── NonStandardMessageStringKey.md │ │ │ │ ├── StandardMessageStringKey.md │ │ │ │ └── TextShortDescription.md │ │ ├── MergeCommand │ │ │ ├── ExpectedOutputs │ │ │ │ ├── DuplicatedResults.sarif │ │ │ │ ├── FileNameOnlyWithoutPath.sarif │ │ │ │ └── NoInputFiles.sarif │ │ │ └── Inputs │ │ │ │ ├── DuplicatedResults.sarif │ │ │ │ └── FileNameOnlyWithoutPath.sarif │ │ ├── PageCommand │ │ │ └── elfie-arriba.sarif │ │ ├── QueryCommand │ │ │ ├── WithProperties.sarif │ │ │ ├── elfie-arriba.CSCAN0020.sarif │ │ │ └── elfie-arriba.sarif │ │ ├── RebaseUriCommand │ │ │ ├── ExpectedOutputs │ │ │ │ └── RunWithArtifacts.sarif │ │ │ └── Inputs │ │ │ │ └── RunWithArtifacts.sarif │ │ ├── RewriteCommand │ │ │ ├── ExpectedOutputs │ │ │ │ └── RunWithArtifacts.sarif │ │ │ └── Inputs │ │ │ │ └── RunWithArtifacts.sarif │ │ └── ValidateCommand │ │ │ ├── Baseline.sarif │ │ │ ├── Configuration.json │ │ │ ├── Configuration.xml │ │ │ ├── ValidateSarif.sarif │ │ │ └── ValidateSarifOneZeroZero.sarif │ ├── ValidateCommandTests.cs │ └── xunit.runner.json ├── Test.UnitTests.Sarif.Multitool │ ├── CommandLineParameterTests.cs │ ├── FileWorkItemsCommandTests.cs │ ├── QueryCommandTests.cs │ ├── RewriteCommandTests.cs │ ├── Test.UnitTests.Sarif.Multitool.csproj │ └── TestData │ │ └── QueryCommand │ │ └── property-bag-queries.sarif ├── Test.UnitTests.Sarif.WorkItems │ ├── SarifWorkItemExtensionsTests.cs │ ├── SarifWorkItemFilerTests.cs │ ├── SarifWorkItemFilingContextTests.cs │ ├── SarifWorkItemModelTests.cs │ ├── Test.UnitTests.Sarif.WorkItems.csproj │ └── TestData │ │ ├── EmptyResults.sarif │ │ ├── Invalid.sarif │ │ ├── MultipleRuns.sarif │ │ ├── NewAndOldResults.sarif │ │ └── NullResults.sarif ├── Test.UnitTests.Sarif │ ├── Baseline │ │ ├── DefaultBaselineUnitTests.cs │ │ ├── ResultMatching │ │ │ ├── ExactMatchers │ │ │ │ ├── FullFingerprintMatcherTests.cs │ │ │ │ └── IdenticalResultMatcherTests.cs │ │ │ ├── HeuristicMatchers │ │ │ │ ├── ContextRegionResultMatcherTests.cs │ │ │ │ └── PartialFingerprintResultMatcherTests.cs │ │ │ ├── ResultMatchingBaselinerTests.cs │ │ │ ├── ResultMatchingTestHelpers.cs │ │ │ └── SarifLogResultMatcherTests.cs │ │ └── StrictBaselineUnitTests.cs │ ├── Baseline2 │ │ ├── ExtractedResultTests.cs │ │ ├── MatchedResultsTests.cs │ │ ├── OverallBaseliningTests.cs │ │ ├── TrustMapTests.cs │ │ ├── V2ResultMatcherTests.cs │ │ ├── WhatComparerTests.cs │ │ └── WhereComparerTests.cs │ ├── CacheTests.cs │ ├── Comparers │ │ └── ComparersTests.cs │ ├── Core │ │ ├── ArtifactLocationTests.cs │ │ ├── ArtifactTests.cs │ │ ├── FileLocationTests.cs │ │ ├── InvocationTests.cs │ │ ├── LocationTests.cs │ │ ├── PropertyBagHolderTests.cs │ │ ├── RegionTests.cs │ │ ├── ReportingDescriptorTests.cs │ │ ├── ResultLevelKindTests.cs │ │ ├── ResultSerializationTests.cs │ │ ├── ResultTests.cs │ │ ├── RunTests.cs │ │ ├── SarifLogTests.cs │ │ ├── SerializedPropertyInfoTests.cs │ │ ├── StackTests.cs │ │ ├── TagsTests.cs │ │ ├── ToolTests.cs │ │ ├── WebMessageUtilitiesTests.cs │ │ ├── WebRequestTests.cs │ │ └── WebResponseTests.cs │ ├── EnumeratedArtifactTests.cs │ ├── EqualityComparerTests.cs │ ├── ErrorsTests.cs │ ├── ExtensionsTests.cs │ ├── FileEncodingTests.cs │ ├── FileRegionsCacheTests.cs │ ├── FileSystemTests.cs │ ├── GitBlameParserTests.cs │ ├── GitHelperTests.cs │ ├── HashUtilitiesTests.cs │ ├── JsonTests.cs │ ├── Map │ │ ├── JsonMapBuilderTests.cs │ │ └── LongArrayDeltaConverterTests.cs │ ├── MockFactory.cs │ ├── MultithreadedZipArchiveArtifactProviderTests.cs │ ├── OrderSensitiveValueComparisonListTests.cs │ ├── PeekableStreamTests.cs │ ├── Processors │ │ ├── GenericTests │ │ │ ├── GenericProcessorTests.cs │ │ │ ├── TestFoldProcessor.cs │ │ │ └── TestMappingProcessor.cs │ │ └── Log │ │ │ ├── LogPipelineSerializationTests.cs │ │ │ ├── MergeStageTests.cs │ │ │ ├── RebaseUriStageTests.cs │ │ │ └── SarifLogExtensionTests.cs │ ├── PropertiesDictionaryTests.cs │ ├── Query │ │ ├── EvaluatorTests.cs │ │ ├── ExpressionParserTests.cs │ │ └── StringSliceTests.cs │ ├── Readers │ │ ├── DeferredCollectionsTests.cs │ │ ├── EnumConverterTests.cs │ │ ├── IsSuppressedInSourceConverterTests.cs │ │ ├── JsonPositionedTextReaderTests.cs │ │ ├── LineMappingStreamReaderTests.cs │ │ ├── NonDisposingDelegatingStreamTests.cs │ │ ├── PropertyBagConverterTests.cs │ │ ├── ResultDiffingVisitorTests.cs │ │ └── SampleModel │ │ │ └── LogModel.cs │ ├── RoundTrippingTests.cs │ ├── RuntimeConditionsTests.cs │ ├── SarifExtensionsTests.cs │ ├── SarifUtilitiesTests.cs │ ├── Test.UnitTests.Sarif.csproj │ ├── TestData │ │ ├── Baseline │ │ │ ├── SuppressionTestCurrent.sarif │ │ │ ├── SuppressionTestPrevious.sarif │ │ │ └── elfie-arriba.sarif │ │ ├── ExpectedOutputs │ │ │ └── NoRuleDefaultConfiguration.sarif │ │ ├── FileEncoding │ │ │ ├── Certificate.cer │ │ │ ├── Certificate.der │ │ │ ├── PasswordProtected.pfx │ │ │ ├── Utf8.txt │ │ │ └── Windows-1252.txt │ │ ├── GitHubIngestionVisitor │ │ │ ├── ExpectedOutputs │ │ │ │ ├── Fingerprints.sarif │ │ │ │ ├── NonErrorResults.sarif │ │ │ │ ├── ThreadFlowLocations.sarif │ │ │ │ ├── TooManyResults.sarif │ │ │ │ └── WithArtifacts.sarif │ │ │ └── Inputs │ │ │ │ ├── Fingerprints.sarif │ │ │ │ ├── NonErrorResults.sarif │ │ │ │ ├── ThreadFlowLocations.sarif │ │ │ │ ├── TooManyResults.sarif │ │ │ │ └── WithArtifacts.sarif │ │ ├── InsertOptionalDataVisitor │ │ │ ├── ExpectedOutputs │ │ │ │ ├── Absolute_TextFiles.sarif │ │ │ │ ├── Rel.sarif │ │ │ │ ├── Rel_All.sarif │ │ │ │ ├── Rel_ComprehensiveRegionProperties.sarif │ │ │ │ ├── Rel_ContextRegionSnippetPartialFingerprints.sarif │ │ │ │ ├── Rel_ContextRegionSnippets.sarif │ │ │ │ ├── Rel_FlattenedMessages.sarif │ │ │ │ ├── Rel_Guids.sarif │ │ │ │ ├── Rel_Hashes+TextFiles.sarif │ │ │ │ ├── Rel_Hashes.sarif │ │ │ │ ├── Rel_RegionSnippets.sarif │ │ │ │ ├── Rel_TextFiles.sarif │ │ │ │ ├── Rel_VersionControlDetails.sarif │ │ │ │ └── UriMissing_ContextRegionSnippets.sarif │ │ │ ├── Inputs │ │ │ │ ├── Absolute.sarif │ │ │ │ ├── Rel.sarif │ │ │ │ └── UriMissing.sarif │ │ │ └── InsertOptionalDataVisitor.txt │ │ ├── JsonMapBuilder │ │ │ ├── Sample.json │ │ │ └── TinyArray.json │ │ ├── Location │ │ │ └── LocationId_BigInteger.sarif │ │ ├── PrereleaseCompatibilityTransformer │ │ │ ├── ExpectedOutputs │ │ │ │ ├── ArtifactsWithRoles.sarif │ │ │ │ ├── ComprehensiveFileProperties.sarif │ │ │ │ ├── ComprehensiveToolProperties.01-24.sarif │ │ │ │ ├── ComprehensiveToolProperties.sarif │ │ │ │ ├── ExercisesSchemaRtm5Changes.sarif │ │ │ │ ├── LocationWithId.sarif │ │ │ │ ├── MultiformatMessageStrings.sarif │ │ │ │ ├── NestedFiles.sarif │ │ │ │ ├── NestedInnerExceptionsInNotifications.sarif │ │ │ │ ├── OneRunWithBasicInvocation.sarif │ │ │ │ ├── OneRunWithInvocationExitCode.sarif │ │ │ │ ├── OneRunWithRedactionToken.sarif │ │ │ │ ├── RegressionTests.sarif │ │ │ │ ├── RuleIdCollisions.sarif │ │ │ │ ├── RunResources.sarif │ │ │ │ ├── ThreadFlowLocationWithKind.sarif │ │ │ │ ├── ToolWithLanguage.sarif │ │ │ │ ├── V1.sarif │ │ │ │ ├── WithExternalPropertyFiles.01-24.sarif │ │ │ │ └── WithSuppressions.sarif │ │ │ └── Inputs │ │ │ │ ├── ArtifactsWithRoles.sarif │ │ │ │ ├── ComprehensiveFileProperties.sarif │ │ │ │ ├── ComprehensiveToolProperties.01-24.sarif │ │ │ │ ├── ComprehensiveToolProperties.sarif │ │ │ │ ├── ExercisesSchemaRtm5Changes.sarif │ │ │ │ ├── LocationWithId.sarif │ │ │ │ ├── MultiformatMessageStrings.sarif │ │ │ │ ├── NestedFiles.sarif │ │ │ │ ├── NestedInnerExceptionsInNotifications.sarif │ │ │ │ ├── OneRunWithBasicInvocation.sarif │ │ │ │ ├── OneRunWithInvocationExitCode.sarif │ │ │ │ ├── OneRunWithRedactionToken.sarif │ │ │ │ ├── RegressionTests.sarif │ │ │ │ ├── RuleIdCollisions.sarif │ │ │ │ ├── RunResources.sarif │ │ │ │ ├── ThreadFlowLocationWithKind.sarif │ │ │ │ ├── ToolWithLanguage.sarif │ │ │ │ ├── V1.sarif │ │ │ │ ├── WithExternalPropertyFiles.01-24.sarif │ │ │ │ └── WithSuppressions.sarif │ │ ├── Readers │ │ │ └── elfie-arriba-utf8-bom.sarif │ │ ├── RoundTripping │ │ │ ├── ExpectedOutputs │ │ │ │ ├── InvocationOverridesRuleDefaultConfigurationOfError.sarif │ │ │ │ └── PropertyBagComprehensiveValueTypes.sarif │ │ │ └── Inputs │ │ │ │ ├── InvocationOverridesRuleDefaultConfigurationOfError.sarif │ │ │ │ └── PropertyBagComprehensiveValueTypes.sarif │ │ ├── SarifCurrentToVersionOneVisitor │ │ │ ├── ExpectedOutputs │ │ │ │ ├── Minimum.sarif │ │ │ │ ├── MinimumWithTwoRuns.sarif │ │ │ │ ├── NotificationExceptionWithStack.sarif │ │ │ │ ├── OneRunWithAutomationDetails.sarif │ │ │ │ ├── OneRunWithBasicInvocation.sarif │ │ │ │ ├── OneRunWithFiles.sarif │ │ │ │ ├── OneRunWithInvocationAndNotifications.sarif │ │ │ │ ├── OneRunWithLogicalLocations.sarif │ │ │ │ ├── OneRunWithNotificationTime.sarif │ │ │ │ ├── OneRunWithRules.sarif │ │ │ │ ├── Regions.sarif │ │ │ │ ├── RestoreFromPropertyBag.sarif │ │ │ │ ├── ResultLocations.sarif │ │ │ │ ├── ResultWithOnePartialFingerprint.sarif │ │ │ │ ├── ResultWithTwoPartialFingerprints.sarif │ │ │ │ └── TwoResultsWithFixes.sarif │ │ │ └── Inputs │ │ │ │ ├── Minimum.sarif │ │ │ │ ├── MinimumWithTwoRuns.sarif │ │ │ │ ├── NotificationExceptionWithStack.sarif │ │ │ │ ├── OneRunWithAutomationDetails.sarif │ │ │ │ ├── OneRunWithBasicInvocation.sarif │ │ │ │ ├── OneRunWithFiles.sarif │ │ │ │ ├── OneRunWithInvocationAndNotifications.sarif │ │ │ │ ├── OneRunWithLogicalLocations.sarif │ │ │ │ ├── OneRunWithNotificationTime.sarif │ │ │ │ ├── OneRunWithRules.sarif │ │ │ │ ├── Regions.sarif │ │ │ │ ├── RestoreFromPropertyBag.sarif │ │ │ │ ├── ResultLocations.sarif │ │ │ │ ├── ResultWithOnePartialFingerprint.sarif │ │ │ │ ├── ResultWithTwoPartialFingerprints.sarif │ │ │ │ └── TwoResultsWithFixes.sarif │ │ ├── SarifLogger │ │ │ └── SimpleExample.sarif │ │ ├── SarifVersionOneToCurrentVisitor │ │ │ ├── ExpectedOutputs │ │ │ │ ├── BasicResult.sarif │ │ │ │ ├── CodeFlows.sarif │ │ │ │ ├── Minimum.sarif │ │ │ │ ├── MinimumWithLanguage.sarif │ │ │ │ ├── MinimumWithPropertiesAndTags.sarif │ │ │ │ ├── MinimumWithTwoRuns.sarif │ │ │ │ ├── NestedFiles.sarif │ │ │ │ ├── NestedInnerExceptionsInNotifications.sarif │ │ │ │ ├── NonDottedQuadFileVersion.sarif │ │ │ │ ├── NotificationExceptionWithStack.sarif │ │ │ │ ├── OneRunWithAllReportingDescriptors.sarif │ │ │ │ ├── OneRunWithBasicInvocation.sarif │ │ │ │ ├── OneRunWithFiles.sarif │ │ │ │ ├── OneRunWithInvocationAndNotifications.sarif │ │ │ │ ├── OneRunWithLogicalLocations.sarif │ │ │ │ ├── OneRunWithNotificationsButNoInvocations.sarif │ │ │ │ ├── OneRunWithRules.sarif │ │ │ │ ├── RestoreFromPropertyBag.sarif │ │ │ │ ├── ResultLocationsAsEmptyArray.sarif │ │ │ │ ├── TwoResultsWithFixes.sarif │ │ │ │ └── UriBaseId.sarif │ │ │ └── Inputs │ │ │ │ ├── BasicResult.sarif │ │ │ │ ├── CodeFlows.sarif │ │ │ │ ├── Minimum.sarif │ │ │ │ ├── MinimumWithLanguage.sarif │ │ │ │ ├── MinimumWithPropertiesAndTags.sarif │ │ │ │ ├── MinimumWithTwoRuns.sarif │ │ │ │ ├── NestedFiles.sarif │ │ │ │ ├── NestedInnerExceptionsInNotifications.sarif │ │ │ │ ├── NonDottedQuadFileVersion.sarif │ │ │ │ ├── NotificationExceptionWithStack.sarif │ │ │ │ ├── OneRunWithAllReportingDescriptors.sarif │ │ │ │ ├── OneRunWithBasicInvocation.sarif │ │ │ │ ├── OneRunWithFiles.sarif │ │ │ │ ├── OneRunWithInvocationAndNotifications.sarif │ │ │ │ ├── OneRunWithLogicalLocations.sarif │ │ │ │ ├── OneRunWithNotificationsButNoInvocations.sarif │ │ │ │ ├── OneRunWithRules.sarif │ │ │ │ ├── RestoreFromPropertyBag.sarif │ │ │ │ ├── ResultLocationsAsEmptyArray.sarif │ │ │ │ ├── TwoResultsWithFixes.sarif │ │ │ │ └── UriBaseId.sarif │ │ ├── UriConverter │ │ │ └── UriConverterTests.json │ │ └── V2ResultMatcher │ │ │ └── elfie-arriba.sarif │ ├── ToolFormatTests.cs │ ├── UriConverterTests.cs │ ├── Visitors │ │ ├── AddFileVisitorTests.cs │ │ ├── ExtractAllArtifactionLocationsVisitorTests.cs │ │ ├── GitHubIngestionVisitorTests.cs │ │ ├── InsertOptionalDataVisitorTests.cs │ │ ├── MakeUriAbsoluteVisitorTest.cs │ │ ├── PerRunPerRuleSplittingVisitorTests.cs │ │ ├── RebaseUriVisitorTests.cs │ │ ├── RemoveOptionalDataVisitorTests.cs │ │ ├── RunMergingVisitorTests.cs │ │ ├── SarifCurrentToVersionOneVisitorTests.cs │ │ ├── SarifVersionOneToCurrentVisitorTests.cs │ │ ├── SortingVisitorTests.cs │ │ ├── SuppressVisitorTests.cs │ │ └── UpdateIndicesFromLegacyDataVisitorTests.cs │ ├── WarningsTests.cs │ ├── Writers │ │ ├── BaseLoggerTestConcrete.cs │ │ ├── BaseLoggerTests.cs │ │ ├── CachingLoggerTests.cs │ │ ├── ConsoleLoggerTests.cs │ │ ├── MimeTypeTests.cs │ │ ├── PrereleaseCompatibilityTransformerTests.cs │ │ ├── ResultLogJsonWriterTests.cs │ │ ├── SarifConsolidatorTests.cs │ │ └── SarifLoggerTests.cs │ ├── ZipArchiveArtifactTests.cs │ └── xunit.runner.json ├── Test.UnitTests.WorkItems │ ├── FilingClientFactoryTests.cs │ ├── Logging │ │ ├── ApplicationInsightsTelemetryInitializerTests.cs │ │ └── MetricsLogValuesTests.cs │ ├── ServiceProviderFactoryTests.cs │ └── Test.UnitTests.WorkItems.csproj ├── Test.Utilities.Sarif │ ├── AssertionExtensions.cs │ ├── DeletesOutputsDirectoryOnClassInitializationFixture.cs │ ├── DirectoryHelpers.cs │ ├── FileDiffingFunctionalTests.cs │ ├── FileDiffingUnitTests.cs │ ├── HttpMockHelper.cs │ ├── RandomSarifLogGenerator.cs │ ├── ResultLogObjectWriter.cs │ ├── Test.Utilities.Sarif.csproj │ ├── TestAnalysisContext.cs │ ├── TestAnalyzeOptions.cs │ ├── TestAssetResourceExtractor.cs │ ├── TestData.cs │ ├── TestException.cs │ ├── TestMessageLogger.cs │ ├── TestRuleBehaviors.cs │ ├── TestTextWriter.cs │ ├── TestTraits.cs │ ├── TestUtilitiesExtensions.cs │ ├── TestUtilitiesResources.Designer.cs │ ├── TestUtilitiesResources.resx │ └── Utilities.cs ├── WorkItems │ ├── Attachment.cs │ ├── AzureDevOpsFieldNames.cs │ ├── AzureDevOpsFilingClient.cs │ ├── FilingClient.cs │ ├── FilingClientFactory.cs │ ├── FilingResult.cs │ ├── GitHubClientWrapper.cs │ ├── GitHubConnectionFacade.cs │ ├── GitHubFilingClient.cs │ ├── IGitHubClientWrapper.cs │ ├── IGitHubConnection.cs │ ├── IVssConnection.cs │ ├── IWorkItemModelTransformer.cs │ ├── IWorkItemTrackingHttpClient.cs │ ├── Logging │ │ ├── ApplicationInsightsTelemetryInitializer.cs │ │ ├── AssemblyExtensions.cs │ │ ├── EventIds.cs │ │ ├── LoggerExtensions.cs │ │ ├── LoggingContext.cs │ │ └── MetricsLogValues.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── ServiceProviderFactory.cs │ ├── VssConnectionFacade.cs │ ├── WorkItemFilingUtilities.cs │ ├── WorkItemModel.cs │ ├── WorkItemOperation.cs │ ├── WorkItemTrackingHttpClientWrapper.cs │ └── WorkItems.csproj ├── build.props └── build.warnings_as_errors.props └── triskelion.png /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/.github/CODEOWNERS -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/validation-rule-request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/.github/ISSUE_TEMPLATE/validation-rule-request.md -------------------------------------------------------------------------------- /.github/workflows/codeql-analysis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/.github/workflows/codeql-analysis.yml -------------------------------------------------------------------------------- /.github/workflows/codeql-js-analysis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/.github/workflows/codeql-js-analysis.yml -------------------------------------------------------------------------------- /.github/workflows/validate.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/.github/workflows/validate.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/.gitignore -------------------------------------------------------------------------------- /.nuget/NuGet.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/.nuget/NuGet.exe -------------------------------------------------------------------------------- /.nuget/NuGet.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/.nuget/NuGet.pdb -------------------------------------------------------------------------------- /BeforeBuild.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/BeforeBuild.sh -------------------------------------------------------------------------------- /BuildAndTest.cmd: -------------------------------------------------------------------------------- 1 | @echo off 2 | powershell -ExecutionPolicy RemoteSigned -File %~dp0\scripts\BuildAndTest.ps1 %* 3 | -------------------------------------------------------------------------------- /BuildPackagesFromLayoutDirectory.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/BuildPackagesFromLayoutDirectory.cmd -------------------------------------------------------------------------------- /DelistCurrentPackages.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/DelistCurrentPackages.cmd -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/LICENSE -------------------------------------------------------------------------------- /NuGet.Config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/NuGet.Config -------------------------------------------------------------------------------- /PublishSignedPackages.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/PublishSignedPackages.cmd -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/README.md -------------------------------------------------------------------------------- /ReleaseHistory.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/ReleaseHistory.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/SECURITY.md -------------------------------------------------------------------------------- /ado-build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/ado-build.yml -------------------------------------------------------------------------------- /docs/Contributing a SARIF Validation Rule.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/docs/Contributing a SARIF Validation Rule.md -------------------------------------------------------------------------------- /docs/Producing effective SARIF.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/docs/Producing effective SARIF.md -------------------------------------------------------------------------------- /docs/Rule factoring.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/docs/Rule factoring.xlsx -------------------------------------------------------------------------------- /docs/Rule reference page template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/docs/Rule reference page template.md -------------------------------------------------------------------------------- /docs/SARIF Validation Rule Authoring Principles.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/docs/SARIF Validation Rule Authoring Principles.md -------------------------------------------------------------------------------- /docs/ValidationRules.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/docs/ValidationRules.md -------------------------------------------------------------------------------- /docs/ValidationRules/RULEID.RULEFRIENDLYNAME.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/docs/ValidationRules/RULEID.RULEFRIENDLYNAME.cs -------------------------------------------------------------------------------- /docs/devbox-setup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/docs/devbox-setup.md -------------------------------------------------------------------------------- /docs/how-to.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/docs/how-to.md -------------------------------------------------------------------------------- /docs/json-map.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/docs/json-map.md -------------------------------------------------------------------------------- /docs/multitool-usage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/docs/multitool-usage.md -------------------------------------------------------------------------------- /docs/query-mode.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/docs/query-mode.md -------------------------------------------------------------------------------- /lgtm.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/lgtm.yml -------------------------------------------------------------------------------- /npm/sarif-multitool-darwin/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/npm/sarif-multitool-darwin/README.md -------------------------------------------------------------------------------- /npm/sarif-multitool-darwin/bin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/npm/sarif-multitool-darwin/bin.js -------------------------------------------------------------------------------- /npm/sarif-multitool-darwin/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/npm/sarif-multitool-darwin/index.d.ts -------------------------------------------------------------------------------- /npm/sarif-multitool-darwin/index.js: -------------------------------------------------------------------------------- 1 | module.exports = require('path').join(__dirname, 'Sarif.Multitool') -------------------------------------------------------------------------------- /npm/sarif-multitool-darwin/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/npm/sarif-multitool-darwin/package.json -------------------------------------------------------------------------------- /npm/sarif-multitool-linux/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/npm/sarif-multitool-linux/README.md -------------------------------------------------------------------------------- /npm/sarif-multitool-linux/bin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/npm/sarif-multitool-linux/bin.js -------------------------------------------------------------------------------- /npm/sarif-multitool-linux/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/npm/sarif-multitool-linux/index.d.ts -------------------------------------------------------------------------------- /npm/sarif-multitool-linux/index.js: -------------------------------------------------------------------------------- 1 | module.exports = require('path').join(__dirname, 'Sarif.Multitool') -------------------------------------------------------------------------------- /npm/sarif-multitool-linux/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/npm/sarif-multitool-linux/package.json -------------------------------------------------------------------------------- /npm/sarif-multitool-win32/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/npm/sarif-multitool-win32/README.md -------------------------------------------------------------------------------- /npm/sarif-multitool-win32/bin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/npm/sarif-multitool-win32/bin.js -------------------------------------------------------------------------------- /npm/sarif-multitool-win32/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/npm/sarif-multitool-win32/index.d.ts -------------------------------------------------------------------------------- /npm/sarif-multitool-win32/index.js: -------------------------------------------------------------------------------- 1 | module.exports = require('path').join(__dirname, 'Sarif.Multitool.exe') -------------------------------------------------------------------------------- /npm/sarif-multitool-win32/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/npm/sarif-multitool-win32/package.json -------------------------------------------------------------------------------- /npm/sarif-multitool/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/npm/sarif-multitool/README.md -------------------------------------------------------------------------------- /npm/sarif-multitool/bin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/npm/sarif-multitool/bin.js -------------------------------------------------------------------------------- /npm/sarif-multitool/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/npm/sarif-multitool/index.d.ts -------------------------------------------------------------------------------- /npm/sarif-multitool/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/npm/sarif-multitool/index.js -------------------------------------------------------------------------------- /npm/sarif-multitool/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/npm/sarif-multitool/package.json -------------------------------------------------------------------------------- /policies/github.config.sarif-external-properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/policies/github.config.sarif-external-properties -------------------------------------------------------------------------------- /policies/github.config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/policies/github.config.xml -------------------------------------------------------------------------------- /refs/Octokit.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/refs/Octokit.dll -------------------------------------------------------------------------------- /scripts/BuildAndTest.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/scripts/BuildAndTest.ps1 -------------------------------------------------------------------------------- /scripts/BuildMultitoolForNpm.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/scripts/BuildMultitoolForNpm.ps1 -------------------------------------------------------------------------------- /scripts/BuildPackagesFromSigningDirectory.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/scripts/BuildPackagesFromSigningDirectory.ps1 -------------------------------------------------------------------------------- /scripts/DeleteTestOutputs.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/scripts/DeleteTestOutputs.ps1 -------------------------------------------------------------------------------- /scripts/DelistCurrentPackages.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/scripts/DelistCurrentPackages.ps1 -------------------------------------------------------------------------------- /scripts/Get-VersionConstants.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/scripts/Get-VersionConstants.ps1 -------------------------------------------------------------------------------- /scripts/New-VersionConstantsFile.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/scripts/New-VersionConstantsFile.ps1 -------------------------------------------------------------------------------- /scripts/NuGetUtilities.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/scripts/NuGetUtilities.psm1 -------------------------------------------------------------------------------- /scripts/Projects.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/scripts/Projects.psm1 -------------------------------------------------------------------------------- /scripts/RegistrySettings.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/scripts/RegistrySettings.ps1 -------------------------------------------------------------------------------- /scripts/ScriptUtilities.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/scripts/ScriptUtilities.psm1 -------------------------------------------------------------------------------- /scripts/semmle/semmle-suites: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/scripts/semmle/semmle-suites -------------------------------------------------------------------------------- /src/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/.editorconfig -------------------------------------------------------------------------------- /src/BinSkim.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/BinSkim.targets -------------------------------------------------------------------------------- /src/BinSkimConfiguration.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/BinSkimConfiguration.xml -------------------------------------------------------------------------------- /src/Directory.Packages.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Directory.Packages.props -------------------------------------------------------------------------------- /src/Directory.Solution.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Directory.Solution.props -------------------------------------------------------------------------------- /src/Key.snk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Key.snk -------------------------------------------------------------------------------- /src/Nuget/Sarif.Multitool.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Nuget/Sarif.Multitool.nuspec -------------------------------------------------------------------------------- /src/Samples/Sarif.Sdk.Sample.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Samples/Sarif.Sdk.Sample.sln -------------------------------------------------------------------------------- /src/Samples/Sarif.Sdk.Sample/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Samples/Sarif.Sdk.Sample/App.config -------------------------------------------------------------------------------- /src/Samples/Sarif.Sdk.Sample/CreateOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Samples/Sarif.Sdk.Sample/CreateOptions.cs -------------------------------------------------------------------------------- /src/Samples/Sarif.Sdk.Sample/LoadOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Samples/Sarif.Sdk.Sample/LoadOptions.cs -------------------------------------------------------------------------------- /src/Samples/Sarif.Sdk.Sample/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Samples/Sarif.Sdk.Sample/Program.cs -------------------------------------------------------------------------------- /src/Samples/Sarif.Sdk.Sample/Sarif.Sdk.Sample.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Samples/Sarif.Sdk.Sample/Sarif.Sdk.Sample.csproj -------------------------------------------------------------------------------- /src/Samples/SarifDeferredSample/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Samples/SarifDeferredSample/App.config -------------------------------------------------------------------------------- /src/Samples/SarifDeferredSample/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Samples/SarifDeferredSample/Program.cs -------------------------------------------------------------------------------- /src/Samples/SarifDeferredSample/SarifDeferredSample.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Samples/SarifToCsv/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Samples/SarifToCsv/App.config -------------------------------------------------------------------------------- /src/Samples/SarifToCsv/CsvWriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Samples/SarifToCsv/CsvWriter.cs -------------------------------------------------------------------------------- /src/Samples/SarifToCsv/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Samples/SarifToCsv/Program.cs -------------------------------------------------------------------------------- /src/Samples/SarifToCsv/SarifCsvColumnWriters.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Samples/SarifToCsv/SarifCsvColumnWriters.cs -------------------------------------------------------------------------------- /src/Samples/SarifToCsv/SarifToCsv.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Samples/SarifToCsv/SarifToCsv.csproj -------------------------------------------------------------------------------- /src/Samples/SarifToCsv/SarifToCsv.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Samples/SarifToCsv/SarifToCsv.sln -------------------------------------------------------------------------------- /src/Samples/SarifToCsv/SdkExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Samples/SarifToCsv/SdkExtensions.cs -------------------------------------------------------------------------------- /src/Samples/SarifToCsv/WriteContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Samples/SarifToCsv/WriteContext.cs -------------------------------------------------------------------------------- /src/Samples/SarifTrim/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Samples/SarifTrim/App.config -------------------------------------------------------------------------------- /src/Samples/SarifTrim/ConsoleWatch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Samples/SarifTrim/ConsoleWatch.cs -------------------------------------------------------------------------------- /src/Samples/SarifTrim/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Samples/SarifTrim/Program.cs -------------------------------------------------------------------------------- /src/Samples/SarifTrim/SarifTrim.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Samples/SarifTrim/SarifTrim.csproj -------------------------------------------------------------------------------- /src/Samples/SarifTrim/SarifTrim.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Samples/SarifTrim/SarifTrim.sln -------------------------------------------------------------------------------- /src/Sarif.Converters/AndroidStudioConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Sarif.Converters/AndroidStudioConverter.cs -------------------------------------------------------------------------------- /src/Sarif.Converters/AndroidStudioProblem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Sarif.Converters/AndroidStudioProblem.cs -------------------------------------------------------------------------------- /src/Sarif.Converters/AndroidStudioStrings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Sarif.Converters/AndroidStudioStrings.cs -------------------------------------------------------------------------------- /src/Sarif.Converters/BuiltInConverterFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Sarif.Converters/BuiltInConverterFactory.cs -------------------------------------------------------------------------------- /src/Sarif.Converters/ClangAnalyzerConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Sarif.Converters/ClangAnalyzerConverter.cs -------------------------------------------------------------------------------- /src/Sarif.Converters/ClangTidyConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Sarif.Converters/ClangTidyConverter.cs -------------------------------------------------------------------------------- /src/Sarif.Converters/ContrastSecurityConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Sarif.Converters/ContrastSecurityConverter.cs -------------------------------------------------------------------------------- /src/Sarif.Converters/ContrastSecurityRuleIds.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Sarif.Converters/ContrastSecurityRuleIds.cs -------------------------------------------------------------------------------- /src/Sarif.Converters/ConverterFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Sarif.Converters/ConverterFactory.cs -------------------------------------------------------------------------------- /src/Sarif.Converters/ConverterResources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Sarif.Converters/ConverterResources.Designer.cs -------------------------------------------------------------------------------- /src/Sarif.Converters/ConverterResources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Sarif.Converters/ConverterResources.resx -------------------------------------------------------------------------------- /src/Sarif.Converters/CppCheckConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Sarif.Converters/CppCheckConverter.cs -------------------------------------------------------------------------------- /src/Sarif.Converters/CppCheckError.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Sarif.Converters/CppCheckError.cs -------------------------------------------------------------------------------- /src/Sarif.Converters/CppCheckLocation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Sarif.Converters/CppCheckLocation.cs -------------------------------------------------------------------------------- /src/Sarif.Converters/CppCheckStrings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Sarif.Converters/CppCheckStrings.cs -------------------------------------------------------------------------------- /src/Sarif.Converters/Extensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Sarif.Converters/Extensions.cs -------------------------------------------------------------------------------- /src/Sarif.Converters/FlawFinderConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Sarif.Converters/FlawFinderConverter.cs -------------------------------------------------------------------------------- /src/Sarif.Converters/FlawFinderCsvResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Sarif.Converters/FlawFinderCsvResult.cs -------------------------------------------------------------------------------- /src/Sarif.Converters/FortifyConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Sarif.Converters/FortifyConverter.cs -------------------------------------------------------------------------------- /src/Sarif.Converters/FortifyFprConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Sarif.Converters/FortifyFprConverter.cs -------------------------------------------------------------------------------- /src/Sarif.Converters/FortifyFprStrings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Sarif.Converters/FortifyFprStrings.cs -------------------------------------------------------------------------------- /src/Sarif.Converters/FortifyIssue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Sarif.Converters/FortifyIssue.cs -------------------------------------------------------------------------------- /src/Sarif.Converters/FortifyPathElement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Sarif.Converters/FortifyPathElement.cs -------------------------------------------------------------------------------- /src/Sarif.Converters/FortifyStrings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Sarif.Converters/FortifyStrings.cs -------------------------------------------------------------------------------- /src/Sarif.Converters/FortifyUtilities.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Sarif.Converters/FortifyUtilities.cs -------------------------------------------------------------------------------- /src/Sarif.Converters/FxCopConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Sarif.Converters/FxCopConverter.cs -------------------------------------------------------------------------------- /src/Sarif.Converters/GlobalSuppressions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Sarif.Converters/GlobalSuppressions.cs -------------------------------------------------------------------------------- /src/Sarif.Converters/HdfConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Sarif.Converters/HdfConverter.cs -------------------------------------------------------------------------------- /src/Sarif.Converters/HdfModel/ControlDescription.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Sarif.Converters/HdfModel/ControlDescription.cs -------------------------------------------------------------------------------- /src/Sarif.Converters/HdfModel/ControlGroup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Sarif.Converters/HdfModel/ControlGroup.cs -------------------------------------------------------------------------------- /src/Sarif.Converters/HdfModel/ControlResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Sarif.Converters/HdfModel/ControlResult.cs -------------------------------------------------------------------------------- /src/Sarif.Converters/HdfModel/ControlResultStatus.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Sarif.Converters/HdfModel/ControlResultStatus.cs -------------------------------------------------------------------------------- /src/Sarif.Converters/HdfModel/Converter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Sarif.Converters/HdfModel/Converter.cs -------------------------------------------------------------------------------- /src/Sarif.Converters/HdfModel/Dependency.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Sarif.Converters/HdfModel/Dependency.cs -------------------------------------------------------------------------------- /src/Sarif.Converters/HdfModel/ExecJsonControl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Sarif.Converters/HdfModel/ExecJsonControl.cs -------------------------------------------------------------------------------- /src/Sarif.Converters/HdfModel/ExecJsonProfile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Sarif.Converters/HdfModel/ExecJsonProfile.cs -------------------------------------------------------------------------------- /src/Sarif.Converters/HdfModel/HdfFile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Sarif.Converters/HdfModel/HdfFile.cs -------------------------------------------------------------------------------- /src/Sarif.Converters/HdfModel/Platform.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Sarif.Converters/HdfModel/Platform.cs -------------------------------------------------------------------------------- /src/Sarif.Converters/HdfModel/Ref.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Sarif.Converters/HdfModel/Ref.cs -------------------------------------------------------------------------------- /src/Sarif.Converters/HdfModel/RefConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Sarif.Converters/HdfModel/RefConverter.cs -------------------------------------------------------------------------------- /src/Sarif.Converters/HdfModel/Reference.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Sarif.Converters/HdfModel/Reference.cs -------------------------------------------------------------------------------- /src/Sarif.Converters/HdfModel/Serialize.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Sarif.Converters/HdfModel/Serialize.cs -------------------------------------------------------------------------------- /src/Sarif.Converters/HdfModel/SkippedDueToWaiver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Sarif.Converters/HdfModel/SkippedDueToWaiver.cs -------------------------------------------------------------------------------- /src/Sarif.Converters/HdfModel/SourceLocation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Sarif.Converters/HdfModel/SourceLocation.cs -------------------------------------------------------------------------------- /src/Sarif.Converters/HdfModel/StatisticBlock.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Sarif.Converters/HdfModel/StatisticBlock.cs -------------------------------------------------------------------------------- /src/Sarif.Converters/HdfModel/StatisticHash.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Sarif.Converters/HdfModel/StatisticHash.cs -------------------------------------------------------------------------------- /src/Sarif.Converters/HdfModel/Statistics.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Sarif.Converters/HdfModel/Statistics.cs -------------------------------------------------------------------------------- /src/Sarif.Converters/HdfModel/SupportedPlatform.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Sarif.Converters/HdfModel/SupportedPlatform.cs -------------------------------------------------------------------------------- /src/Sarif.Converters/HdfModel/WaiverData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Sarif.Converters/HdfModel/WaiverData.cs -------------------------------------------------------------------------------- /src/Sarif.Converters/IgnoreOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Sarif.Converters/IgnoreOptions.cs -------------------------------------------------------------------------------- /src/Sarif.Converters/LogReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Sarif.Converters/LogReader.cs -------------------------------------------------------------------------------- /src/Sarif.Converters/MSBuildConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Sarif.Converters/MSBuildConverter.cs -------------------------------------------------------------------------------- /src/Sarif.Converters/PREFastConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Sarif.Converters/PREFastConverter.cs -------------------------------------------------------------------------------- /src/Sarif.Converters/PREFastObjectModel/Category.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Sarif.Converters/PREFastObjectModel/Category.cs -------------------------------------------------------------------------------- /src/Sarif.Converters/PREFastObjectModel/Defect.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Sarif.Converters/PREFastObjectModel/Defect.cs -------------------------------------------------------------------------------- /src/Sarif.Converters/PREFastObjectModel/DefectList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Sarif.Converters/PREFastObjectModel/DefectList.cs -------------------------------------------------------------------------------- /src/Sarif.Converters/PREFastObjectModel/KeyEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Sarif.Converters/PREFastObjectModel/KeyEvent.cs -------------------------------------------------------------------------------- /src/Sarif.Converters/PREFastObjectModel/PREFastPath.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Sarif.Converters/PREFastObjectModel/PREFastPath.cs -------------------------------------------------------------------------------- /src/Sarif.Converters/PREFastObjectModel/SFA.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Sarif.Converters/PREFastObjectModel/SFA.cs -------------------------------------------------------------------------------- /src/Sarif.Converters/PluginConverterFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Sarif.Converters/PluginConverterFactory.cs -------------------------------------------------------------------------------- /src/Sarif.Converters/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Sarif.Converters/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/Sarif.Converters/PylintConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Sarif.Converters/PylintConverter.cs -------------------------------------------------------------------------------- /src/Sarif.Converters/PylintObjectModel/PylintLog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Sarif.Converters/PylintObjectModel/PylintLog.cs -------------------------------------------------------------------------------- /src/Sarif.Converters/RulesData/ContrastSecurity.sarif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Sarif.Converters/RulesData/ContrastSecurity.sarif -------------------------------------------------------------------------------- /src/Sarif.Converters/Sarif.Converters.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Sarif.Converters/Sarif.Converters.csproj -------------------------------------------------------------------------------- /src/Sarif.Converters/Schemata/FxCopReport.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Sarif.Converters/Schemata/FxCopReport.xsd -------------------------------------------------------------------------------- /src/Sarif.Converters/SemmleQlConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Sarif.Converters/SemmleQlConverter.cs -------------------------------------------------------------------------------- /src/Sarif.Converters/SparseReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Sarif.Converters/SparseReader.cs -------------------------------------------------------------------------------- /src/Sarif.Converters/SparseReaderDispatchTable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Sarif.Converters/SparseReaderDispatchTable.cs -------------------------------------------------------------------------------- /src/Sarif.Converters/StaticDriverVerifierConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Sarif.Converters/StaticDriverVerifierConverter.cs -------------------------------------------------------------------------------- /src/Sarif.Converters/StringReference.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Sarif.Converters/StringReference.cs -------------------------------------------------------------------------------- /src/Sarif.Converters/TSLintConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Sarif.Converters/TSLintConverter.cs -------------------------------------------------------------------------------- /src/Sarif.Converters/TSLintLogReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Sarif.Converters/TSLintLogReader.cs -------------------------------------------------------------------------------- /src/Sarif.Converters/TSLintObjectModel/TSLintLog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Sarif.Converters/TSLintObjectModel/TSLintLog.cs -------------------------------------------------------------------------------- /src/Sarif.Converters/TSLintObjectModel/TSLintLogFix.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Sarif.Converters/TSLintObjectModel/TSLintLogFix.cs -------------------------------------------------------------------------------- /src/Sarif.Converters/TextFormats/BaseTabularReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Sarif.Converters/TextFormats/BaseTabularReader.cs -------------------------------------------------------------------------------- /src/Sarif.Converters/TextFormats/CsvReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Sarif.Converters/TextFormats/CsvReader.cs -------------------------------------------------------------------------------- /src/Sarif.Converters/TextFormats/TsvReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Sarif.Converters/TextFormats/TsvReader.cs -------------------------------------------------------------------------------- /src/Sarif.Converters/ToolFileConverterBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Sarif.Converters/ToolFileConverterBase.cs -------------------------------------------------------------------------------- /src/Sarif.Converters/ToolFormat.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Sarif.Converters/ToolFormat.cs -------------------------------------------------------------------------------- /src/Sarif.Converters/ToolFormatConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Sarif.Converters/ToolFormatConverter.cs -------------------------------------------------------------------------------- /src/Sarif.Driver/ArgumentSplitter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Sarif.Driver/ArgumentSplitter.cs -------------------------------------------------------------------------------- /src/Sarif.Driver/BrandedVersionAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Sarif.Driver/BrandedVersionAttribute.cs -------------------------------------------------------------------------------- /src/Sarif.Driver/DisposableEnumerable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Sarif.Driver/DisposableEnumerable.cs -------------------------------------------------------------------------------- /src/Sarif.Driver/DisposableEnumerableView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Sarif.Driver/DisposableEnumerableView.cs -------------------------------------------------------------------------------- /src/Sarif.Driver/DriverExtensionMethods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Sarif.Driver/DriverExtensionMethods.cs -------------------------------------------------------------------------------- /src/Sarif.Driver/DriverResources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Sarif.Driver/DriverResources.Designer.cs -------------------------------------------------------------------------------- /src/Sarif.Driver/DriverResources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Sarif.Driver/DriverResources.resx -------------------------------------------------------------------------------- /src/Sarif.Driver/DriverUtilities.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Sarif.Driver/DriverUtilities.cs -------------------------------------------------------------------------------- /src/Sarif.Driver/DumpEventsCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Sarif.Driver/DumpEventsCommand.cs -------------------------------------------------------------------------------- /src/Sarif.Driver/DumpEventsOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Sarif.Driver/DumpEventsOptions.cs -------------------------------------------------------------------------------- /src/Sarif.Driver/EnumerableExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Sarif.Driver/EnumerableExtensions.cs -------------------------------------------------------------------------------- /src/Sarif.Driver/EnvironmentVariables.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Sarif.Driver/EnvironmentVariables.cs -------------------------------------------------------------------------------- /src/Sarif.Driver/ExceptionStrings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Sarif.Driver/ExceptionStrings.Designer.cs -------------------------------------------------------------------------------- /src/Sarif.Driver/ExportEventsCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Sarif.Driver/ExportEventsCommand.cs -------------------------------------------------------------------------------- /src/Sarif.Driver/ExportEventsOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Sarif.Driver/ExportEventsOptions.cs -------------------------------------------------------------------------------- /src/Sarif.Driver/FileSpecifier.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Sarif.Driver/FileSpecifier.cs -------------------------------------------------------------------------------- /src/Sarif.Driver/FileStreamExtensionMethods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Sarif.Driver/FileStreamExtensionMethods.cs -------------------------------------------------------------------------------- /src/Sarif.Driver/IEnvironmentVariables.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Sarif.Driver/IEnvironmentVariables.cs -------------------------------------------------------------------------------- /src/Sarif.Driver/KeyEventImportance.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Sarif.Driver/KeyEventImportance.cs -------------------------------------------------------------------------------- /src/Sarif.Driver/MurmurHash.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Sarif.Driver/MurmurHash.cs -------------------------------------------------------------------------------- /src/Sarif.Driver/OrderedFileSpecifier.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Sarif.Driver/OrderedFileSpecifier.cs -------------------------------------------------------------------------------- /src/Sarif.Driver/Pair.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Sarif.Driver/Pair.cs -------------------------------------------------------------------------------- /src/Sarif.Driver/PathExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Sarif.Driver/PathExtensions.cs -------------------------------------------------------------------------------- /src/Sarif.Driver/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Sarif.Driver/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/Sarif.Driver/ReferenceEqualityComparer`1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Sarif.Driver/ReferenceEqualityComparer`1.cs -------------------------------------------------------------------------------- /src/Sarif.Driver/RentalStream.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Sarif.Driver/RentalStream.cs -------------------------------------------------------------------------------- /src/Sarif.Driver/ResultsSummaryLogger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Sarif.Driver/ResultsSummaryLogger.cs -------------------------------------------------------------------------------- /src/Sarif.Driver/Sarif.Driver.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Sarif.Driver/Sarif.Driver.csproj -------------------------------------------------------------------------------- /src/Sarif.Driver/Sdk/AggregatingLogger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Sarif.Driver/Sdk/AggregatingLogger.cs -------------------------------------------------------------------------------- /src/Sarif.Driver/Sdk/AnalysisApplicability.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Sarif.Driver/Sdk/AnalysisApplicability.cs -------------------------------------------------------------------------------- /src/Sarif.Driver/Sdk/AnalyzeOptionsBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Sarif.Driver/Sdk/AnalyzeOptionsBase.cs -------------------------------------------------------------------------------- /src/Sarif.Driver/Sdk/CommandBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Sarif.Driver/Sdk/CommandBase.cs -------------------------------------------------------------------------------- /src/Sarif.Driver/Sdk/CommonOptionsBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Sarif.Driver/Sdk/CommonOptionsBase.cs -------------------------------------------------------------------------------- /src/Sarif.Driver/Sdk/CompositionUtilities.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Sarif.Driver/Sdk/CompositionUtilities.cs -------------------------------------------------------------------------------- /src/Sarif.Driver/Sdk/ConsoleEventsListener.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Sarif.Driver/Sdk/ConsoleEventsListener.cs -------------------------------------------------------------------------------- /src/Sarif.Driver/Sdk/DefaultDriverOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Sarif.Driver/Sdk/DefaultDriverOptions.cs -------------------------------------------------------------------------------- /src/Sarif.Driver/Sdk/DriverCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Sarif.Driver/Sdk/DriverCommand.cs -------------------------------------------------------------------------------- /src/Sarif.Driver/Sdk/DriverEventId.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Sarif.Driver/Sdk/DriverEventId.cs -------------------------------------------------------------------------------- /src/Sarif.Driver/Sdk/DriverEventNames.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Sarif.Driver/Sdk/DriverEventNames.cs -------------------------------------------------------------------------------- /src/Sarif.Driver/Sdk/DriverEventSource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Sarif.Driver/Sdk/DriverEventSource.cs -------------------------------------------------------------------------------- /src/Sarif.Driver/Sdk/DriverSdkExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Sarif.Driver/Sdk/DriverSdkExtensions.cs -------------------------------------------------------------------------------- /src/Sarif.Driver/Sdk/EntryPointUtilities.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Sarif.Driver/Sdk/EntryPointUtilities.cs -------------------------------------------------------------------------------- /src/Sarif.Driver/Sdk/ExitApplicationException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Sarif.Driver/Sdk/ExitApplicationException.cs -------------------------------------------------------------------------------- /src/Sarif.Driver/Sdk/ExitReason.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Sarif.Driver/Sdk/ExitReason.cs -------------------------------------------------------------------------------- /src/Sarif.Driver/Sdk/ExportConfigurationCommandBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Sarif.Driver/Sdk/ExportConfigurationCommandBase.cs -------------------------------------------------------------------------------- /src/Sarif.Driver/Sdk/ExportConfigurationOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Sarif.Driver/Sdk/ExportConfigurationOptions.cs -------------------------------------------------------------------------------- /src/Sarif.Driver/Sdk/ExportRulesMetadataCommandBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Sarif.Driver/Sdk/ExportRulesMetadataCommandBase.cs -------------------------------------------------------------------------------- /src/Sarif.Driver/Sdk/ExportRulesMetadataOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Sarif.Driver/Sdk/ExportRulesMetadataOptions.cs -------------------------------------------------------------------------------- /src/Sarif.Driver/Sdk/FileFormat.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Sarif.Driver/Sdk/FileFormat.cs -------------------------------------------------------------------------------- /src/Sarif.Driver/Sdk/FileProcessingData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Sarif.Driver/Sdk/FileProcessingData.cs -------------------------------------------------------------------------------- /src/Sarif.Driver/Sdk/MultifileCommandBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Sarif.Driver/Sdk/MultifileCommandBase.cs -------------------------------------------------------------------------------- /src/Sarif.Driver/Sdk/MultifileOptionsBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Sarif.Driver/Sdk/MultifileOptionsBase.cs -------------------------------------------------------------------------------- /src/Sarif.Driver/Sdk/PluginDriverCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Sarif.Driver/Sdk/PluginDriverCommand.cs -------------------------------------------------------------------------------- /src/Sarif.Driver/Sdk/RuleEnabledState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Sarif.Driver/Sdk/RuleEnabledState.cs -------------------------------------------------------------------------------- /src/Sarif.Driver/Sdk/SingleFileOptionsBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Sarif.Driver/Sdk/SingleFileOptionsBase.cs -------------------------------------------------------------------------------- /src/Sarif.Driver/Sdk/Skimmer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Sarif.Driver/Sdk/Skimmer.cs -------------------------------------------------------------------------------- /src/Sarif.Driver/SemanticVersion.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Sarif.Driver/SemanticVersion.cs -------------------------------------------------------------------------------- /src/Sarif.Driver/SkimmerIdComparer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Sarif.Driver/SkimmerIdComparer.cs -------------------------------------------------------------------------------- /src/Sarif.Driver/StringExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Sarif.Driver/StringExtensions.cs -------------------------------------------------------------------------------- /src/Sarif.Driver/TempDirectory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Sarif.Driver/TempDirectory.cs -------------------------------------------------------------------------------- /src/Sarif.Driver/TempFile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Sarif.Driver/TempFile.cs -------------------------------------------------------------------------------- /src/Sarif.Driver/XmlWriterExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Sarif.Driver/XmlWriterExtensions.cs -------------------------------------------------------------------------------- /src/Sarif.Multitool.Library/AbsoluteUriCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Sarif.Multitool.Library/AbsoluteUriCommand.cs -------------------------------------------------------------------------------- /src/Sarif.Multitool.Library/AbsoluteUriOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Sarif.Multitool.Library/AbsoluteUriOptions.cs -------------------------------------------------------------------------------- /src/Sarif.Multitool.Library/AnalyzeTestOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Sarif.Multitool.Library/AnalyzeTestOptions.cs -------------------------------------------------------------------------------- /src/Sarif.Multitool.Library/ApplyPolicyCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Sarif.Multitool.Library/ApplyPolicyCommand.cs -------------------------------------------------------------------------------- /src/Sarif.Multitool.Library/ApplyPolicyOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Sarif.Multitool.Library/ApplyPolicyOptions.cs -------------------------------------------------------------------------------- /src/Sarif.Multitool.Library/CommandUtilities.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Sarif.Multitool.Library/CommandUtilities.cs -------------------------------------------------------------------------------- /src/Sarif.Multitool.Library/ConvertCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Sarif.Multitool.Library/ConvertCommand.cs -------------------------------------------------------------------------------- /src/Sarif.Multitool.Library/ConvertOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Sarif.Multitool.Library/ConvertOptions.cs -------------------------------------------------------------------------------- /src/Sarif.Multitool.Library/Extensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Sarif.Multitool.Library/Extensions.cs -------------------------------------------------------------------------------- /src/Sarif.Multitool.Library/FileWorkItemsCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Sarif.Multitool.Library/FileWorkItemsCommand.cs -------------------------------------------------------------------------------- /src/Sarif.Multitool.Library/FileWorkItemsOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Sarif.Multitool.Library/FileWorkItemsOptions.cs -------------------------------------------------------------------------------- /src/Sarif.Multitool.Library/IntegerExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Sarif.Multitool.Library/IntegerExtensions.cs -------------------------------------------------------------------------------- /src/Sarif.Multitool.Library/JTokenExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Sarif.Multitool.Library/JTokenExtensions.cs -------------------------------------------------------------------------------- /src/Sarif.Multitool.Library/MergeCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Sarif.Multitool.Library/MergeCommand.cs -------------------------------------------------------------------------------- /src/Sarif.Multitool.Library/MergeOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Sarif.Multitool.Library/MergeOptions.cs -------------------------------------------------------------------------------- /src/Sarif.Multitool.Library/MultitoolResources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Sarif.Multitool.Library/MultitoolResources.resx -------------------------------------------------------------------------------- /src/Sarif.Multitool.Library/OptionsInterpretter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Sarif.Multitool.Library/OptionsInterpretter.cs -------------------------------------------------------------------------------- /src/Sarif.Multitool.Library/PageCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Sarif.Multitool.Library/PageCommand.cs -------------------------------------------------------------------------------- /src/Sarif.Multitool.Library/PageOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Sarif.Multitool.Library/PageOptions.cs -------------------------------------------------------------------------------- /src/Sarif.Multitool.Library/QueryCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Sarif.Multitool.Library/QueryCommand.cs -------------------------------------------------------------------------------- /src/Sarif.Multitool.Library/QueryOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Sarif.Multitool.Library/QueryOptions.cs -------------------------------------------------------------------------------- /src/Sarif.Multitool.Library/RebaseUriCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Sarif.Multitool.Library/RebaseUriCommand.cs -------------------------------------------------------------------------------- /src/Sarif.Multitool.Library/RebaseUriOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Sarif.Multitool.Library/RebaseUriOptions.cs -------------------------------------------------------------------------------- /src/Sarif.Multitool.Library/ResultMatchingCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Sarif.Multitool.Library/ResultMatchingCommand.cs -------------------------------------------------------------------------------- /src/Sarif.Multitool.Library/ResultMatchingOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Sarif.Multitool.Library/ResultMatchingOptions.cs -------------------------------------------------------------------------------- /src/Sarif.Multitool.Library/RewriteCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Sarif.Multitool.Library/RewriteCommand.cs -------------------------------------------------------------------------------- /src/Sarif.Multitool.Library/RewriteOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Sarif.Multitool.Library/RewriteOptions.cs -------------------------------------------------------------------------------- /src/Sarif.Multitool.Library/Rules/RuleId.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Sarif.Multitool.Library/Rules/RuleId.cs -------------------------------------------------------------------------------- /src/Sarif.Multitool.Library/Rules/RuleResources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Sarif.Multitool.Library/Rules/RuleResources.resx -------------------------------------------------------------------------------- /src/Sarif.Multitool.Library/SarifPropertyName.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Sarif.Multitool.Library/SarifPropertyName.cs -------------------------------------------------------------------------------- /src/Sarif.Multitool.Library/SarifValidationContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Sarif.Multitool.Library/SarifValidationContext.cs -------------------------------------------------------------------------------- /src/Sarif.Multitool.Library/StringExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Sarif.Multitool.Library/StringExtensions.cs -------------------------------------------------------------------------------- /src/Sarif.Multitool.Library/SuppressCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Sarif.Multitool.Library/SuppressCommand.cs -------------------------------------------------------------------------------- /src/Sarif.Multitool.Library/SuppressOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Sarif.Multitool.Library/SuppressOptions.cs -------------------------------------------------------------------------------- /src/Sarif.Multitool.Library/ValidateCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Sarif.Multitool.Library/ValidateCommand.cs -------------------------------------------------------------------------------- /src/Sarif.Multitool.Library/ValidateOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Sarif.Multitool.Library/ValidateOptions.cs -------------------------------------------------------------------------------- /src/Sarif.Multitool.Library/default.configuration.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Sarif.Multitool.Library/default.configuration.xml -------------------------------------------------------------------------------- /src/Sarif.Multitool/AnalyzeTestCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Sarif.Multitool/AnalyzeTestCommand.cs -------------------------------------------------------------------------------- /src/Sarif.Multitool/AnalyzeTestContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Sarif.Multitool/AnalyzeTestContext.cs -------------------------------------------------------------------------------- /src/Sarif.Multitool/AnalyzeTestSkimmer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Sarif.Multitool/AnalyzeTestSkimmer.cs -------------------------------------------------------------------------------- /src/Sarif.Multitool/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Sarif.Multitool/App.config -------------------------------------------------------------------------------- /src/Sarif.Multitool/DotnetToolSettings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Sarif.Multitool/DotnetToolSettings.xml -------------------------------------------------------------------------------- /src/Sarif.Multitool/MultitoolResources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Sarif.Multitool/MultitoolResources.Designer.cs -------------------------------------------------------------------------------- /src/Sarif.Multitool/MultitoolResources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Sarif.Multitool/MultitoolResources.resx -------------------------------------------------------------------------------- /src/Sarif.Multitool/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Sarif.Multitool/Program.cs -------------------------------------------------------------------------------- /src/Sarif.Multitool/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Sarif.Multitool/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/Sarif.Multitool/Sarif.Multitool.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Sarif.Multitool/Sarif.Multitool.csproj -------------------------------------------------------------------------------- /src/Sarif.Multitool/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Sarif.Multitool/appsettings.json -------------------------------------------------------------------------------- /src/Sarif.Multitool/appsettings.local.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /src/Sarif.Sdk.CodeQL.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Sarif.Sdk.CodeQL.sln -------------------------------------------------------------------------------- /src/Sarif.Sdk.runsettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Sarif.Sdk.runsettings -------------------------------------------------------------------------------- /src/Sarif.Sdk.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Sarif.Sdk.sln -------------------------------------------------------------------------------- /src/Sarif.WorkItems/README.md: -------------------------------------------------------------------------------- 1 | # THIS LIBRARY IS UNDER CONSTRUCTION -------------------------------------------------------------------------------- /src/Sarif.WorkItems/Sarif.WorkItems.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Sarif.WorkItems/Sarif.WorkItems.csproj -------------------------------------------------------------------------------- /src/Sarif.WorkItems/SarifWorkItemContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Sarif.WorkItems/SarifWorkItemContext.cs -------------------------------------------------------------------------------- /src/Sarif.WorkItems/SarifWorkItemFiler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Sarif.WorkItems/SarifWorkItemFiler.cs -------------------------------------------------------------------------------- /src/Sarif.WorkItems/SarifWorkItemModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Sarif.WorkItems/SarifWorkItemModel.cs -------------------------------------------------------------------------------- /src/Sarif.WorkItems/SarifWorkItemModelTransformer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Sarif.WorkItems/SarifWorkItemModelTransformer.cs -------------------------------------------------------------------------------- /src/Sarif.WorkItems/SarifWorkItemsExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Sarif.WorkItems/SarifWorkItemsExtensions.cs -------------------------------------------------------------------------------- /src/Sarif.WorkItems/WorkItemsResources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Sarif.WorkItems/WorkItemsResources.Designer.cs -------------------------------------------------------------------------------- /src/Sarif.WorkItems/WorkItemsResources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Sarif.WorkItems/WorkItemsResources.resx -------------------------------------------------------------------------------- /src/Sarif/AggregatingArtifactsProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Sarif/AggregatingArtifactsProvider.cs -------------------------------------------------------------------------------- /src/Sarif/AnalyzeContextBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Sarif/AnalyzeContextBase.cs -------------------------------------------------------------------------------- /src/Sarif/ArtifactProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Sarif/ArtifactProvider.cs -------------------------------------------------------------------------------- /src/Sarif/Autogenerated/Address.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Sarif/Autogenerated/Address.cs -------------------------------------------------------------------------------- /src/Sarif/Autogenerated/AddressComparer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Sarif/Autogenerated/AddressComparer.cs -------------------------------------------------------------------------------- /src/Sarif/Autogenerated/AddressEqualityComparer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Sarif/Autogenerated/AddressEqualityComparer.cs -------------------------------------------------------------------------------- /src/Sarif/Autogenerated/Artifact.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Sarif/Autogenerated/Artifact.cs -------------------------------------------------------------------------------- /src/Sarif/Autogenerated/ArtifactChange.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Sarif/Autogenerated/ArtifactChange.cs -------------------------------------------------------------------------------- /src/Sarif/Autogenerated/ArtifactChangeComparer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Sarif/Autogenerated/ArtifactChangeComparer.cs -------------------------------------------------------------------------------- /src/Sarif/Autogenerated/ArtifactComparer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Sarif/Autogenerated/ArtifactComparer.cs -------------------------------------------------------------------------------- /src/Sarif/Autogenerated/ArtifactContent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Sarif/Autogenerated/ArtifactContent.cs -------------------------------------------------------------------------------- /src/Sarif/Autogenerated/ArtifactContentComparer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Sarif/Autogenerated/ArtifactContentComparer.cs -------------------------------------------------------------------------------- /src/Sarif/Autogenerated/ArtifactEqualityComparer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Sarif/Autogenerated/ArtifactEqualityComparer.cs -------------------------------------------------------------------------------- /src/Sarif/Autogenerated/ArtifactLocation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Sarif/Autogenerated/ArtifactLocation.cs -------------------------------------------------------------------------------- /src/Sarif/Autogenerated/ArtifactLocationComparer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Sarif/Autogenerated/ArtifactLocationComparer.cs -------------------------------------------------------------------------------- /src/Sarif/Autogenerated/ArtifactRoles.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Sarif/Autogenerated/ArtifactRoles.cs -------------------------------------------------------------------------------- /src/Sarif/Autogenerated/Attachment.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Sarif/Autogenerated/Attachment.cs -------------------------------------------------------------------------------- /src/Sarif/Autogenerated/AttachmentComparer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Sarif/Autogenerated/AttachmentComparer.cs -------------------------------------------------------------------------------- /src/Sarif/Autogenerated/AttachmentEqualityComparer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Sarif/Autogenerated/AttachmentEqualityComparer.cs -------------------------------------------------------------------------------- /src/Sarif/Autogenerated/BaselineState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Sarif/Autogenerated/BaselineState.cs -------------------------------------------------------------------------------- /src/Sarif/Autogenerated/CodeFlow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Sarif/Autogenerated/CodeFlow.cs -------------------------------------------------------------------------------- /src/Sarif/Autogenerated/CodeFlowComparer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Sarif/Autogenerated/CodeFlowComparer.cs -------------------------------------------------------------------------------- /src/Sarif/Autogenerated/CodeFlowEqualityComparer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Sarif/Autogenerated/CodeFlowEqualityComparer.cs -------------------------------------------------------------------------------- /src/Sarif/Autogenerated/ColumnKind.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Sarif/Autogenerated/ColumnKind.cs -------------------------------------------------------------------------------- /src/Sarif/Autogenerated/ComparerExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Sarif/Autogenerated/ComparerExtensions.cs -------------------------------------------------------------------------------- /src/Sarif/Autogenerated/ConfigurationOverride.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Sarif/Autogenerated/ConfigurationOverride.cs -------------------------------------------------------------------------------- /src/Sarif/Autogenerated/Conversion.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Sarif/Autogenerated/Conversion.cs -------------------------------------------------------------------------------- /src/Sarif/Autogenerated/ConversionComparer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Sarif/Autogenerated/ConversionComparer.cs -------------------------------------------------------------------------------- /src/Sarif/Autogenerated/ConversionEqualityComparer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Sarif/Autogenerated/ConversionEqualityComparer.cs -------------------------------------------------------------------------------- /src/Sarif/Autogenerated/Edge.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Sarif/Autogenerated/Edge.cs -------------------------------------------------------------------------------- /src/Sarif/Autogenerated/EdgeComparer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Sarif/Autogenerated/EdgeComparer.cs -------------------------------------------------------------------------------- /src/Sarif/Autogenerated/EdgeEqualityComparer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Sarif/Autogenerated/EdgeEqualityComparer.cs -------------------------------------------------------------------------------- /src/Sarif/Autogenerated/EdgeTraversal.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Sarif/Autogenerated/EdgeTraversal.cs -------------------------------------------------------------------------------- /src/Sarif/Autogenerated/EdgeTraversalComparer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Sarif/Autogenerated/EdgeTraversalComparer.cs -------------------------------------------------------------------------------- /src/Sarif/Autogenerated/ExceptionData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Sarif/Autogenerated/ExceptionData.cs -------------------------------------------------------------------------------- /src/Sarif/Autogenerated/ExceptionDataComparer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Sarif/Autogenerated/ExceptionDataComparer.cs -------------------------------------------------------------------------------- /src/Sarif/Autogenerated/ExternalProperties.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Sarif/Autogenerated/ExternalProperties.cs -------------------------------------------------------------------------------- /src/Sarif/Autogenerated/ExternalPropertiesComparer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Sarif/Autogenerated/ExternalPropertiesComparer.cs -------------------------------------------------------------------------------- /src/Sarif/Autogenerated/FailureLevel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Sarif/Autogenerated/FailureLevel.cs -------------------------------------------------------------------------------- /src/Sarif/Autogenerated/Fix.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Sarif/Autogenerated/Fix.cs -------------------------------------------------------------------------------- /src/Sarif/Autogenerated/FixComparer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Sarif/Autogenerated/FixComparer.cs -------------------------------------------------------------------------------- /src/Sarif/Autogenerated/FixEqualityComparer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Sarif/Autogenerated/FixEqualityComparer.cs -------------------------------------------------------------------------------- /src/Sarif/Autogenerated/Graph.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Sarif/Autogenerated/Graph.cs -------------------------------------------------------------------------------- /src/Sarif/Autogenerated/GraphComparer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Sarif/Autogenerated/GraphComparer.cs -------------------------------------------------------------------------------- /src/Sarif/Autogenerated/GraphEqualityComparer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Sarif/Autogenerated/GraphEqualityComparer.cs -------------------------------------------------------------------------------- /src/Sarif/Autogenerated/GraphTraversal.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Sarif/Autogenerated/GraphTraversal.cs -------------------------------------------------------------------------------- /src/Sarif/Autogenerated/GraphTraversalComparer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Sarif/Autogenerated/GraphTraversalComparer.cs -------------------------------------------------------------------------------- /src/Sarif/Autogenerated/ISarifNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Sarif/Autogenerated/ISarifNode.cs -------------------------------------------------------------------------------- /src/Sarif/Autogenerated/Invocation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Sarif/Autogenerated/Invocation.cs -------------------------------------------------------------------------------- /src/Sarif/Autogenerated/InvocationComparer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Sarif/Autogenerated/InvocationComparer.cs -------------------------------------------------------------------------------- /src/Sarif/Autogenerated/InvocationEqualityComparer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Sarif/Autogenerated/InvocationEqualityComparer.cs -------------------------------------------------------------------------------- /src/Sarif/Autogenerated/Location.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Sarif/Autogenerated/Location.cs -------------------------------------------------------------------------------- /src/Sarif/Autogenerated/LocationComparer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Sarif/Autogenerated/LocationComparer.cs -------------------------------------------------------------------------------- /src/Sarif/Autogenerated/LocationEqualityComparer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Sarif/Autogenerated/LocationEqualityComparer.cs -------------------------------------------------------------------------------- /src/Sarif/Autogenerated/LocationRelationship.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Sarif/Autogenerated/LocationRelationship.cs -------------------------------------------------------------------------------- /src/Sarif/Autogenerated/LogicalLocation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Sarif/Autogenerated/LogicalLocation.cs -------------------------------------------------------------------------------- /src/Sarif/Autogenerated/LogicalLocationComparer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Sarif/Autogenerated/LogicalLocationComparer.cs -------------------------------------------------------------------------------- /src/Sarif/Autogenerated/Message.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Sarif/Autogenerated/Message.cs -------------------------------------------------------------------------------- /src/Sarif/Autogenerated/MessageComparer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Sarif/Autogenerated/MessageComparer.cs -------------------------------------------------------------------------------- /src/Sarif/Autogenerated/MessageEqualityComparer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Sarif/Autogenerated/MessageEqualityComparer.cs -------------------------------------------------------------------------------- /src/Sarif/Autogenerated/MultiformatMessageString.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Sarif/Autogenerated/MultiformatMessageString.cs -------------------------------------------------------------------------------- /src/Sarif/Autogenerated/Node.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Sarif/Autogenerated/Node.cs -------------------------------------------------------------------------------- /src/Sarif/Autogenerated/NodeComparer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Sarif/Autogenerated/NodeComparer.cs -------------------------------------------------------------------------------- /src/Sarif/Autogenerated/NodeEqualityComparer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Sarif/Autogenerated/NodeEqualityComparer.cs -------------------------------------------------------------------------------- /src/Sarif/Autogenerated/Notification.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Sarif/Autogenerated/Notification.cs -------------------------------------------------------------------------------- /src/Sarif/Autogenerated/NotificationComparer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Sarif/Autogenerated/NotificationComparer.cs -------------------------------------------------------------------------------- /src/Sarif/Autogenerated/PhysicalLocation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Sarif/Autogenerated/PhysicalLocation.cs -------------------------------------------------------------------------------- /src/Sarif/Autogenerated/PhysicalLocationComparer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Sarif/Autogenerated/PhysicalLocationComparer.cs -------------------------------------------------------------------------------- /src/Sarif/Autogenerated/PropertyBag.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Sarif/Autogenerated/PropertyBag.cs -------------------------------------------------------------------------------- /src/Sarif/Autogenerated/PropertyBagComparer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Sarif/Autogenerated/PropertyBagComparer.cs -------------------------------------------------------------------------------- /src/Sarif/Autogenerated/PropertyBagEqualityComparer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Sarif/Autogenerated/PropertyBagEqualityComparer.cs -------------------------------------------------------------------------------- /src/Sarif/Autogenerated/Rectangle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Sarif/Autogenerated/Rectangle.cs -------------------------------------------------------------------------------- /src/Sarif/Autogenerated/RectangleComparer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Sarif/Autogenerated/RectangleComparer.cs -------------------------------------------------------------------------------- /src/Sarif/Autogenerated/RectangleEqualityComparer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Sarif/Autogenerated/RectangleEqualityComparer.cs -------------------------------------------------------------------------------- /src/Sarif/Autogenerated/Region.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Sarif/Autogenerated/Region.cs -------------------------------------------------------------------------------- /src/Sarif/Autogenerated/RegionComparer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Sarif/Autogenerated/RegionComparer.cs -------------------------------------------------------------------------------- /src/Sarif/Autogenerated/RegionEqualityComparer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Sarif/Autogenerated/RegionEqualityComparer.cs -------------------------------------------------------------------------------- /src/Sarif/Autogenerated/Replacement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Sarif/Autogenerated/Replacement.cs -------------------------------------------------------------------------------- /src/Sarif/Autogenerated/ReplacementComparer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Sarif/Autogenerated/ReplacementComparer.cs -------------------------------------------------------------------------------- /src/Sarif/Autogenerated/ReplacementEqualityComparer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Sarif/Autogenerated/ReplacementEqualityComparer.cs -------------------------------------------------------------------------------- /src/Sarif/Autogenerated/ReportingConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Sarif/Autogenerated/ReportingConfiguration.cs -------------------------------------------------------------------------------- /src/Sarif/Autogenerated/ReportingDescriptor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Sarif/Autogenerated/ReportingDescriptor.cs -------------------------------------------------------------------------------- /src/Sarif/Autogenerated/ReportingDescriptorComparer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Sarif/Autogenerated/ReportingDescriptorComparer.cs -------------------------------------------------------------------------------- /src/Sarif/Autogenerated/Result.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Sarif/Autogenerated/Result.cs -------------------------------------------------------------------------------- /src/Sarif/Autogenerated/ResultComparer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Sarif/Autogenerated/ResultComparer.cs -------------------------------------------------------------------------------- /src/Sarif/Autogenerated/ResultEqualityComparer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Sarif/Autogenerated/ResultEqualityComparer.cs -------------------------------------------------------------------------------- /src/Sarif/Autogenerated/ResultKind.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Sarif/Autogenerated/ResultKind.cs -------------------------------------------------------------------------------- /src/Sarif/Autogenerated/ResultProvenance.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Sarif/Autogenerated/ResultProvenance.cs -------------------------------------------------------------------------------- /src/Sarif/Autogenerated/ResultProvenanceComparer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Sarif/Autogenerated/ResultProvenanceComparer.cs -------------------------------------------------------------------------------- /src/Sarif/Autogenerated/Run.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Sarif/Autogenerated/Run.cs -------------------------------------------------------------------------------- /src/Sarif/Autogenerated/RunAutomationDetails.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Sarif/Autogenerated/RunAutomationDetails.cs -------------------------------------------------------------------------------- /src/Sarif/Autogenerated/RunComparer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Sarif/Autogenerated/RunComparer.cs -------------------------------------------------------------------------------- /src/Sarif/Autogenerated/RunEqualityComparer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Sarif/Autogenerated/RunEqualityComparer.cs -------------------------------------------------------------------------------- /src/Sarif/Autogenerated/SarifLog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Sarif/Autogenerated/SarifLog.cs -------------------------------------------------------------------------------- /src/Sarif/Autogenerated/SarifLogComparer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Sarif/Autogenerated/SarifLogComparer.cs -------------------------------------------------------------------------------- /src/Sarif/Autogenerated/SarifLogEqualityComparer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Sarif/Autogenerated/SarifLogEqualityComparer.cs -------------------------------------------------------------------------------- /src/Sarif/Autogenerated/SarifNodeKind.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Sarif/Autogenerated/SarifNodeKind.cs -------------------------------------------------------------------------------- /src/Sarif/Autogenerated/SarifRewritingVisitor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Sarif/Autogenerated/SarifRewritingVisitor.cs -------------------------------------------------------------------------------- /src/Sarif/Autogenerated/SarifVersion.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Sarif/Autogenerated/SarifVersion.cs -------------------------------------------------------------------------------- /src/Sarif/Autogenerated/SpecialLocations.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Sarif/Autogenerated/SpecialLocations.cs -------------------------------------------------------------------------------- /src/Sarif/Autogenerated/SpecialLocationsComparer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Sarif/Autogenerated/SpecialLocationsComparer.cs -------------------------------------------------------------------------------- /src/Sarif/Autogenerated/Stack.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Sarif/Autogenerated/Stack.cs -------------------------------------------------------------------------------- /src/Sarif/Autogenerated/StackComparer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Sarif/Autogenerated/StackComparer.cs -------------------------------------------------------------------------------- /src/Sarif/Autogenerated/StackEqualityComparer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Sarif/Autogenerated/StackEqualityComparer.cs -------------------------------------------------------------------------------- /src/Sarif/Autogenerated/StackFrame.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Sarif/Autogenerated/StackFrame.cs -------------------------------------------------------------------------------- /src/Sarif/Autogenerated/StackFrameComparer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Sarif/Autogenerated/StackFrameComparer.cs -------------------------------------------------------------------------------- /src/Sarif/Autogenerated/StackFrameEqualityComparer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Sarif/Autogenerated/StackFrameEqualityComparer.cs -------------------------------------------------------------------------------- /src/Sarif/Autogenerated/Suppression.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Sarif/Autogenerated/Suppression.cs -------------------------------------------------------------------------------- /src/Sarif/Autogenerated/SuppressionComparer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Sarif/Autogenerated/SuppressionComparer.cs -------------------------------------------------------------------------------- /src/Sarif/Autogenerated/SuppressionEqualityComparer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Sarif/Autogenerated/SuppressionEqualityComparer.cs -------------------------------------------------------------------------------- /src/Sarif/Autogenerated/SuppressionKind.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Sarif/Autogenerated/SuppressionKind.cs -------------------------------------------------------------------------------- /src/Sarif/Autogenerated/SuppressionStatus.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Sarif/Autogenerated/SuppressionStatus.cs -------------------------------------------------------------------------------- /src/Sarif/Autogenerated/ThreadFlow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Sarif/Autogenerated/ThreadFlow.cs -------------------------------------------------------------------------------- /src/Sarif/Autogenerated/ThreadFlowComparer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Sarif/Autogenerated/ThreadFlowComparer.cs -------------------------------------------------------------------------------- /src/Sarif/Autogenerated/ThreadFlowEqualityComparer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Sarif/Autogenerated/ThreadFlowEqualityComparer.cs -------------------------------------------------------------------------------- /src/Sarif/Autogenerated/ThreadFlowLocation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Sarif/Autogenerated/ThreadFlowLocation.cs -------------------------------------------------------------------------------- /src/Sarif/Autogenerated/ThreadFlowLocationComparer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Sarif/Autogenerated/ThreadFlowLocationComparer.cs -------------------------------------------------------------------------------- /src/Sarif/Autogenerated/Tool.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Sarif/Autogenerated/Tool.cs -------------------------------------------------------------------------------- /src/Sarif/Autogenerated/ToolComparer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Sarif/Autogenerated/ToolComparer.cs -------------------------------------------------------------------------------- /src/Sarif/Autogenerated/ToolComponent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Sarif/Autogenerated/ToolComponent.cs -------------------------------------------------------------------------------- /src/Sarif/Autogenerated/ToolComponentComparer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Sarif/Autogenerated/ToolComponentComparer.cs -------------------------------------------------------------------------------- /src/Sarif/Autogenerated/ToolComponentContents.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Sarif/Autogenerated/ToolComponentContents.cs -------------------------------------------------------------------------------- /src/Sarif/Autogenerated/ToolComponentReference.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Sarif/Autogenerated/ToolComponentReference.cs -------------------------------------------------------------------------------- /src/Sarif/Autogenerated/ToolEqualityComparer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Sarif/Autogenerated/ToolEqualityComparer.cs -------------------------------------------------------------------------------- /src/Sarif/Autogenerated/TranslationMetadata.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Sarif/Autogenerated/TranslationMetadata.cs -------------------------------------------------------------------------------- /src/Sarif/Autogenerated/TranslationMetadataComparer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Sarif/Autogenerated/TranslationMetadataComparer.cs -------------------------------------------------------------------------------- /src/Sarif/Autogenerated/VersionControlDetails.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Sarif/Autogenerated/VersionControlDetails.cs -------------------------------------------------------------------------------- /src/Sarif/Autogenerated/WebRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Sarif/Autogenerated/WebRequest.cs -------------------------------------------------------------------------------- /src/Sarif/Autogenerated/WebRequestComparer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Sarif/Autogenerated/WebRequestComparer.cs -------------------------------------------------------------------------------- /src/Sarif/Autogenerated/WebRequestEqualityComparer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Sarif/Autogenerated/WebRequestEqualityComparer.cs -------------------------------------------------------------------------------- /src/Sarif/Autogenerated/WebResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Sarif/Autogenerated/WebResponse.cs -------------------------------------------------------------------------------- /src/Sarif/Autogenerated/WebResponseComparer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Sarif/Autogenerated/WebResponseComparer.cs -------------------------------------------------------------------------------- /src/Sarif/Autogenerated/WebResponseEqualityComparer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Sarif/Autogenerated/WebResponseEqualityComparer.cs -------------------------------------------------------------------------------- /src/Sarif/Baseline/ISarifLogBaseliner.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Sarif/Baseline/ISarifLogBaseliner.cs -------------------------------------------------------------------------------- /src/Sarif/Baseline/ResultMatching/IResultMatcher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Sarif/Baseline/ResultMatching/IResultMatcher.cs -------------------------------------------------------------------------------- /src/Sarif/Baseline/ResultMatching/ISarifLogMatcher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Sarif/Baseline/ResultMatching/ISarifLogMatcher.cs -------------------------------------------------------------------------------- /src/Sarif/Baseline/SarifBaselineType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Sarif/Baseline/SarifBaselineType.cs -------------------------------------------------------------------------------- /src/Sarif/Baseline/SarifLogBaseliner.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Sarif/Baseline/SarifLogBaseliner.cs -------------------------------------------------------------------------------- /src/Sarif/Baseline/SarifLogBaselinerFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Sarif/Baseline/SarifLogBaselinerFactory.cs -------------------------------------------------------------------------------- /src/Sarif/Baseline/V2/ResultMatchingComparer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Sarif/Baseline/V2/ResultMatchingComparer.cs -------------------------------------------------------------------------------- /src/Sarif/Baseline/V2/TrustMap.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Sarif/Baseline/V2/TrustMap.cs -------------------------------------------------------------------------------- /src/Sarif/Baseline/V2/V2ResultMatcher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Sarif/Baseline/V2/V2ResultMatcher.cs -------------------------------------------------------------------------------- /src/Sarif/Baseline/V2/WhatComparer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Sarif/Baseline/V2/WhatComparer.cs -------------------------------------------------------------------------------- /src/Sarif/Baseline/V2/WhatComponent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Sarif/Baseline/V2/WhatComponent.cs -------------------------------------------------------------------------------- /src/Sarif/Baseline/V2/WhatMap.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Sarif/Baseline/V2/WhatMap.cs -------------------------------------------------------------------------------- /src/Sarif/Baseline/V2/WhereComparer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Sarif/Baseline/V2/WhereComparer.cs -------------------------------------------------------------------------------- /src/Sarif/BlameHunk.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Sarif/BlameHunk.cs -------------------------------------------------------------------------------- /src/Sarif/Cache.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Sarif/Cache.cs -------------------------------------------------------------------------------- /src/Sarif/CodeGenHints.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Sarif/CodeGenHints.json -------------------------------------------------------------------------------- /src/Sarif/ConsoleStreamCapture.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Sarif/ConsoleStreamCapture.cs -------------------------------------------------------------------------------- /src/Sarif/CopyrightNotice.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Sarif/CopyrightNotice.txt -------------------------------------------------------------------------------- /src/Sarif/Core/Artifact.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Sarif/Core/Artifact.cs -------------------------------------------------------------------------------- /src/Sarif/Core/ArtifactLocation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Sarif/Core/ArtifactLocation.cs -------------------------------------------------------------------------------- /src/Sarif/Core/CodeFlow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Sarif/Core/CodeFlow.cs -------------------------------------------------------------------------------- /src/Sarif/Core/ExceptionData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Sarif/Core/ExceptionData.cs -------------------------------------------------------------------------------- /src/Sarif/Core/IPropertyBagHolder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Sarif/Core/IPropertyBagHolder.cs -------------------------------------------------------------------------------- /src/Sarif/Core/Invocation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Sarif/Core/Invocation.cs -------------------------------------------------------------------------------- /src/Sarif/Core/Location.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Sarif/Core/Location.cs -------------------------------------------------------------------------------- /src/Sarif/Core/LogicalLocation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Sarif/Core/LogicalLocation.cs -------------------------------------------------------------------------------- /src/Sarif/Core/Message.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Sarif/Core/Message.cs -------------------------------------------------------------------------------- /src/Sarif/Core/MultiformatMessageString.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Sarif/Core/MultiformatMessageString.cs -------------------------------------------------------------------------------- /src/Sarif/Core/Notification.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Sarif/Core/Notification.cs -------------------------------------------------------------------------------- /src/Sarif/Core/PropertyBagHolder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Sarif/Core/PropertyBagHolder.cs -------------------------------------------------------------------------------- /src/Sarif/Core/Region.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Sarif/Core/Region.cs -------------------------------------------------------------------------------- /src/Sarif/Core/ReportingConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Sarif/Core/ReportingConfiguration.cs -------------------------------------------------------------------------------- /src/Sarif/Core/ReportingDescriptor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Sarif/Core/ReportingDescriptor.cs -------------------------------------------------------------------------------- /src/Sarif/Core/Result.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Sarif/Core/Result.cs -------------------------------------------------------------------------------- /src/Sarif/Core/ResultLevelKind.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Sarif/Core/ResultLevelKind.cs -------------------------------------------------------------------------------- /src/Sarif/Core/Run.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Sarif/Core/Run.cs -------------------------------------------------------------------------------- /src/Sarif/Core/RunAutomationDetails.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Sarif/Core/RunAutomationDetails.cs -------------------------------------------------------------------------------- /src/Sarif/Core/SarifLog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Sarif/Core/SarifLog.cs -------------------------------------------------------------------------------- /src/Sarif/Core/SerializedPropertyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Sarif/Core/SerializedPropertyInfo.cs -------------------------------------------------------------------------------- /src/Sarif/Core/SerializedPropertyInfoComparer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Sarif/Core/SerializedPropertyInfoComparer.cs -------------------------------------------------------------------------------- /src/Sarif/Core/Stack.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Sarif/Core/Stack.cs -------------------------------------------------------------------------------- /src/Sarif/Core/StackFrame.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Sarif/Core/StackFrame.cs -------------------------------------------------------------------------------- /src/Sarif/Core/Tags.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Sarif/Core/Tags.cs -------------------------------------------------------------------------------- /src/Sarif/Core/ThreadFlow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Sarif/Core/ThreadFlow.cs -------------------------------------------------------------------------------- /src/Sarif/Core/ThreadflowLocation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Sarif/Core/ThreadflowLocation.cs -------------------------------------------------------------------------------- /src/Sarif/Core/Tool.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Sarif/Core/Tool.cs -------------------------------------------------------------------------------- /src/Sarif/Core/ToolComponent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Sarif/Core/ToolComponent.cs -------------------------------------------------------------------------------- /src/Sarif/Core/ToolComponentReference.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Sarif/Core/ToolComponentReference.cs -------------------------------------------------------------------------------- /src/Sarif/Core/WebMessageUtilities.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Sarif/Core/WebMessageUtilities.cs -------------------------------------------------------------------------------- /src/Sarif/Core/WebRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Sarif/Core/WebRequest.cs -------------------------------------------------------------------------------- /src/Sarif/Core/WebResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Sarif/Core/WebResponse.cs -------------------------------------------------------------------------------- /src/Sarif/CustomDictionary.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Sarif/CustomDictionary.xml -------------------------------------------------------------------------------- /src/Sarif/DefaultTraces.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Sarif/DefaultTraces.cs -------------------------------------------------------------------------------- /src/Sarif/EnumeratedArtifact.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Sarif/EnumeratedArtifact.cs -------------------------------------------------------------------------------- /src/Sarif/Errors.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Sarif/Errors.cs -------------------------------------------------------------------------------- /src/Sarif/ExternalProcess.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Sarif/ExternalProcess.cs -------------------------------------------------------------------------------- /src/Sarif/FailureLevelSet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Sarif/FailureLevelSet.cs -------------------------------------------------------------------------------- /src/Sarif/FileEncoding.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Sarif/FileEncoding.cs -------------------------------------------------------------------------------- /src/Sarif/FileRegionsCache.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Sarif/FileRegionsCache.cs -------------------------------------------------------------------------------- /src/Sarif/FileSearcherHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Sarif/FileSearcherHelper.cs -------------------------------------------------------------------------------- /src/Sarif/FileSystem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Sarif/FileSystem.cs -------------------------------------------------------------------------------- /src/Sarif/FilteringStrategies.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Sarif/FilteringStrategies.cs -------------------------------------------------------------------------------- /src/Sarif/GitHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Sarif/GitHelper.cs -------------------------------------------------------------------------------- /src/Sarif/GlobalSuppressions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Sarif/GlobalSuppressions.cs -------------------------------------------------------------------------------- /src/Sarif/HashData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Sarif/HashData.cs -------------------------------------------------------------------------------- /src/Sarif/HashUtilities.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Sarif/HashUtilities.cs -------------------------------------------------------------------------------- /src/Sarif/HttpClientWrapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Sarif/HttpClientWrapper.cs -------------------------------------------------------------------------------- /src/Sarif/IAnalysisContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Sarif/IAnalysisContext.cs -------------------------------------------------------------------------------- /src/Sarif/IAnalysisLogger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Sarif/IAnalysisLogger.cs -------------------------------------------------------------------------------- /src/Sarif/IArtifactProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Sarif/IArtifactProvider.cs -------------------------------------------------------------------------------- /src/Sarif/IBlameHunk.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Sarif/IBlameHunk.cs -------------------------------------------------------------------------------- /src/Sarif/IConsoleCapture.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Sarif/IConsoleCapture.cs -------------------------------------------------------------------------------- /src/Sarif/IEnumeratedArtifact.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Sarif/IEnumeratedArtifact.cs -------------------------------------------------------------------------------- /src/Sarif/IFileSystem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Sarif/IFileSystem.cs -------------------------------------------------------------------------------- /src/Sarif/IHttpClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Sarif/IHttpClient.cs -------------------------------------------------------------------------------- /src/Sarif/IOption.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Sarif/IOption.cs -------------------------------------------------------------------------------- /src/Sarif/IOptionsProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Sarif/IOptionsProvider.cs -------------------------------------------------------------------------------- /src/Sarif/IResultLogWriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Sarif/IResultLogWriter.cs -------------------------------------------------------------------------------- /src/Sarif/IToolFileConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Sarif/IToolFileConverter.cs -------------------------------------------------------------------------------- /src/Sarif/IntegerSet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Sarif/IntegerSet.cs -------------------------------------------------------------------------------- /src/Sarif/LineInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Sarif/LineInfo.cs -------------------------------------------------------------------------------- /src/Sarif/LogicalLocationKind.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Sarif/LogicalLocationKind.cs -------------------------------------------------------------------------------- /src/Sarif/Map/JsonMapBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Sarif/Map/JsonMapBuilder.cs -------------------------------------------------------------------------------- /src/Sarif/Map/JsonMapNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Sarif/Map/JsonMapNode.cs -------------------------------------------------------------------------------- /src/Sarif/Map/JsonMapSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Sarif/Map/JsonMapSettings.cs -------------------------------------------------------------------------------- /src/Sarif/Map/LongArrayDeltaConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Sarif/Map/LongArrayDeltaConverter.cs -------------------------------------------------------------------------------- /src/Sarif/MessageUtilities.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Sarif/MessageUtilities.cs -------------------------------------------------------------------------------- /src/Sarif/MultiplyByPrimesHash.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Sarif/MultiplyByPrimesHash.cs -------------------------------------------------------------------------------- /src/Sarif/MultithreadedZipArchiveArtifactProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Sarif/MultithreadedZipArchiveArtifactProvider.cs -------------------------------------------------------------------------------- /src/Sarif/NewLineIndex.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Sarif/NewLineIndex.cs -------------------------------------------------------------------------------- /src/Sarif/NotYetAutoGenerated/Address.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Sarif/NotYetAutoGenerated/Address.cs -------------------------------------------------------------------------------- /src/Sarif/NotYetAutoGenerated/Invocation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Sarif/NotYetAutoGenerated/Invocation.cs -------------------------------------------------------------------------------- /src/Sarif/NotYetAutoGenerated/Location.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Sarif/NotYetAutoGenerated/Location.cs -------------------------------------------------------------------------------- /src/Sarif/NotYetAutoGenerated/ReportingDescriptor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Sarif/NotYetAutoGenerated/ReportingDescriptor.cs -------------------------------------------------------------------------------- /src/Sarif/NotYetAutoGenerated/Result.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Sarif/NotYetAutoGenerated/Result.cs -------------------------------------------------------------------------------- /src/Sarif/NotYetAutoGenerated/Run.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Sarif/NotYetAutoGenerated/Run.cs -------------------------------------------------------------------------------- /src/Sarif/NotYetAutoGenerated/SarifLog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Sarif/NotYetAutoGenerated/SarifLog.cs -------------------------------------------------------------------------------- /src/Sarif/Notes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Sarif/Notes.cs -------------------------------------------------------------------------------- /src/Sarif/Numeric/Long.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Sarif/Numeric/Long.cs -------------------------------------------------------------------------------- /src/Sarif/OffsetInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Sarif/OffsetInfo.cs -------------------------------------------------------------------------------- /src/Sarif/OptionallyEmittedData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Sarif/OptionallyEmittedData.cs -------------------------------------------------------------------------------- /src/Sarif/OrderSensitiveValueComparisonList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Sarif/OrderSensitiveValueComparisonList.cs -------------------------------------------------------------------------------- /src/Sarif/PeekableStream.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Sarif/PeekableStream.cs -------------------------------------------------------------------------------- /src/Sarif/PerLanguageOption.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Sarif/PerLanguageOption.cs -------------------------------------------------------------------------------- /src/Sarif/Processors/Generic/GenericActionPipeline.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Sarif/Processors/Generic/GenericActionPipeline.cs -------------------------------------------------------------------------------- /src/Sarif/Processors/Generic/GenericFoldAction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Sarif/Processors/Generic/GenericFoldAction.cs -------------------------------------------------------------------------------- /src/Sarif/Processors/Generic/GenericMappingAction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Sarif/Processors/Generic/GenericMappingAction.cs -------------------------------------------------------------------------------- /src/Sarif/Processors/Generic/IFoldAction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Sarif/Processors/Generic/IFoldAction.cs -------------------------------------------------------------------------------- /src/Sarif/Processors/Generic/IGenericAction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Sarif/Processors/Generic/IGenericAction.cs -------------------------------------------------------------------------------- /src/Sarif/Processors/Generic/IMapAction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Sarif/Processors/Generic/IMapAction.cs -------------------------------------------------------------------------------- /src/Sarif/Processors/Log/SarifLogActionTuple.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Sarif/Processors/Log/SarifLogActionTuple.cs -------------------------------------------------------------------------------- /src/Sarif/Processors/Log/SarifLogActions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Sarif/Processors/Log/SarifLogActions.cs -------------------------------------------------------------------------------- /src/Sarif/Processors/Log/SarifLogExtensionMethods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Sarif/Processors/Log/SarifLogExtensionMethods.cs -------------------------------------------------------------------------------- /src/Sarif/Processors/Log/SarifLogPipeline.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Sarif/Processors/Log/SarifLogPipeline.cs -------------------------------------------------------------------------------- /src/Sarif/Processors/Log/SarifLogStageFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Sarif/Processors/Log/SarifLogStageFactory.cs -------------------------------------------------------------------------------- /src/Sarif/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Sarif/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/Sarif/PropertiesDictionary.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Sarif/PropertiesDictionary.cs -------------------------------------------------------------------------------- /src/Sarif/PropertiesDictionaryExtensionMethods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Sarif/PropertiesDictionaryExtensionMethods.cs -------------------------------------------------------------------------------- /src/Sarif/Query/BitArrayExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Sarif/Query/BitArrayExtensions.cs -------------------------------------------------------------------------------- /src/Sarif/Query/CompareOperator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Sarif/Query/CompareOperator.cs -------------------------------------------------------------------------------- /src/Sarif/Query/Evaluators/BoolEvaluator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Sarif/Query/Evaluators/BoolEvaluator.cs -------------------------------------------------------------------------------- /src/Sarif/Query/Evaluators/DateTimeEvaluator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Sarif/Query/Evaluators/DateTimeEvaluator.cs -------------------------------------------------------------------------------- /src/Sarif/Query/Evaluators/DoubleEvaluator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Sarif/Query/Evaluators/DoubleEvaluator.cs -------------------------------------------------------------------------------- /src/Sarif/Query/Evaluators/EnumEvaluator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Sarif/Query/Evaluators/EnumEvaluator.cs -------------------------------------------------------------------------------- /src/Sarif/Query/Evaluators/EvaluatorFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Sarif/Query/Evaluators/EvaluatorFactory.cs -------------------------------------------------------------------------------- /src/Sarif/Query/Evaluators/ExpressionEvaluators.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Sarif/Query/Evaluators/ExpressionEvaluators.cs -------------------------------------------------------------------------------- /src/Sarif/Query/Evaluators/IExpressionEvaluator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Sarif/Query/Evaluators/IExpressionEvaluator.cs -------------------------------------------------------------------------------- /src/Sarif/Query/Evaluators/LongEvaluator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Sarif/Query/Evaluators/LongEvaluator.cs -------------------------------------------------------------------------------- /src/Sarif/Query/Evaluators/SarifEvaluators.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Sarif/Query/Evaluators/SarifEvaluators.cs -------------------------------------------------------------------------------- /src/Sarif/Query/Evaluators/SetEvaluator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Sarif/Query/Evaluators/SetEvaluator.cs -------------------------------------------------------------------------------- /src/Sarif/Query/Evaluators/StringEvaluator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Sarif/Query/Evaluators/StringEvaluator.cs -------------------------------------------------------------------------------- /src/Sarif/Query/ExpressionParser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Sarif/Query/ExpressionParser.cs -------------------------------------------------------------------------------- /src/Sarif/Query/Expressions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Sarif/Query/Expressions.cs -------------------------------------------------------------------------------- /src/Sarif/Query/IExpression.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Sarif/Query/IExpression.cs -------------------------------------------------------------------------------- /src/Sarif/Query/QueryParseException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Sarif/Query/QueryParseException.cs -------------------------------------------------------------------------------- /src/Sarif/Query/StringSlice.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Sarif/Query/StringSlice.cs -------------------------------------------------------------------------------- /src/Sarif/Readers/DateTimeConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Sarif/Readers/DateTimeConverter.cs -------------------------------------------------------------------------------- /src/Sarif/Readers/DeferredDictionary.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Sarif/Readers/DeferredDictionary.cs -------------------------------------------------------------------------------- /src/Sarif/Readers/DeferredDictionaryConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Sarif/Readers/DeferredDictionaryConverter.cs -------------------------------------------------------------------------------- /src/Sarif/Readers/DeferredList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Sarif/Readers/DeferredList.cs -------------------------------------------------------------------------------- /src/Sarif/Readers/DeferredListConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Sarif/Readers/DeferredListConverter.cs -------------------------------------------------------------------------------- /src/Sarif/Readers/EnumConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Sarif/Readers/EnumConverter.cs -------------------------------------------------------------------------------- /src/Sarif/Readers/FlagsEnumConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Sarif/Readers/FlagsEnumConverter.cs -------------------------------------------------------------------------------- /src/Sarif/Readers/JsonInnerTextReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Sarif/Readers/JsonInnerTextReader.cs -------------------------------------------------------------------------------- /src/Sarif/Readers/JsonPositionedTextReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Sarif/Readers/JsonPositionedTextReader.cs -------------------------------------------------------------------------------- /src/Sarif/Readers/LineMappingStreamReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Sarif/Readers/LineMappingStreamReader.cs -------------------------------------------------------------------------------- /src/Sarif/Readers/NonDisposingDelegatingStream.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Sarif/Readers/NonDisposingDelegatingStream.cs -------------------------------------------------------------------------------- /src/Sarif/Readers/OverflowCorrector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Sarif/Readers/OverflowCorrector.cs -------------------------------------------------------------------------------- /src/Sarif/Readers/PropertyBagConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Sarif/Readers/PropertyBagConverter.cs -------------------------------------------------------------------------------- /src/Sarif/Readers/ResultDiffingVisitor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Sarif/Readers/ResultDiffingVisitor.cs -------------------------------------------------------------------------------- /src/Sarif/Readers/SarifContractResolver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Sarif/Readers/SarifContractResolver.cs -------------------------------------------------------------------------------- /src/Sarif/Readers/SarifDeferredContractResolver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Sarif/Readers/SarifDeferredContractResolver.cs -------------------------------------------------------------------------------- /src/Sarif/Readers/SarifVersionConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Sarif/Readers/SarifVersionConverter.cs -------------------------------------------------------------------------------- /src/Sarif/Readers/SerializedPropertyInfoConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Sarif/Readers/SerializedPropertyInfoConverter.cs -------------------------------------------------------------------------------- /src/Sarif/Readers/UriConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Sarif/Readers/UriConverter.cs -------------------------------------------------------------------------------- /src/Sarif/Readers/VersionConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Sarif/Readers/VersionConverter.cs -------------------------------------------------------------------------------- /src/Sarif/ResultKindSet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Sarif/ResultKindSet.cs -------------------------------------------------------------------------------- /src/Sarif/RuleKind.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Sarif/RuleKind.cs -------------------------------------------------------------------------------- /src/Sarif/RuleKindSet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Sarif/RuleKindSet.cs -------------------------------------------------------------------------------- /src/Sarif/RuleUtilities.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Sarif/RuleUtilities.cs -------------------------------------------------------------------------------- /src/Sarif/RuntimeConditions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Sarif/RuntimeConditions.cs -------------------------------------------------------------------------------- /src/Sarif/Sarif.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Sarif/Sarif.csproj -------------------------------------------------------------------------------- /src/Sarif/Sarif.ruleset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Sarif/Sarif.ruleset -------------------------------------------------------------------------------- /src/Sarif/SarifConstants.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Sarif/SarifConstants.cs -------------------------------------------------------------------------------- /src/Sarif/SarifExtensionMethods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Sarif/SarifExtensionMethods.cs -------------------------------------------------------------------------------- /src/Sarif/SarifUtilities.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Sarif/SarifUtilities.cs -------------------------------------------------------------------------------- /src/Sarif/Schemata/Sarif-1.0.0.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Sarif/Schemata/Sarif-1.0.0.schema.json -------------------------------------------------------------------------------- /src/Sarif/Schemata/sarif-2.1.0-rtm.5.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Sarif/Schemata/sarif-2.1.0-rtm.5.json -------------------------------------------------------------------------------- /src/Sarif/Schemata/sarif-2.1.0-rtm.6.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Sarif/Schemata/sarif-2.1.0-rtm.6.json -------------------------------------------------------------------------------- /src/Sarif/SdkResources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Sarif/SdkResources.Designer.cs -------------------------------------------------------------------------------- /src/Sarif/SdkResources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Sarif/SdkResources.resx -------------------------------------------------------------------------------- /src/Sarif/SinglethreadedZipArchiveArtifactProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Sarif/SinglethreadedZipArchiveArtifactProvider.cs -------------------------------------------------------------------------------- /src/Sarif/SplittingStrategy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Sarif/SplittingStrategy.cs -------------------------------------------------------------------------------- /src/Sarif/StringSet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Sarif/StringSet.cs -------------------------------------------------------------------------------- /src/Sarif/StringToVersionMap.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Sarif/StringToVersionMap.cs -------------------------------------------------------------------------------- /src/Sarif/SupportedPlatform.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Sarif/SupportedPlatform.cs -------------------------------------------------------------------------------- /src/Sarif/ToDotNet/ToDotNet.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Sarif/ToDotNet/ToDotNet.targets -------------------------------------------------------------------------------- /src/Sarif/ToDotNet/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Sarif/ToDotNet/packages.config -------------------------------------------------------------------------------- /src/Sarif/TypedPropertiesDictionary.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Sarif/TypedPropertiesDictionary.cs -------------------------------------------------------------------------------- /src/Sarif/TypedPropertiesDictionaryConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Sarif/TypedPropertiesDictionaryConverter.cs -------------------------------------------------------------------------------- /src/Sarif/UriHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Sarif/UriHelper.cs -------------------------------------------------------------------------------- /src/Sarif/UriUtilities.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Sarif/UriUtilities.cs -------------------------------------------------------------------------------- /src/Sarif/VersionConstants.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Sarif/VersionConstants.cs -------------------------------------------------------------------------------- /src/Sarif/VersionOne/Autogenerated/FixVersionOne.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Sarif/VersionOne/Autogenerated/FixVersionOne.cs -------------------------------------------------------------------------------- /src/Sarif/VersionOne/Autogenerated/HashVersionOne.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Sarif/VersionOne/Autogenerated/HashVersionOne.cs -------------------------------------------------------------------------------- /src/Sarif/VersionOne/Autogenerated/RegionVersionOne.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Sarif/VersionOne/Autogenerated/RegionVersionOne.cs -------------------------------------------------------------------------------- /src/Sarif/VersionOne/Autogenerated/ResultVersionOne.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Sarif/VersionOne/Autogenerated/ResultVersionOne.cs -------------------------------------------------------------------------------- /src/Sarif/VersionOne/Autogenerated/RuleVersionOne.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Sarif/VersionOne/Autogenerated/RuleVersionOne.cs -------------------------------------------------------------------------------- /src/Sarif/VersionOne/Autogenerated/RunVersionOne.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Sarif/VersionOne/Autogenerated/RunVersionOne.cs -------------------------------------------------------------------------------- /src/Sarif/VersionOne/Autogenerated/StackVersionOne.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Sarif/VersionOne/Autogenerated/StackVersionOne.cs -------------------------------------------------------------------------------- /src/Sarif/VersionOne/Autogenerated/ToolVersionOne.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Sarif/VersionOne/Autogenerated/ToolVersionOne.cs -------------------------------------------------------------------------------- /src/Sarif/VersionOne/Core/IRuleVersionOne.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Sarif/VersionOne/Core/IRuleVersionOne.cs -------------------------------------------------------------------------------- /src/Sarif/VersionOne/Core/TagsCollectionVersionOne.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Sarif/VersionOne/Core/TagsCollectionVersionOne.cs -------------------------------------------------------------------------------- /src/Sarif/VersionOne/SarifUtilitiesVersionOne.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Sarif/VersionOne/SarifUtilitiesVersionOne.cs -------------------------------------------------------------------------------- /src/Sarif/Visitors/AddFileReferencesVisitor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Sarif/Visitors/AddFileReferencesVisitor.cs -------------------------------------------------------------------------------- /src/Sarif/Visitors/FilteringVisitor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Sarif/Visitors/FilteringVisitor.cs -------------------------------------------------------------------------------- /src/Sarif/Visitors/GitHubIngestionVisitor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Sarif/Visitors/GitHubIngestionVisitor.cs -------------------------------------------------------------------------------- /src/Sarif/Visitors/InsertOptionalDataVisitor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Sarif/Visitors/InsertOptionalDataVisitor.cs -------------------------------------------------------------------------------- /src/Sarif/Visitors/MakeUrisAbsoluteVisitor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Sarif/Visitors/MakeUrisAbsoluteVisitor.cs -------------------------------------------------------------------------------- /src/Sarif/Visitors/PartitioningVisitor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Sarif/Visitors/PartitioningVisitor.cs -------------------------------------------------------------------------------- /src/Sarif/Visitors/PerRunPerRuleSplittingVisitor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Sarif/Visitors/PerRunPerRuleSplittingVisitor.cs -------------------------------------------------------------------------------- /src/Sarif/Visitors/PerRunPerTargetSplittingVisitor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Sarif/Visitors/PerRunPerTargetSplittingVisitor.cs -------------------------------------------------------------------------------- /src/Sarif/Visitors/RebaseUriVisitor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Sarif/Visitors/RebaseUriVisitor.cs -------------------------------------------------------------------------------- /src/Sarif/Visitors/RemoveOptionalDataVisitor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Sarif/Visitors/RemoveOptionalDataVisitor.cs -------------------------------------------------------------------------------- /src/Sarif/Visitors/RunMergingVisitor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Sarif/Visitors/RunMergingVisitor.cs -------------------------------------------------------------------------------- /src/Sarif/Visitors/SarifCurrentToVersionOneVisitor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Sarif/Visitors/SarifCurrentToVersionOneVisitor.cs -------------------------------------------------------------------------------- /src/Sarif/Visitors/SarifTransformerUtilities.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Sarif/Visitors/SarifTransformerUtilities.cs -------------------------------------------------------------------------------- /src/Sarif/Visitors/SarifVersionOneToCurrentVisitor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Sarif/Visitors/SarifVersionOneToCurrentVisitor.cs -------------------------------------------------------------------------------- /src/Sarif/Visitors/SortingVisitor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Sarif/Visitors/SortingVisitor.cs -------------------------------------------------------------------------------- /src/Sarif/Visitors/SplittingVisitor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Sarif/Visitors/SplittingVisitor.cs -------------------------------------------------------------------------------- /src/Sarif/Visitors/SuppressVisitor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Sarif/Visitors/SuppressVisitor.cs -------------------------------------------------------------------------------- /src/Sarif/Visitors/UnknownEncodingException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Sarif/Visitors/UnknownEncodingException.cs -------------------------------------------------------------------------------- /src/Sarif/Warnings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Sarif/Warnings.cs -------------------------------------------------------------------------------- /src/Sarif/Writers/BaseLogger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Sarif/Writers/BaseLogger.cs -------------------------------------------------------------------------------- /src/Sarif/Writers/CacheByFileHashLogger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Sarif/Writers/CacheByFileHashLogger.cs -------------------------------------------------------------------------------- /src/Sarif/Writers/CachingLogger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Sarif/Writers/CachingLogger.cs -------------------------------------------------------------------------------- /src/Sarif/Writers/ConsoleLogger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Sarif/Writers/ConsoleLogger.cs -------------------------------------------------------------------------------- /src/Sarif/Writers/LogFilePersistenceOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Sarif/Writers/LogFilePersistenceOptions.cs -------------------------------------------------------------------------------- /src/Sarif/Writers/MemoryStreamSarifLogger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Sarif/Writers/MemoryStreamSarifLogger.cs -------------------------------------------------------------------------------- /src/Sarif/Writers/MimeType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Sarif/Writers/MimeType.cs -------------------------------------------------------------------------------- /src/Sarif/Writers/RegionComponents.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Sarif/Writers/RegionComponents.cs -------------------------------------------------------------------------------- /src/Sarif/Writers/ResultLogJsonWriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Sarif/Writers/ResultLogJsonWriter.cs -------------------------------------------------------------------------------- /src/Sarif/Writers/SarifConsolidator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Sarif/Writers/SarifConsolidator.cs -------------------------------------------------------------------------------- /src/Sarif/Writers/SarifLogger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Sarif/Writers/SarifLogger.cs -------------------------------------------------------------------------------- /src/Sarif/Writers/SarifOneZeroZeroLogger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Sarif/Writers/SarifOneZeroZeroLogger.cs -------------------------------------------------------------------------------- /src/Sarif/Writers/SarifPartitioner.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Sarif/Writers/SarifPartitioner.cs -------------------------------------------------------------------------------- /src/Sarif/ZipArchiveArtifact.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Sarif/ZipArchiveArtifact.cs -------------------------------------------------------------------------------- /src/Shared/CommonAssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Shared/CommonAssemblyInfo.cs -------------------------------------------------------------------------------- /src/Test.EndToEnd.Baselining/BaseliningDetailLogger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Test.EndToEnd.Baselining/BaseliningDetailLogger.cs -------------------------------------------------------------------------------- /src/Test.EndToEnd.Baselining/BaseliningSummary.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Test.EndToEnd.Baselining/BaseliningSummary.cs -------------------------------------------------------------------------------- /src/Test.EndToEnd.Baselining/BaseliningTester.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Test.EndToEnd.Baselining/BaseliningTester.cs -------------------------------------------------------------------------------- /src/Test.EndToEnd.Baselining/Options/DebugOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Test.EndToEnd.Baselining/Options/DebugOptions.cs -------------------------------------------------------------------------------- /src/Test.EndToEnd.Baselining/Options/OptionsBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Test.EndToEnd.Baselining/Options/OptionsBase.cs -------------------------------------------------------------------------------- /src/Test.EndToEnd.Baselining/Options/RunOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Test.EndToEnd.Baselining/Options/RunOptions.cs -------------------------------------------------------------------------------- /src/Test.EndToEnd.Baselining/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Test.EndToEnd.Baselining/Program.cs -------------------------------------------------------------------------------- /src/Test.FunctionalTests.Sarif/ConverterTestData/PREfast/src/AdvancedAliasing/AA_IndexAlias.expects.txt: -------------------------------------------------------------------------------- 1 | //@@@Expects:6385,15 2 | -------------------------------------------------------------------------------- /src/Test.FunctionalTests.Sarif/ConverterTestData/PREfast/src/AdvancedAnnotations/AN_FunctionAndInAnnotations.expects.txt: -------------------------------------------------------------------------------- 1 | //@@@Expects:6001,10 2 | -------------------------------------------------------------------------------- /src/Test.FunctionalTests.Sarif/ConverterTestData/PREfast/src/AdvancedAnnotations/AN_OutWithDefect.expects.txt: -------------------------------------------------------------------------------- 1 | //@@@Expects:6101,4 2 | -------------------------------------------------------------------------------- /src/Test.FunctionalTests.Sarif/ConverterTestData/PREfast/src/C28182/expects.txt: -------------------------------------------------------------------------------- 1 | //@@@Expects:28182,16 2 | -------------------------------------------------------------------------------- /src/Test.FunctionalTests.Sarif/ConverterTestData/PREfast/src/C6001/expects.txt: -------------------------------------------------------------------------------- 1 | //@@@Expects:6001,9 2 | -------------------------------------------------------------------------------- /src/Test.FunctionalTests.Sarif/ConverterTestData/PREfast/src/C6011/expects.txt: -------------------------------------------------------------------------------- 1 | //@@@Expects:6011,7 2 | -------------------------------------------------------------------------------- /src/Test.FunctionalTests.Sarif/ConverterTestData/PREfast/src/C6029/expects.txt: -------------------------------------------------------------------------------- 1 | //@@@Expects:6029,11 2 | -------------------------------------------------------------------------------- /src/Test.FunctionalTests.Sarif/ConverterTestData/PREfast/src/C6059/expects.txt: -------------------------------------------------------------------------------- 1 | //@@@Expects:6059,10 2 | -------------------------------------------------------------------------------- /src/Test.FunctionalTests.Sarif/ConverterTestData/PREfast/src/C6200/expects.txt: -------------------------------------------------------------------------------- 1 | //@@@Expects:6200,11 2 | -------------------------------------------------------------------------------- /src/Test.FunctionalTests.Sarif/ConverterTestData/PREfast/src/C6305/expects.txt: -------------------------------------------------------------------------------- 1 | //@@@Expects:6305,6 2 | -------------------------------------------------------------------------------- /src/Test.FunctionalTests.Sarif/ConverterTestData/PREfast/src/C6385/expects.txt: -------------------------------------------------------------------------------- 1 | //@@@Expects:6385,8 2 | -------------------------------------------------------------------------------- /src/Test.FunctionalTests.Sarif/ConverterTestData/PREfast/src/C6386/expects.txt: -------------------------------------------------------------------------------- 1 | //@@@Expects:6386,9 2 | -------------------------------------------------------------------------------- /src/Test.FunctionalTests.Sarif/ConverterTestData/PREfast/src/CombinedWarnings/expects28182.txt: -------------------------------------------------------------------------------- 1 | //@@@Expects:28182,16 2 | -------------------------------------------------------------------------------- /src/Test.FunctionalTests.Sarif/ConverterTestData/PREfast/src/CombinedWarnings/expects6001.txt: -------------------------------------------------------------------------------- 1 | //@@@Expects:6001,9 2 | -------------------------------------------------------------------------------- /src/Test.FunctionalTests.Sarif/ConverterTestData/PREfast/src/CombinedWarnings/expects6011.txt: -------------------------------------------------------------------------------- 1 | //@@@Expects:6011,6 2 | -------------------------------------------------------------------------------- /src/Test.FunctionalTests.Sarif/ConverterTestData/PREfast/src/CombinedWarnings/expects6029.txt: -------------------------------------------------------------------------------- 1 | //@@@Expects:6029,11 2 | -------------------------------------------------------------------------------- /src/Test.FunctionalTests.Sarif/ConverterTestData/PREfast/src/CombinedWarnings/expects6200.txt: -------------------------------------------------------------------------------- 1 | //@@@Expects:6200,11 2 | -------------------------------------------------------------------------------- /src/Test.FunctionalTests.Sarif/ConverterTestData/PREfast/src/CombinedWarnings/expects6385.txt: -------------------------------------------------------------------------------- 1 | //@@@Expects:6385,8 2 | -------------------------------------------------------------------------------- /src/Test.FunctionalTests.Sarif/ConverterTestData/PREfast/src/CombinedWarnings/expects6386.txt: -------------------------------------------------------------------------------- 1 | //@@@Expects:6386,9 2 | -------------------------------------------------------------------------------- /src/Test.FunctionalTests.Sarif/ConverterTestData/PREfast/src/Complex/expects6001_1.txt: -------------------------------------------------------------------------------- 1 | //@@@Expects:6001,17 2 | -------------------------------------------------------------------------------- /src/Test.FunctionalTests.Sarif/ConverterTestData/PREfast/src/Complex/expects6001_2.txt: -------------------------------------------------------------------------------- 1 | //@@@Expects:6001,11 2 | -------------------------------------------------------------------------------- /src/Test.FunctionalTests.Sarif/ConverterTestData/PREfast/src/Complex/expects6385_1.txt: -------------------------------------------------------------------------------- 1 | //@@@Expects:6385,7 2 | -------------------------------------------------------------------------------- /src/Test.FunctionalTests.Sarif/ConverterTestData/PREfast/src/Complex/expects6385_2.txt: -------------------------------------------------------------------------------- 1 | //@@@Expects:6385,9 2 | -------------------------------------------------------------------------------- /src/Test.FunctionalTests.Sarif/ConverterTestData/PREfast/src/Complex/expects6386_1.txt: -------------------------------------------------------------------------------- 1 | //@@@Expects:6386,7 2 | -------------------------------------------------------------------------------- /src/Test.FunctionalTests.Sarif/ConverterTestData/PREfast/src/Complex/expects6386_2.txt: -------------------------------------------------------------------------------- 1 | //@@@Expects:6386,8 2 | -------------------------------------------------------------------------------- /src/Test.FunctionalTests.Sarif/ConverterTestData/PREfast/src/FixedBugs/TFS348783.expects.txt: -------------------------------------------------------------------------------- 1 | //@@@Expects:6386,10 2 | -------------------------------------------------------------------------------- /src/Test.FunctionalTests.Sarif/ConverterTestData/PREfast/src/FixedBugs/TFS360455.expects.txt: -------------------------------------------------------------------------------- 1 | //@@@Expects:6385,16 2 | -------------------------------------------------------------------------------- /src/Test.FunctionalTests.Sarif/ConverterTestData/PREfast/src/RelevantKeyEvents/expects1.txt: -------------------------------------------------------------------------------- 1 | //@@@Expects:6385,8 2 | -------------------------------------------------------------------------------- /src/Test.FunctionalTests.Sarif/ConverterTestData/PREfast/src/RelevantKeyEvents/expects2.txt: -------------------------------------------------------------------------------- 1 | //@@@Expects:28182,24 2 | -------------------------------------------------------------------------------- /src/Test.FunctionalTests.Sarif/ConverterTestData/PREfast/src/StandardUx/expects6259.txt: -------------------------------------------------------------------------------- 1 | //@@@Expects:6259,22 2 | -------------------------------------------------------------------------------- /src/Test.FunctionalTests.Sarif/ConverterTestData/PREfast/src/StandardUx/expects6316.txt: -------------------------------------------------------------------------------- 1 | //@@@Expects:6316,19 2 | -------------------------------------------------------------------------------- /src/Test.FunctionalTests.Sarif/SarifConverterTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Test.FunctionalTests.Sarif/SarifConverterTests.cs -------------------------------------------------------------------------------- /src/Test.FunctionalTests.Sarif/SarifValidatorTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Test.FunctionalTests.Sarif/SarifValidatorTests.cs -------------------------------------------------------------------------------- /src/Test.FunctionalTests.Sarif/v1/ConverterTestData/TSLint/TSLint-05.json: -------------------------------------------------------------------------------- 1 | [] 2 | -------------------------------------------------------------------------------- /src/Test.FunctionalTests.Sarif/v2/ConverterTestData/TSLint/TSLint-05.json: -------------------------------------------------------------------------------- 1 | [] 2 | -------------------------------------------------------------------------------- /src/Test.Plugins/Test.Plugins.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Test.Plugins/Test.Plugins.csproj -------------------------------------------------------------------------------- /src/Test.Plugins/TestWorkItemModelTransformer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Test.Plugins/TestWorkItemModelTransformer.cs -------------------------------------------------------------------------------- /src/Test.UnitTests.Sarif.Converters/TestData/FlawFinderConverter/Inputs/Empty.csv: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Test.UnitTests.Sarif.Converters/TestData/FlawFinderConverter/Inputs/InvalidHeader.csv: -------------------------------------------------------------------------------- 1 | x,y -------------------------------------------------------------------------------- /src/Test.UnitTests.Sarif.Converters/TestData/MSBuildConverter/Inputs/Empty.ERR: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Test.UnitTests.Sarif.Driver/FileSpecifierTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Test.UnitTests.Sarif.Driver/FileSpecifierTests.cs -------------------------------------------------------------------------------- /src/Test.UnitTests.Sarif.Driver/ITestAnalyzeCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Test.UnitTests.Sarif.Driver/ITestAnalyzeCommand.cs -------------------------------------------------------------------------------- /src/Test.UnitTests.Sarif.Driver/NotesTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Test.UnitTests.Sarif.Driver/NotesTests.cs -------------------------------------------------------------------------------- /src/Test.UnitTests.Sarif.Driver/PathExtensionsTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Test.UnitTests.Sarif.Driver/PathExtensionsTests.cs -------------------------------------------------------------------------------- /src/Test.UnitTests.Sarif.Driver/Sdk/MockFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Test.UnitTests.Sarif.Driver/Sdk/MockFactory.cs -------------------------------------------------------------------------------- /src/Test.UnitTests.Sarif.Driver/Sdk/TestSkimmerBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Test.UnitTests.Sarif.Driver/Sdk/TestSkimmerBase.cs -------------------------------------------------------------------------------- /src/Test.UnitTests.Sarif.Driver/TestRule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Test.UnitTests.Sarif.Driver/TestRule.cs -------------------------------------------------------------------------------- /src/Test.UnitTests.Sarif.Driver/TestRuleBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Test.UnitTests.Sarif.Driver/TestRuleBase.cs -------------------------------------------------------------------------------- /src/Test.UnitTests.Sarif.WorkItems/TestData/Invalid.sarif: -------------------------------------------------------------------------------- 1 | { 2 | "this": "is not a valid SARIF log file." 3 | } -------------------------------------------------------------------------------- /src/Test.UnitTests.Sarif/Baseline2/TrustMapTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Test.UnitTests.Sarif/Baseline2/TrustMapTests.cs -------------------------------------------------------------------------------- /src/Test.UnitTests.Sarif/CacheTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Test.UnitTests.Sarif/CacheTests.cs -------------------------------------------------------------------------------- /src/Test.UnitTests.Sarif/Comparers/ComparersTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Test.UnitTests.Sarif/Comparers/ComparersTests.cs -------------------------------------------------------------------------------- /src/Test.UnitTests.Sarif/Core/ArtifactLocationTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Test.UnitTests.Sarif/Core/ArtifactLocationTests.cs -------------------------------------------------------------------------------- /src/Test.UnitTests.Sarif/Core/ArtifactTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Test.UnitTests.Sarif/Core/ArtifactTests.cs -------------------------------------------------------------------------------- /src/Test.UnitTests.Sarif/Core/FileLocationTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Test.UnitTests.Sarif/Core/FileLocationTests.cs -------------------------------------------------------------------------------- /src/Test.UnitTests.Sarif/Core/InvocationTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Test.UnitTests.Sarif/Core/InvocationTests.cs -------------------------------------------------------------------------------- /src/Test.UnitTests.Sarif/Core/LocationTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Test.UnitTests.Sarif/Core/LocationTests.cs -------------------------------------------------------------------------------- /src/Test.UnitTests.Sarif/Core/RegionTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Test.UnitTests.Sarif/Core/RegionTests.cs -------------------------------------------------------------------------------- /src/Test.UnitTests.Sarif/Core/ResultLevelKindTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Test.UnitTests.Sarif/Core/ResultLevelKindTests.cs -------------------------------------------------------------------------------- /src/Test.UnitTests.Sarif/Core/ResultTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Test.UnitTests.Sarif/Core/ResultTests.cs -------------------------------------------------------------------------------- /src/Test.UnitTests.Sarif/Core/RunTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Test.UnitTests.Sarif/Core/RunTests.cs -------------------------------------------------------------------------------- /src/Test.UnitTests.Sarif/Core/SarifLogTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Test.UnitTests.Sarif/Core/SarifLogTests.cs -------------------------------------------------------------------------------- /src/Test.UnitTests.Sarif/Core/StackTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Test.UnitTests.Sarif/Core/StackTests.cs -------------------------------------------------------------------------------- /src/Test.UnitTests.Sarif/Core/TagsTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Test.UnitTests.Sarif/Core/TagsTests.cs -------------------------------------------------------------------------------- /src/Test.UnitTests.Sarif/Core/ToolTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Test.UnitTests.Sarif/Core/ToolTests.cs -------------------------------------------------------------------------------- /src/Test.UnitTests.Sarif/Core/WebRequestTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Test.UnitTests.Sarif/Core/WebRequestTests.cs -------------------------------------------------------------------------------- /src/Test.UnitTests.Sarif/Core/WebResponseTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Test.UnitTests.Sarif/Core/WebResponseTests.cs -------------------------------------------------------------------------------- /src/Test.UnitTests.Sarif/EnumeratedArtifactTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Test.UnitTests.Sarif/EnumeratedArtifactTests.cs -------------------------------------------------------------------------------- /src/Test.UnitTests.Sarif/EqualityComparerTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Test.UnitTests.Sarif/EqualityComparerTests.cs -------------------------------------------------------------------------------- /src/Test.UnitTests.Sarif/ErrorsTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Test.UnitTests.Sarif/ErrorsTests.cs -------------------------------------------------------------------------------- /src/Test.UnitTests.Sarif/ExtensionsTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Test.UnitTests.Sarif/ExtensionsTests.cs -------------------------------------------------------------------------------- /src/Test.UnitTests.Sarif/FileEncodingTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Test.UnitTests.Sarif/FileEncodingTests.cs -------------------------------------------------------------------------------- /src/Test.UnitTests.Sarif/FileRegionsCacheTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Test.UnitTests.Sarif/FileRegionsCacheTests.cs -------------------------------------------------------------------------------- /src/Test.UnitTests.Sarif/FileSystemTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Test.UnitTests.Sarif/FileSystemTests.cs -------------------------------------------------------------------------------- /src/Test.UnitTests.Sarif/GitBlameParserTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Test.UnitTests.Sarif/GitBlameParserTests.cs -------------------------------------------------------------------------------- /src/Test.UnitTests.Sarif/GitHelperTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Test.UnitTests.Sarif/GitHelperTests.cs -------------------------------------------------------------------------------- /src/Test.UnitTests.Sarif/HashUtilitiesTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Test.UnitTests.Sarif/HashUtilitiesTests.cs -------------------------------------------------------------------------------- /src/Test.UnitTests.Sarif/JsonTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Test.UnitTests.Sarif/JsonTests.cs -------------------------------------------------------------------------------- /src/Test.UnitTests.Sarif/Map/JsonMapBuilderTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Test.UnitTests.Sarif/Map/JsonMapBuilderTests.cs -------------------------------------------------------------------------------- /src/Test.UnitTests.Sarif/MockFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Test.UnitTests.Sarif/MockFactory.cs -------------------------------------------------------------------------------- /src/Test.UnitTests.Sarif/PeekableStreamTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Test.UnitTests.Sarif/PeekableStreamTests.cs -------------------------------------------------------------------------------- /src/Test.UnitTests.Sarif/PropertiesDictionaryTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Test.UnitTests.Sarif/PropertiesDictionaryTests.cs -------------------------------------------------------------------------------- /src/Test.UnitTests.Sarif/Query/EvaluatorTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Test.UnitTests.Sarif/Query/EvaluatorTests.cs -------------------------------------------------------------------------------- /src/Test.UnitTests.Sarif/Query/StringSliceTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Test.UnitTests.Sarif/Query/StringSliceTests.cs -------------------------------------------------------------------------------- /src/Test.UnitTests.Sarif/Readers/EnumConverterTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Test.UnitTests.Sarif/Readers/EnumConverterTests.cs -------------------------------------------------------------------------------- /src/Test.UnitTests.Sarif/RoundTrippingTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Test.UnitTests.Sarif/RoundTrippingTests.cs -------------------------------------------------------------------------------- /src/Test.UnitTests.Sarif/RuntimeConditionsTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Test.UnitTests.Sarif/RuntimeConditionsTests.cs -------------------------------------------------------------------------------- /src/Test.UnitTests.Sarif/SarifExtensionsTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Test.UnitTests.Sarif/SarifExtensionsTests.cs -------------------------------------------------------------------------------- /src/Test.UnitTests.Sarif/SarifUtilitiesTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Test.UnitTests.Sarif/SarifUtilitiesTests.cs -------------------------------------------------------------------------------- /src/Test.UnitTests.Sarif/Test.UnitTests.Sarif.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Test.UnitTests.Sarif/Test.UnitTests.Sarif.csproj -------------------------------------------------------------------------------- /src/Test.UnitTests.Sarif/ToolFormatTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Test.UnitTests.Sarif/ToolFormatTests.cs -------------------------------------------------------------------------------- /src/Test.UnitTests.Sarif/UriConverterTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Test.UnitTests.Sarif/UriConverterTests.cs -------------------------------------------------------------------------------- /src/Test.UnitTests.Sarif/WarningsTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Test.UnitTests.Sarif/WarningsTests.cs -------------------------------------------------------------------------------- /src/Test.UnitTests.Sarif/Writers/BaseLoggerTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Test.UnitTests.Sarif/Writers/BaseLoggerTests.cs -------------------------------------------------------------------------------- /src/Test.UnitTests.Sarif/Writers/CachingLoggerTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Test.UnitTests.Sarif/Writers/CachingLoggerTests.cs -------------------------------------------------------------------------------- /src/Test.UnitTests.Sarif/Writers/ConsoleLoggerTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Test.UnitTests.Sarif/Writers/ConsoleLoggerTests.cs -------------------------------------------------------------------------------- /src/Test.UnitTests.Sarif/Writers/MimeTypeTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Test.UnitTests.Sarif/Writers/MimeTypeTests.cs -------------------------------------------------------------------------------- /src/Test.UnitTests.Sarif/Writers/SarifLoggerTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Test.UnitTests.Sarif/Writers/SarifLoggerTests.cs -------------------------------------------------------------------------------- /src/Test.UnitTests.Sarif/ZipArchiveArtifactTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Test.UnitTests.Sarif/ZipArchiveArtifactTests.cs -------------------------------------------------------------------------------- /src/Test.UnitTests.Sarif/xunit.runner.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Test.UnitTests.Sarif/xunit.runner.json -------------------------------------------------------------------------------- /src/Test.Utilities.Sarif/AssertionExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Test.Utilities.Sarif/AssertionExtensions.cs -------------------------------------------------------------------------------- /src/Test.Utilities.Sarif/DirectoryHelpers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Test.Utilities.Sarif/DirectoryHelpers.cs -------------------------------------------------------------------------------- /src/Test.Utilities.Sarif/FileDiffingUnitTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Test.Utilities.Sarif/FileDiffingUnitTests.cs -------------------------------------------------------------------------------- /src/Test.Utilities.Sarif/HttpMockHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Test.Utilities.Sarif/HttpMockHelper.cs -------------------------------------------------------------------------------- /src/Test.Utilities.Sarif/RandomSarifLogGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Test.Utilities.Sarif/RandomSarifLogGenerator.cs -------------------------------------------------------------------------------- /src/Test.Utilities.Sarif/ResultLogObjectWriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Test.Utilities.Sarif/ResultLogObjectWriter.cs -------------------------------------------------------------------------------- /src/Test.Utilities.Sarif/TestAnalysisContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Test.Utilities.Sarif/TestAnalysisContext.cs -------------------------------------------------------------------------------- /src/Test.Utilities.Sarif/TestAnalyzeOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Test.Utilities.Sarif/TestAnalyzeOptions.cs -------------------------------------------------------------------------------- /src/Test.Utilities.Sarif/TestData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Test.Utilities.Sarif/TestData.cs -------------------------------------------------------------------------------- /src/Test.Utilities.Sarif/TestException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Test.Utilities.Sarif/TestException.cs -------------------------------------------------------------------------------- /src/Test.Utilities.Sarif/TestMessageLogger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Test.Utilities.Sarif/TestMessageLogger.cs -------------------------------------------------------------------------------- /src/Test.Utilities.Sarif/TestRuleBehaviors.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Test.Utilities.Sarif/TestRuleBehaviors.cs -------------------------------------------------------------------------------- /src/Test.Utilities.Sarif/TestTextWriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Test.Utilities.Sarif/TestTextWriter.cs -------------------------------------------------------------------------------- /src/Test.Utilities.Sarif/TestTraits.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Test.Utilities.Sarif/TestTraits.cs -------------------------------------------------------------------------------- /src/Test.Utilities.Sarif/TestUtilitiesExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Test.Utilities.Sarif/TestUtilitiesExtensions.cs -------------------------------------------------------------------------------- /src/Test.Utilities.Sarif/Utilities.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/Test.Utilities.Sarif/Utilities.cs -------------------------------------------------------------------------------- /src/WorkItems/Attachment.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/WorkItems/Attachment.cs -------------------------------------------------------------------------------- /src/WorkItems/AzureDevOpsFieldNames.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/WorkItems/AzureDevOpsFieldNames.cs -------------------------------------------------------------------------------- /src/WorkItems/AzureDevOpsFilingClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/WorkItems/AzureDevOpsFilingClient.cs -------------------------------------------------------------------------------- /src/WorkItems/FilingClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/WorkItems/FilingClient.cs -------------------------------------------------------------------------------- /src/WorkItems/FilingClientFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/WorkItems/FilingClientFactory.cs -------------------------------------------------------------------------------- /src/WorkItems/FilingResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/WorkItems/FilingResult.cs -------------------------------------------------------------------------------- /src/WorkItems/GitHubClientWrapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/WorkItems/GitHubClientWrapper.cs -------------------------------------------------------------------------------- /src/WorkItems/GitHubConnectionFacade.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/WorkItems/GitHubConnectionFacade.cs -------------------------------------------------------------------------------- /src/WorkItems/GitHubFilingClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/WorkItems/GitHubFilingClient.cs -------------------------------------------------------------------------------- /src/WorkItems/IGitHubClientWrapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/WorkItems/IGitHubClientWrapper.cs -------------------------------------------------------------------------------- /src/WorkItems/IGitHubConnection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/WorkItems/IGitHubConnection.cs -------------------------------------------------------------------------------- /src/WorkItems/IVssConnection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/WorkItems/IVssConnection.cs -------------------------------------------------------------------------------- /src/WorkItems/IWorkItemModelTransformer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/WorkItems/IWorkItemModelTransformer.cs -------------------------------------------------------------------------------- /src/WorkItems/IWorkItemTrackingHttpClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/WorkItems/IWorkItemTrackingHttpClient.cs -------------------------------------------------------------------------------- /src/WorkItems/Logging/AssemblyExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/WorkItems/Logging/AssemblyExtensions.cs -------------------------------------------------------------------------------- /src/WorkItems/Logging/EventIds.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/WorkItems/Logging/EventIds.cs -------------------------------------------------------------------------------- /src/WorkItems/Logging/LoggerExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/WorkItems/Logging/LoggerExtensions.cs -------------------------------------------------------------------------------- /src/WorkItems/Logging/LoggingContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/WorkItems/Logging/LoggingContext.cs -------------------------------------------------------------------------------- /src/WorkItems/Logging/MetricsLogValues.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/WorkItems/Logging/MetricsLogValues.cs -------------------------------------------------------------------------------- /src/WorkItems/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/WorkItems/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/WorkItems/ServiceProviderFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/WorkItems/ServiceProviderFactory.cs -------------------------------------------------------------------------------- /src/WorkItems/VssConnectionFacade.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/WorkItems/VssConnectionFacade.cs -------------------------------------------------------------------------------- /src/WorkItems/WorkItemFilingUtilities.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/WorkItems/WorkItemFilingUtilities.cs -------------------------------------------------------------------------------- /src/WorkItems/WorkItemModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/WorkItems/WorkItemModel.cs -------------------------------------------------------------------------------- /src/WorkItems/WorkItemOperation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/WorkItems/WorkItemOperation.cs -------------------------------------------------------------------------------- /src/WorkItems/WorkItemTrackingHttpClientWrapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/WorkItems/WorkItemTrackingHttpClientWrapper.cs -------------------------------------------------------------------------------- /src/WorkItems/WorkItems.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/WorkItems/WorkItems.csproj -------------------------------------------------------------------------------- /src/build.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/build.props -------------------------------------------------------------------------------- /src/build.warnings_as_errors.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/src/build.warnings_as_errors.props -------------------------------------------------------------------------------- /triskelion.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/sarif-sdk/HEAD/triskelion.png --------------------------------------------------------------------------------