├── .config └── dotnet-tools.json ├── .devcontainer ├── Dockerfile └── devcontainer.json ├── .editorconfig ├── .gitattributes ├── .github ├── .editorconfig ├── FUNDING.yml ├── actions │ └── publish-artifacts │ │ └── action.yaml ├── copilot-instructions.md ├── renovate.json ├── signfiles.txt └── workflows │ ├── build.yml │ ├── copilot-setup-steps.yml │ ├── docs.yml │ ├── libtemplate-update.yml │ └── release.yml ├── .gitignore ├── .gitmodules ├── .prettierrc.yaml ├── .vscode ├── extensions.json └── settings.json ├── 3rdPartyNotices.txt ├── CODE-OF-CONDUCT.md ├── CONTRIBUTING.md ├── CONTRIBUTORS ├── Directory.Build.props ├── Directory.Build.rsp ├── Directory.Build.targets ├── Directory.Packages.props ├── LICENSE ├── NOTICE.md ├── Nerdbank.GitVersioning.sln ├── README.md ├── SECURITY.md ├── docfx ├── .gitignore ├── docfx.json ├── docs │ ├── build-systems │ │ ├── cake.md │ │ ├── gulp.md │ │ └── msbuild.md │ ├── cloudbuild.md │ ├── ecosystems │ │ ├── dotnet.md │ │ ├── node.md │ │ └── vsix.md │ ├── faq.md │ ├── getting-started.md │ ├── migrating.md │ ├── nbgv-cli.md │ ├── npm-acquisition.md │ ├── nuget-acquisition.md │ ├── path-filters.md │ ├── public-vs-stable.md │ ├── quickbuild.md │ ├── shallow-cloning-agents.md │ ├── toc.yml │ ├── version-calculation.md │ └── versionJson.md ├── images │ └── globalproperties_log.png ├── index.md └── toc.yml ├── global.json ├── init.cmd ├── init.ps1 ├── nuget.config ├── settings.VisualStudio.json ├── src ├── .editorconfig ├── AssemblyInfo.cs ├── AssemblyInfo.vb ├── Cake.GitVersioning │ ├── Cake.GitVersioning.csproj │ ├── GitVersioningAliases.cs │ ├── GitVersioningCloudProvider.cs │ ├── GitVersioningCloudSettings.cs │ ├── README.md │ └── cake-contrib-addin-medium.png ├── Directory.Build.props ├── Directory.Build.targets ├── NerdBank.GitVersioning │ ├── AssemblyVersionOptionsConverter.cs │ ├── CloudBuild.cs │ ├── CloudBuildServices │ │ ├── AppVeyor.cs │ │ ├── AtlassianBamboo.cs │ │ ├── BitbucketCloud.cs │ │ ├── GitHubActions.cs │ │ ├── GitLab.cs │ │ ├── Jenkins.cs │ │ ├── SpaceAutomation.cs │ │ ├── TeamCity.cs │ │ ├── Travis.cs │ │ └── VisualStudioTeamServices.cs │ ├── Commands │ │ └── CloudCommand.cs │ ├── DisabledGit │ │ ├── DisabledGitContext.cs │ │ └── DisabledGitVersionFile.cs │ ├── FilterPath.cs │ ├── FilterPathJsonConverter.cs │ ├── GitContext.cs │ ├── GitException.cs │ ├── ICloudBuild.cs │ ├── LibGit2 │ │ ├── LibGit2Context.cs │ │ ├── LibGit2GitExtensions.cs │ │ └── LibGit2VersionFile.cs │ ├── Managed │ │ ├── GitExtensions.cs │ │ ├── ManagedGitContext.cs │ │ └── ManagedVersionFile.cs │ ├── ManagedGit │ │ ├── DeltaInstruction.cs │ │ ├── DeltaInstructionType.cs │ │ ├── DeltaStreamReader.cs │ │ ├── FileHelpers.cs │ │ ├── GitAnnotatedTag.cs │ │ ├── GitAnnotatedTagReader.cs │ │ ├── GitCommit.cs │ │ ├── GitCommitReader.cs │ │ ├── GitObjectId.cs │ │ ├── GitObjectStream.cs │ │ ├── GitPack.cs │ │ ├── GitPackCache.cs │ │ ├── GitPackDeltafiedStream.cs │ │ ├── GitPackIndexMappedReader.cs │ │ ├── GitPackIndexReader.cs │ │ ├── GitPackMemoryCache.cs │ │ ├── GitPackMemoryCacheStream.cs │ │ ├── GitPackMemoryCacheViewStream.cs │ │ ├── GitPackNullCache.cs │ │ ├── GitPackObjectType.cs │ │ ├── GitPackPooledStream.cs │ │ ├── GitPackReader.cs │ │ ├── GitReferenceReader.cs │ │ ├── GitRepository.cs │ │ ├── GitSignature.cs │ │ ├── GitTree.cs │ │ ├── GitTreeEntry.cs │ │ ├── GitTreeReader.cs │ │ ├── GitTreeStreamingReader.cs │ │ ├── MemoryMappedStream.cs │ │ ├── StreamExtensions.cs │ │ └── ZLibStream.cs │ ├── NativeMethods.json │ ├── NativeMethods.txt │ ├── Nerdbank.GitVersioning.csproj │ ├── NoGit │ │ ├── NoGitContext.cs │ │ └── NoGitVersionFile.cs │ ├── ReleaseManager.cs │ ├── SemanticVersion.cs │ ├── SemanticVersionJsonConverter.cs │ ├── VersionExtensions.cs │ ├── VersionFile.cs │ ├── VersionFileLocations.cs │ ├── VersionFileRequirements.cs │ ├── VersionOptions.cs │ ├── VersionOptionsContractResolver.cs │ ├── VersionOracle.cs │ └── version.schema.json ├── Nerdbank.GitVersioning.Tasks │ ├── AssemblyLoader.cs │ ├── AssemblyVersionInfo.cs │ ├── CompareFiles.cs │ ├── ContextAwareTask.cs │ ├── CryptoBlobParser+BlobHeader.cs │ ├── CryptoBlobParser+RsaPubKey.cs │ ├── CryptoBlobParser+SnPublicKeyBlob.cs │ ├── CryptoBlobParser.cs │ ├── GetBuildVersion.cs │ ├── GitLoaderContext.cs │ ├── NativeVersionInfo.cs │ ├── Nerdbank.GitVersioning.Tasks.csproj │ ├── Nerdbank.GitVersioning.Tasks.targets │ ├── Nerdbank.GitVersioning.nuspec │ ├── README.md │ ├── SetCloudBuildVariables.cs │ ├── StampMcpServerJson.cs │ ├── build │ │ ├── InProjectVersionComputation.targets │ │ ├── MSBuildTargetCaching.targets │ │ ├── Nerdbank.GitVersioning.Common.targets │ │ ├── Nerdbank.GitVersioning.Inner.targets │ │ ├── Nerdbank.GitVersioning.props │ │ ├── Nerdbank.GitVersioning.targets │ │ └── PrivateP2PCaching.proj │ └── buildCrossTargeting │ │ ├── Nerdbank.GitVersioning.props │ │ └── Nerdbank.GitVersioning.targets ├── Shared │ ├── SemanticVersionExtensions.cs │ └── Utilities.cs ├── nbgv │ ├── Program.cs │ ├── README.md │ ├── nbgv.csproj │ └── runtimeconfig.template.json └── nerdbank-gitversioning.npm │ ├── .gitignore │ ├── README.md │ ├── gulpfile.js │ ├── jsconfig.json │ ├── nb-gv.njsproj │ ├── package.json │ ├── ts │ ├── asyncio.ts │ ├── asyncprocess.ts │ ├── core.ts │ ├── index.ts │ ├── main.ts │ └── npmVersion.ts │ ├── tsconfig.json │ └── yarn.lock ├── strongname.snk ├── stylecop.json ├── test ├── .editorconfig ├── Cake.GitVersioning.Tests │ ├── Cake.GitVersioning.Tests.csproj │ ├── GitVersioningCloudProviderTests.cs │ └── xunit.runner.json ├── Directory.Build.props ├── Directory.Build.targets ├── Nerdbank.GitVersioning.Benchmarks │ ├── GetVersionBenchmarks.cs │ ├── Nerdbank.GitVersioning.Benchmarks.csproj │ └── Program.cs └── Nerdbank.GitVersioning.Tests │ ├── AssemblyInfoTest.cs │ ├── BuildIntegrationDisabledTests.cs │ ├── BuildIntegrationInProjectManagedTests.cs │ ├── BuildIntegrationLibGit2Tests.cs │ ├── BuildIntegrationManagedTests.cs │ ├── BuildIntegrationTests.cs │ ├── CommandTests.cs │ ├── FilterPathTests.cs │ ├── GitContextTests.cs │ ├── Keys │ ├── keypair.snk │ ├── protectedPair.pfx │ └── public.snk │ ├── LibGit2GitExtensionsTests.cs │ ├── MSBuildExtensions.cs │ ├── MSBuildFixture.cs │ ├── ManagedGit │ ├── .gitattributes │ ├── 3596ffe59898103a2675547d4597e742e1f2389c.gz │ ├── DeltaStreamReaderTests.cs │ ├── GitCommitReaderTests.cs │ ├── GitCommitTests.cs │ ├── GitObjectIdTests.cs │ ├── GitObjectStreamTests.cs │ ├── GitPackDeltafiedStreamTests.cs │ ├── GitPackIndexMappedReaderTests.cs │ ├── GitPackMemoryCacheTests.cs │ ├── GitPackTests.cs │ ├── GitRepositoryTests.cs │ ├── GitTreeStreamingReaderTests.cs │ ├── StreamExtensionsTests.cs │ ├── ZLibStreamTest.cs │ ├── commit-4497b0eaaa89abf0e6d70961ad5f04fd3a49cbc6 │ ├── commit-ab39e8acac105fa0db88514f259341c9f0201b22 │ ├── commit-d56dc3ed179053abef2097d1120b4507769bcf1a │ ├── commit.delta │ ├── pack-7d6b2c56ffb97eedb92f4e28583c093f7ee4b3d9 .txt │ ├── pack-7d6b2c56ffb97eedb92f4e28583c093f7ee4b3d9.idx │ ├── pack-7d6b2c56ffb97eedb92f4e28583c093f7ee4b3d9.pack │ ├── tree-bb36cf0ca445ccc8e5ce9cc88f7cf74128e96dc9 │ ├── tree-f914b48023c7c804a4f3be780d451f31aef74ac1 │ ├── tree.bin │ └── tree.delta │ ├── Nerdbank.GitVersioning.Tests.csproj │ ├── ReleaseManagerTests.cs │ ├── RepoTestBase.Helpers.cs │ ├── RepoTestBase.cs │ ├── SemanticVersionExtensionsTests.cs │ ├── SemanticVersionTests.cs │ ├── SomeGitBuildIntegrationTests.cs │ ├── TestUtilities.cs │ ├── Usings.cs │ ├── VersionExtensionsTests.cs │ ├── VersionFileTests.cs │ ├── VersionOptionsTests.cs │ ├── VersionOracleTests.cs │ ├── VersionSchemaTests.cs │ ├── WindowsTheoryAttribute.cs │ ├── repos │ ├── PackedHeadRef.zip │ └── submodules.zip │ ├── test.prj │ ├── test.vcprj │ └── xunit.runner.json ├── tools ├── Check-DotNetRuntime.ps1 ├── Check-DotNetSdk.ps1 ├── Get-3rdPartySymbolFiles.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 ├── Install-NuGetPackage.ps1 ├── MergeFrom-Template.ps1 ├── Set-EnvVars.ps1 ├── artifacts │ ├── Variables.ps1 │ ├── _all.ps1 │ ├── _stage_all.ps1 │ ├── build_logs.ps1 │ ├── coverageResults.ps1 │ ├── deployables-LKG.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/dotnet/Nerdbank.GitVersioning/HEAD/.config/dotnet-tools.json -------------------------------------------------------------------------------- /.devcontainer/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Nerdbank.GitVersioning/HEAD/.devcontainer/Dockerfile -------------------------------------------------------------------------------- /.devcontainer/devcontainer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Nerdbank.GitVersioning/HEAD/.devcontainer/devcontainer.json -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Nerdbank.GitVersioning/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Nerdbank.GitVersioning/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/.editorconfig: -------------------------------------------------------------------------------- 1 | [renovate.json*] 2 | indent_style = tab 3 | -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Nerdbank.GitVersioning/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/actions/publish-artifacts/action.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Nerdbank.GitVersioning/HEAD/.github/actions/publish-artifacts/action.yaml -------------------------------------------------------------------------------- /.github/copilot-instructions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Nerdbank.GitVersioning/HEAD/.github/copilot-instructions.md -------------------------------------------------------------------------------- /.github/renovate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Nerdbank.GitVersioning/HEAD/.github/renovate.json -------------------------------------------------------------------------------- /.github/signfiles.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Nerdbank.GitVersioning/HEAD/.github/signfiles.txt -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Nerdbank.GitVersioning/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.github/workflows/copilot-setup-steps.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Nerdbank.GitVersioning/HEAD/.github/workflows/copilot-setup-steps.yml -------------------------------------------------------------------------------- /.github/workflows/docs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Nerdbank.GitVersioning/HEAD/.github/workflows/docs.yml -------------------------------------------------------------------------------- /.github/workflows/libtemplate-update.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Nerdbank.GitVersioning/HEAD/.github/workflows/libtemplate-update.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Nerdbank.GitVersioning/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Nerdbank.GitVersioning/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Nerdbank.GitVersioning/HEAD/.gitmodules -------------------------------------------------------------------------------- /.prettierrc.yaml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Nerdbank.GitVersioning/HEAD/.vscode/extensions.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Nerdbank.GitVersioning/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /3rdPartyNotices.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Nerdbank.GitVersioning/HEAD/3rdPartyNotices.txt -------------------------------------------------------------------------------- /CODE-OF-CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Nerdbank.GitVersioning/HEAD/CODE-OF-CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Nerdbank.GitVersioning/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /CONTRIBUTORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Nerdbank.GitVersioning/HEAD/CONTRIBUTORS -------------------------------------------------------------------------------- /Directory.Build.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Nerdbank.GitVersioning/HEAD/Directory.Build.props -------------------------------------------------------------------------------- /Directory.Build.rsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Nerdbank.GitVersioning/HEAD/Directory.Build.rsp -------------------------------------------------------------------------------- /Directory.Build.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Nerdbank.GitVersioning/HEAD/Directory.Build.targets -------------------------------------------------------------------------------- /Directory.Packages.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Nerdbank.GitVersioning/HEAD/Directory.Packages.props -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Nerdbank.GitVersioning/HEAD/LICENSE -------------------------------------------------------------------------------- /NOTICE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Nerdbank.GitVersioning/HEAD/NOTICE.md -------------------------------------------------------------------------------- /Nerdbank.GitVersioning.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Nerdbank.GitVersioning/HEAD/Nerdbank.GitVersioning.sln -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Nerdbank.GitVersioning/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Nerdbank.GitVersioning/HEAD/SECURITY.md -------------------------------------------------------------------------------- /docfx/.gitignore: -------------------------------------------------------------------------------- 1 | _site/ 2 | api/ 3 | -------------------------------------------------------------------------------- /docfx/docfx.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Nerdbank.GitVersioning/HEAD/docfx/docfx.json -------------------------------------------------------------------------------- /docfx/docs/build-systems/cake.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Nerdbank.GitVersioning/HEAD/docfx/docs/build-systems/cake.md -------------------------------------------------------------------------------- /docfx/docs/build-systems/gulp.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Nerdbank.GitVersioning/HEAD/docfx/docs/build-systems/gulp.md -------------------------------------------------------------------------------- /docfx/docs/build-systems/msbuild.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Nerdbank.GitVersioning/HEAD/docfx/docs/build-systems/msbuild.md -------------------------------------------------------------------------------- /docfx/docs/cloudbuild.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Nerdbank.GitVersioning/HEAD/docfx/docs/cloudbuild.md -------------------------------------------------------------------------------- /docfx/docs/ecosystems/dotnet.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Nerdbank.GitVersioning/HEAD/docfx/docs/ecosystems/dotnet.md -------------------------------------------------------------------------------- /docfx/docs/ecosystems/node.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Nerdbank.GitVersioning/HEAD/docfx/docs/ecosystems/node.md -------------------------------------------------------------------------------- /docfx/docs/ecosystems/vsix.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Nerdbank.GitVersioning/HEAD/docfx/docs/ecosystems/vsix.md -------------------------------------------------------------------------------- /docfx/docs/faq.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Nerdbank.GitVersioning/HEAD/docfx/docs/faq.md -------------------------------------------------------------------------------- /docfx/docs/getting-started.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Nerdbank.GitVersioning/HEAD/docfx/docs/getting-started.md -------------------------------------------------------------------------------- /docfx/docs/migrating.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Nerdbank.GitVersioning/HEAD/docfx/docs/migrating.md -------------------------------------------------------------------------------- /docfx/docs/nbgv-cli.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Nerdbank.GitVersioning/HEAD/docfx/docs/nbgv-cli.md -------------------------------------------------------------------------------- /docfx/docs/npm-acquisition.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Nerdbank.GitVersioning/HEAD/docfx/docs/npm-acquisition.md -------------------------------------------------------------------------------- /docfx/docs/nuget-acquisition.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Nerdbank.GitVersioning/HEAD/docfx/docs/nuget-acquisition.md -------------------------------------------------------------------------------- /docfx/docs/path-filters.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Nerdbank.GitVersioning/HEAD/docfx/docs/path-filters.md -------------------------------------------------------------------------------- /docfx/docs/public-vs-stable.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Nerdbank.GitVersioning/HEAD/docfx/docs/public-vs-stable.md -------------------------------------------------------------------------------- /docfx/docs/quickbuild.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Nerdbank.GitVersioning/HEAD/docfx/docs/quickbuild.md -------------------------------------------------------------------------------- /docfx/docs/shallow-cloning-agents.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Nerdbank.GitVersioning/HEAD/docfx/docs/shallow-cloning-agents.md -------------------------------------------------------------------------------- /docfx/docs/toc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Nerdbank.GitVersioning/HEAD/docfx/docs/toc.yml -------------------------------------------------------------------------------- /docfx/docs/version-calculation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Nerdbank.GitVersioning/HEAD/docfx/docs/version-calculation.md -------------------------------------------------------------------------------- /docfx/docs/versionJson.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Nerdbank.GitVersioning/HEAD/docfx/docs/versionJson.md -------------------------------------------------------------------------------- /docfx/images/globalproperties_log.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Nerdbank.GitVersioning/HEAD/docfx/images/globalproperties_log.png -------------------------------------------------------------------------------- /docfx/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Nerdbank.GitVersioning/HEAD/docfx/index.md -------------------------------------------------------------------------------- /docfx/toc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Nerdbank.GitVersioning/HEAD/docfx/toc.yml -------------------------------------------------------------------------------- /global.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Nerdbank.GitVersioning/HEAD/global.json -------------------------------------------------------------------------------- /init.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Nerdbank.GitVersioning/HEAD/init.cmd -------------------------------------------------------------------------------- /init.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Nerdbank.GitVersioning/HEAD/init.ps1 -------------------------------------------------------------------------------- /nuget.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Nerdbank.GitVersioning/HEAD/nuget.config -------------------------------------------------------------------------------- /settings.VisualStudio.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Nerdbank.GitVersioning/HEAD/settings.VisualStudio.json -------------------------------------------------------------------------------- /src/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Nerdbank.GitVersioning/HEAD/src/.editorconfig -------------------------------------------------------------------------------- /src/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Nerdbank.GitVersioning/HEAD/src/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/AssemblyInfo.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Nerdbank.GitVersioning/HEAD/src/AssemblyInfo.vb -------------------------------------------------------------------------------- /src/Cake.GitVersioning/Cake.GitVersioning.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Nerdbank.GitVersioning/HEAD/src/Cake.GitVersioning/Cake.GitVersioning.csproj -------------------------------------------------------------------------------- /src/Cake.GitVersioning/GitVersioningAliases.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Nerdbank.GitVersioning/HEAD/src/Cake.GitVersioning/GitVersioningAliases.cs -------------------------------------------------------------------------------- /src/Cake.GitVersioning/GitVersioningCloudProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Nerdbank.GitVersioning/HEAD/src/Cake.GitVersioning/GitVersioningCloudProvider.cs -------------------------------------------------------------------------------- /src/Cake.GitVersioning/GitVersioningCloudSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Nerdbank.GitVersioning/HEAD/src/Cake.GitVersioning/GitVersioningCloudSettings.cs -------------------------------------------------------------------------------- /src/Cake.GitVersioning/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Nerdbank.GitVersioning/HEAD/src/Cake.GitVersioning/README.md -------------------------------------------------------------------------------- /src/Cake.GitVersioning/cake-contrib-addin-medium.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Nerdbank.GitVersioning/HEAD/src/Cake.GitVersioning/cake-contrib-addin-medium.png -------------------------------------------------------------------------------- /src/Directory.Build.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Nerdbank.GitVersioning/HEAD/src/Directory.Build.props -------------------------------------------------------------------------------- /src/Directory.Build.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Nerdbank.GitVersioning/HEAD/src/Directory.Build.targets -------------------------------------------------------------------------------- /src/NerdBank.GitVersioning/AssemblyVersionOptionsConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Nerdbank.GitVersioning/HEAD/src/NerdBank.GitVersioning/AssemblyVersionOptionsConverter.cs -------------------------------------------------------------------------------- /src/NerdBank.GitVersioning/CloudBuild.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Nerdbank.GitVersioning/HEAD/src/NerdBank.GitVersioning/CloudBuild.cs -------------------------------------------------------------------------------- /src/NerdBank.GitVersioning/CloudBuildServices/AppVeyor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Nerdbank.GitVersioning/HEAD/src/NerdBank.GitVersioning/CloudBuildServices/AppVeyor.cs -------------------------------------------------------------------------------- /src/NerdBank.GitVersioning/CloudBuildServices/AtlassianBamboo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Nerdbank.GitVersioning/HEAD/src/NerdBank.GitVersioning/CloudBuildServices/AtlassianBamboo.cs -------------------------------------------------------------------------------- /src/NerdBank.GitVersioning/CloudBuildServices/BitbucketCloud.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Nerdbank.GitVersioning/HEAD/src/NerdBank.GitVersioning/CloudBuildServices/BitbucketCloud.cs -------------------------------------------------------------------------------- /src/NerdBank.GitVersioning/CloudBuildServices/GitHubActions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Nerdbank.GitVersioning/HEAD/src/NerdBank.GitVersioning/CloudBuildServices/GitHubActions.cs -------------------------------------------------------------------------------- /src/NerdBank.GitVersioning/CloudBuildServices/GitLab.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Nerdbank.GitVersioning/HEAD/src/NerdBank.GitVersioning/CloudBuildServices/GitLab.cs -------------------------------------------------------------------------------- /src/NerdBank.GitVersioning/CloudBuildServices/Jenkins.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Nerdbank.GitVersioning/HEAD/src/NerdBank.GitVersioning/CloudBuildServices/Jenkins.cs -------------------------------------------------------------------------------- /src/NerdBank.GitVersioning/CloudBuildServices/SpaceAutomation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Nerdbank.GitVersioning/HEAD/src/NerdBank.GitVersioning/CloudBuildServices/SpaceAutomation.cs -------------------------------------------------------------------------------- /src/NerdBank.GitVersioning/CloudBuildServices/TeamCity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Nerdbank.GitVersioning/HEAD/src/NerdBank.GitVersioning/CloudBuildServices/TeamCity.cs -------------------------------------------------------------------------------- /src/NerdBank.GitVersioning/CloudBuildServices/Travis.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Nerdbank.GitVersioning/HEAD/src/NerdBank.GitVersioning/CloudBuildServices/Travis.cs -------------------------------------------------------------------------------- /src/NerdBank.GitVersioning/CloudBuildServices/VisualStudioTeamServices.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Nerdbank.GitVersioning/HEAD/src/NerdBank.GitVersioning/CloudBuildServices/VisualStudioTeamServices.cs -------------------------------------------------------------------------------- /src/NerdBank.GitVersioning/Commands/CloudCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Nerdbank.GitVersioning/HEAD/src/NerdBank.GitVersioning/Commands/CloudCommand.cs -------------------------------------------------------------------------------- /src/NerdBank.GitVersioning/DisabledGit/DisabledGitContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Nerdbank.GitVersioning/HEAD/src/NerdBank.GitVersioning/DisabledGit/DisabledGitContext.cs -------------------------------------------------------------------------------- /src/NerdBank.GitVersioning/DisabledGit/DisabledGitVersionFile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Nerdbank.GitVersioning/HEAD/src/NerdBank.GitVersioning/DisabledGit/DisabledGitVersionFile.cs -------------------------------------------------------------------------------- /src/NerdBank.GitVersioning/FilterPath.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Nerdbank.GitVersioning/HEAD/src/NerdBank.GitVersioning/FilterPath.cs -------------------------------------------------------------------------------- /src/NerdBank.GitVersioning/FilterPathJsonConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Nerdbank.GitVersioning/HEAD/src/NerdBank.GitVersioning/FilterPathJsonConverter.cs -------------------------------------------------------------------------------- /src/NerdBank.GitVersioning/GitContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Nerdbank.GitVersioning/HEAD/src/NerdBank.GitVersioning/GitContext.cs -------------------------------------------------------------------------------- /src/NerdBank.GitVersioning/GitException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Nerdbank.GitVersioning/HEAD/src/NerdBank.GitVersioning/GitException.cs -------------------------------------------------------------------------------- /src/NerdBank.GitVersioning/ICloudBuild.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Nerdbank.GitVersioning/HEAD/src/NerdBank.GitVersioning/ICloudBuild.cs -------------------------------------------------------------------------------- /src/NerdBank.GitVersioning/LibGit2/LibGit2Context.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Nerdbank.GitVersioning/HEAD/src/NerdBank.GitVersioning/LibGit2/LibGit2Context.cs -------------------------------------------------------------------------------- /src/NerdBank.GitVersioning/LibGit2/LibGit2GitExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Nerdbank.GitVersioning/HEAD/src/NerdBank.GitVersioning/LibGit2/LibGit2GitExtensions.cs -------------------------------------------------------------------------------- /src/NerdBank.GitVersioning/LibGit2/LibGit2VersionFile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Nerdbank.GitVersioning/HEAD/src/NerdBank.GitVersioning/LibGit2/LibGit2VersionFile.cs -------------------------------------------------------------------------------- /src/NerdBank.GitVersioning/Managed/GitExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Nerdbank.GitVersioning/HEAD/src/NerdBank.GitVersioning/Managed/GitExtensions.cs -------------------------------------------------------------------------------- /src/NerdBank.GitVersioning/Managed/ManagedGitContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Nerdbank.GitVersioning/HEAD/src/NerdBank.GitVersioning/Managed/ManagedGitContext.cs -------------------------------------------------------------------------------- /src/NerdBank.GitVersioning/Managed/ManagedVersionFile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Nerdbank.GitVersioning/HEAD/src/NerdBank.GitVersioning/Managed/ManagedVersionFile.cs -------------------------------------------------------------------------------- /src/NerdBank.GitVersioning/ManagedGit/DeltaInstruction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Nerdbank.GitVersioning/HEAD/src/NerdBank.GitVersioning/ManagedGit/DeltaInstruction.cs -------------------------------------------------------------------------------- /src/NerdBank.GitVersioning/ManagedGit/DeltaInstructionType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Nerdbank.GitVersioning/HEAD/src/NerdBank.GitVersioning/ManagedGit/DeltaInstructionType.cs -------------------------------------------------------------------------------- /src/NerdBank.GitVersioning/ManagedGit/DeltaStreamReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Nerdbank.GitVersioning/HEAD/src/NerdBank.GitVersioning/ManagedGit/DeltaStreamReader.cs -------------------------------------------------------------------------------- /src/NerdBank.GitVersioning/ManagedGit/FileHelpers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Nerdbank.GitVersioning/HEAD/src/NerdBank.GitVersioning/ManagedGit/FileHelpers.cs -------------------------------------------------------------------------------- /src/NerdBank.GitVersioning/ManagedGit/GitAnnotatedTag.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Nerdbank.GitVersioning/HEAD/src/NerdBank.GitVersioning/ManagedGit/GitAnnotatedTag.cs -------------------------------------------------------------------------------- /src/NerdBank.GitVersioning/ManagedGit/GitAnnotatedTagReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Nerdbank.GitVersioning/HEAD/src/NerdBank.GitVersioning/ManagedGit/GitAnnotatedTagReader.cs -------------------------------------------------------------------------------- /src/NerdBank.GitVersioning/ManagedGit/GitCommit.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Nerdbank.GitVersioning/HEAD/src/NerdBank.GitVersioning/ManagedGit/GitCommit.cs -------------------------------------------------------------------------------- /src/NerdBank.GitVersioning/ManagedGit/GitCommitReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Nerdbank.GitVersioning/HEAD/src/NerdBank.GitVersioning/ManagedGit/GitCommitReader.cs -------------------------------------------------------------------------------- /src/NerdBank.GitVersioning/ManagedGit/GitObjectId.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Nerdbank.GitVersioning/HEAD/src/NerdBank.GitVersioning/ManagedGit/GitObjectId.cs -------------------------------------------------------------------------------- /src/NerdBank.GitVersioning/ManagedGit/GitObjectStream.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Nerdbank.GitVersioning/HEAD/src/NerdBank.GitVersioning/ManagedGit/GitObjectStream.cs -------------------------------------------------------------------------------- /src/NerdBank.GitVersioning/ManagedGit/GitPack.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Nerdbank.GitVersioning/HEAD/src/NerdBank.GitVersioning/ManagedGit/GitPack.cs -------------------------------------------------------------------------------- /src/NerdBank.GitVersioning/ManagedGit/GitPackCache.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Nerdbank.GitVersioning/HEAD/src/NerdBank.GitVersioning/ManagedGit/GitPackCache.cs -------------------------------------------------------------------------------- /src/NerdBank.GitVersioning/ManagedGit/GitPackDeltafiedStream.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Nerdbank.GitVersioning/HEAD/src/NerdBank.GitVersioning/ManagedGit/GitPackDeltafiedStream.cs -------------------------------------------------------------------------------- /src/NerdBank.GitVersioning/ManagedGit/GitPackIndexMappedReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Nerdbank.GitVersioning/HEAD/src/NerdBank.GitVersioning/ManagedGit/GitPackIndexMappedReader.cs -------------------------------------------------------------------------------- /src/NerdBank.GitVersioning/ManagedGit/GitPackIndexReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Nerdbank.GitVersioning/HEAD/src/NerdBank.GitVersioning/ManagedGit/GitPackIndexReader.cs -------------------------------------------------------------------------------- /src/NerdBank.GitVersioning/ManagedGit/GitPackMemoryCache.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Nerdbank.GitVersioning/HEAD/src/NerdBank.GitVersioning/ManagedGit/GitPackMemoryCache.cs -------------------------------------------------------------------------------- /src/NerdBank.GitVersioning/ManagedGit/GitPackMemoryCacheStream.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Nerdbank.GitVersioning/HEAD/src/NerdBank.GitVersioning/ManagedGit/GitPackMemoryCacheStream.cs -------------------------------------------------------------------------------- /src/NerdBank.GitVersioning/ManagedGit/GitPackMemoryCacheViewStream.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Nerdbank.GitVersioning/HEAD/src/NerdBank.GitVersioning/ManagedGit/GitPackMemoryCacheViewStream.cs -------------------------------------------------------------------------------- /src/NerdBank.GitVersioning/ManagedGit/GitPackNullCache.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Nerdbank.GitVersioning/HEAD/src/NerdBank.GitVersioning/ManagedGit/GitPackNullCache.cs -------------------------------------------------------------------------------- /src/NerdBank.GitVersioning/ManagedGit/GitPackObjectType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Nerdbank.GitVersioning/HEAD/src/NerdBank.GitVersioning/ManagedGit/GitPackObjectType.cs -------------------------------------------------------------------------------- /src/NerdBank.GitVersioning/ManagedGit/GitPackPooledStream.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Nerdbank.GitVersioning/HEAD/src/NerdBank.GitVersioning/ManagedGit/GitPackPooledStream.cs -------------------------------------------------------------------------------- /src/NerdBank.GitVersioning/ManagedGit/GitPackReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Nerdbank.GitVersioning/HEAD/src/NerdBank.GitVersioning/ManagedGit/GitPackReader.cs -------------------------------------------------------------------------------- /src/NerdBank.GitVersioning/ManagedGit/GitReferenceReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Nerdbank.GitVersioning/HEAD/src/NerdBank.GitVersioning/ManagedGit/GitReferenceReader.cs -------------------------------------------------------------------------------- /src/NerdBank.GitVersioning/ManagedGit/GitRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Nerdbank.GitVersioning/HEAD/src/NerdBank.GitVersioning/ManagedGit/GitRepository.cs -------------------------------------------------------------------------------- /src/NerdBank.GitVersioning/ManagedGit/GitSignature.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Nerdbank.GitVersioning/HEAD/src/NerdBank.GitVersioning/ManagedGit/GitSignature.cs -------------------------------------------------------------------------------- /src/NerdBank.GitVersioning/ManagedGit/GitTree.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Nerdbank.GitVersioning/HEAD/src/NerdBank.GitVersioning/ManagedGit/GitTree.cs -------------------------------------------------------------------------------- /src/NerdBank.GitVersioning/ManagedGit/GitTreeEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Nerdbank.GitVersioning/HEAD/src/NerdBank.GitVersioning/ManagedGit/GitTreeEntry.cs -------------------------------------------------------------------------------- /src/NerdBank.GitVersioning/ManagedGit/GitTreeReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Nerdbank.GitVersioning/HEAD/src/NerdBank.GitVersioning/ManagedGit/GitTreeReader.cs -------------------------------------------------------------------------------- /src/NerdBank.GitVersioning/ManagedGit/GitTreeStreamingReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Nerdbank.GitVersioning/HEAD/src/NerdBank.GitVersioning/ManagedGit/GitTreeStreamingReader.cs -------------------------------------------------------------------------------- /src/NerdBank.GitVersioning/ManagedGit/MemoryMappedStream.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Nerdbank.GitVersioning/HEAD/src/NerdBank.GitVersioning/ManagedGit/MemoryMappedStream.cs -------------------------------------------------------------------------------- /src/NerdBank.GitVersioning/ManagedGit/StreamExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Nerdbank.GitVersioning/HEAD/src/NerdBank.GitVersioning/ManagedGit/StreamExtensions.cs -------------------------------------------------------------------------------- /src/NerdBank.GitVersioning/ManagedGit/ZLibStream.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Nerdbank.GitVersioning/HEAD/src/NerdBank.GitVersioning/ManagedGit/ZLibStream.cs -------------------------------------------------------------------------------- /src/NerdBank.GitVersioning/NativeMethods.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Nerdbank.GitVersioning/HEAD/src/NerdBank.GitVersioning/NativeMethods.json -------------------------------------------------------------------------------- /src/NerdBank.GitVersioning/NativeMethods.txt: -------------------------------------------------------------------------------- 1 | CreateFile 2 | FILE_ACCESS_RIGHTS 3 | INVALID_HANDLE_VALUE 4 | LoadLibrary 5 | -------------------------------------------------------------------------------- /src/NerdBank.GitVersioning/Nerdbank.GitVersioning.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Nerdbank.GitVersioning/HEAD/src/NerdBank.GitVersioning/Nerdbank.GitVersioning.csproj -------------------------------------------------------------------------------- /src/NerdBank.GitVersioning/NoGit/NoGitContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Nerdbank.GitVersioning/HEAD/src/NerdBank.GitVersioning/NoGit/NoGitContext.cs -------------------------------------------------------------------------------- /src/NerdBank.GitVersioning/NoGit/NoGitVersionFile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Nerdbank.GitVersioning/HEAD/src/NerdBank.GitVersioning/NoGit/NoGitVersionFile.cs -------------------------------------------------------------------------------- /src/NerdBank.GitVersioning/ReleaseManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Nerdbank.GitVersioning/HEAD/src/NerdBank.GitVersioning/ReleaseManager.cs -------------------------------------------------------------------------------- /src/NerdBank.GitVersioning/SemanticVersion.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Nerdbank.GitVersioning/HEAD/src/NerdBank.GitVersioning/SemanticVersion.cs -------------------------------------------------------------------------------- /src/NerdBank.GitVersioning/SemanticVersionJsonConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Nerdbank.GitVersioning/HEAD/src/NerdBank.GitVersioning/SemanticVersionJsonConverter.cs -------------------------------------------------------------------------------- /src/NerdBank.GitVersioning/VersionExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Nerdbank.GitVersioning/HEAD/src/NerdBank.GitVersioning/VersionExtensions.cs -------------------------------------------------------------------------------- /src/NerdBank.GitVersioning/VersionFile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Nerdbank.GitVersioning/HEAD/src/NerdBank.GitVersioning/VersionFile.cs -------------------------------------------------------------------------------- /src/NerdBank.GitVersioning/VersionFileLocations.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Nerdbank.GitVersioning/HEAD/src/NerdBank.GitVersioning/VersionFileLocations.cs -------------------------------------------------------------------------------- /src/NerdBank.GitVersioning/VersionFileRequirements.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Nerdbank.GitVersioning/HEAD/src/NerdBank.GitVersioning/VersionFileRequirements.cs -------------------------------------------------------------------------------- /src/NerdBank.GitVersioning/VersionOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Nerdbank.GitVersioning/HEAD/src/NerdBank.GitVersioning/VersionOptions.cs -------------------------------------------------------------------------------- /src/NerdBank.GitVersioning/VersionOptionsContractResolver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Nerdbank.GitVersioning/HEAD/src/NerdBank.GitVersioning/VersionOptionsContractResolver.cs -------------------------------------------------------------------------------- /src/NerdBank.GitVersioning/VersionOracle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Nerdbank.GitVersioning/HEAD/src/NerdBank.GitVersioning/VersionOracle.cs -------------------------------------------------------------------------------- /src/NerdBank.GitVersioning/version.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Nerdbank.GitVersioning/HEAD/src/NerdBank.GitVersioning/version.schema.json -------------------------------------------------------------------------------- /src/Nerdbank.GitVersioning.Tasks/AssemblyLoader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Nerdbank.GitVersioning/HEAD/src/Nerdbank.GitVersioning.Tasks/AssemblyLoader.cs -------------------------------------------------------------------------------- /src/Nerdbank.GitVersioning.Tasks/AssemblyVersionInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Nerdbank.GitVersioning/HEAD/src/Nerdbank.GitVersioning.Tasks/AssemblyVersionInfo.cs -------------------------------------------------------------------------------- /src/Nerdbank.GitVersioning.Tasks/CompareFiles.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Nerdbank.GitVersioning/HEAD/src/Nerdbank.GitVersioning.Tasks/CompareFiles.cs -------------------------------------------------------------------------------- /src/Nerdbank.GitVersioning.Tasks/ContextAwareTask.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Nerdbank.GitVersioning/HEAD/src/Nerdbank.GitVersioning.Tasks/ContextAwareTask.cs -------------------------------------------------------------------------------- /src/Nerdbank.GitVersioning.Tasks/CryptoBlobParser+BlobHeader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Nerdbank.GitVersioning/HEAD/src/Nerdbank.GitVersioning.Tasks/CryptoBlobParser+BlobHeader.cs -------------------------------------------------------------------------------- /src/Nerdbank.GitVersioning.Tasks/CryptoBlobParser+RsaPubKey.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Nerdbank.GitVersioning/HEAD/src/Nerdbank.GitVersioning.Tasks/CryptoBlobParser+RsaPubKey.cs -------------------------------------------------------------------------------- /src/Nerdbank.GitVersioning.Tasks/CryptoBlobParser+SnPublicKeyBlob.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Nerdbank.GitVersioning/HEAD/src/Nerdbank.GitVersioning.Tasks/CryptoBlobParser+SnPublicKeyBlob.cs -------------------------------------------------------------------------------- /src/Nerdbank.GitVersioning.Tasks/CryptoBlobParser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Nerdbank.GitVersioning/HEAD/src/Nerdbank.GitVersioning.Tasks/CryptoBlobParser.cs -------------------------------------------------------------------------------- /src/Nerdbank.GitVersioning.Tasks/GetBuildVersion.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Nerdbank.GitVersioning/HEAD/src/Nerdbank.GitVersioning.Tasks/GetBuildVersion.cs -------------------------------------------------------------------------------- /src/Nerdbank.GitVersioning.Tasks/GitLoaderContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Nerdbank.GitVersioning/HEAD/src/Nerdbank.GitVersioning.Tasks/GitLoaderContext.cs -------------------------------------------------------------------------------- /src/Nerdbank.GitVersioning.Tasks/NativeVersionInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Nerdbank.GitVersioning/HEAD/src/Nerdbank.GitVersioning.Tasks/NativeVersionInfo.cs -------------------------------------------------------------------------------- /src/Nerdbank.GitVersioning.Tasks/Nerdbank.GitVersioning.Tasks.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Nerdbank.GitVersioning/HEAD/src/Nerdbank.GitVersioning.Tasks/Nerdbank.GitVersioning.Tasks.csproj -------------------------------------------------------------------------------- /src/Nerdbank.GitVersioning.Tasks/Nerdbank.GitVersioning.Tasks.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Nerdbank.GitVersioning/HEAD/src/Nerdbank.GitVersioning.Tasks/Nerdbank.GitVersioning.Tasks.targets -------------------------------------------------------------------------------- /src/Nerdbank.GitVersioning.Tasks/Nerdbank.GitVersioning.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Nerdbank.GitVersioning/HEAD/src/Nerdbank.GitVersioning.Tasks/Nerdbank.GitVersioning.nuspec -------------------------------------------------------------------------------- /src/Nerdbank.GitVersioning.Tasks/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Nerdbank.GitVersioning/HEAD/src/Nerdbank.GitVersioning.Tasks/README.md -------------------------------------------------------------------------------- /src/Nerdbank.GitVersioning.Tasks/SetCloudBuildVariables.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Nerdbank.GitVersioning/HEAD/src/Nerdbank.GitVersioning.Tasks/SetCloudBuildVariables.cs -------------------------------------------------------------------------------- /src/Nerdbank.GitVersioning.Tasks/StampMcpServerJson.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Nerdbank.GitVersioning/HEAD/src/Nerdbank.GitVersioning.Tasks/StampMcpServerJson.cs -------------------------------------------------------------------------------- /src/Nerdbank.GitVersioning.Tasks/build/InProjectVersionComputation.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Nerdbank.GitVersioning/HEAD/src/Nerdbank.GitVersioning.Tasks/build/InProjectVersionComputation.targets -------------------------------------------------------------------------------- /src/Nerdbank.GitVersioning.Tasks/build/MSBuildTargetCaching.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Nerdbank.GitVersioning/HEAD/src/Nerdbank.GitVersioning.Tasks/build/MSBuildTargetCaching.targets -------------------------------------------------------------------------------- /src/Nerdbank.GitVersioning.Tasks/build/Nerdbank.GitVersioning.Common.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Nerdbank.GitVersioning/HEAD/src/Nerdbank.GitVersioning.Tasks/build/Nerdbank.GitVersioning.Common.targets -------------------------------------------------------------------------------- /src/Nerdbank.GitVersioning.Tasks/build/Nerdbank.GitVersioning.Inner.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Nerdbank.GitVersioning/HEAD/src/Nerdbank.GitVersioning.Tasks/build/Nerdbank.GitVersioning.Inner.targets -------------------------------------------------------------------------------- /src/Nerdbank.GitVersioning.Tasks/build/Nerdbank.GitVersioning.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Nerdbank.GitVersioning/HEAD/src/Nerdbank.GitVersioning.Tasks/build/Nerdbank.GitVersioning.props -------------------------------------------------------------------------------- /src/Nerdbank.GitVersioning.Tasks/build/Nerdbank.GitVersioning.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Nerdbank.GitVersioning/HEAD/src/Nerdbank.GitVersioning.Tasks/build/Nerdbank.GitVersioning.targets -------------------------------------------------------------------------------- /src/Nerdbank.GitVersioning.Tasks/build/PrivateP2PCaching.proj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Nerdbank.GitVersioning/HEAD/src/Nerdbank.GitVersioning.Tasks/build/PrivateP2PCaching.proj -------------------------------------------------------------------------------- /src/Nerdbank.GitVersioning.Tasks/buildCrossTargeting/Nerdbank.GitVersioning.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Nerdbank.GitVersioning/HEAD/src/Nerdbank.GitVersioning.Tasks/buildCrossTargeting/Nerdbank.GitVersioning.props -------------------------------------------------------------------------------- /src/Nerdbank.GitVersioning.Tasks/buildCrossTargeting/Nerdbank.GitVersioning.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Nerdbank.GitVersioning/HEAD/src/Nerdbank.GitVersioning.Tasks/buildCrossTargeting/Nerdbank.GitVersioning.targets -------------------------------------------------------------------------------- /src/Shared/SemanticVersionExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Nerdbank.GitVersioning/HEAD/src/Shared/SemanticVersionExtensions.cs -------------------------------------------------------------------------------- /src/Shared/Utilities.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Nerdbank.GitVersioning/HEAD/src/Shared/Utilities.cs -------------------------------------------------------------------------------- /src/nbgv/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Nerdbank.GitVersioning/HEAD/src/nbgv/Program.cs -------------------------------------------------------------------------------- /src/nbgv/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Nerdbank.GitVersioning/HEAD/src/nbgv/README.md -------------------------------------------------------------------------------- /src/nbgv/nbgv.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Nerdbank.GitVersioning/HEAD/src/nbgv/nbgv.csproj -------------------------------------------------------------------------------- /src/nbgv/runtimeconfig.template.json: -------------------------------------------------------------------------------- 1 | { 2 | "rollForwardOnNoCandidateFx": 2 3 | } -------------------------------------------------------------------------------- /src/nerdbank-gitversioning.npm/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Nerdbank.GitVersioning/HEAD/src/nerdbank-gitversioning.npm/.gitignore -------------------------------------------------------------------------------- /src/nerdbank-gitversioning.npm/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Nerdbank.GitVersioning/HEAD/src/nerdbank-gitversioning.npm/README.md -------------------------------------------------------------------------------- /src/nerdbank-gitversioning.npm/gulpfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Nerdbank.GitVersioning/HEAD/src/nerdbank-gitversioning.npm/gulpfile.js -------------------------------------------------------------------------------- /src/nerdbank-gitversioning.npm/jsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Nerdbank.GitVersioning/HEAD/src/nerdbank-gitversioning.npm/jsconfig.json -------------------------------------------------------------------------------- /src/nerdbank-gitversioning.npm/nb-gv.njsproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Nerdbank.GitVersioning/HEAD/src/nerdbank-gitversioning.npm/nb-gv.njsproj -------------------------------------------------------------------------------- /src/nerdbank-gitversioning.npm/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Nerdbank.GitVersioning/HEAD/src/nerdbank-gitversioning.npm/package.json -------------------------------------------------------------------------------- /src/nerdbank-gitversioning.npm/ts/asyncio.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Nerdbank.GitVersioning/HEAD/src/nerdbank-gitversioning.npm/ts/asyncio.ts -------------------------------------------------------------------------------- /src/nerdbank-gitversioning.npm/ts/asyncprocess.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Nerdbank.GitVersioning/HEAD/src/nerdbank-gitversioning.npm/ts/asyncprocess.ts -------------------------------------------------------------------------------- /src/nerdbank-gitversioning.npm/ts/core.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Nerdbank.GitVersioning/HEAD/src/nerdbank-gitversioning.npm/ts/core.ts -------------------------------------------------------------------------------- /src/nerdbank-gitversioning.npm/ts/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Nerdbank.GitVersioning/HEAD/src/nerdbank-gitversioning.npm/ts/index.ts -------------------------------------------------------------------------------- /src/nerdbank-gitversioning.npm/ts/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Nerdbank.GitVersioning/HEAD/src/nerdbank-gitversioning.npm/ts/main.ts -------------------------------------------------------------------------------- /src/nerdbank-gitversioning.npm/ts/npmVersion.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Nerdbank.GitVersioning/HEAD/src/nerdbank-gitversioning.npm/ts/npmVersion.ts -------------------------------------------------------------------------------- /src/nerdbank-gitversioning.npm/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Nerdbank.GitVersioning/HEAD/src/nerdbank-gitversioning.npm/tsconfig.json -------------------------------------------------------------------------------- /src/nerdbank-gitversioning.npm/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Nerdbank.GitVersioning/HEAD/src/nerdbank-gitversioning.npm/yarn.lock -------------------------------------------------------------------------------- /strongname.snk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Nerdbank.GitVersioning/HEAD/strongname.snk -------------------------------------------------------------------------------- /stylecop.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Nerdbank.GitVersioning/HEAD/stylecop.json -------------------------------------------------------------------------------- /test/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Nerdbank.GitVersioning/HEAD/test/.editorconfig -------------------------------------------------------------------------------- /test/Cake.GitVersioning.Tests/Cake.GitVersioning.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Nerdbank.GitVersioning/HEAD/test/Cake.GitVersioning.Tests/Cake.GitVersioning.Tests.csproj -------------------------------------------------------------------------------- /test/Cake.GitVersioning.Tests/GitVersioningCloudProviderTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Nerdbank.GitVersioning/HEAD/test/Cake.GitVersioning.Tests/GitVersioningCloudProviderTests.cs -------------------------------------------------------------------------------- /test/Cake.GitVersioning.Tests/xunit.runner.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Nerdbank.GitVersioning/HEAD/test/Cake.GitVersioning.Tests/xunit.runner.json -------------------------------------------------------------------------------- /test/Directory.Build.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Nerdbank.GitVersioning/HEAD/test/Directory.Build.props -------------------------------------------------------------------------------- /test/Directory.Build.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Nerdbank.GitVersioning/HEAD/test/Directory.Build.targets -------------------------------------------------------------------------------- /test/Nerdbank.GitVersioning.Benchmarks/GetVersionBenchmarks.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Nerdbank.GitVersioning/HEAD/test/Nerdbank.GitVersioning.Benchmarks/GetVersionBenchmarks.cs -------------------------------------------------------------------------------- /test/Nerdbank.GitVersioning.Benchmarks/Nerdbank.GitVersioning.Benchmarks.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Nerdbank.GitVersioning/HEAD/test/Nerdbank.GitVersioning.Benchmarks/Nerdbank.GitVersioning.Benchmarks.csproj -------------------------------------------------------------------------------- /test/Nerdbank.GitVersioning.Benchmarks/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Nerdbank.GitVersioning/HEAD/test/Nerdbank.GitVersioning.Benchmarks/Program.cs -------------------------------------------------------------------------------- /test/Nerdbank.GitVersioning.Tests/AssemblyInfoTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Nerdbank.GitVersioning/HEAD/test/Nerdbank.GitVersioning.Tests/AssemblyInfoTest.cs -------------------------------------------------------------------------------- /test/Nerdbank.GitVersioning.Tests/BuildIntegrationDisabledTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Nerdbank.GitVersioning/HEAD/test/Nerdbank.GitVersioning.Tests/BuildIntegrationDisabledTests.cs -------------------------------------------------------------------------------- /test/Nerdbank.GitVersioning.Tests/BuildIntegrationInProjectManagedTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Nerdbank.GitVersioning/HEAD/test/Nerdbank.GitVersioning.Tests/BuildIntegrationInProjectManagedTests.cs -------------------------------------------------------------------------------- /test/Nerdbank.GitVersioning.Tests/BuildIntegrationLibGit2Tests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Nerdbank.GitVersioning/HEAD/test/Nerdbank.GitVersioning.Tests/BuildIntegrationLibGit2Tests.cs -------------------------------------------------------------------------------- /test/Nerdbank.GitVersioning.Tests/BuildIntegrationManagedTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Nerdbank.GitVersioning/HEAD/test/Nerdbank.GitVersioning.Tests/BuildIntegrationManagedTests.cs -------------------------------------------------------------------------------- /test/Nerdbank.GitVersioning.Tests/BuildIntegrationTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Nerdbank.GitVersioning/HEAD/test/Nerdbank.GitVersioning.Tests/BuildIntegrationTests.cs -------------------------------------------------------------------------------- /test/Nerdbank.GitVersioning.Tests/CommandTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Nerdbank.GitVersioning/HEAD/test/Nerdbank.GitVersioning.Tests/CommandTests.cs -------------------------------------------------------------------------------- /test/Nerdbank.GitVersioning.Tests/FilterPathTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Nerdbank.GitVersioning/HEAD/test/Nerdbank.GitVersioning.Tests/FilterPathTests.cs -------------------------------------------------------------------------------- /test/Nerdbank.GitVersioning.Tests/GitContextTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Nerdbank.GitVersioning/HEAD/test/Nerdbank.GitVersioning.Tests/GitContextTests.cs -------------------------------------------------------------------------------- /test/Nerdbank.GitVersioning.Tests/Keys/keypair.snk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Nerdbank.GitVersioning/HEAD/test/Nerdbank.GitVersioning.Tests/Keys/keypair.snk -------------------------------------------------------------------------------- /test/Nerdbank.GitVersioning.Tests/Keys/protectedPair.pfx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Nerdbank.GitVersioning/HEAD/test/Nerdbank.GitVersioning.Tests/Keys/protectedPair.pfx -------------------------------------------------------------------------------- /test/Nerdbank.GitVersioning.Tests/Keys/public.snk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Nerdbank.GitVersioning/HEAD/test/Nerdbank.GitVersioning.Tests/Keys/public.snk -------------------------------------------------------------------------------- /test/Nerdbank.GitVersioning.Tests/LibGit2GitExtensionsTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Nerdbank.GitVersioning/HEAD/test/Nerdbank.GitVersioning.Tests/LibGit2GitExtensionsTests.cs -------------------------------------------------------------------------------- /test/Nerdbank.GitVersioning.Tests/MSBuildExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Nerdbank.GitVersioning/HEAD/test/Nerdbank.GitVersioning.Tests/MSBuildExtensions.cs -------------------------------------------------------------------------------- /test/Nerdbank.GitVersioning.Tests/MSBuildFixture.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Nerdbank.GitVersioning/HEAD/test/Nerdbank.GitVersioning.Tests/MSBuildFixture.cs -------------------------------------------------------------------------------- /test/Nerdbank.GitVersioning.Tests/ManagedGit/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Nerdbank.GitVersioning/HEAD/test/Nerdbank.GitVersioning.Tests/ManagedGit/.gitattributes -------------------------------------------------------------------------------- /test/Nerdbank.GitVersioning.Tests/ManagedGit/3596ffe59898103a2675547d4597e742e1f2389c.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Nerdbank.GitVersioning/HEAD/test/Nerdbank.GitVersioning.Tests/ManagedGit/3596ffe59898103a2675547d4597e742e1f2389c.gz -------------------------------------------------------------------------------- /test/Nerdbank.GitVersioning.Tests/ManagedGit/DeltaStreamReaderTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Nerdbank.GitVersioning/HEAD/test/Nerdbank.GitVersioning.Tests/ManagedGit/DeltaStreamReaderTests.cs -------------------------------------------------------------------------------- /test/Nerdbank.GitVersioning.Tests/ManagedGit/GitCommitReaderTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Nerdbank.GitVersioning/HEAD/test/Nerdbank.GitVersioning.Tests/ManagedGit/GitCommitReaderTests.cs -------------------------------------------------------------------------------- /test/Nerdbank.GitVersioning.Tests/ManagedGit/GitCommitTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Nerdbank.GitVersioning/HEAD/test/Nerdbank.GitVersioning.Tests/ManagedGit/GitCommitTests.cs -------------------------------------------------------------------------------- /test/Nerdbank.GitVersioning.Tests/ManagedGit/GitObjectIdTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Nerdbank.GitVersioning/HEAD/test/Nerdbank.GitVersioning.Tests/ManagedGit/GitObjectIdTests.cs -------------------------------------------------------------------------------- /test/Nerdbank.GitVersioning.Tests/ManagedGit/GitObjectStreamTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Nerdbank.GitVersioning/HEAD/test/Nerdbank.GitVersioning.Tests/ManagedGit/GitObjectStreamTests.cs -------------------------------------------------------------------------------- /test/Nerdbank.GitVersioning.Tests/ManagedGit/GitPackDeltafiedStreamTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Nerdbank.GitVersioning/HEAD/test/Nerdbank.GitVersioning.Tests/ManagedGit/GitPackDeltafiedStreamTests.cs -------------------------------------------------------------------------------- /test/Nerdbank.GitVersioning.Tests/ManagedGit/GitPackIndexMappedReaderTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Nerdbank.GitVersioning/HEAD/test/Nerdbank.GitVersioning.Tests/ManagedGit/GitPackIndexMappedReaderTests.cs -------------------------------------------------------------------------------- /test/Nerdbank.GitVersioning.Tests/ManagedGit/GitPackMemoryCacheTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Nerdbank.GitVersioning/HEAD/test/Nerdbank.GitVersioning.Tests/ManagedGit/GitPackMemoryCacheTests.cs -------------------------------------------------------------------------------- /test/Nerdbank.GitVersioning.Tests/ManagedGit/GitPackTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Nerdbank.GitVersioning/HEAD/test/Nerdbank.GitVersioning.Tests/ManagedGit/GitPackTests.cs -------------------------------------------------------------------------------- /test/Nerdbank.GitVersioning.Tests/ManagedGit/GitRepositoryTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Nerdbank.GitVersioning/HEAD/test/Nerdbank.GitVersioning.Tests/ManagedGit/GitRepositoryTests.cs -------------------------------------------------------------------------------- /test/Nerdbank.GitVersioning.Tests/ManagedGit/GitTreeStreamingReaderTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Nerdbank.GitVersioning/HEAD/test/Nerdbank.GitVersioning.Tests/ManagedGit/GitTreeStreamingReaderTests.cs -------------------------------------------------------------------------------- /test/Nerdbank.GitVersioning.Tests/ManagedGit/StreamExtensionsTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Nerdbank.GitVersioning/HEAD/test/Nerdbank.GitVersioning.Tests/ManagedGit/StreamExtensionsTests.cs -------------------------------------------------------------------------------- /test/Nerdbank.GitVersioning.Tests/ManagedGit/ZLibStreamTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Nerdbank.GitVersioning/HEAD/test/Nerdbank.GitVersioning.Tests/ManagedGit/ZLibStreamTest.cs -------------------------------------------------------------------------------- /test/Nerdbank.GitVersioning.Tests/ManagedGit/commit-4497b0eaaa89abf0e6d70961ad5f04fd3a49cbc6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Nerdbank.GitVersioning/HEAD/test/Nerdbank.GitVersioning.Tests/ManagedGit/commit-4497b0eaaa89abf0e6d70961ad5f04fd3a49cbc6 -------------------------------------------------------------------------------- /test/Nerdbank.GitVersioning.Tests/ManagedGit/commit-ab39e8acac105fa0db88514f259341c9f0201b22: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Nerdbank.GitVersioning/HEAD/test/Nerdbank.GitVersioning.Tests/ManagedGit/commit-ab39e8acac105fa0db88514f259341c9f0201b22 -------------------------------------------------------------------------------- /test/Nerdbank.GitVersioning.Tests/ManagedGit/commit-d56dc3ed179053abef2097d1120b4507769bcf1a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Nerdbank.GitVersioning/HEAD/test/Nerdbank.GitVersioning.Tests/ManagedGit/commit-d56dc3ed179053abef2097d1120b4507769bcf1a -------------------------------------------------------------------------------- /test/Nerdbank.GitVersioning.Tests/ManagedGit/commit.delta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Nerdbank.GitVersioning/HEAD/test/Nerdbank.GitVersioning.Tests/ManagedGit/commit.delta -------------------------------------------------------------------------------- /test/Nerdbank.GitVersioning.Tests/ManagedGit/pack-7d6b2c56ffb97eedb92f4e28583c093f7ee4b3d9 .txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Nerdbank.GitVersioning/HEAD/test/Nerdbank.GitVersioning.Tests/ManagedGit/pack-7d6b2c56ffb97eedb92f4e28583c093f7ee4b3d9 .txt -------------------------------------------------------------------------------- /test/Nerdbank.GitVersioning.Tests/ManagedGit/pack-7d6b2c56ffb97eedb92f4e28583c093f7ee4b3d9.idx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Nerdbank.GitVersioning/HEAD/test/Nerdbank.GitVersioning.Tests/ManagedGit/pack-7d6b2c56ffb97eedb92f4e28583c093f7ee4b3d9.idx -------------------------------------------------------------------------------- /test/Nerdbank.GitVersioning.Tests/ManagedGit/pack-7d6b2c56ffb97eedb92f4e28583c093f7ee4b3d9.pack: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Nerdbank.GitVersioning/HEAD/test/Nerdbank.GitVersioning.Tests/ManagedGit/pack-7d6b2c56ffb97eedb92f4e28583c093f7ee4b3d9.pack -------------------------------------------------------------------------------- /test/Nerdbank.GitVersioning.Tests/ManagedGit/tree-bb36cf0ca445ccc8e5ce9cc88f7cf74128e96dc9: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Nerdbank.GitVersioning/HEAD/test/Nerdbank.GitVersioning.Tests/ManagedGit/tree-bb36cf0ca445ccc8e5ce9cc88f7cf74128e96dc9 -------------------------------------------------------------------------------- /test/Nerdbank.GitVersioning.Tests/ManagedGit/tree-f914b48023c7c804a4f3be780d451f31aef74ac1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Nerdbank.GitVersioning/HEAD/test/Nerdbank.GitVersioning.Tests/ManagedGit/tree-f914b48023c7c804a4f3be780d451f31aef74ac1 -------------------------------------------------------------------------------- /test/Nerdbank.GitVersioning.Tests/ManagedGit/tree.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Nerdbank.GitVersioning/HEAD/test/Nerdbank.GitVersioning.Tests/ManagedGit/tree.bin -------------------------------------------------------------------------------- /test/Nerdbank.GitVersioning.Tests/ManagedGit/tree.delta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Nerdbank.GitVersioning/HEAD/test/Nerdbank.GitVersioning.Tests/ManagedGit/tree.delta -------------------------------------------------------------------------------- /test/Nerdbank.GitVersioning.Tests/Nerdbank.GitVersioning.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Nerdbank.GitVersioning/HEAD/test/Nerdbank.GitVersioning.Tests/Nerdbank.GitVersioning.Tests.csproj -------------------------------------------------------------------------------- /test/Nerdbank.GitVersioning.Tests/ReleaseManagerTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Nerdbank.GitVersioning/HEAD/test/Nerdbank.GitVersioning.Tests/ReleaseManagerTests.cs -------------------------------------------------------------------------------- /test/Nerdbank.GitVersioning.Tests/RepoTestBase.Helpers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Nerdbank.GitVersioning/HEAD/test/Nerdbank.GitVersioning.Tests/RepoTestBase.Helpers.cs -------------------------------------------------------------------------------- /test/Nerdbank.GitVersioning.Tests/RepoTestBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Nerdbank.GitVersioning/HEAD/test/Nerdbank.GitVersioning.Tests/RepoTestBase.cs -------------------------------------------------------------------------------- /test/Nerdbank.GitVersioning.Tests/SemanticVersionExtensionsTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Nerdbank.GitVersioning/HEAD/test/Nerdbank.GitVersioning.Tests/SemanticVersionExtensionsTests.cs -------------------------------------------------------------------------------- /test/Nerdbank.GitVersioning.Tests/SemanticVersionTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Nerdbank.GitVersioning/HEAD/test/Nerdbank.GitVersioning.Tests/SemanticVersionTests.cs -------------------------------------------------------------------------------- /test/Nerdbank.GitVersioning.Tests/SomeGitBuildIntegrationTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Nerdbank.GitVersioning/HEAD/test/Nerdbank.GitVersioning.Tests/SomeGitBuildIntegrationTests.cs -------------------------------------------------------------------------------- /test/Nerdbank.GitVersioning.Tests/TestUtilities.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Nerdbank.GitVersioning/HEAD/test/Nerdbank.GitVersioning.Tests/TestUtilities.cs -------------------------------------------------------------------------------- /test/Nerdbank.GitVersioning.Tests/Usings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Nerdbank.GitVersioning/HEAD/test/Nerdbank.GitVersioning.Tests/Usings.cs -------------------------------------------------------------------------------- /test/Nerdbank.GitVersioning.Tests/VersionExtensionsTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Nerdbank.GitVersioning/HEAD/test/Nerdbank.GitVersioning.Tests/VersionExtensionsTests.cs -------------------------------------------------------------------------------- /test/Nerdbank.GitVersioning.Tests/VersionFileTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Nerdbank.GitVersioning/HEAD/test/Nerdbank.GitVersioning.Tests/VersionFileTests.cs -------------------------------------------------------------------------------- /test/Nerdbank.GitVersioning.Tests/VersionOptionsTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Nerdbank.GitVersioning/HEAD/test/Nerdbank.GitVersioning.Tests/VersionOptionsTests.cs -------------------------------------------------------------------------------- /test/Nerdbank.GitVersioning.Tests/VersionOracleTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Nerdbank.GitVersioning/HEAD/test/Nerdbank.GitVersioning.Tests/VersionOracleTests.cs -------------------------------------------------------------------------------- /test/Nerdbank.GitVersioning.Tests/VersionSchemaTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Nerdbank.GitVersioning/HEAD/test/Nerdbank.GitVersioning.Tests/VersionSchemaTests.cs -------------------------------------------------------------------------------- /test/Nerdbank.GitVersioning.Tests/WindowsTheoryAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Nerdbank.GitVersioning/HEAD/test/Nerdbank.GitVersioning.Tests/WindowsTheoryAttribute.cs -------------------------------------------------------------------------------- /test/Nerdbank.GitVersioning.Tests/repos/PackedHeadRef.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Nerdbank.GitVersioning/HEAD/test/Nerdbank.GitVersioning.Tests/repos/PackedHeadRef.zip -------------------------------------------------------------------------------- /test/Nerdbank.GitVersioning.Tests/repos/submodules.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Nerdbank.GitVersioning/HEAD/test/Nerdbank.GitVersioning.Tests/repos/submodules.zip -------------------------------------------------------------------------------- /test/Nerdbank.GitVersioning.Tests/test.prj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Nerdbank.GitVersioning/HEAD/test/Nerdbank.GitVersioning.Tests/test.prj -------------------------------------------------------------------------------- /test/Nerdbank.GitVersioning.Tests/test.vcprj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Nerdbank.GitVersioning/HEAD/test/Nerdbank.GitVersioning.Tests/test.vcprj -------------------------------------------------------------------------------- /test/Nerdbank.GitVersioning.Tests/xunit.runner.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Nerdbank.GitVersioning/HEAD/test/Nerdbank.GitVersioning.Tests/xunit.runner.json -------------------------------------------------------------------------------- /tools/Check-DotNetRuntime.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Nerdbank.GitVersioning/HEAD/tools/Check-DotNetRuntime.ps1 -------------------------------------------------------------------------------- /tools/Check-DotNetSdk.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Nerdbank.GitVersioning/HEAD/tools/Check-DotNetSdk.ps1 -------------------------------------------------------------------------------- /tools/Get-3rdPartySymbolFiles.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Nerdbank.GitVersioning/HEAD/tools/Get-3rdPartySymbolFiles.ps1 -------------------------------------------------------------------------------- /tools/Get-ArtifactsStagingDirectory.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Nerdbank.GitVersioning/HEAD/tools/Get-ArtifactsStagingDirectory.ps1 -------------------------------------------------------------------------------- /tools/Get-CodeCovTool.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Nerdbank.GitVersioning/HEAD/tools/Get-CodeCovTool.ps1 -------------------------------------------------------------------------------- /tools/Get-LibTemplateBasis.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Nerdbank.GitVersioning/HEAD/tools/Get-LibTemplateBasis.ps1 -------------------------------------------------------------------------------- /tools/Get-NuGetTool.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Nerdbank.GitVersioning/HEAD/tools/Get-NuGetTool.ps1 -------------------------------------------------------------------------------- /tools/Get-ProcDump.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Nerdbank.GitVersioning/HEAD/tools/Get-ProcDump.ps1 -------------------------------------------------------------------------------- /tools/Get-SymbolFiles.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Nerdbank.GitVersioning/HEAD/tools/Get-SymbolFiles.ps1 -------------------------------------------------------------------------------- /tools/Get-TempToolsPath.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Nerdbank.GitVersioning/HEAD/tools/Get-TempToolsPath.ps1 -------------------------------------------------------------------------------- /tools/Install-DotNetSdk.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Nerdbank.GitVersioning/HEAD/tools/Install-DotNetSdk.ps1 -------------------------------------------------------------------------------- /tools/Install-NuGetCredProvider.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Nerdbank.GitVersioning/HEAD/tools/Install-NuGetCredProvider.ps1 -------------------------------------------------------------------------------- /tools/Install-NuGetPackage.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Nerdbank.GitVersioning/HEAD/tools/Install-NuGetPackage.ps1 -------------------------------------------------------------------------------- /tools/MergeFrom-Template.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Nerdbank.GitVersioning/HEAD/tools/MergeFrom-Template.ps1 -------------------------------------------------------------------------------- /tools/Set-EnvVars.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Nerdbank.GitVersioning/HEAD/tools/Set-EnvVars.ps1 -------------------------------------------------------------------------------- /tools/artifacts/Variables.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Nerdbank.GitVersioning/HEAD/tools/artifacts/Variables.ps1 -------------------------------------------------------------------------------- /tools/artifacts/_all.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Nerdbank.GitVersioning/HEAD/tools/artifacts/_all.ps1 -------------------------------------------------------------------------------- /tools/artifacts/_stage_all.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Nerdbank.GitVersioning/HEAD/tools/artifacts/_stage_all.ps1 -------------------------------------------------------------------------------- /tools/artifacts/build_logs.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Nerdbank.GitVersioning/HEAD/tools/artifacts/build_logs.ps1 -------------------------------------------------------------------------------- /tools/artifacts/coverageResults.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Nerdbank.GitVersioning/HEAD/tools/artifacts/coverageResults.ps1 -------------------------------------------------------------------------------- /tools/artifacts/deployables-LKG.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Nerdbank.GitVersioning/HEAD/tools/artifacts/deployables-LKG.ps1 -------------------------------------------------------------------------------- /tools/artifacts/deployables.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Nerdbank.GitVersioning/HEAD/tools/artifacts/deployables.ps1 -------------------------------------------------------------------------------- /tools/artifacts/projectAssetsJson.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Nerdbank.GitVersioning/HEAD/tools/artifacts/projectAssetsJson.ps1 -------------------------------------------------------------------------------- /tools/artifacts/symbols.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Nerdbank.GitVersioning/HEAD/tools/artifacts/symbols.ps1 -------------------------------------------------------------------------------- /tools/artifacts/testResults.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Nerdbank.GitVersioning/HEAD/tools/artifacts/testResults.ps1 -------------------------------------------------------------------------------- /tools/artifacts/test_symbols.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Nerdbank.GitVersioning/HEAD/tools/artifacts/test_symbols.ps1 -------------------------------------------------------------------------------- /tools/dotnet-test-cloud.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Nerdbank.GitVersioning/HEAD/tools/dotnet-test-cloud.ps1 -------------------------------------------------------------------------------- /tools/publish-CodeCov.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Nerdbank.GitVersioning/HEAD/tools/publish-CodeCov.ps1 -------------------------------------------------------------------------------- /tools/test.runsettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Nerdbank.GitVersioning/HEAD/tools/test.runsettings -------------------------------------------------------------------------------- /tools/variables/DotNetSdkVersion.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Nerdbank.GitVersioning/HEAD/tools/variables/DotNetSdkVersion.ps1 -------------------------------------------------------------------------------- /tools/variables/_all.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Nerdbank.GitVersioning/HEAD/tools/variables/_all.ps1 -------------------------------------------------------------------------------- /tools/variables/_define.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Nerdbank.GitVersioning/HEAD/tools/variables/_define.ps1 -------------------------------------------------------------------------------- /version.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Nerdbank.GitVersioning/HEAD/version.json --------------------------------------------------------------------------------