├── .config └── dotnet-tools.json ├── .devcontainer ├── Dockerfile └── devcontainer.json ├── .editorconfig ├── .gitattributes ├── .github ├── .editorconfig ├── actions │ └── publish-artifacts │ │ └── action.yaml ├── renovate.json └── workflows │ ├── build.yml │ ├── docs.yml │ ├── libtemplate-update.yml │ └── release.yml ├── .gitignore ├── .prettierrc.yaml ├── .vscode ├── extensions.json ├── launch.json ├── settings.json └── tasks.json ├── AssemblyRefScanner.sln ├── CONTRIBUTING.md ├── Directory.Build.props ├── Directory.Build.rsp ├── Directory.Build.targets ├── Directory.Packages.props ├── LICENSE ├── README.md ├── docfx ├── .gitignore ├── docfx.json ├── docs │ ├── features.md │ ├── getting-started.md │ └── toc.yml ├── index.md └── toc.yml ├── global.json ├── init.cmd ├── init.ps1 ├── nuget.config ├── settings.VisualStudio.json ├── src ├── .editorconfig ├── AssemblyInfo.cs ├── AssemblyInfo.vb ├── AssemblyRefScanner │ ├── ApiRefScanner.cs │ ├── AssemblyRefScanner.csproj │ ├── AssemblyReferenceScanner.cs │ ├── CustomAttributeTypeProvider.cs │ ├── DocId.cs │ ├── DocIdBuilder.cs │ ├── EmbeddedTypeScanner.cs │ ├── MultiVersionOfOneAssemblyNameScanner.cs │ ├── Program.cs │ ├── ResolveAssemblyReferences.cs │ ├── ScannerBase.cs │ ├── SignatureTypeProvider.cs │ ├── TargetFrameworkScanner.cs │ └── TypeRefScanner.cs ├── Directory.Build.props └── Directory.Build.targets ├── strongname.snk ├── stylecop.json ├── test ├── .editorconfig ├── AssemblyRefScanner.Tests │ ├── AssemblyRefScanner.Tests.csproj │ ├── DocIdBuilderTests.cs │ ├── DocIdParserTests.cs │ ├── DocIdSamples.cs │ ├── EmbeddedTypeScannerTests.cs │ └── app.config ├── Directory.Build.props └── Directory.Build.targets ├── tools ├── Check-DotNetRuntime.ps1 ├── Check-DotNetSdk.ps1 ├── Get-ArtifactsStagingDirectory.ps1 ├── Get-CodeCovTool.ps1 ├── Get-LibTemplateBasis.ps1 ├── Get-NuGetTool.ps1 ├── Get-ProcDump.ps1 ├── Get-SymbolFiles.ps1 ├── Get-TempToolsPath.ps1 ├── Install-DotNetSdk.ps1 ├── Install-NuGetCredProvider.ps1 ├── MergeFrom-Template.ps1 ├── Set-EnvVars.ps1 ├── artifacts │ ├── Variables.ps1 │ ├── _all.ps1 │ ├── _stage_all.ps1 │ ├── build_logs.ps1 │ ├── coverageResults.ps1 │ ├── deployables.ps1 │ ├── projectAssetsJson.ps1 │ ├── symbols.ps1 │ ├── testResults.ps1 │ └── test_symbols.ps1 ├── dotnet-test-cloud.ps1 ├── publish-CodeCov.ps1 ├── test.runsettings └── variables │ ├── DotNetSdkVersion.ps1 │ ├── _all.ps1 │ └── _define.ps1 └── version.json /.config/dotnet-tools.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AArnott/AssemblyRefScanner/HEAD/.config/dotnet-tools.json -------------------------------------------------------------------------------- /.devcontainer/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AArnott/AssemblyRefScanner/HEAD/.devcontainer/Dockerfile -------------------------------------------------------------------------------- /.devcontainer/devcontainer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AArnott/AssemblyRefScanner/HEAD/.devcontainer/devcontainer.json -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AArnott/AssemblyRefScanner/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AArnott/AssemblyRefScanner/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/.editorconfig: -------------------------------------------------------------------------------- 1 | [renovate.json*] 2 | indent_style = tab 3 | -------------------------------------------------------------------------------- /.github/actions/publish-artifacts/action.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AArnott/AssemblyRefScanner/HEAD/.github/actions/publish-artifacts/action.yaml -------------------------------------------------------------------------------- /.github/renovate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AArnott/AssemblyRefScanner/HEAD/.github/renovate.json -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AArnott/AssemblyRefScanner/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.github/workflows/docs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AArnott/AssemblyRefScanner/HEAD/.github/workflows/docs.yml -------------------------------------------------------------------------------- /.github/workflows/libtemplate-update.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AArnott/AssemblyRefScanner/HEAD/.github/workflows/libtemplate-update.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AArnott/AssemblyRefScanner/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AArnott/AssemblyRefScanner/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierrc.yaml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AArnott/AssemblyRefScanner/HEAD/.vscode/extensions.json -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AArnott/AssemblyRefScanner/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AArnott/AssemblyRefScanner/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AArnott/AssemblyRefScanner/HEAD/.vscode/tasks.json -------------------------------------------------------------------------------- /AssemblyRefScanner.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AArnott/AssemblyRefScanner/HEAD/AssemblyRefScanner.sln -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AArnott/AssemblyRefScanner/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Directory.Build.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AArnott/AssemblyRefScanner/HEAD/Directory.Build.props -------------------------------------------------------------------------------- /Directory.Build.rsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AArnott/AssemblyRefScanner/HEAD/Directory.Build.rsp -------------------------------------------------------------------------------- /Directory.Build.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AArnott/AssemblyRefScanner/HEAD/Directory.Build.targets -------------------------------------------------------------------------------- /Directory.Packages.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AArnott/AssemblyRefScanner/HEAD/Directory.Packages.props -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AArnott/AssemblyRefScanner/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AArnott/AssemblyRefScanner/HEAD/README.md -------------------------------------------------------------------------------- /docfx/.gitignore: -------------------------------------------------------------------------------- 1 | _site/ 2 | api/ 3 | -------------------------------------------------------------------------------- /docfx/docfx.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AArnott/AssemblyRefScanner/HEAD/docfx/docfx.json -------------------------------------------------------------------------------- /docfx/docs/features.md: -------------------------------------------------------------------------------- 1 | # Features 2 | 3 | TODO 4 | -------------------------------------------------------------------------------- /docfx/docs/getting-started.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AArnott/AssemblyRefScanner/HEAD/docfx/docs/getting-started.md -------------------------------------------------------------------------------- /docfx/docs/toc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AArnott/AssemblyRefScanner/HEAD/docfx/docs/toc.yml -------------------------------------------------------------------------------- /docfx/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AArnott/AssemblyRefScanner/HEAD/docfx/index.md -------------------------------------------------------------------------------- /docfx/toc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AArnott/AssemblyRefScanner/HEAD/docfx/toc.yml -------------------------------------------------------------------------------- /global.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AArnott/AssemblyRefScanner/HEAD/global.json -------------------------------------------------------------------------------- /init.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AArnott/AssemblyRefScanner/HEAD/init.cmd -------------------------------------------------------------------------------- /init.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AArnott/AssemblyRefScanner/HEAD/init.ps1 -------------------------------------------------------------------------------- /nuget.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AArnott/AssemblyRefScanner/HEAD/nuget.config -------------------------------------------------------------------------------- /settings.VisualStudio.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AArnott/AssemblyRefScanner/HEAD/settings.VisualStudio.json -------------------------------------------------------------------------------- /src/.editorconfig: -------------------------------------------------------------------------------- 1 | [*.cs] 2 | dotnet_diagnostic.SA1600.severity=suggestion -------------------------------------------------------------------------------- /src/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AArnott/AssemblyRefScanner/HEAD/src/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/AssemblyInfo.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AArnott/AssemblyRefScanner/HEAD/src/AssemblyInfo.vb -------------------------------------------------------------------------------- /src/AssemblyRefScanner/ApiRefScanner.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AArnott/AssemblyRefScanner/HEAD/src/AssemblyRefScanner/ApiRefScanner.cs -------------------------------------------------------------------------------- /src/AssemblyRefScanner/AssemblyRefScanner.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AArnott/AssemblyRefScanner/HEAD/src/AssemblyRefScanner/AssemblyRefScanner.csproj -------------------------------------------------------------------------------- /src/AssemblyRefScanner/AssemblyReferenceScanner.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AArnott/AssemblyRefScanner/HEAD/src/AssemblyRefScanner/AssemblyReferenceScanner.cs -------------------------------------------------------------------------------- /src/AssemblyRefScanner/CustomAttributeTypeProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AArnott/AssemblyRefScanner/HEAD/src/AssemblyRefScanner/CustomAttributeTypeProvider.cs -------------------------------------------------------------------------------- /src/AssemblyRefScanner/DocId.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AArnott/AssemblyRefScanner/HEAD/src/AssemblyRefScanner/DocId.cs -------------------------------------------------------------------------------- /src/AssemblyRefScanner/DocIdBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AArnott/AssemblyRefScanner/HEAD/src/AssemblyRefScanner/DocIdBuilder.cs -------------------------------------------------------------------------------- /src/AssemblyRefScanner/EmbeddedTypeScanner.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AArnott/AssemblyRefScanner/HEAD/src/AssemblyRefScanner/EmbeddedTypeScanner.cs -------------------------------------------------------------------------------- /src/AssemblyRefScanner/MultiVersionOfOneAssemblyNameScanner.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AArnott/AssemblyRefScanner/HEAD/src/AssemblyRefScanner/MultiVersionOfOneAssemblyNameScanner.cs -------------------------------------------------------------------------------- /src/AssemblyRefScanner/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AArnott/AssemblyRefScanner/HEAD/src/AssemblyRefScanner/Program.cs -------------------------------------------------------------------------------- /src/AssemblyRefScanner/ResolveAssemblyReferences.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AArnott/AssemblyRefScanner/HEAD/src/AssemblyRefScanner/ResolveAssemblyReferences.cs -------------------------------------------------------------------------------- /src/AssemblyRefScanner/ScannerBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AArnott/AssemblyRefScanner/HEAD/src/AssemblyRefScanner/ScannerBase.cs -------------------------------------------------------------------------------- /src/AssemblyRefScanner/SignatureTypeProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AArnott/AssemblyRefScanner/HEAD/src/AssemblyRefScanner/SignatureTypeProvider.cs -------------------------------------------------------------------------------- /src/AssemblyRefScanner/TargetFrameworkScanner.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AArnott/AssemblyRefScanner/HEAD/src/AssemblyRefScanner/TargetFrameworkScanner.cs -------------------------------------------------------------------------------- /src/AssemblyRefScanner/TypeRefScanner.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AArnott/AssemblyRefScanner/HEAD/src/AssemblyRefScanner/TypeRefScanner.cs -------------------------------------------------------------------------------- /src/Directory.Build.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AArnott/AssemblyRefScanner/HEAD/src/Directory.Build.props -------------------------------------------------------------------------------- /src/Directory.Build.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AArnott/AssemblyRefScanner/HEAD/src/Directory.Build.targets -------------------------------------------------------------------------------- /strongname.snk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AArnott/AssemblyRefScanner/HEAD/strongname.snk -------------------------------------------------------------------------------- /stylecop.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AArnott/AssemblyRefScanner/HEAD/stylecop.json -------------------------------------------------------------------------------- /test/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AArnott/AssemblyRefScanner/HEAD/test/.editorconfig -------------------------------------------------------------------------------- /test/AssemblyRefScanner.Tests/AssemblyRefScanner.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AArnott/AssemblyRefScanner/HEAD/test/AssemblyRefScanner.Tests/AssemblyRefScanner.Tests.csproj -------------------------------------------------------------------------------- /test/AssemblyRefScanner.Tests/DocIdBuilderTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AArnott/AssemblyRefScanner/HEAD/test/AssemblyRefScanner.Tests/DocIdBuilderTests.cs -------------------------------------------------------------------------------- /test/AssemblyRefScanner.Tests/DocIdParserTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AArnott/AssemblyRefScanner/HEAD/test/AssemblyRefScanner.Tests/DocIdParserTests.cs -------------------------------------------------------------------------------- /test/AssemblyRefScanner.Tests/DocIdSamples.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AArnott/AssemblyRefScanner/HEAD/test/AssemblyRefScanner.Tests/DocIdSamples.cs -------------------------------------------------------------------------------- /test/AssemblyRefScanner.Tests/EmbeddedTypeScannerTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AArnott/AssemblyRefScanner/HEAD/test/AssemblyRefScanner.Tests/EmbeddedTypeScannerTests.cs -------------------------------------------------------------------------------- /test/AssemblyRefScanner.Tests/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AArnott/AssemblyRefScanner/HEAD/test/AssemblyRefScanner.Tests/app.config -------------------------------------------------------------------------------- /test/Directory.Build.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AArnott/AssemblyRefScanner/HEAD/test/Directory.Build.props -------------------------------------------------------------------------------- /test/Directory.Build.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AArnott/AssemblyRefScanner/HEAD/test/Directory.Build.targets -------------------------------------------------------------------------------- /tools/Check-DotNetRuntime.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AArnott/AssemblyRefScanner/HEAD/tools/Check-DotNetRuntime.ps1 -------------------------------------------------------------------------------- /tools/Check-DotNetSdk.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AArnott/AssemblyRefScanner/HEAD/tools/Check-DotNetSdk.ps1 -------------------------------------------------------------------------------- /tools/Get-ArtifactsStagingDirectory.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AArnott/AssemblyRefScanner/HEAD/tools/Get-ArtifactsStagingDirectory.ps1 -------------------------------------------------------------------------------- /tools/Get-CodeCovTool.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AArnott/AssemblyRefScanner/HEAD/tools/Get-CodeCovTool.ps1 -------------------------------------------------------------------------------- /tools/Get-LibTemplateBasis.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AArnott/AssemblyRefScanner/HEAD/tools/Get-LibTemplateBasis.ps1 -------------------------------------------------------------------------------- /tools/Get-NuGetTool.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AArnott/AssemblyRefScanner/HEAD/tools/Get-NuGetTool.ps1 -------------------------------------------------------------------------------- /tools/Get-ProcDump.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AArnott/AssemblyRefScanner/HEAD/tools/Get-ProcDump.ps1 -------------------------------------------------------------------------------- /tools/Get-SymbolFiles.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AArnott/AssemblyRefScanner/HEAD/tools/Get-SymbolFiles.ps1 -------------------------------------------------------------------------------- /tools/Get-TempToolsPath.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AArnott/AssemblyRefScanner/HEAD/tools/Get-TempToolsPath.ps1 -------------------------------------------------------------------------------- /tools/Install-DotNetSdk.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AArnott/AssemblyRefScanner/HEAD/tools/Install-DotNetSdk.ps1 -------------------------------------------------------------------------------- /tools/Install-NuGetCredProvider.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AArnott/AssemblyRefScanner/HEAD/tools/Install-NuGetCredProvider.ps1 -------------------------------------------------------------------------------- /tools/MergeFrom-Template.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AArnott/AssemblyRefScanner/HEAD/tools/MergeFrom-Template.ps1 -------------------------------------------------------------------------------- /tools/Set-EnvVars.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AArnott/AssemblyRefScanner/HEAD/tools/Set-EnvVars.ps1 -------------------------------------------------------------------------------- /tools/artifacts/Variables.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AArnott/AssemblyRefScanner/HEAD/tools/artifacts/Variables.ps1 -------------------------------------------------------------------------------- /tools/artifacts/_all.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AArnott/AssemblyRefScanner/HEAD/tools/artifacts/_all.ps1 -------------------------------------------------------------------------------- /tools/artifacts/_stage_all.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AArnott/AssemblyRefScanner/HEAD/tools/artifacts/_stage_all.ps1 -------------------------------------------------------------------------------- /tools/artifacts/build_logs.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AArnott/AssemblyRefScanner/HEAD/tools/artifacts/build_logs.ps1 -------------------------------------------------------------------------------- /tools/artifacts/coverageResults.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AArnott/AssemblyRefScanner/HEAD/tools/artifacts/coverageResults.ps1 -------------------------------------------------------------------------------- /tools/artifacts/deployables.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AArnott/AssemblyRefScanner/HEAD/tools/artifacts/deployables.ps1 -------------------------------------------------------------------------------- /tools/artifacts/projectAssetsJson.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AArnott/AssemblyRefScanner/HEAD/tools/artifacts/projectAssetsJson.ps1 -------------------------------------------------------------------------------- /tools/artifacts/symbols.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AArnott/AssemblyRefScanner/HEAD/tools/artifacts/symbols.ps1 -------------------------------------------------------------------------------- /tools/artifacts/testResults.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AArnott/AssemblyRefScanner/HEAD/tools/artifacts/testResults.ps1 -------------------------------------------------------------------------------- /tools/artifacts/test_symbols.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AArnott/AssemblyRefScanner/HEAD/tools/artifacts/test_symbols.ps1 -------------------------------------------------------------------------------- /tools/dotnet-test-cloud.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AArnott/AssemblyRefScanner/HEAD/tools/dotnet-test-cloud.ps1 -------------------------------------------------------------------------------- /tools/publish-CodeCov.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AArnott/AssemblyRefScanner/HEAD/tools/publish-CodeCov.ps1 -------------------------------------------------------------------------------- /tools/test.runsettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AArnott/AssemblyRefScanner/HEAD/tools/test.runsettings -------------------------------------------------------------------------------- /tools/variables/DotNetSdkVersion.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AArnott/AssemblyRefScanner/HEAD/tools/variables/DotNetSdkVersion.ps1 -------------------------------------------------------------------------------- /tools/variables/_all.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AArnott/AssemblyRefScanner/HEAD/tools/variables/_all.ps1 -------------------------------------------------------------------------------- /tools/variables/_define.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AArnott/AssemblyRefScanner/HEAD/tools/variables/_define.ps1 -------------------------------------------------------------------------------- /version.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AArnott/AssemblyRefScanner/HEAD/version.json --------------------------------------------------------------------------------