├── .gitattributes ├── .github └── workflows │ ├── build-and-test.yml │ └── deploy.yml ├── .gitignore ├── CHANGELOG.md ├── Images ├── BuildInformationGenerator.png └── BuildInformationGenerator.svg ├── LICENSE ├── README-NuGet.md ├── README.md └── Source ├── Directory.Build.props ├── Library ├── Pekspro.BuildInformationGenerator.Attributes │ ├── BuildInformationAttribute.cs │ └── Pekspro.BuildInformationGenerator.Attributes.csproj └── Pekspro.BuildInformationGenerator │ ├── BuildInformationGenerator.cs │ ├── BuildInformationToGenerate.cs │ ├── CompilationInformation.cs │ ├── Constants.cs │ ├── FakeValues.cs │ ├── InformationProvider.cs │ ├── Pekspro.BuildInformationGenerator.csproj │ ├── SourceGenerationHelper.cs │ ├── StringBuilderExtensions.cs │ ├── TrackingNames.cs │ └── ValueSource.cs ├── NuGet.integration-tests.config ├── Pekspro.BuildInformationGenerator.lutconfig ├── Pekspro.BuildInformationGenerator.sln ├── Samples └── BuildInformationSample │ ├── BuildInformationSample.csproj │ └── Program.cs ├── Tests ├── Directory.Build.props ├── Pekspro.BuildInformationGenerator.IntegrationTests │ ├── BuildInformationClasses.cs │ ├── BuildInformationTests.cs │ ├── Pekspro.BuildInformationGenerator.IntegrationTests.csproj │ └── xunit.runner.json ├── Pekspro.BuildInformationGenerator.NetStandard.IntegrationTests │ └── Pekspro.BuildInformationGenerator.NetStandard.IntegrationTests.csproj ├── Pekspro.BuildInformationGenerator.NetStandard │ └── Pekspro.BuildInformationGenerator.NetStandard.csproj ├── Pekspro.BuildInformationGenerator.Nuget.IntegrationTests │ └── Pekspro.BuildInformationGenerator.Nuget.IntegrationTests.csproj └── Pekspro.BuildInformationGenerator.Tests │ ├── InMemoryTests.cs │ ├── InformationProviderTestHelper.cs │ ├── Pekspro.BuildInformationGenerator.Tests.csproj │ ├── Snapshots │ ├── InMemoryTests.InGlobalNamespace.verified.txt │ ├── InMemoryTests.InNamespace.verified.txt │ ├── InMemoryTests.InSubNamespace.verified.txt │ ├── SourceGenerationHelperSnapshotTests.AllFake.verified.txt │ ├── SourceGenerationHelperSnapshotTests.AllReal.verified.txt │ ├── SourceGenerationHelperSnapshotTests.AssemblyVersionFake.verified.txt │ ├── SourceGenerationHelperSnapshotTests.AssemblyVersionReal.verified.txt │ ├── SourceGenerationHelperSnapshotTests.BuildTimeFake.verified.txt │ ├── SourceGenerationHelperSnapshotTests.BuildTimeReal.verified.txt │ ├── SourceGenerationHelperSnapshotTests.DotnetVersionFake.verified.txt │ ├── SourceGenerationHelperSnapshotTests.DotnetVersionReal.verified.txt │ ├── SourceGenerationHelperSnapshotTests.Empty.verified.txt │ ├── SourceGenerationHelperSnapshotTests.EvilGitBranch.verified.txt │ ├── SourceGenerationHelperSnapshotTests.GitBranchFake.verified.txt │ ├── SourceGenerationHelperSnapshotTests.GitBranchReal.verified.txt │ ├── SourceGenerationHelperSnapshotTests.GitCommitIdFake.verified.txt │ ├── SourceGenerationHelperSnapshotTests.GitCommitIdReal.verified.txt │ ├── SourceGenerationHelperSnapshotTests.LocalTimeFake.verified.txt │ ├── SourceGenerationHelperSnapshotTests.LocalTimeReal.verified.txt │ ├── SourceGenerationHelperSnapshotTests.OSVersionFake.verified.txt │ ├── SourceGenerationHelperSnapshotTests.OSVersionReal.verified.txt │ ├── SourceGenerationHelperSnapshotTests.WorkloadMauiFake.verified.txt │ ├── SourceGenerationHelperSnapshotTests.WorkloadMauiReal.verified.txt │ ├── SourceGenerationHelperSnapshotTests.WorkloadWasmToolsFake.verified.txt │ └── SourceGenerationHelperSnapshotTests.WorkloadWasmToolsReal.verified.txt │ ├── SourceGenerationHelperSnapshotTests.cs │ ├── StringBuilderExtensionsTests.cs │ └── TestHelpers.cs └── Version.props /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pekspro/BuildInformationGenerator/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/workflows/build-and-test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pekspro/BuildInformationGenerator/HEAD/.github/workflows/build-and-test.yml -------------------------------------------------------------------------------- /.github/workflows/deploy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pekspro/BuildInformationGenerator/HEAD/.github/workflows/deploy.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pekspro/BuildInformationGenerator/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pekspro/BuildInformationGenerator/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /Images/BuildInformationGenerator.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pekspro/BuildInformationGenerator/HEAD/Images/BuildInformationGenerator.png -------------------------------------------------------------------------------- /Images/BuildInformationGenerator.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pekspro/BuildInformationGenerator/HEAD/Images/BuildInformationGenerator.svg -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pekspro/BuildInformationGenerator/HEAD/LICENSE -------------------------------------------------------------------------------- /README-NuGet.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pekspro/BuildInformationGenerator/HEAD/README-NuGet.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pekspro/BuildInformationGenerator/HEAD/README.md -------------------------------------------------------------------------------- /Source/Directory.Build.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pekspro/BuildInformationGenerator/HEAD/Source/Directory.Build.props -------------------------------------------------------------------------------- /Source/Library/Pekspro.BuildInformationGenerator.Attributes/BuildInformationAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pekspro/BuildInformationGenerator/HEAD/Source/Library/Pekspro.BuildInformationGenerator.Attributes/BuildInformationAttribute.cs -------------------------------------------------------------------------------- /Source/Library/Pekspro.BuildInformationGenerator.Attributes/Pekspro.BuildInformationGenerator.Attributes.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pekspro/BuildInformationGenerator/HEAD/Source/Library/Pekspro.BuildInformationGenerator.Attributes/Pekspro.BuildInformationGenerator.Attributes.csproj -------------------------------------------------------------------------------- /Source/Library/Pekspro.BuildInformationGenerator/BuildInformationGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pekspro/BuildInformationGenerator/HEAD/Source/Library/Pekspro.BuildInformationGenerator/BuildInformationGenerator.cs -------------------------------------------------------------------------------- /Source/Library/Pekspro.BuildInformationGenerator/BuildInformationToGenerate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pekspro/BuildInformationGenerator/HEAD/Source/Library/Pekspro.BuildInformationGenerator/BuildInformationToGenerate.cs -------------------------------------------------------------------------------- /Source/Library/Pekspro.BuildInformationGenerator/CompilationInformation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pekspro/BuildInformationGenerator/HEAD/Source/Library/Pekspro.BuildInformationGenerator/CompilationInformation.cs -------------------------------------------------------------------------------- /Source/Library/Pekspro.BuildInformationGenerator/Constants.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pekspro/BuildInformationGenerator/HEAD/Source/Library/Pekspro.BuildInformationGenerator/Constants.cs -------------------------------------------------------------------------------- /Source/Library/Pekspro.BuildInformationGenerator/FakeValues.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pekspro/BuildInformationGenerator/HEAD/Source/Library/Pekspro.BuildInformationGenerator/FakeValues.cs -------------------------------------------------------------------------------- /Source/Library/Pekspro.BuildInformationGenerator/InformationProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pekspro/BuildInformationGenerator/HEAD/Source/Library/Pekspro.BuildInformationGenerator/InformationProvider.cs -------------------------------------------------------------------------------- /Source/Library/Pekspro.BuildInformationGenerator/Pekspro.BuildInformationGenerator.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pekspro/BuildInformationGenerator/HEAD/Source/Library/Pekspro.BuildInformationGenerator/Pekspro.BuildInformationGenerator.csproj -------------------------------------------------------------------------------- /Source/Library/Pekspro.BuildInformationGenerator/SourceGenerationHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pekspro/BuildInformationGenerator/HEAD/Source/Library/Pekspro.BuildInformationGenerator/SourceGenerationHelper.cs -------------------------------------------------------------------------------- /Source/Library/Pekspro.BuildInformationGenerator/StringBuilderExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pekspro/BuildInformationGenerator/HEAD/Source/Library/Pekspro.BuildInformationGenerator/StringBuilderExtensions.cs -------------------------------------------------------------------------------- /Source/Library/Pekspro.BuildInformationGenerator/TrackingNames.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pekspro/BuildInformationGenerator/HEAD/Source/Library/Pekspro.BuildInformationGenerator/TrackingNames.cs -------------------------------------------------------------------------------- /Source/Library/Pekspro.BuildInformationGenerator/ValueSource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pekspro/BuildInformationGenerator/HEAD/Source/Library/Pekspro.BuildInformationGenerator/ValueSource.cs -------------------------------------------------------------------------------- /Source/NuGet.integration-tests.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pekspro/BuildInformationGenerator/HEAD/Source/NuGet.integration-tests.config -------------------------------------------------------------------------------- /Source/Pekspro.BuildInformationGenerator.lutconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pekspro/BuildInformationGenerator/HEAD/Source/Pekspro.BuildInformationGenerator.lutconfig -------------------------------------------------------------------------------- /Source/Pekspro.BuildInformationGenerator.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pekspro/BuildInformationGenerator/HEAD/Source/Pekspro.BuildInformationGenerator.sln -------------------------------------------------------------------------------- /Source/Samples/BuildInformationSample/BuildInformationSample.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pekspro/BuildInformationGenerator/HEAD/Source/Samples/BuildInformationSample/BuildInformationSample.csproj -------------------------------------------------------------------------------- /Source/Samples/BuildInformationSample/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pekspro/BuildInformationGenerator/HEAD/Source/Samples/BuildInformationSample/Program.cs -------------------------------------------------------------------------------- /Source/Tests/Directory.Build.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pekspro/BuildInformationGenerator/HEAD/Source/Tests/Directory.Build.props -------------------------------------------------------------------------------- /Source/Tests/Pekspro.BuildInformationGenerator.IntegrationTests/BuildInformationClasses.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pekspro/BuildInformationGenerator/HEAD/Source/Tests/Pekspro.BuildInformationGenerator.IntegrationTests/BuildInformationClasses.cs -------------------------------------------------------------------------------- /Source/Tests/Pekspro.BuildInformationGenerator.IntegrationTests/BuildInformationTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pekspro/BuildInformationGenerator/HEAD/Source/Tests/Pekspro.BuildInformationGenerator.IntegrationTests/BuildInformationTests.cs -------------------------------------------------------------------------------- /Source/Tests/Pekspro.BuildInformationGenerator.IntegrationTests/Pekspro.BuildInformationGenerator.IntegrationTests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pekspro/BuildInformationGenerator/HEAD/Source/Tests/Pekspro.BuildInformationGenerator.IntegrationTests/Pekspro.BuildInformationGenerator.IntegrationTests.csproj -------------------------------------------------------------------------------- /Source/Tests/Pekspro.BuildInformationGenerator.IntegrationTests/xunit.runner.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pekspro/BuildInformationGenerator/HEAD/Source/Tests/Pekspro.BuildInformationGenerator.IntegrationTests/xunit.runner.json -------------------------------------------------------------------------------- /Source/Tests/Pekspro.BuildInformationGenerator.NetStandard.IntegrationTests/Pekspro.BuildInformationGenerator.NetStandard.IntegrationTests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pekspro/BuildInformationGenerator/HEAD/Source/Tests/Pekspro.BuildInformationGenerator.NetStandard.IntegrationTests/Pekspro.BuildInformationGenerator.NetStandard.IntegrationTests.csproj -------------------------------------------------------------------------------- /Source/Tests/Pekspro.BuildInformationGenerator.NetStandard/Pekspro.BuildInformationGenerator.NetStandard.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pekspro/BuildInformationGenerator/HEAD/Source/Tests/Pekspro.BuildInformationGenerator.NetStandard/Pekspro.BuildInformationGenerator.NetStandard.csproj -------------------------------------------------------------------------------- /Source/Tests/Pekspro.BuildInformationGenerator.Nuget.IntegrationTests/Pekspro.BuildInformationGenerator.Nuget.IntegrationTests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pekspro/BuildInformationGenerator/HEAD/Source/Tests/Pekspro.BuildInformationGenerator.Nuget.IntegrationTests/Pekspro.BuildInformationGenerator.Nuget.IntegrationTests.csproj -------------------------------------------------------------------------------- /Source/Tests/Pekspro.BuildInformationGenerator.Tests/InMemoryTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pekspro/BuildInformationGenerator/HEAD/Source/Tests/Pekspro.BuildInformationGenerator.Tests/InMemoryTests.cs -------------------------------------------------------------------------------- /Source/Tests/Pekspro.BuildInformationGenerator.Tests/InformationProviderTestHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pekspro/BuildInformationGenerator/HEAD/Source/Tests/Pekspro.BuildInformationGenerator.Tests/InformationProviderTestHelper.cs -------------------------------------------------------------------------------- /Source/Tests/Pekspro.BuildInformationGenerator.Tests/Pekspro.BuildInformationGenerator.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pekspro/BuildInformationGenerator/HEAD/Source/Tests/Pekspro.BuildInformationGenerator.Tests/Pekspro.BuildInformationGenerator.Tests.csproj -------------------------------------------------------------------------------- /Source/Tests/Pekspro.BuildInformationGenerator.Tests/Snapshots/InMemoryTests.InGlobalNamespace.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pekspro/BuildInformationGenerator/HEAD/Source/Tests/Pekspro.BuildInformationGenerator.Tests/Snapshots/InMemoryTests.InGlobalNamespace.verified.txt -------------------------------------------------------------------------------- /Source/Tests/Pekspro.BuildInformationGenerator.Tests/Snapshots/InMemoryTests.InNamespace.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pekspro/BuildInformationGenerator/HEAD/Source/Tests/Pekspro.BuildInformationGenerator.Tests/Snapshots/InMemoryTests.InNamespace.verified.txt -------------------------------------------------------------------------------- /Source/Tests/Pekspro.BuildInformationGenerator.Tests/Snapshots/InMemoryTests.InSubNamespace.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pekspro/BuildInformationGenerator/HEAD/Source/Tests/Pekspro.BuildInformationGenerator.Tests/Snapshots/InMemoryTests.InSubNamespace.verified.txt -------------------------------------------------------------------------------- /Source/Tests/Pekspro.BuildInformationGenerator.Tests/Snapshots/SourceGenerationHelperSnapshotTests.AllFake.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pekspro/BuildInformationGenerator/HEAD/Source/Tests/Pekspro.BuildInformationGenerator.Tests/Snapshots/SourceGenerationHelperSnapshotTests.AllFake.verified.txt -------------------------------------------------------------------------------- /Source/Tests/Pekspro.BuildInformationGenerator.Tests/Snapshots/SourceGenerationHelperSnapshotTests.AllReal.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pekspro/BuildInformationGenerator/HEAD/Source/Tests/Pekspro.BuildInformationGenerator.Tests/Snapshots/SourceGenerationHelperSnapshotTests.AllReal.verified.txt -------------------------------------------------------------------------------- /Source/Tests/Pekspro.BuildInformationGenerator.Tests/Snapshots/SourceGenerationHelperSnapshotTests.AssemblyVersionFake.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pekspro/BuildInformationGenerator/HEAD/Source/Tests/Pekspro.BuildInformationGenerator.Tests/Snapshots/SourceGenerationHelperSnapshotTests.AssemblyVersionFake.verified.txt -------------------------------------------------------------------------------- /Source/Tests/Pekspro.BuildInformationGenerator.Tests/Snapshots/SourceGenerationHelperSnapshotTests.AssemblyVersionReal.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pekspro/BuildInformationGenerator/HEAD/Source/Tests/Pekspro.BuildInformationGenerator.Tests/Snapshots/SourceGenerationHelperSnapshotTests.AssemblyVersionReal.verified.txt -------------------------------------------------------------------------------- /Source/Tests/Pekspro.BuildInformationGenerator.Tests/Snapshots/SourceGenerationHelperSnapshotTests.BuildTimeFake.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pekspro/BuildInformationGenerator/HEAD/Source/Tests/Pekspro.BuildInformationGenerator.Tests/Snapshots/SourceGenerationHelperSnapshotTests.BuildTimeFake.verified.txt -------------------------------------------------------------------------------- /Source/Tests/Pekspro.BuildInformationGenerator.Tests/Snapshots/SourceGenerationHelperSnapshotTests.BuildTimeReal.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pekspro/BuildInformationGenerator/HEAD/Source/Tests/Pekspro.BuildInformationGenerator.Tests/Snapshots/SourceGenerationHelperSnapshotTests.BuildTimeReal.verified.txt -------------------------------------------------------------------------------- /Source/Tests/Pekspro.BuildInformationGenerator.Tests/Snapshots/SourceGenerationHelperSnapshotTests.DotnetVersionFake.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pekspro/BuildInformationGenerator/HEAD/Source/Tests/Pekspro.BuildInformationGenerator.Tests/Snapshots/SourceGenerationHelperSnapshotTests.DotnetVersionFake.verified.txt -------------------------------------------------------------------------------- /Source/Tests/Pekspro.BuildInformationGenerator.Tests/Snapshots/SourceGenerationHelperSnapshotTests.DotnetVersionReal.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pekspro/BuildInformationGenerator/HEAD/Source/Tests/Pekspro.BuildInformationGenerator.Tests/Snapshots/SourceGenerationHelperSnapshotTests.DotnetVersionReal.verified.txt -------------------------------------------------------------------------------- /Source/Tests/Pekspro.BuildInformationGenerator.Tests/Snapshots/SourceGenerationHelperSnapshotTests.Empty.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pekspro/BuildInformationGenerator/HEAD/Source/Tests/Pekspro.BuildInformationGenerator.Tests/Snapshots/SourceGenerationHelperSnapshotTests.Empty.verified.txt -------------------------------------------------------------------------------- /Source/Tests/Pekspro.BuildInformationGenerator.Tests/Snapshots/SourceGenerationHelperSnapshotTests.EvilGitBranch.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pekspro/BuildInformationGenerator/HEAD/Source/Tests/Pekspro.BuildInformationGenerator.Tests/Snapshots/SourceGenerationHelperSnapshotTests.EvilGitBranch.verified.txt -------------------------------------------------------------------------------- /Source/Tests/Pekspro.BuildInformationGenerator.Tests/Snapshots/SourceGenerationHelperSnapshotTests.GitBranchFake.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pekspro/BuildInformationGenerator/HEAD/Source/Tests/Pekspro.BuildInformationGenerator.Tests/Snapshots/SourceGenerationHelperSnapshotTests.GitBranchFake.verified.txt -------------------------------------------------------------------------------- /Source/Tests/Pekspro.BuildInformationGenerator.Tests/Snapshots/SourceGenerationHelperSnapshotTests.GitBranchReal.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pekspro/BuildInformationGenerator/HEAD/Source/Tests/Pekspro.BuildInformationGenerator.Tests/Snapshots/SourceGenerationHelperSnapshotTests.GitBranchReal.verified.txt -------------------------------------------------------------------------------- /Source/Tests/Pekspro.BuildInformationGenerator.Tests/Snapshots/SourceGenerationHelperSnapshotTests.GitCommitIdFake.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pekspro/BuildInformationGenerator/HEAD/Source/Tests/Pekspro.BuildInformationGenerator.Tests/Snapshots/SourceGenerationHelperSnapshotTests.GitCommitIdFake.verified.txt -------------------------------------------------------------------------------- /Source/Tests/Pekspro.BuildInformationGenerator.Tests/Snapshots/SourceGenerationHelperSnapshotTests.GitCommitIdReal.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pekspro/BuildInformationGenerator/HEAD/Source/Tests/Pekspro.BuildInformationGenerator.Tests/Snapshots/SourceGenerationHelperSnapshotTests.GitCommitIdReal.verified.txt -------------------------------------------------------------------------------- /Source/Tests/Pekspro.BuildInformationGenerator.Tests/Snapshots/SourceGenerationHelperSnapshotTests.LocalTimeFake.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pekspro/BuildInformationGenerator/HEAD/Source/Tests/Pekspro.BuildInformationGenerator.Tests/Snapshots/SourceGenerationHelperSnapshotTests.LocalTimeFake.verified.txt -------------------------------------------------------------------------------- /Source/Tests/Pekspro.BuildInformationGenerator.Tests/Snapshots/SourceGenerationHelperSnapshotTests.LocalTimeReal.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pekspro/BuildInformationGenerator/HEAD/Source/Tests/Pekspro.BuildInformationGenerator.Tests/Snapshots/SourceGenerationHelperSnapshotTests.LocalTimeReal.verified.txt -------------------------------------------------------------------------------- /Source/Tests/Pekspro.BuildInformationGenerator.Tests/Snapshots/SourceGenerationHelperSnapshotTests.OSVersionFake.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pekspro/BuildInformationGenerator/HEAD/Source/Tests/Pekspro.BuildInformationGenerator.Tests/Snapshots/SourceGenerationHelperSnapshotTests.OSVersionFake.verified.txt -------------------------------------------------------------------------------- /Source/Tests/Pekspro.BuildInformationGenerator.Tests/Snapshots/SourceGenerationHelperSnapshotTests.OSVersionReal.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pekspro/BuildInformationGenerator/HEAD/Source/Tests/Pekspro.BuildInformationGenerator.Tests/Snapshots/SourceGenerationHelperSnapshotTests.OSVersionReal.verified.txt -------------------------------------------------------------------------------- /Source/Tests/Pekspro.BuildInformationGenerator.Tests/Snapshots/SourceGenerationHelperSnapshotTests.WorkloadMauiFake.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pekspro/BuildInformationGenerator/HEAD/Source/Tests/Pekspro.BuildInformationGenerator.Tests/Snapshots/SourceGenerationHelperSnapshotTests.WorkloadMauiFake.verified.txt -------------------------------------------------------------------------------- /Source/Tests/Pekspro.BuildInformationGenerator.Tests/Snapshots/SourceGenerationHelperSnapshotTests.WorkloadMauiReal.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pekspro/BuildInformationGenerator/HEAD/Source/Tests/Pekspro.BuildInformationGenerator.Tests/Snapshots/SourceGenerationHelperSnapshotTests.WorkloadMauiReal.verified.txt -------------------------------------------------------------------------------- /Source/Tests/Pekspro.BuildInformationGenerator.Tests/Snapshots/SourceGenerationHelperSnapshotTests.WorkloadWasmToolsFake.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pekspro/BuildInformationGenerator/HEAD/Source/Tests/Pekspro.BuildInformationGenerator.Tests/Snapshots/SourceGenerationHelperSnapshotTests.WorkloadWasmToolsFake.verified.txt -------------------------------------------------------------------------------- /Source/Tests/Pekspro.BuildInformationGenerator.Tests/Snapshots/SourceGenerationHelperSnapshotTests.WorkloadWasmToolsReal.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pekspro/BuildInformationGenerator/HEAD/Source/Tests/Pekspro.BuildInformationGenerator.Tests/Snapshots/SourceGenerationHelperSnapshotTests.WorkloadWasmToolsReal.verified.txt -------------------------------------------------------------------------------- /Source/Tests/Pekspro.BuildInformationGenerator.Tests/SourceGenerationHelperSnapshotTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pekspro/BuildInformationGenerator/HEAD/Source/Tests/Pekspro.BuildInformationGenerator.Tests/SourceGenerationHelperSnapshotTests.cs -------------------------------------------------------------------------------- /Source/Tests/Pekspro.BuildInformationGenerator.Tests/StringBuilderExtensionsTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pekspro/BuildInformationGenerator/HEAD/Source/Tests/Pekspro.BuildInformationGenerator.Tests/StringBuilderExtensionsTests.cs -------------------------------------------------------------------------------- /Source/Tests/Pekspro.BuildInformationGenerator.Tests/TestHelpers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pekspro/BuildInformationGenerator/HEAD/Source/Tests/Pekspro.BuildInformationGenerator.Tests/TestHelpers.cs -------------------------------------------------------------------------------- /Source/Version.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pekspro/BuildInformationGenerator/HEAD/Source/Version.props --------------------------------------------------------------------------------