├── .editorconfig ├── .github └── workflows │ ├── main.yml │ └── release.yml ├── .gitignore ├── .idea └── .idea.ChangelogAutomation │ └── .idea │ ├── codeStyles │ ├── Project.xml │ └── codeStyleConfig.xml │ └── dictionaries │ └── fried.xml ├── CHANGELOG.md ├── CONTRIBUTING.md ├── ChangelogAutomation.Changelog └── ChangelogAutomation.Changelog.csproj ├── ChangelogAutomation.Core.Tests ├── ChangelogAutomation.Core.Tests.csproj ├── MarkdownTests.cs ├── PlainTextTests.cs └── TestFramework.cs ├── ChangelogAutomation.Core ├── ChangelogAutomation.Core.csproj ├── MarkdownConverterBase.cs ├── MarkdownToMarkdownConverter.cs ├── MarkdownToPlainTextConverter.cs ├── Streams.cs └── Texts.cs ├── ChangelogAutomation.MSBuild.Tests ├── ChangelogAutomation.MSBuild.Tests.proj ├── Extract-ReleaseNotes.ps1 ├── MultiFrameworkTest.csproj ├── Program.cs ├── Run-PackageValidation.ps1 ├── Run-Test.ps1 └── SingleFrameworkTest.csproj ├── ChangelogAutomation.MSBuild ├── ChangelogAutomation.MSBuild.csproj ├── ChangelogAutomation.MSBuild.props ├── ChangelogAutomation.MSBuild.targets └── CollectLastChangelogSection.cs ├── ChangelogAutomation.Tests ├── ApplicationTests.cs ├── ChangelogAutomation.Tests.csproj └── TempFilePool.cs ├── ChangelogAutomation.Tool ├── ChangelogAutomation.Tool.csproj └── Program.cs ├── ChangelogAutomation.sln ├── ChangelogAutomation.sln.license ├── ChangelogAutomation ├── Application.cs ├── ChangelogAutomation.csproj └── Program.cs ├── Directory.Build.props ├── LICENSE.md ├── LICENSES └── MIT.txt ├── MAINTAINERSHIP.md ├── NuGet.config ├── README.md ├── REUSE.toml ├── SetPackageReleaseNotesExternal.tasks ├── renovate.json ├── renovate.json.license └── scripts └── Get-Version.ps1 /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForNeVeR/ChangelogAutomation/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForNeVeR/ChangelogAutomation/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForNeVeR/ChangelogAutomation/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForNeVeR/ChangelogAutomation/HEAD/.gitignore -------------------------------------------------------------------------------- /.idea/.idea.ChangelogAutomation/.idea/codeStyles/Project.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForNeVeR/ChangelogAutomation/HEAD/.idea/.idea.ChangelogAutomation/.idea/codeStyles/Project.xml -------------------------------------------------------------------------------- /.idea/.idea.ChangelogAutomation/.idea/codeStyles/codeStyleConfig.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForNeVeR/ChangelogAutomation/HEAD/.idea/.idea.ChangelogAutomation/.idea/codeStyles/codeStyleConfig.xml -------------------------------------------------------------------------------- /.idea/.idea.ChangelogAutomation/.idea/dictionaries/fried.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForNeVeR/ChangelogAutomation/HEAD/.idea/.idea.ChangelogAutomation/.idea/dictionaries/fried.xml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForNeVeR/ChangelogAutomation/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForNeVeR/ChangelogAutomation/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /ChangelogAutomation.Changelog/ChangelogAutomation.Changelog.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForNeVeR/ChangelogAutomation/HEAD/ChangelogAutomation.Changelog/ChangelogAutomation.Changelog.csproj -------------------------------------------------------------------------------- /ChangelogAutomation.Core.Tests/ChangelogAutomation.Core.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForNeVeR/ChangelogAutomation/HEAD/ChangelogAutomation.Core.Tests/ChangelogAutomation.Core.Tests.csproj -------------------------------------------------------------------------------- /ChangelogAutomation.Core.Tests/MarkdownTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForNeVeR/ChangelogAutomation/HEAD/ChangelogAutomation.Core.Tests/MarkdownTests.cs -------------------------------------------------------------------------------- /ChangelogAutomation.Core.Tests/PlainTextTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForNeVeR/ChangelogAutomation/HEAD/ChangelogAutomation.Core.Tests/PlainTextTests.cs -------------------------------------------------------------------------------- /ChangelogAutomation.Core.Tests/TestFramework.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForNeVeR/ChangelogAutomation/HEAD/ChangelogAutomation.Core.Tests/TestFramework.cs -------------------------------------------------------------------------------- /ChangelogAutomation.Core/ChangelogAutomation.Core.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForNeVeR/ChangelogAutomation/HEAD/ChangelogAutomation.Core/ChangelogAutomation.Core.csproj -------------------------------------------------------------------------------- /ChangelogAutomation.Core/MarkdownConverterBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForNeVeR/ChangelogAutomation/HEAD/ChangelogAutomation.Core/MarkdownConverterBase.cs -------------------------------------------------------------------------------- /ChangelogAutomation.Core/MarkdownToMarkdownConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForNeVeR/ChangelogAutomation/HEAD/ChangelogAutomation.Core/MarkdownToMarkdownConverter.cs -------------------------------------------------------------------------------- /ChangelogAutomation.Core/MarkdownToPlainTextConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForNeVeR/ChangelogAutomation/HEAD/ChangelogAutomation.Core/MarkdownToPlainTextConverter.cs -------------------------------------------------------------------------------- /ChangelogAutomation.Core/Streams.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForNeVeR/ChangelogAutomation/HEAD/ChangelogAutomation.Core/Streams.cs -------------------------------------------------------------------------------- /ChangelogAutomation.Core/Texts.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForNeVeR/ChangelogAutomation/HEAD/ChangelogAutomation.Core/Texts.cs -------------------------------------------------------------------------------- /ChangelogAutomation.MSBuild.Tests/ChangelogAutomation.MSBuild.Tests.proj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForNeVeR/ChangelogAutomation/HEAD/ChangelogAutomation.MSBuild.Tests/ChangelogAutomation.MSBuild.Tests.proj -------------------------------------------------------------------------------- /ChangelogAutomation.MSBuild.Tests/Extract-ReleaseNotes.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForNeVeR/ChangelogAutomation/HEAD/ChangelogAutomation.MSBuild.Tests/Extract-ReleaseNotes.ps1 -------------------------------------------------------------------------------- /ChangelogAutomation.MSBuild.Tests/MultiFrameworkTest.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForNeVeR/ChangelogAutomation/HEAD/ChangelogAutomation.MSBuild.Tests/MultiFrameworkTest.csproj -------------------------------------------------------------------------------- /ChangelogAutomation.MSBuild.Tests/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForNeVeR/ChangelogAutomation/HEAD/ChangelogAutomation.MSBuild.Tests/Program.cs -------------------------------------------------------------------------------- /ChangelogAutomation.MSBuild.Tests/Run-PackageValidation.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForNeVeR/ChangelogAutomation/HEAD/ChangelogAutomation.MSBuild.Tests/Run-PackageValidation.ps1 -------------------------------------------------------------------------------- /ChangelogAutomation.MSBuild.Tests/Run-Test.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForNeVeR/ChangelogAutomation/HEAD/ChangelogAutomation.MSBuild.Tests/Run-Test.ps1 -------------------------------------------------------------------------------- /ChangelogAutomation.MSBuild.Tests/SingleFrameworkTest.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForNeVeR/ChangelogAutomation/HEAD/ChangelogAutomation.MSBuild.Tests/SingleFrameworkTest.csproj -------------------------------------------------------------------------------- /ChangelogAutomation.MSBuild/ChangelogAutomation.MSBuild.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForNeVeR/ChangelogAutomation/HEAD/ChangelogAutomation.MSBuild/ChangelogAutomation.MSBuild.csproj -------------------------------------------------------------------------------- /ChangelogAutomation.MSBuild/ChangelogAutomation.MSBuild.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForNeVeR/ChangelogAutomation/HEAD/ChangelogAutomation.MSBuild/ChangelogAutomation.MSBuild.props -------------------------------------------------------------------------------- /ChangelogAutomation.MSBuild/ChangelogAutomation.MSBuild.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForNeVeR/ChangelogAutomation/HEAD/ChangelogAutomation.MSBuild/ChangelogAutomation.MSBuild.targets -------------------------------------------------------------------------------- /ChangelogAutomation.MSBuild/CollectLastChangelogSection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForNeVeR/ChangelogAutomation/HEAD/ChangelogAutomation.MSBuild/CollectLastChangelogSection.cs -------------------------------------------------------------------------------- /ChangelogAutomation.Tests/ApplicationTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForNeVeR/ChangelogAutomation/HEAD/ChangelogAutomation.Tests/ApplicationTests.cs -------------------------------------------------------------------------------- /ChangelogAutomation.Tests/ChangelogAutomation.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForNeVeR/ChangelogAutomation/HEAD/ChangelogAutomation.Tests/ChangelogAutomation.Tests.csproj -------------------------------------------------------------------------------- /ChangelogAutomation.Tests/TempFilePool.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForNeVeR/ChangelogAutomation/HEAD/ChangelogAutomation.Tests/TempFilePool.cs -------------------------------------------------------------------------------- /ChangelogAutomation.Tool/ChangelogAutomation.Tool.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForNeVeR/ChangelogAutomation/HEAD/ChangelogAutomation.Tool/ChangelogAutomation.Tool.csproj -------------------------------------------------------------------------------- /ChangelogAutomation.Tool/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForNeVeR/ChangelogAutomation/HEAD/ChangelogAutomation.Tool/Program.cs -------------------------------------------------------------------------------- /ChangelogAutomation.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForNeVeR/ChangelogAutomation/HEAD/ChangelogAutomation.sln -------------------------------------------------------------------------------- /ChangelogAutomation.sln.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForNeVeR/ChangelogAutomation/HEAD/ChangelogAutomation.sln.license -------------------------------------------------------------------------------- /ChangelogAutomation/Application.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForNeVeR/ChangelogAutomation/HEAD/ChangelogAutomation/Application.cs -------------------------------------------------------------------------------- /ChangelogAutomation/ChangelogAutomation.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForNeVeR/ChangelogAutomation/HEAD/ChangelogAutomation/ChangelogAutomation.csproj -------------------------------------------------------------------------------- /ChangelogAutomation/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForNeVeR/ChangelogAutomation/HEAD/ChangelogAutomation/Program.cs -------------------------------------------------------------------------------- /Directory.Build.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForNeVeR/ChangelogAutomation/HEAD/Directory.Build.props -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForNeVeR/ChangelogAutomation/HEAD/LICENSE.md -------------------------------------------------------------------------------- /LICENSES/MIT.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForNeVeR/ChangelogAutomation/HEAD/LICENSES/MIT.txt -------------------------------------------------------------------------------- /MAINTAINERSHIP.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForNeVeR/ChangelogAutomation/HEAD/MAINTAINERSHIP.md -------------------------------------------------------------------------------- /NuGet.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForNeVeR/ChangelogAutomation/HEAD/NuGet.config -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForNeVeR/ChangelogAutomation/HEAD/README.md -------------------------------------------------------------------------------- /REUSE.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForNeVeR/ChangelogAutomation/HEAD/REUSE.toml -------------------------------------------------------------------------------- /SetPackageReleaseNotesExternal.tasks: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForNeVeR/ChangelogAutomation/HEAD/SetPackageReleaseNotesExternal.tasks -------------------------------------------------------------------------------- /renovate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForNeVeR/ChangelogAutomation/HEAD/renovate.json -------------------------------------------------------------------------------- /renovate.json.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForNeVeR/ChangelogAutomation/HEAD/renovate.json.license -------------------------------------------------------------------------------- /scripts/Get-Version.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForNeVeR/ChangelogAutomation/HEAD/scripts/Get-Version.ps1 --------------------------------------------------------------------------------