├── .azuredevops └── dependabot.yml ├── .editorconfig ├── .gitattributes ├── .github └── workflows │ ├── backport.yml │ └── inter-branch-merge-flow.yml ├── .gitignore ├── Build.cmd ├── CODE-OF-CONDUCT.md ├── License.txt ├── NuGet.config ├── README.md ├── Restore.cmd ├── Test.cmd ├── azure-pipelines-pr.yml ├── azure-pipelines.yml ├── eng ├── Publishing.props ├── Signing.props ├── Version.Details.props ├── Version.Details.xml ├── Versions.props ├── common │ ├── BuildConfiguration │ │ └── build-configuration.json │ ├── CIBuild.cmd │ ├── PSScriptAnalyzerSettings.psd1 │ ├── README.md │ ├── SetupNugetSources.ps1 │ ├── SetupNugetSources.sh │ ├── build.cmd │ ├── build.ps1 │ ├── build.sh │ ├── cibuild.sh │ ├── core-templates │ │ ├── job │ │ │ ├── job.yml │ │ │ ├── onelocbuild.yml │ │ │ ├── publish-build-assets.yml │ │ │ ├── source-build.yml │ │ │ └── source-index-stage1.yml │ │ ├── jobs │ │ │ ├── codeql-build.yml │ │ │ ├── jobs.yml │ │ │ └── source-build.yml │ │ ├── post-build │ │ │ ├── common-variables.yml │ │ │ ├── post-build.yml │ │ │ └── setup-maestro-vars.yml │ │ ├── steps │ │ │ ├── cleanup-microbuild.yml │ │ │ ├── component-governance.yml │ │ │ ├── enable-internal-runtimes.yml │ │ │ ├── enable-internal-sources.yml │ │ │ ├── generate-sbom.yml │ │ │ ├── get-delegation-sas.yml │ │ │ ├── get-federated-access-token.yml │ │ │ ├── install-microbuild-impl.yml │ │ │ ├── install-microbuild.yml │ │ │ ├── publish-build-artifacts.yml │ │ │ ├── publish-logs.yml │ │ │ ├── publish-pipeline-artifacts.yml │ │ │ ├── retain-build.yml │ │ │ ├── send-to-helix.yml │ │ │ ├── source-build.yml │ │ │ └── source-index-stage1-publish.yml │ │ └── variables │ │ │ └── pool-providers.yml │ ├── cross │ │ ├── arm │ │ │ └── tizen │ │ │ │ └── tizen.patch │ │ ├── arm64 │ │ │ └── tizen │ │ │ │ └── tizen.patch │ │ ├── armel │ │ │ └── tizen │ │ │ │ └── tizen.patch │ │ ├── build-android-rootfs.sh │ │ ├── build-rootfs.sh │ │ ├── install-debs.py │ │ ├── riscv64 │ │ │ └── tizen │ │ │ │ └── tizen.patch │ │ ├── tizen-build-rootfs.sh │ │ ├── tizen-fetch.sh │ │ ├── toolchain.cmake │ │ ├── x64 │ │ │ └── tizen │ │ │ │ └── tizen.patch │ │ └── x86 │ │ │ └── tizen │ │ │ └── tizen.patch │ ├── darc-init.ps1 │ ├── darc-init.sh │ ├── dotnet-install.cmd │ ├── dotnet-install.ps1 │ ├── dotnet-install.sh │ ├── dotnet.cmd │ ├── dotnet.ps1 │ ├── dotnet.sh │ ├── enable-cross-org-publishing.ps1 │ ├── generate-locproject.ps1 │ ├── generate-sbom-prep.ps1 │ ├── generate-sbom-prep.sh │ ├── helixpublish.proj │ ├── init-tools-native.cmd │ ├── init-tools-native.ps1 │ ├── init-tools-native.sh │ ├── internal-feed-operations.ps1 │ ├── internal-feed-operations.sh │ ├── internal │ │ ├── Directory.Build.props │ │ ├── NuGet.config │ │ └── Tools.csproj │ ├── loc │ │ └── P22DotNetHtmlLocalization.lss │ ├── msbuild.ps1 │ ├── msbuild.sh │ ├── native │ │ ├── CommonLibrary.psm1 │ │ ├── common-library.sh │ │ ├── init-compiler.sh │ │ ├── init-distro-rid.sh │ │ ├── init-os-and-arch.sh │ │ ├── install-cmake-test.sh │ │ ├── install-cmake.sh │ │ ├── install-dependencies.sh │ │ └── install-tool.ps1 │ ├── pipeline-logging-functions.ps1 │ ├── pipeline-logging-functions.sh │ ├── post-build │ │ ├── check-channel-consistency.ps1 │ │ ├── nuget-validation.ps1 │ │ ├── nuget-verification.ps1 │ │ ├── publish-using-darc.ps1 │ │ ├── redact-logs.ps1 │ │ ├── sourcelink-validation.ps1 │ │ └── symbols-validation.ps1 │ ├── retain-build.ps1 │ ├── sdk-task.ps1 │ ├── sdk-task.sh │ ├── sdl │ │ ├── NuGet.config │ │ ├── configure-sdl-tool.ps1 │ │ ├── execute-all-sdl-tools.ps1 │ │ ├── extract-artifact-archives.ps1 │ │ ├── extract-artifact-packages.ps1 │ │ ├── init-sdl.ps1 │ │ ├── packages.config │ │ ├── run-sdl.ps1 │ │ ├── sdl.ps1 │ │ └── trim-assets-version.ps1 │ ├── template-guidance.md │ ├── templates-official │ │ ├── job │ │ │ ├── job.yml │ │ │ ├── onelocbuild.yml │ │ │ ├── publish-build-assets.yml │ │ │ ├── source-build.yml │ │ │ └── source-index-stage1.yml │ │ ├── jobs │ │ │ ├── codeql-build.yml │ │ │ ├── jobs.yml │ │ │ └── source-build.yml │ │ ├── post-build │ │ │ ├── common-variables.yml │ │ │ ├── post-build.yml │ │ │ └── setup-maestro-vars.yml │ │ ├── steps │ │ │ ├── component-governance.yml │ │ │ ├── enable-internal-runtimes.yml │ │ │ ├── enable-internal-sources.yml │ │ │ ├── generate-sbom.yml │ │ │ ├── get-delegation-sas.yml │ │ │ ├── get-federated-access-token.yml │ │ │ ├── publish-build-artifacts.yml │ │ │ ├── publish-logs.yml │ │ │ ├── publish-pipeline-artifacts.yml │ │ │ ├── retain-build.yml │ │ │ ├── send-to-helix.yml │ │ │ ├── source-build.yml │ │ │ └── source-index-stage1-publish.yml │ │ └── variables │ │ │ ├── pool-providers.yml │ │ │ └── sdl-variables.yml │ ├── templates │ │ ├── job │ │ │ ├── job.yml │ │ │ ├── onelocbuild.yml │ │ │ ├── publish-build-assets.yml │ │ │ ├── source-build.yml │ │ │ └── source-index-stage1.yml │ │ ├── jobs │ │ │ ├── codeql-build.yml │ │ │ ├── jobs.yml │ │ │ └── source-build.yml │ │ ├── post-build │ │ │ ├── common-variables.yml │ │ │ ├── post-build.yml │ │ │ └── setup-maestro-vars.yml │ │ ├── steps │ │ │ ├── component-governance.yml │ │ │ ├── enable-internal-runtimes.yml │ │ │ ├── enable-internal-sources.yml │ │ │ ├── generate-sbom.yml │ │ │ ├── get-delegation-sas.yml │ │ │ ├── get-federated-access-token.yml │ │ │ ├── publish-build-artifacts.yml │ │ │ ├── publish-logs.yml │ │ │ ├── publish-pipeline-artifacts.yml │ │ │ ├── retain-build.yml │ │ │ ├── send-to-helix.yml │ │ │ ├── source-build.yml │ │ │ ├── source-index-stage1-publish.yml │ │ │ └── vmr-sync.yml │ │ ├── variables │ │ │ └── pool-providers.yml │ │ └── vmr-build-pr.yml │ ├── tools.ps1 │ ├── tools.sh │ ├── vmr-sync.ps1 │ └── vmr-sync.sh └── tsaconfig.gdntsa ├── es-metadata.yml ├── github-merge-flow.jsonc ├── global.json ├── restore.sh ├── src ├── Directory.Build.props ├── Directory.Build.targets ├── Directory.Packages.props ├── Microsoft.DiaSymReader.Native.Tests │ ├── Microsoft.DiaSymReader.Native.UnitTests.csproj │ └── SymUnmanagedFactoryNativeTests.cs ├── Microsoft.DiaSymReader.Tests │ ├── ComMemoryStreamTests.cs │ ├── DocumentExtensionsTests.cs │ ├── InteropUtilitiesTests.cs │ ├── Microsoft.DiaSymReader.UnitTests.csproj │ ├── Mocks │ │ └── SymDocumentMock.cs │ ├── SymReaderMetadataAdapterTests.cs │ ├── SymUnmanagedFactoryTests.cs │ ├── SymUnmanagedStreamFactoryTests.cs │ ├── SymUnmanagedWriterTests.cs │ ├── SymWriterMetadataAdapterTests.cs │ └── TestSymWriterMetadataProvider.cs ├── Microsoft.DiaSymReader │ ├── Extensions │ │ ├── SymUnmanagedAsyncStepInfo.cs │ │ ├── SymUnmanagedExtensions.Binder.cs │ │ ├── SymUnmanagedExtensions.Constant.cs │ │ ├── SymUnmanagedExtensions.Document.cs │ │ ├── SymUnmanagedExtensions.Method.cs │ │ ├── SymUnmanagedExtensions.Namespace.cs │ │ ├── SymUnmanagedExtensions.Reader.cs │ │ ├── SymUnmanagedExtensions.Scope.cs │ │ ├── SymUnmanagedExtensions.Variable.cs │ │ ├── SymUnmanagedSequencePoint.cs │ │ └── SymUnmanagedStreamFactory.cs │ ├── Metadata │ │ ├── IMetadataEmit.cs │ │ ├── IMetadataImport.cs │ │ ├── IMetadataImportProvider.cs │ │ ├── ISymReaderMetadataProvider.cs │ │ ├── ISymWriterMetadataProvider.cs │ │ ├── MetadataAdapterBase.cs │ │ ├── MetadataImportFieldOffset.cs │ │ ├── SymReaderMetadataAdapter.cs │ │ └── SymWriterMetadataAdapter.cs │ ├── Microsoft.DiaSymReader.csproj │ ├── Reader │ │ ├── ISymEncUnmanagedMethod.cs │ │ ├── ISymUnmanagedAsyncMethod.cs │ │ ├── ISymUnmanagedBinder.cs │ │ ├── ISymUnmanagedBinder2.cs │ │ ├── ISymUnmanagedBinder3.cs │ │ ├── ISymUnmanagedBinder4.cs │ │ ├── ISymUnmanagedConstant.cs │ │ ├── ISymUnmanagedDispose.cs │ │ ├── ISymUnmanagedDocument.cs │ │ ├── ISymUnmanagedEncUpdate.cs │ │ ├── ISymUnmanagedMethod.cs │ │ ├── ISymUnmanagedMethod2.cs │ │ ├── ISymUnmanagedNamespace.cs │ │ ├── ISymUnmanagedReader.cs │ │ ├── ISymUnmanagedReader2.cs │ │ ├── ISymUnmanagedReader3.cs │ │ ├── ISymUnmanagedReader4.cs │ │ ├── ISymUnmanagedReader5.cs │ │ ├── ISymUnmanagedReader6.cs │ │ ├── ISymUnmanagedScope.cs │ │ ├── ISymUnmanagedScope2.cs │ │ ├── ISymUnmanagedSourceServerModule.cs │ │ ├── ISymUnmanagedVariable.cs │ │ ├── SymUnmanagedLineDelta.cs │ │ ├── SymUnmanagedReaderCreationOptions.cs │ │ ├── SymUnmanagedReaderFactory.cs │ │ └── SymUnmanagedSearchPolicy.cs │ ├── SymUnmanagedFactory.cs │ ├── Utilities │ │ ├── ComMemoryStream.cs │ │ ├── ComStreamWrapper.cs │ │ ├── HResult.cs │ │ ├── IUnsafeComStream.cs │ │ ├── InteropUtilities.cs │ │ └── UnsafeComStreamWrapper.cs │ └── Writer │ │ ├── ISymUnmanagedAsyncMethodPropertiesWriter.cs │ │ ├── ISymUnmanagedCompilerInfoWriter.cs │ │ ├── ISymUnmanagedDocumentWriter.cs │ │ ├── ISymUnmanagedWriter.cs │ │ ├── SymUnmanagedSequencePointsWriter.cs │ │ ├── SymUnmanagedWriter.cs │ │ ├── SymUnmanagedWriterCreationOptions.cs │ │ ├── SymUnmanagedWriterException.cs │ │ ├── SymUnmanagedWriterFactory.cs │ │ └── SymUnmanagedWriterImpl.cs ├── PdbTestResources │ ├── PdbTestResources.csproj │ ├── ResourceLoader.cs │ ├── Resources │ │ ├── SourceLink.dll │ │ └── SourceLink.pdb │ ├── TestResource.cs │ └── TestResources.cs └── TestUtilities │ ├── AssertEx.cs │ ├── ConditionalFactAttribute.cs │ ├── DiffUtil.cs │ ├── DummySymReaderMetadataProvider.cs │ ├── DummySymWriterMetadataProvider.cs │ └── TestUtilities.csproj ├── symreader.slnx └── test.sh /.azuredevops/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/symreader/HEAD/.azuredevops/dependabot.yml -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/symreader/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/symreader/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/workflows/backport.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/symreader/HEAD/.github/workflows/backport.yml -------------------------------------------------------------------------------- /.github/workflows/inter-branch-merge-flow.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/symreader/HEAD/.github/workflows/inter-branch-merge-flow.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/symreader/HEAD/.gitignore -------------------------------------------------------------------------------- /Build.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/symreader/HEAD/Build.cmd -------------------------------------------------------------------------------- /CODE-OF-CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/symreader/HEAD/CODE-OF-CONDUCT.md -------------------------------------------------------------------------------- /License.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/symreader/HEAD/License.txt -------------------------------------------------------------------------------- /NuGet.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/symreader/HEAD/NuGet.config -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/symreader/HEAD/README.md -------------------------------------------------------------------------------- /Restore.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/symreader/HEAD/Restore.cmd -------------------------------------------------------------------------------- /Test.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/symreader/HEAD/Test.cmd -------------------------------------------------------------------------------- /azure-pipelines-pr.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/symreader/HEAD/azure-pipelines-pr.yml -------------------------------------------------------------------------------- /azure-pipelines.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/symreader/HEAD/azure-pipelines.yml -------------------------------------------------------------------------------- /eng/Publishing.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/symreader/HEAD/eng/Publishing.props -------------------------------------------------------------------------------- /eng/Signing.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/symreader/HEAD/eng/Signing.props -------------------------------------------------------------------------------- /eng/Version.Details.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/symreader/HEAD/eng/Version.Details.props -------------------------------------------------------------------------------- /eng/Version.Details.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/symreader/HEAD/eng/Version.Details.xml -------------------------------------------------------------------------------- /eng/Versions.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/symreader/HEAD/eng/Versions.props -------------------------------------------------------------------------------- /eng/common/BuildConfiguration/build-configuration.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/symreader/HEAD/eng/common/BuildConfiguration/build-configuration.json -------------------------------------------------------------------------------- /eng/common/CIBuild.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/symreader/HEAD/eng/common/CIBuild.cmd -------------------------------------------------------------------------------- /eng/common/PSScriptAnalyzerSettings.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/symreader/HEAD/eng/common/PSScriptAnalyzerSettings.psd1 -------------------------------------------------------------------------------- /eng/common/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/symreader/HEAD/eng/common/README.md -------------------------------------------------------------------------------- /eng/common/SetupNugetSources.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/symreader/HEAD/eng/common/SetupNugetSources.ps1 -------------------------------------------------------------------------------- /eng/common/SetupNugetSources.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/symreader/HEAD/eng/common/SetupNugetSources.sh -------------------------------------------------------------------------------- /eng/common/build.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/symreader/HEAD/eng/common/build.cmd -------------------------------------------------------------------------------- /eng/common/build.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/symreader/HEAD/eng/common/build.ps1 -------------------------------------------------------------------------------- /eng/common/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/symreader/HEAD/eng/common/build.sh -------------------------------------------------------------------------------- /eng/common/cibuild.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/symreader/HEAD/eng/common/cibuild.sh -------------------------------------------------------------------------------- /eng/common/core-templates/job/job.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/symreader/HEAD/eng/common/core-templates/job/job.yml -------------------------------------------------------------------------------- /eng/common/core-templates/job/onelocbuild.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/symreader/HEAD/eng/common/core-templates/job/onelocbuild.yml -------------------------------------------------------------------------------- /eng/common/core-templates/job/publish-build-assets.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/symreader/HEAD/eng/common/core-templates/job/publish-build-assets.yml -------------------------------------------------------------------------------- /eng/common/core-templates/job/source-build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/symreader/HEAD/eng/common/core-templates/job/source-build.yml -------------------------------------------------------------------------------- /eng/common/core-templates/job/source-index-stage1.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/symreader/HEAD/eng/common/core-templates/job/source-index-stage1.yml -------------------------------------------------------------------------------- /eng/common/core-templates/jobs/codeql-build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/symreader/HEAD/eng/common/core-templates/jobs/codeql-build.yml -------------------------------------------------------------------------------- /eng/common/core-templates/jobs/jobs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/symreader/HEAD/eng/common/core-templates/jobs/jobs.yml -------------------------------------------------------------------------------- /eng/common/core-templates/jobs/source-build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/symreader/HEAD/eng/common/core-templates/jobs/source-build.yml -------------------------------------------------------------------------------- /eng/common/core-templates/post-build/common-variables.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/symreader/HEAD/eng/common/core-templates/post-build/common-variables.yml -------------------------------------------------------------------------------- /eng/common/core-templates/post-build/post-build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/symreader/HEAD/eng/common/core-templates/post-build/post-build.yml -------------------------------------------------------------------------------- /eng/common/core-templates/post-build/setup-maestro-vars.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/symreader/HEAD/eng/common/core-templates/post-build/setup-maestro-vars.yml -------------------------------------------------------------------------------- /eng/common/core-templates/steps/cleanup-microbuild.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/symreader/HEAD/eng/common/core-templates/steps/cleanup-microbuild.yml -------------------------------------------------------------------------------- /eng/common/core-templates/steps/component-governance.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/symreader/HEAD/eng/common/core-templates/steps/component-governance.yml -------------------------------------------------------------------------------- /eng/common/core-templates/steps/enable-internal-runtimes.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/symreader/HEAD/eng/common/core-templates/steps/enable-internal-runtimes.yml -------------------------------------------------------------------------------- /eng/common/core-templates/steps/enable-internal-sources.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/symreader/HEAD/eng/common/core-templates/steps/enable-internal-sources.yml -------------------------------------------------------------------------------- /eng/common/core-templates/steps/generate-sbom.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/symreader/HEAD/eng/common/core-templates/steps/generate-sbom.yml -------------------------------------------------------------------------------- /eng/common/core-templates/steps/get-delegation-sas.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/symreader/HEAD/eng/common/core-templates/steps/get-delegation-sas.yml -------------------------------------------------------------------------------- /eng/common/core-templates/steps/get-federated-access-token.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/symreader/HEAD/eng/common/core-templates/steps/get-federated-access-token.yml -------------------------------------------------------------------------------- /eng/common/core-templates/steps/install-microbuild-impl.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/symreader/HEAD/eng/common/core-templates/steps/install-microbuild-impl.yml -------------------------------------------------------------------------------- /eng/common/core-templates/steps/install-microbuild.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/symreader/HEAD/eng/common/core-templates/steps/install-microbuild.yml -------------------------------------------------------------------------------- /eng/common/core-templates/steps/publish-build-artifacts.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/symreader/HEAD/eng/common/core-templates/steps/publish-build-artifacts.yml -------------------------------------------------------------------------------- /eng/common/core-templates/steps/publish-logs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/symreader/HEAD/eng/common/core-templates/steps/publish-logs.yml -------------------------------------------------------------------------------- /eng/common/core-templates/steps/publish-pipeline-artifacts.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/symreader/HEAD/eng/common/core-templates/steps/publish-pipeline-artifacts.yml -------------------------------------------------------------------------------- /eng/common/core-templates/steps/retain-build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/symreader/HEAD/eng/common/core-templates/steps/retain-build.yml -------------------------------------------------------------------------------- /eng/common/core-templates/steps/send-to-helix.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/symreader/HEAD/eng/common/core-templates/steps/send-to-helix.yml -------------------------------------------------------------------------------- /eng/common/core-templates/steps/source-build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/symreader/HEAD/eng/common/core-templates/steps/source-build.yml -------------------------------------------------------------------------------- /eng/common/core-templates/steps/source-index-stage1-publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/symreader/HEAD/eng/common/core-templates/steps/source-index-stage1-publish.yml -------------------------------------------------------------------------------- /eng/common/core-templates/variables/pool-providers.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/symreader/HEAD/eng/common/core-templates/variables/pool-providers.yml -------------------------------------------------------------------------------- /eng/common/cross/arm/tizen/tizen.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/symreader/HEAD/eng/common/cross/arm/tizen/tizen.patch -------------------------------------------------------------------------------- /eng/common/cross/arm64/tizen/tizen.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/symreader/HEAD/eng/common/cross/arm64/tizen/tizen.patch -------------------------------------------------------------------------------- /eng/common/cross/armel/tizen/tizen.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/symreader/HEAD/eng/common/cross/armel/tizen/tizen.patch -------------------------------------------------------------------------------- /eng/common/cross/build-android-rootfs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/symreader/HEAD/eng/common/cross/build-android-rootfs.sh -------------------------------------------------------------------------------- /eng/common/cross/build-rootfs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/symreader/HEAD/eng/common/cross/build-rootfs.sh -------------------------------------------------------------------------------- /eng/common/cross/install-debs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/symreader/HEAD/eng/common/cross/install-debs.py -------------------------------------------------------------------------------- /eng/common/cross/riscv64/tizen/tizen.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/symreader/HEAD/eng/common/cross/riscv64/tizen/tizen.patch -------------------------------------------------------------------------------- /eng/common/cross/tizen-build-rootfs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/symreader/HEAD/eng/common/cross/tizen-build-rootfs.sh -------------------------------------------------------------------------------- /eng/common/cross/tizen-fetch.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/symreader/HEAD/eng/common/cross/tizen-fetch.sh -------------------------------------------------------------------------------- /eng/common/cross/toolchain.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/symreader/HEAD/eng/common/cross/toolchain.cmake -------------------------------------------------------------------------------- /eng/common/cross/x64/tizen/tizen.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/symreader/HEAD/eng/common/cross/x64/tizen/tizen.patch -------------------------------------------------------------------------------- /eng/common/cross/x86/tizen/tizen.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/symreader/HEAD/eng/common/cross/x86/tizen/tizen.patch -------------------------------------------------------------------------------- /eng/common/darc-init.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/symreader/HEAD/eng/common/darc-init.ps1 -------------------------------------------------------------------------------- /eng/common/darc-init.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/symreader/HEAD/eng/common/darc-init.sh -------------------------------------------------------------------------------- /eng/common/dotnet-install.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/symreader/HEAD/eng/common/dotnet-install.cmd -------------------------------------------------------------------------------- /eng/common/dotnet-install.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/symreader/HEAD/eng/common/dotnet-install.ps1 -------------------------------------------------------------------------------- /eng/common/dotnet-install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/symreader/HEAD/eng/common/dotnet-install.sh -------------------------------------------------------------------------------- /eng/common/dotnet.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/symreader/HEAD/eng/common/dotnet.cmd -------------------------------------------------------------------------------- /eng/common/dotnet.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/symreader/HEAD/eng/common/dotnet.ps1 -------------------------------------------------------------------------------- /eng/common/dotnet.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/symreader/HEAD/eng/common/dotnet.sh -------------------------------------------------------------------------------- /eng/common/enable-cross-org-publishing.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/symreader/HEAD/eng/common/enable-cross-org-publishing.ps1 -------------------------------------------------------------------------------- /eng/common/generate-locproject.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/symreader/HEAD/eng/common/generate-locproject.ps1 -------------------------------------------------------------------------------- /eng/common/generate-sbom-prep.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/symreader/HEAD/eng/common/generate-sbom-prep.ps1 -------------------------------------------------------------------------------- /eng/common/generate-sbom-prep.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/symreader/HEAD/eng/common/generate-sbom-prep.sh -------------------------------------------------------------------------------- /eng/common/helixpublish.proj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/symreader/HEAD/eng/common/helixpublish.proj -------------------------------------------------------------------------------- /eng/common/init-tools-native.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/symreader/HEAD/eng/common/init-tools-native.cmd -------------------------------------------------------------------------------- /eng/common/init-tools-native.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/symreader/HEAD/eng/common/init-tools-native.ps1 -------------------------------------------------------------------------------- /eng/common/init-tools-native.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/symreader/HEAD/eng/common/init-tools-native.sh -------------------------------------------------------------------------------- /eng/common/internal-feed-operations.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/symreader/HEAD/eng/common/internal-feed-operations.ps1 -------------------------------------------------------------------------------- /eng/common/internal-feed-operations.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/symreader/HEAD/eng/common/internal-feed-operations.sh -------------------------------------------------------------------------------- /eng/common/internal/Directory.Build.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/symreader/HEAD/eng/common/internal/Directory.Build.props -------------------------------------------------------------------------------- /eng/common/internal/NuGet.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/symreader/HEAD/eng/common/internal/NuGet.config -------------------------------------------------------------------------------- /eng/common/internal/Tools.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/symreader/HEAD/eng/common/internal/Tools.csproj -------------------------------------------------------------------------------- /eng/common/loc/P22DotNetHtmlLocalization.lss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/symreader/HEAD/eng/common/loc/P22DotNetHtmlLocalization.lss -------------------------------------------------------------------------------- /eng/common/msbuild.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/symreader/HEAD/eng/common/msbuild.ps1 -------------------------------------------------------------------------------- /eng/common/msbuild.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/symreader/HEAD/eng/common/msbuild.sh -------------------------------------------------------------------------------- /eng/common/native/CommonLibrary.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/symreader/HEAD/eng/common/native/CommonLibrary.psm1 -------------------------------------------------------------------------------- /eng/common/native/common-library.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/symreader/HEAD/eng/common/native/common-library.sh -------------------------------------------------------------------------------- /eng/common/native/init-compiler.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/symreader/HEAD/eng/common/native/init-compiler.sh -------------------------------------------------------------------------------- /eng/common/native/init-distro-rid.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/symreader/HEAD/eng/common/native/init-distro-rid.sh -------------------------------------------------------------------------------- /eng/common/native/init-os-and-arch.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/symreader/HEAD/eng/common/native/init-os-and-arch.sh -------------------------------------------------------------------------------- /eng/common/native/install-cmake-test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/symreader/HEAD/eng/common/native/install-cmake-test.sh -------------------------------------------------------------------------------- /eng/common/native/install-cmake.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/symreader/HEAD/eng/common/native/install-cmake.sh -------------------------------------------------------------------------------- /eng/common/native/install-dependencies.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/symreader/HEAD/eng/common/native/install-dependencies.sh -------------------------------------------------------------------------------- /eng/common/native/install-tool.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/symreader/HEAD/eng/common/native/install-tool.ps1 -------------------------------------------------------------------------------- /eng/common/pipeline-logging-functions.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/symreader/HEAD/eng/common/pipeline-logging-functions.ps1 -------------------------------------------------------------------------------- /eng/common/pipeline-logging-functions.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/symreader/HEAD/eng/common/pipeline-logging-functions.sh -------------------------------------------------------------------------------- /eng/common/post-build/check-channel-consistency.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/symreader/HEAD/eng/common/post-build/check-channel-consistency.ps1 -------------------------------------------------------------------------------- /eng/common/post-build/nuget-validation.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/symreader/HEAD/eng/common/post-build/nuget-validation.ps1 -------------------------------------------------------------------------------- /eng/common/post-build/nuget-verification.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/symreader/HEAD/eng/common/post-build/nuget-verification.ps1 -------------------------------------------------------------------------------- /eng/common/post-build/publish-using-darc.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/symreader/HEAD/eng/common/post-build/publish-using-darc.ps1 -------------------------------------------------------------------------------- /eng/common/post-build/redact-logs.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/symreader/HEAD/eng/common/post-build/redact-logs.ps1 -------------------------------------------------------------------------------- /eng/common/post-build/sourcelink-validation.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/symreader/HEAD/eng/common/post-build/sourcelink-validation.ps1 -------------------------------------------------------------------------------- /eng/common/post-build/symbols-validation.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/symreader/HEAD/eng/common/post-build/symbols-validation.ps1 -------------------------------------------------------------------------------- /eng/common/retain-build.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/symreader/HEAD/eng/common/retain-build.ps1 -------------------------------------------------------------------------------- /eng/common/sdk-task.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/symreader/HEAD/eng/common/sdk-task.ps1 -------------------------------------------------------------------------------- /eng/common/sdk-task.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/symreader/HEAD/eng/common/sdk-task.sh -------------------------------------------------------------------------------- /eng/common/sdl/NuGet.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/symreader/HEAD/eng/common/sdl/NuGet.config -------------------------------------------------------------------------------- /eng/common/sdl/configure-sdl-tool.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/symreader/HEAD/eng/common/sdl/configure-sdl-tool.ps1 -------------------------------------------------------------------------------- /eng/common/sdl/execute-all-sdl-tools.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/symreader/HEAD/eng/common/sdl/execute-all-sdl-tools.ps1 -------------------------------------------------------------------------------- /eng/common/sdl/extract-artifact-archives.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/symreader/HEAD/eng/common/sdl/extract-artifact-archives.ps1 -------------------------------------------------------------------------------- /eng/common/sdl/extract-artifact-packages.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/symreader/HEAD/eng/common/sdl/extract-artifact-packages.ps1 -------------------------------------------------------------------------------- /eng/common/sdl/init-sdl.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/symreader/HEAD/eng/common/sdl/init-sdl.ps1 -------------------------------------------------------------------------------- /eng/common/sdl/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/symreader/HEAD/eng/common/sdl/packages.config -------------------------------------------------------------------------------- /eng/common/sdl/run-sdl.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/symreader/HEAD/eng/common/sdl/run-sdl.ps1 -------------------------------------------------------------------------------- /eng/common/sdl/sdl.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/symreader/HEAD/eng/common/sdl/sdl.ps1 -------------------------------------------------------------------------------- /eng/common/sdl/trim-assets-version.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/symreader/HEAD/eng/common/sdl/trim-assets-version.ps1 -------------------------------------------------------------------------------- /eng/common/template-guidance.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/symreader/HEAD/eng/common/template-guidance.md -------------------------------------------------------------------------------- /eng/common/templates-official/job/job.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/symreader/HEAD/eng/common/templates-official/job/job.yml -------------------------------------------------------------------------------- /eng/common/templates-official/job/onelocbuild.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/symreader/HEAD/eng/common/templates-official/job/onelocbuild.yml -------------------------------------------------------------------------------- /eng/common/templates-official/job/publish-build-assets.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/symreader/HEAD/eng/common/templates-official/job/publish-build-assets.yml -------------------------------------------------------------------------------- /eng/common/templates-official/job/source-build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/symreader/HEAD/eng/common/templates-official/job/source-build.yml -------------------------------------------------------------------------------- /eng/common/templates-official/job/source-index-stage1.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/symreader/HEAD/eng/common/templates-official/job/source-index-stage1.yml -------------------------------------------------------------------------------- /eng/common/templates-official/jobs/codeql-build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/symreader/HEAD/eng/common/templates-official/jobs/codeql-build.yml -------------------------------------------------------------------------------- /eng/common/templates-official/jobs/jobs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/symreader/HEAD/eng/common/templates-official/jobs/jobs.yml -------------------------------------------------------------------------------- /eng/common/templates-official/jobs/source-build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/symreader/HEAD/eng/common/templates-official/jobs/source-build.yml -------------------------------------------------------------------------------- /eng/common/templates-official/post-build/common-variables.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/symreader/HEAD/eng/common/templates-official/post-build/common-variables.yml -------------------------------------------------------------------------------- /eng/common/templates-official/post-build/post-build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/symreader/HEAD/eng/common/templates-official/post-build/post-build.yml -------------------------------------------------------------------------------- /eng/common/templates-official/post-build/setup-maestro-vars.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/symreader/HEAD/eng/common/templates-official/post-build/setup-maestro-vars.yml -------------------------------------------------------------------------------- /eng/common/templates-official/steps/component-governance.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/symreader/HEAD/eng/common/templates-official/steps/component-governance.yml -------------------------------------------------------------------------------- /eng/common/templates-official/steps/enable-internal-runtimes.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/symreader/HEAD/eng/common/templates-official/steps/enable-internal-runtimes.yml -------------------------------------------------------------------------------- /eng/common/templates-official/steps/enable-internal-sources.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/symreader/HEAD/eng/common/templates-official/steps/enable-internal-sources.yml -------------------------------------------------------------------------------- /eng/common/templates-official/steps/generate-sbom.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/symreader/HEAD/eng/common/templates-official/steps/generate-sbom.yml -------------------------------------------------------------------------------- /eng/common/templates-official/steps/get-delegation-sas.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/symreader/HEAD/eng/common/templates-official/steps/get-delegation-sas.yml -------------------------------------------------------------------------------- /eng/common/templates-official/steps/get-federated-access-token.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/symreader/HEAD/eng/common/templates-official/steps/get-federated-access-token.yml -------------------------------------------------------------------------------- /eng/common/templates-official/steps/publish-build-artifacts.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/symreader/HEAD/eng/common/templates-official/steps/publish-build-artifacts.yml -------------------------------------------------------------------------------- /eng/common/templates-official/steps/publish-logs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/symreader/HEAD/eng/common/templates-official/steps/publish-logs.yml -------------------------------------------------------------------------------- /eng/common/templates-official/steps/publish-pipeline-artifacts.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/symreader/HEAD/eng/common/templates-official/steps/publish-pipeline-artifacts.yml -------------------------------------------------------------------------------- /eng/common/templates-official/steps/retain-build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/symreader/HEAD/eng/common/templates-official/steps/retain-build.yml -------------------------------------------------------------------------------- /eng/common/templates-official/steps/send-to-helix.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/symreader/HEAD/eng/common/templates-official/steps/send-to-helix.yml -------------------------------------------------------------------------------- /eng/common/templates-official/steps/source-build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/symreader/HEAD/eng/common/templates-official/steps/source-build.yml -------------------------------------------------------------------------------- /eng/common/templates-official/steps/source-index-stage1-publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/symreader/HEAD/eng/common/templates-official/steps/source-index-stage1-publish.yml -------------------------------------------------------------------------------- /eng/common/templates-official/variables/pool-providers.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/symreader/HEAD/eng/common/templates-official/variables/pool-providers.yml -------------------------------------------------------------------------------- /eng/common/templates-official/variables/sdl-variables.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/symreader/HEAD/eng/common/templates-official/variables/sdl-variables.yml -------------------------------------------------------------------------------- /eng/common/templates/job/job.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/symreader/HEAD/eng/common/templates/job/job.yml -------------------------------------------------------------------------------- /eng/common/templates/job/onelocbuild.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/symreader/HEAD/eng/common/templates/job/onelocbuild.yml -------------------------------------------------------------------------------- /eng/common/templates/job/publish-build-assets.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/symreader/HEAD/eng/common/templates/job/publish-build-assets.yml -------------------------------------------------------------------------------- /eng/common/templates/job/source-build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/symreader/HEAD/eng/common/templates/job/source-build.yml -------------------------------------------------------------------------------- /eng/common/templates/job/source-index-stage1.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/symreader/HEAD/eng/common/templates/job/source-index-stage1.yml -------------------------------------------------------------------------------- /eng/common/templates/jobs/codeql-build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/symreader/HEAD/eng/common/templates/jobs/codeql-build.yml -------------------------------------------------------------------------------- /eng/common/templates/jobs/jobs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/symreader/HEAD/eng/common/templates/jobs/jobs.yml -------------------------------------------------------------------------------- /eng/common/templates/jobs/source-build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/symreader/HEAD/eng/common/templates/jobs/source-build.yml -------------------------------------------------------------------------------- /eng/common/templates/post-build/common-variables.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/symreader/HEAD/eng/common/templates/post-build/common-variables.yml -------------------------------------------------------------------------------- /eng/common/templates/post-build/post-build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/symreader/HEAD/eng/common/templates/post-build/post-build.yml -------------------------------------------------------------------------------- /eng/common/templates/post-build/setup-maestro-vars.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/symreader/HEAD/eng/common/templates/post-build/setup-maestro-vars.yml -------------------------------------------------------------------------------- /eng/common/templates/steps/component-governance.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/symreader/HEAD/eng/common/templates/steps/component-governance.yml -------------------------------------------------------------------------------- /eng/common/templates/steps/enable-internal-runtimes.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/symreader/HEAD/eng/common/templates/steps/enable-internal-runtimes.yml -------------------------------------------------------------------------------- /eng/common/templates/steps/enable-internal-sources.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/symreader/HEAD/eng/common/templates/steps/enable-internal-sources.yml -------------------------------------------------------------------------------- /eng/common/templates/steps/generate-sbom.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/symreader/HEAD/eng/common/templates/steps/generate-sbom.yml -------------------------------------------------------------------------------- /eng/common/templates/steps/get-delegation-sas.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/symreader/HEAD/eng/common/templates/steps/get-delegation-sas.yml -------------------------------------------------------------------------------- /eng/common/templates/steps/get-federated-access-token.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/symreader/HEAD/eng/common/templates/steps/get-federated-access-token.yml -------------------------------------------------------------------------------- /eng/common/templates/steps/publish-build-artifacts.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/symreader/HEAD/eng/common/templates/steps/publish-build-artifacts.yml -------------------------------------------------------------------------------- /eng/common/templates/steps/publish-logs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/symreader/HEAD/eng/common/templates/steps/publish-logs.yml -------------------------------------------------------------------------------- /eng/common/templates/steps/publish-pipeline-artifacts.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/symreader/HEAD/eng/common/templates/steps/publish-pipeline-artifacts.yml -------------------------------------------------------------------------------- /eng/common/templates/steps/retain-build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/symreader/HEAD/eng/common/templates/steps/retain-build.yml -------------------------------------------------------------------------------- /eng/common/templates/steps/send-to-helix.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/symreader/HEAD/eng/common/templates/steps/send-to-helix.yml -------------------------------------------------------------------------------- /eng/common/templates/steps/source-build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/symreader/HEAD/eng/common/templates/steps/source-build.yml -------------------------------------------------------------------------------- /eng/common/templates/steps/source-index-stage1-publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/symreader/HEAD/eng/common/templates/steps/source-index-stage1-publish.yml -------------------------------------------------------------------------------- /eng/common/templates/steps/vmr-sync.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/symreader/HEAD/eng/common/templates/steps/vmr-sync.yml -------------------------------------------------------------------------------- /eng/common/templates/variables/pool-providers.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/symreader/HEAD/eng/common/templates/variables/pool-providers.yml -------------------------------------------------------------------------------- /eng/common/templates/vmr-build-pr.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/symreader/HEAD/eng/common/templates/vmr-build-pr.yml -------------------------------------------------------------------------------- /eng/common/tools.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/symreader/HEAD/eng/common/tools.ps1 -------------------------------------------------------------------------------- /eng/common/tools.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/symreader/HEAD/eng/common/tools.sh -------------------------------------------------------------------------------- /eng/common/vmr-sync.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/symreader/HEAD/eng/common/vmr-sync.ps1 -------------------------------------------------------------------------------- /eng/common/vmr-sync.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/symreader/HEAD/eng/common/vmr-sync.sh -------------------------------------------------------------------------------- /eng/tsaconfig.gdntsa: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/symreader/HEAD/eng/tsaconfig.gdntsa -------------------------------------------------------------------------------- /es-metadata.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/symreader/HEAD/es-metadata.yml -------------------------------------------------------------------------------- /github-merge-flow.jsonc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/symreader/HEAD/github-merge-flow.jsonc -------------------------------------------------------------------------------- /global.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/symreader/HEAD/global.json -------------------------------------------------------------------------------- /restore.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/symreader/HEAD/restore.sh -------------------------------------------------------------------------------- /src/Directory.Build.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/symreader/HEAD/src/Directory.Build.props -------------------------------------------------------------------------------- /src/Directory.Build.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/symreader/HEAD/src/Directory.Build.targets -------------------------------------------------------------------------------- /src/Directory.Packages.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/symreader/HEAD/src/Directory.Packages.props -------------------------------------------------------------------------------- /src/Microsoft.DiaSymReader.Native.Tests/Microsoft.DiaSymReader.Native.UnitTests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/symreader/HEAD/src/Microsoft.DiaSymReader.Native.Tests/Microsoft.DiaSymReader.Native.UnitTests.csproj -------------------------------------------------------------------------------- /src/Microsoft.DiaSymReader.Native.Tests/SymUnmanagedFactoryNativeTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/symreader/HEAD/src/Microsoft.DiaSymReader.Native.Tests/SymUnmanagedFactoryNativeTests.cs -------------------------------------------------------------------------------- /src/Microsoft.DiaSymReader.Tests/ComMemoryStreamTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/symreader/HEAD/src/Microsoft.DiaSymReader.Tests/ComMemoryStreamTests.cs -------------------------------------------------------------------------------- /src/Microsoft.DiaSymReader.Tests/DocumentExtensionsTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/symreader/HEAD/src/Microsoft.DiaSymReader.Tests/DocumentExtensionsTests.cs -------------------------------------------------------------------------------- /src/Microsoft.DiaSymReader.Tests/InteropUtilitiesTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/symreader/HEAD/src/Microsoft.DiaSymReader.Tests/InteropUtilitiesTests.cs -------------------------------------------------------------------------------- /src/Microsoft.DiaSymReader.Tests/Microsoft.DiaSymReader.UnitTests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/symreader/HEAD/src/Microsoft.DiaSymReader.Tests/Microsoft.DiaSymReader.UnitTests.csproj -------------------------------------------------------------------------------- /src/Microsoft.DiaSymReader.Tests/Mocks/SymDocumentMock.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/symreader/HEAD/src/Microsoft.DiaSymReader.Tests/Mocks/SymDocumentMock.cs -------------------------------------------------------------------------------- /src/Microsoft.DiaSymReader.Tests/SymReaderMetadataAdapterTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/symreader/HEAD/src/Microsoft.DiaSymReader.Tests/SymReaderMetadataAdapterTests.cs -------------------------------------------------------------------------------- /src/Microsoft.DiaSymReader.Tests/SymUnmanagedFactoryTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/symreader/HEAD/src/Microsoft.DiaSymReader.Tests/SymUnmanagedFactoryTests.cs -------------------------------------------------------------------------------- /src/Microsoft.DiaSymReader.Tests/SymUnmanagedStreamFactoryTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/symreader/HEAD/src/Microsoft.DiaSymReader.Tests/SymUnmanagedStreamFactoryTests.cs -------------------------------------------------------------------------------- /src/Microsoft.DiaSymReader.Tests/SymUnmanagedWriterTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/symreader/HEAD/src/Microsoft.DiaSymReader.Tests/SymUnmanagedWriterTests.cs -------------------------------------------------------------------------------- /src/Microsoft.DiaSymReader.Tests/SymWriterMetadataAdapterTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/symreader/HEAD/src/Microsoft.DiaSymReader.Tests/SymWriterMetadataAdapterTests.cs -------------------------------------------------------------------------------- /src/Microsoft.DiaSymReader.Tests/TestSymWriterMetadataProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/symreader/HEAD/src/Microsoft.DiaSymReader.Tests/TestSymWriterMetadataProvider.cs -------------------------------------------------------------------------------- /src/Microsoft.DiaSymReader/Extensions/SymUnmanagedAsyncStepInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/symreader/HEAD/src/Microsoft.DiaSymReader/Extensions/SymUnmanagedAsyncStepInfo.cs -------------------------------------------------------------------------------- /src/Microsoft.DiaSymReader/Extensions/SymUnmanagedExtensions.Binder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/symreader/HEAD/src/Microsoft.DiaSymReader/Extensions/SymUnmanagedExtensions.Binder.cs -------------------------------------------------------------------------------- /src/Microsoft.DiaSymReader/Extensions/SymUnmanagedExtensions.Constant.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/symreader/HEAD/src/Microsoft.DiaSymReader/Extensions/SymUnmanagedExtensions.Constant.cs -------------------------------------------------------------------------------- /src/Microsoft.DiaSymReader/Extensions/SymUnmanagedExtensions.Document.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/symreader/HEAD/src/Microsoft.DiaSymReader/Extensions/SymUnmanagedExtensions.Document.cs -------------------------------------------------------------------------------- /src/Microsoft.DiaSymReader/Extensions/SymUnmanagedExtensions.Method.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/symreader/HEAD/src/Microsoft.DiaSymReader/Extensions/SymUnmanagedExtensions.Method.cs -------------------------------------------------------------------------------- /src/Microsoft.DiaSymReader/Extensions/SymUnmanagedExtensions.Namespace.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/symreader/HEAD/src/Microsoft.DiaSymReader/Extensions/SymUnmanagedExtensions.Namespace.cs -------------------------------------------------------------------------------- /src/Microsoft.DiaSymReader/Extensions/SymUnmanagedExtensions.Reader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/symreader/HEAD/src/Microsoft.DiaSymReader/Extensions/SymUnmanagedExtensions.Reader.cs -------------------------------------------------------------------------------- /src/Microsoft.DiaSymReader/Extensions/SymUnmanagedExtensions.Scope.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/symreader/HEAD/src/Microsoft.DiaSymReader/Extensions/SymUnmanagedExtensions.Scope.cs -------------------------------------------------------------------------------- /src/Microsoft.DiaSymReader/Extensions/SymUnmanagedExtensions.Variable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/symreader/HEAD/src/Microsoft.DiaSymReader/Extensions/SymUnmanagedExtensions.Variable.cs -------------------------------------------------------------------------------- /src/Microsoft.DiaSymReader/Extensions/SymUnmanagedSequencePoint.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/symreader/HEAD/src/Microsoft.DiaSymReader/Extensions/SymUnmanagedSequencePoint.cs -------------------------------------------------------------------------------- /src/Microsoft.DiaSymReader/Extensions/SymUnmanagedStreamFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/symreader/HEAD/src/Microsoft.DiaSymReader/Extensions/SymUnmanagedStreamFactory.cs -------------------------------------------------------------------------------- /src/Microsoft.DiaSymReader/Metadata/IMetadataEmit.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/symreader/HEAD/src/Microsoft.DiaSymReader/Metadata/IMetadataEmit.cs -------------------------------------------------------------------------------- /src/Microsoft.DiaSymReader/Metadata/IMetadataImport.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/symreader/HEAD/src/Microsoft.DiaSymReader/Metadata/IMetadataImport.cs -------------------------------------------------------------------------------- /src/Microsoft.DiaSymReader/Metadata/IMetadataImportProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/symreader/HEAD/src/Microsoft.DiaSymReader/Metadata/IMetadataImportProvider.cs -------------------------------------------------------------------------------- /src/Microsoft.DiaSymReader/Metadata/ISymReaderMetadataProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/symreader/HEAD/src/Microsoft.DiaSymReader/Metadata/ISymReaderMetadataProvider.cs -------------------------------------------------------------------------------- /src/Microsoft.DiaSymReader/Metadata/ISymWriterMetadataProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/symreader/HEAD/src/Microsoft.DiaSymReader/Metadata/ISymWriterMetadataProvider.cs -------------------------------------------------------------------------------- /src/Microsoft.DiaSymReader/Metadata/MetadataAdapterBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/symreader/HEAD/src/Microsoft.DiaSymReader/Metadata/MetadataAdapterBase.cs -------------------------------------------------------------------------------- /src/Microsoft.DiaSymReader/Metadata/MetadataImportFieldOffset.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/symreader/HEAD/src/Microsoft.DiaSymReader/Metadata/MetadataImportFieldOffset.cs -------------------------------------------------------------------------------- /src/Microsoft.DiaSymReader/Metadata/SymReaderMetadataAdapter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/symreader/HEAD/src/Microsoft.DiaSymReader/Metadata/SymReaderMetadataAdapter.cs -------------------------------------------------------------------------------- /src/Microsoft.DiaSymReader/Metadata/SymWriterMetadataAdapter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/symreader/HEAD/src/Microsoft.DiaSymReader/Metadata/SymWriterMetadataAdapter.cs -------------------------------------------------------------------------------- /src/Microsoft.DiaSymReader/Microsoft.DiaSymReader.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/symreader/HEAD/src/Microsoft.DiaSymReader/Microsoft.DiaSymReader.csproj -------------------------------------------------------------------------------- /src/Microsoft.DiaSymReader/Reader/ISymEncUnmanagedMethod.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/symreader/HEAD/src/Microsoft.DiaSymReader/Reader/ISymEncUnmanagedMethod.cs -------------------------------------------------------------------------------- /src/Microsoft.DiaSymReader/Reader/ISymUnmanagedAsyncMethod.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/symreader/HEAD/src/Microsoft.DiaSymReader/Reader/ISymUnmanagedAsyncMethod.cs -------------------------------------------------------------------------------- /src/Microsoft.DiaSymReader/Reader/ISymUnmanagedBinder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/symreader/HEAD/src/Microsoft.DiaSymReader/Reader/ISymUnmanagedBinder.cs -------------------------------------------------------------------------------- /src/Microsoft.DiaSymReader/Reader/ISymUnmanagedBinder2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/symreader/HEAD/src/Microsoft.DiaSymReader/Reader/ISymUnmanagedBinder2.cs -------------------------------------------------------------------------------- /src/Microsoft.DiaSymReader/Reader/ISymUnmanagedBinder3.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/symreader/HEAD/src/Microsoft.DiaSymReader/Reader/ISymUnmanagedBinder3.cs -------------------------------------------------------------------------------- /src/Microsoft.DiaSymReader/Reader/ISymUnmanagedBinder4.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/symreader/HEAD/src/Microsoft.DiaSymReader/Reader/ISymUnmanagedBinder4.cs -------------------------------------------------------------------------------- /src/Microsoft.DiaSymReader/Reader/ISymUnmanagedConstant.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/symreader/HEAD/src/Microsoft.DiaSymReader/Reader/ISymUnmanagedConstant.cs -------------------------------------------------------------------------------- /src/Microsoft.DiaSymReader/Reader/ISymUnmanagedDispose.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/symreader/HEAD/src/Microsoft.DiaSymReader/Reader/ISymUnmanagedDispose.cs -------------------------------------------------------------------------------- /src/Microsoft.DiaSymReader/Reader/ISymUnmanagedDocument.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/symreader/HEAD/src/Microsoft.DiaSymReader/Reader/ISymUnmanagedDocument.cs -------------------------------------------------------------------------------- /src/Microsoft.DiaSymReader/Reader/ISymUnmanagedEncUpdate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/symreader/HEAD/src/Microsoft.DiaSymReader/Reader/ISymUnmanagedEncUpdate.cs -------------------------------------------------------------------------------- /src/Microsoft.DiaSymReader/Reader/ISymUnmanagedMethod.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/symreader/HEAD/src/Microsoft.DiaSymReader/Reader/ISymUnmanagedMethod.cs -------------------------------------------------------------------------------- /src/Microsoft.DiaSymReader/Reader/ISymUnmanagedMethod2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/symreader/HEAD/src/Microsoft.DiaSymReader/Reader/ISymUnmanagedMethod2.cs -------------------------------------------------------------------------------- /src/Microsoft.DiaSymReader/Reader/ISymUnmanagedNamespace.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/symreader/HEAD/src/Microsoft.DiaSymReader/Reader/ISymUnmanagedNamespace.cs -------------------------------------------------------------------------------- /src/Microsoft.DiaSymReader/Reader/ISymUnmanagedReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/symreader/HEAD/src/Microsoft.DiaSymReader/Reader/ISymUnmanagedReader.cs -------------------------------------------------------------------------------- /src/Microsoft.DiaSymReader/Reader/ISymUnmanagedReader2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/symreader/HEAD/src/Microsoft.DiaSymReader/Reader/ISymUnmanagedReader2.cs -------------------------------------------------------------------------------- /src/Microsoft.DiaSymReader/Reader/ISymUnmanagedReader3.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/symreader/HEAD/src/Microsoft.DiaSymReader/Reader/ISymUnmanagedReader3.cs -------------------------------------------------------------------------------- /src/Microsoft.DiaSymReader/Reader/ISymUnmanagedReader4.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/symreader/HEAD/src/Microsoft.DiaSymReader/Reader/ISymUnmanagedReader4.cs -------------------------------------------------------------------------------- /src/Microsoft.DiaSymReader/Reader/ISymUnmanagedReader5.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/symreader/HEAD/src/Microsoft.DiaSymReader/Reader/ISymUnmanagedReader5.cs -------------------------------------------------------------------------------- /src/Microsoft.DiaSymReader/Reader/ISymUnmanagedReader6.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/symreader/HEAD/src/Microsoft.DiaSymReader/Reader/ISymUnmanagedReader6.cs -------------------------------------------------------------------------------- /src/Microsoft.DiaSymReader/Reader/ISymUnmanagedScope.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/symreader/HEAD/src/Microsoft.DiaSymReader/Reader/ISymUnmanagedScope.cs -------------------------------------------------------------------------------- /src/Microsoft.DiaSymReader/Reader/ISymUnmanagedScope2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/symreader/HEAD/src/Microsoft.DiaSymReader/Reader/ISymUnmanagedScope2.cs -------------------------------------------------------------------------------- /src/Microsoft.DiaSymReader/Reader/ISymUnmanagedSourceServerModule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/symreader/HEAD/src/Microsoft.DiaSymReader/Reader/ISymUnmanagedSourceServerModule.cs -------------------------------------------------------------------------------- /src/Microsoft.DiaSymReader/Reader/ISymUnmanagedVariable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/symreader/HEAD/src/Microsoft.DiaSymReader/Reader/ISymUnmanagedVariable.cs -------------------------------------------------------------------------------- /src/Microsoft.DiaSymReader/Reader/SymUnmanagedLineDelta.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/symreader/HEAD/src/Microsoft.DiaSymReader/Reader/SymUnmanagedLineDelta.cs -------------------------------------------------------------------------------- /src/Microsoft.DiaSymReader/Reader/SymUnmanagedReaderCreationOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/symreader/HEAD/src/Microsoft.DiaSymReader/Reader/SymUnmanagedReaderCreationOptions.cs -------------------------------------------------------------------------------- /src/Microsoft.DiaSymReader/Reader/SymUnmanagedReaderFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/symreader/HEAD/src/Microsoft.DiaSymReader/Reader/SymUnmanagedReaderFactory.cs -------------------------------------------------------------------------------- /src/Microsoft.DiaSymReader/Reader/SymUnmanagedSearchPolicy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/symreader/HEAD/src/Microsoft.DiaSymReader/Reader/SymUnmanagedSearchPolicy.cs -------------------------------------------------------------------------------- /src/Microsoft.DiaSymReader/SymUnmanagedFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/symreader/HEAD/src/Microsoft.DiaSymReader/SymUnmanagedFactory.cs -------------------------------------------------------------------------------- /src/Microsoft.DiaSymReader/Utilities/ComMemoryStream.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/symreader/HEAD/src/Microsoft.DiaSymReader/Utilities/ComMemoryStream.cs -------------------------------------------------------------------------------- /src/Microsoft.DiaSymReader/Utilities/ComStreamWrapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/symreader/HEAD/src/Microsoft.DiaSymReader/Utilities/ComStreamWrapper.cs -------------------------------------------------------------------------------- /src/Microsoft.DiaSymReader/Utilities/HResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/symreader/HEAD/src/Microsoft.DiaSymReader/Utilities/HResult.cs -------------------------------------------------------------------------------- /src/Microsoft.DiaSymReader/Utilities/IUnsafeComStream.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/symreader/HEAD/src/Microsoft.DiaSymReader/Utilities/IUnsafeComStream.cs -------------------------------------------------------------------------------- /src/Microsoft.DiaSymReader/Utilities/InteropUtilities.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/symreader/HEAD/src/Microsoft.DiaSymReader/Utilities/InteropUtilities.cs -------------------------------------------------------------------------------- /src/Microsoft.DiaSymReader/Utilities/UnsafeComStreamWrapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/symreader/HEAD/src/Microsoft.DiaSymReader/Utilities/UnsafeComStreamWrapper.cs -------------------------------------------------------------------------------- /src/Microsoft.DiaSymReader/Writer/ISymUnmanagedAsyncMethodPropertiesWriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/symreader/HEAD/src/Microsoft.DiaSymReader/Writer/ISymUnmanagedAsyncMethodPropertiesWriter.cs -------------------------------------------------------------------------------- /src/Microsoft.DiaSymReader/Writer/ISymUnmanagedCompilerInfoWriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/symreader/HEAD/src/Microsoft.DiaSymReader/Writer/ISymUnmanagedCompilerInfoWriter.cs -------------------------------------------------------------------------------- /src/Microsoft.DiaSymReader/Writer/ISymUnmanagedDocumentWriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/symreader/HEAD/src/Microsoft.DiaSymReader/Writer/ISymUnmanagedDocumentWriter.cs -------------------------------------------------------------------------------- /src/Microsoft.DiaSymReader/Writer/ISymUnmanagedWriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/symreader/HEAD/src/Microsoft.DiaSymReader/Writer/ISymUnmanagedWriter.cs -------------------------------------------------------------------------------- /src/Microsoft.DiaSymReader/Writer/SymUnmanagedSequencePointsWriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/symreader/HEAD/src/Microsoft.DiaSymReader/Writer/SymUnmanagedSequencePointsWriter.cs -------------------------------------------------------------------------------- /src/Microsoft.DiaSymReader/Writer/SymUnmanagedWriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/symreader/HEAD/src/Microsoft.DiaSymReader/Writer/SymUnmanagedWriter.cs -------------------------------------------------------------------------------- /src/Microsoft.DiaSymReader/Writer/SymUnmanagedWriterCreationOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/symreader/HEAD/src/Microsoft.DiaSymReader/Writer/SymUnmanagedWriterCreationOptions.cs -------------------------------------------------------------------------------- /src/Microsoft.DiaSymReader/Writer/SymUnmanagedWriterException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/symreader/HEAD/src/Microsoft.DiaSymReader/Writer/SymUnmanagedWriterException.cs -------------------------------------------------------------------------------- /src/Microsoft.DiaSymReader/Writer/SymUnmanagedWriterFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/symreader/HEAD/src/Microsoft.DiaSymReader/Writer/SymUnmanagedWriterFactory.cs -------------------------------------------------------------------------------- /src/Microsoft.DiaSymReader/Writer/SymUnmanagedWriterImpl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/symreader/HEAD/src/Microsoft.DiaSymReader/Writer/SymUnmanagedWriterImpl.cs -------------------------------------------------------------------------------- /src/PdbTestResources/PdbTestResources.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/symreader/HEAD/src/PdbTestResources/PdbTestResources.csproj -------------------------------------------------------------------------------- /src/PdbTestResources/ResourceLoader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/symreader/HEAD/src/PdbTestResources/ResourceLoader.cs -------------------------------------------------------------------------------- /src/PdbTestResources/Resources/SourceLink.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/symreader/HEAD/src/PdbTestResources/Resources/SourceLink.dll -------------------------------------------------------------------------------- /src/PdbTestResources/Resources/SourceLink.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/symreader/HEAD/src/PdbTestResources/Resources/SourceLink.pdb -------------------------------------------------------------------------------- /src/PdbTestResources/TestResource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/symreader/HEAD/src/PdbTestResources/TestResource.cs -------------------------------------------------------------------------------- /src/PdbTestResources/TestResources.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/symreader/HEAD/src/PdbTestResources/TestResources.cs -------------------------------------------------------------------------------- /src/TestUtilities/AssertEx.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/symreader/HEAD/src/TestUtilities/AssertEx.cs -------------------------------------------------------------------------------- /src/TestUtilities/ConditionalFactAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/symreader/HEAD/src/TestUtilities/ConditionalFactAttribute.cs -------------------------------------------------------------------------------- /src/TestUtilities/DiffUtil.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/symreader/HEAD/src/TestUtilities/DiffUtil.cs -------------------------------------------------------------------------------- /src/TestUtilities/DummySymReaderMetadataProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/symreader/HEAD/src/TestUtilities/DummySymReaderMetadataProvider.cs -------------------------------------------------------------------------------- /src/TestUtilities/DummySymWriterMetadataProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/symreader/HEAD/src/TestUtilities/DummySymWriterMetadataProvider.cs -------------------------------------------------------------------------------- /src/TestUtilities/TestUtilities.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/symreader/HEAD/src/TestUtilities/TestUtilities.csproj -------------------------------------------------------------------------------- /symreader.slnx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/symreader/HEAD/symreader.slnx -------------------------------------------------------------------------------- /test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/symreader/HEAD/test.sh --------------------------------------------------------------------------------