├── .gitattributes ├── .gitignore ├── GitVersionConfig.yaml ├── LICENSE ├── README.md ├── appveyor.yml ├── src ├── GitReleaseNotes.Tests │ ├── ArgumentTests.cs │ ├── CommitGrouperTests.cs │ ├── CommitGrouperTestsMultipleTagsPerCommit.cs │ ├── GitReleaseNotes.Tests.csproj │ ├── GitRemoteRepositoryTests.cs │ ├── IssueTrackers │ │ ├── GitHub │ │ │ ├── GitHubIssueTrackerTests.cs │ │ │ ├── NetworkEx.cs │ │ │ ├── RemoteCollectionEx.cs │ │ │ ├── RemoteEx.cs │ │ │ └── TestUser.cs │ │ ├── IssueNumberExtractor.cs │ │ └── Jira │ │ │ └── JiraIssueTrackerTests.cs │ ├── ProgramTests.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── ReleaseFileWriterTests.cs │ ├── ReleaseNotesGeneratorTests.AllTags.approved.txt │ ├── ReleaseNotesGeneratorTests.AllTagsWithNoCommitsOrIssuesAfterLastRelease.approved.txt │ ├── ReleaseNotesGeneratorTests.AppendOnlyNewItems.approved.txt │ ├── ReleaseNotesGeneratorTests.KeepsCustomisations.approved.txt │ ├── ReleaseNotesGeneratorTests.cs │ ├── SemanticReleaseNotesTests.AdditionalCategoriesCanBeSpecifiedOnCommandLine.approved.txt │ ├── SemanticReleaseNotesTests.ApproveSimpleTests.approved.txt │ ├── SemanticReleaseNotesTests.ApproveSimpleUpdateTests.approved.txt │ ├── SemanticReleaseNotesTests.ItemIsCategorised.approved.txt │ ├── SemanticReleaseNotesTests.ItemIsCategorisedWithMultipleCategoriesIfAllLabelsIsTrue.approved.txt │ ├── SemanticReleaseNotesTests.ItemIsNotCategorisedWithMultipleCategoriesIfAllLabelsIsFalse.approved.txt │ ├── SemanticReleaseNotesTests.LabelOfBugIsCategorisedAsFix.approved.txt │ ├── SemanticReleaseNotesTests.MultipleReleases.approved.txt │ ├── SemanticReleaseNotesTests.cs │ ├── TestDataCreator.cs │ └── packages.config ├── GitReleaseNotes.Website │ ├── App_Start │ │ ├── Startup.BundleConfig.cs │ │ ├── Startup.FilterConfig.cs │ │ ├── Startup.Json.cs │ │ ├── Startup.RouteConfig.cs │ │ ├── Startup.WebApi.cs │ │ └── Startup.cs │ ├── ContentTypes │ │ └── JsonContent.cs │ ├── Controllers │ │ ├── Api │ │ │ ├── ApiControllerBase.cs │ │ │ └── ReleaseNotesController.cs │ │ ├── ControllerBase.cs │ │ └── HomeController.cs │ ├── Filters │ │ └── Api │ │ │ ├── ApiResponseFilterAttribute.cs │ │ │ └── ExceptionFilterAttribute.cs │ ├── FodyWeavers.xml │ ├── Formatting │ │ └── PlainTextFormatter.cs │ ├── GitReleaseNotes.Website.csproj │ ├── Global.asax │ ├── Global.asax.cs │ ├── IoC │ │ └── CatelWebApiDependencyResolver.cs │ ├── Logging │ │ └── GitReleaseNotesLogger.cs │ ├── Models │ │ └── Api │ │ │ ├── ReleaseNotesRequest.cs │ │ │ └── Response.cs │ ├── ModuleInitializer.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── Services │ │ ├── Interfaces │ │ │ └── IReleaseNotesService.cs │ │ └── ReleaseNotesService.cs │ ├── Views │ │ ├── Home │ │ │ └── Index.cshtml │ │ ├── Shared │ │ │ ├── Error.cshtml │ │ │ └── _MainLayout.cshtml │ │ ├── _ViewStart.cshtml │ │ └── web.config │ ├── Web.Debug.config │ ├── Web.Release.config │ ├── Web.config │ ├── content │ │ ├── angular │ │ │ ├── app.js │ │ │ ├── components │ │ │ │ └── home │ │ │ │ │ └── controllers │ │ │ │ │ └── HomeController.js │ │ │ └── services │ │ │ │ ├── BusyIndicatorService.js │ │ │ │ ├── ReleaseNotesFormattingService.js │ │ │ │ └── ReleaseNotesService.js │ │ ├── fonts │ │ │ ├── FontAwesome.otf │ │ │ ├── fontawesome-webfont.eot │ │ │ ├── fontawesome-webfont.svg │ │ │ ├── fontawesome-webfont.ttf │ │ │ ├── fontawesome-webfont.woff │ │ │ ├── glyphicons-halflings-regular.eot │ │ │ ├── glyphicons-halflings-regular.svg │ │ │ ├── glyphicons-halflings-regular.ttf │ │ │ ├── glyphicons-halflings-regular.woff │ │ │ └── glyphicons-halflings-regular.woff2 │ │ ├── scripts │ │ │ ├── _references.js │ │ │ ├── bootstrap-datepicker.js │ │ │ ├── bootstrap.js │ │ │ ├── bootstrap.min.js │ │ │ ├── jquery-2.1.1.intellisense.js │ │ │ ├── jquery-2.1.1.js │ │ │ ├── jquery-2.1.1.min.js │ │ │ ├── jquery-2.1.1.min.map │ │ │ ├── jquery.signalR-2.1.2.js │ │ │ ├── jquery.signalR-2.1.2.min.js │ │ │ ├── jquery.validate-vsdoc.js │ │ │ ├── jquery.validate.js │ │ │ ├── jquery.validate.min.js │ │ │ ├── jquery.validate.unobtrusive.js │ │ │ ├── jquery.validate.unobtrusive.min.js │ │ │ ├── modernizr-2.8.3.js │ │ │ └── npm.js │ │ └── styles │ │ │ ├── bootstrap-theme.css │ │ │ ├── bootstrap-theme.css.map │ │ │ ├── bootstrap-theme.min.css │ │ │ ├── bootstrap.css │ │ │ ├── bootstrap.css.map │ │ │ ├── bootstrap.min.css │ │ │ ├── font-awesome.css │ │ │ ├── font-awesome.min.css │ │ │ └── site.css │ └── packages.config ├── GitReleaseNotes.sln ├── GitReleaseNotes.sln.DotSettings └── GitReleaseNotes │ ├── .ChocolateySpec │ ├── GitReleaseNotes.Portable.nuspec │ └── tools │ │ ├── chocolateyInstall.ps1 │ │ └── chocolateyUninstall.ps1 │ ├── .NuGetSpec │ └── GitReleaseNotes.nuspec │ ├── Exceptions │ └── GitReleaseNotesException.cs │ ├── Extensions │ ├── GitReleaseNotesArgumentsExtensions.cs │ └── ILogExtensions.cs │ ├── FileSystem │ ├── FileSystem.cs │ ├── Interfaces │ │ └── IFileSystem.cs │ ├── ReleaseFileWriter.cs │ └── ReleaseNotesFileReader.cs │ ├── FodyWeavers.xml │ ├── Git │ └── Extensions │ │ └── IRepositoryExtensions.cs │ ├── GitReleaseNotes.csproj │ ├── GitReleaseNotesArguments.cs │ ├── GitReleaseNotesEnvironment.cs │ ├── IssueTrackerParameters.cs │ ├── IssueTrackers │ ├── BitBucket │ │ ├── BitBucketApi.cs │ │ ├── BitBucketIssueTracker.cs │ │ ├── Interfaces │ │ │ └── IBitBucketApi.cs │ │ └── OAuthBase.cs │ ├── GitHub │ │ └── GitHubIssueTracker.cs │ ├── Interfaces │ │ └── IIssueNumberExtractor.cs │ ├── IssueNumberExtractor.cs │ ├── Jira │ │ ├── Interfaces │ │ │ └── IJiraApi.cs │ │ ├── JiraApi.cs │ │ ├── JiraIssue.cs │ │ └── JiraIssueTracker.cs │ └── YouTrack │ │ ├── Interfaces │ │ └── IYouTrackApi.cs │ │ ├── YouTrackApi.cs │ │ └── YouTrackIssueTracker.cs │ ├── Logging │ ├── ConsoleHelpFormatter.cs │ ├── ConsoleLog.cs │ ├── CustomLog.cs │ └── Interfaces │ │ └── ILog.cs │ ├── Models │ ├── BlankLine.cs │ ├── Categories.cs │ ├── Interfaces │ │ └── IReleaseNoteLine.cs │ ├── ReleaseDiffInfo.cs │ ├── ReleaseInfo.cs │ ├── ReleaseNoteItem.cs │ ├── ReleaseNoteLine.cs │ ├── SemanticRelease.cs │ └── SemanticReleaseNotes.cs │ ├── Program.cs │ ├── Properties │ └── AssemblyInfo.cs │ ├── ReleaseFinder.cs │ ├── ReleaseNotesGenerationParameters.cs │ ├── ReleaseNotesGenerator.cs │ └── packages.config └── tools ├── MSBuildCommunityTasks ├── MSBuild.Community.Tasks.Targets ├── MSBuild.Community.Tasks.dll ├── MSBuild.Community.Tasks.xml └── MSBuild.Community.Tasks.xsd └── xUnit.net ├── HTML.xslt ├── NUnitXml.xslt ├── xunit.console.clr4.exe ├── xunit.console.clr4.exe.config ├── xunit.console.clr4.x86.exe ├── xunit.console.clr4.x86.exe.config ├── xunit.console.exe ├── xunit.console.exe.config ├── xunit.console.x86.exe ├── xunit.console.x86.exe.config ├── xunit.dll ├── xunit.dll.tdnet ├── xunit.extensions.dll ├── xunit.extensions.xml ├── xunit.gui.clr4.exe ├── xunit.gui.clr4.x86.exe ├── xunit.gui.exe ├── xunit.gui.x86.exe ├── xunit.installer.exe ├── xunit.runner.msbuild.dll ├── xunit.runner.tdnet.dll ├── xunit.runner.utility.dll ├── xunit.runner.utility.xml └── xunit.xml /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitTools/GitReleaseNotes/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitTools/GitReleaseNotes/HEAD/.gitignore -------------------------------------------------------------------------------- /GitVersionConfig.yaml: -------------------------------------------------------------------------------- 1 | next-version: 0.7.0 -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitTools/GitReleaseNotes/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitTools/GitReleaseNotes/HEAD/README.md -------------------------------------------------------------------------------- /appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitTools/GitReleaseNotes/HEAD/appveyor.yml -------------------------------------------------------------------------------- /src/GitReleaseNotes.Tests/ArgumentTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitTools/GitReleaseNotes/HEAD/src/GitReleaseNotes.Tests/ArgumentTests.cs -------------------------------------------------------------------------------- /src/GitReleaseNotes.Tests/CommitGrouperTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitTools/GitReleaseNotes/HEAD/src/GitReleaseNotes.Tests/CommitGrouperTests.cs -------------------------------------------------------------------------------- /src/GitReleaseNotes.Tests/CommitGrouperTestsMultipleTagsPerCommit.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitTools/GitReleaseNotes/HEAD/src/GitReleaseNotes.Tests/CommitGrouperTestsMultipleTagsPerCommit.cs -------------------------------------------------------------------------------- /src/GitReleaseNotes.Tests/GitReleaseNotes.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitTools/GitReleaseNotes/HEAD/src/GitReleaseNotes.Tests/GitReleaseNotes.Tests.csproj -------------------------------------------------------------------------------- /src/GitReleaseNotes.Tests/GitRemoteRepositoryTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitTools/GitReleaseNotes/HEAD/src/GitReleaseNotes.Tests/GitRemoteRepositoryTests.cs -------------------------------------------------------------------------------- /src/GitReleaseNotes.Tests/IssueTrackers/GitHub/GitHubIssueTrackerTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitTools/GitReleaseNotes/HEAD/src/GitReleaseNotes.Tests/IssueTrackers/GitHub/GitHubIssueTrackerTests.cs -------------------------------------------------------------------------------- /src/GitReleaseNotes.Tests/IssueTrackers/GitHub/NetworkEx.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitTools/GitReleaseNotes/HEAD/src/GitReleaseNotes.Tests/IssueTrackers/GitHub/NetworkEx.cs -------------------------------------------------------------------------------- /src/GitReleaseNotes.Tests/IssueTrackers/GitHub/RemoteCollectionEx.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitTools/GitReleaseNotes/HEAD/src/GitReleaseNotes.Tests/IssueTrackers/GitHub/RemoteCollectionEx.cs -------------------------------------------------------------------------------- /src/GitReleaseNotes.Tests/IssueTrackers/GitHub/RemoteEx.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitTools/GitReleaseNotes/HEAD/src/GitReleaseNotes.Tests/IssueTrackers/GitHub/RemoteEx.cs -------------------------------------------------------------------------------- /src/GitReleaseNotes.Tests/IssueTrackers/GitHub/TestUser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitTools/GitReleaseNotes/HEAD/src/GitReleaseNotes.Tests/IssueTrackers/GitHub/TestUser.cs -------------------------------------------------------------------------------- /src/GitReleaseNotes.Tests/IssueTrackers/IssueNumberExtractor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitTools/GitReleaseNotes/HEAD/src/GitReleaseNotes.Tests/IssueTrackers/IssueNumberExtractor.cs -------------------------------------------------------------------------------- /src/GitReleaseNotes.Tests/IssueTrackers/Jira/JiraIssueTrackerTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitTools/GitReleaseNotes/HEAD/src/GitReleaseNotes.Tests/IssueTrackers/Jira/JiraIssueTrackerTests.cs -------------------------------------------------------------------------------- /src/GitReleaseNotes.Tests/ProgramTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitTools/GitReleaseNotes/HEAD/src/GitReleaseNotes.Tests/ProgramTests.cs -------------------------------------------------------------------------------- /src/GitReleaseNotes.Tests/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitTools/GitReleaseNotes/HEAD/src/GitReleaseNotes.Tests/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/GitReleaseNotes.Tests/ReleaseFileWriterTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitTools/GitReleaseNotes/HEAD/src/GitReleaseNotes.Tests/ReleaseFileWriterTests.cs -------------------------------------------------------------------------------- /src/GitReleaseNotes.Tests/ReleaseNotesGeneratorTests.AllTags.approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitTools/GitReleaseNotes/HEAD/src/GitReleaseNotes.Tests/ReleaseNotesGeneratorTests.AllTags.approved.txt -------------------------------------------------------------------------------- /src/GitReleaseNotes.Tests/ReleaseNotesGeneratorTests.AllTagsWithNoCommitsOrIssuesAfterLastRelease.approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitTools/GitReleaseNotes/HEAD/src/GitReleaseNotes.Tests/ReleaseNotesGeneratorTests.AllTagsWithNoCommitsOrIssuesAfterLastRelease.approved.txt -------------------------------------------------------------------------------- /src/GitReleaseNotes.Tests/ReleaseNotesGeneratorTests.AppendOnlyNewItems.approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitTools/GitReleaseNotes/HEAD/src/GitReleaseNotes.Tests/ReleaseNotesGeneratorTests.AppendOnlyNewItems.approved.txt -------------------------------------------------------------------------------- /src/GitReleaseNotes.Tests/ReleaseNotesGeneratorTests.KeepsCustomisations.approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitTools/GitReleaseNotes/HEAD/src/GitReleaseNotes.Tests/ReleaseNotesGeneratorTests.KeepsCustomisations.approved.txt -------------------------------------------------------------------------------- /src/GitReleaseNotes.Tests/ReleaseNotesGeneratorTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitTools/GitReleaseNotes/HEAD/src/GitReleaseNotes.Tests/ReleaseNotesGeneratorTests.cs -------------------------------------------------------------------------------- /src/GitReleaseNotes.Tests/SemanticReleaseNotesTests.AdditionalCategoriesCanBeSpecifiedOnCommandLine.approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitTools/GitReleaseNotes/HEAD/src/GitReleaseNotes.Tests/SemanticReleaseNotesTests.AdditionalCategoriesCanBeSpecifiedOnCommandLine.approved.txt -------------------------------------------------------------------------------- /src/GitReleaseNotes.Tests/SemanticReleaseNotesTests.ApproveSimpleTests.approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitTools/GitReleaseNotes/HEAD/src/GitReleaseNotes.Tests/SemanticReleaseNotesTests.ApproveSimpleTests.approved.txt -------------------------------------------------------------------------------- /src/GitReleaseNotes.Tests/SemanticReleaseNotesTests.ApproveSimpleUpdateTests.approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitTools/GitReleaseNotes/HEAD/src/GitReleaseNotes.Tests/SemanticReleaseNotesTests.ApproveSimpleUpdateTests.approved.txt -------------------------------------------------------------------------------- /src/GitReleaseNotes.Tests/SemanticReleaseNotesTests.ItemIsCategorised.approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitTools/GitReleaseNotes/HEAD/src/GitReleaseNotes.Tests/SemanticReleaseNotesTests.ItemIsCategorised.approved.txt -------------------------------------------------------------------------------- /src/GitReleaseNotes.Tests/SemanticReleaseNotesTests.ItemIsCategorisedWithMultipleCategoriesIfAllLabelsIsTrue.approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitTools/GitReleaseNotes/HEAD/src/GitReleaseNotes.Tests/SemanticReleaseNotesTests.ItemIsCategorisedWithMultipleCategoriesIfAllLabelsIsTrue.approved.txt -------------------------------------------------------------------------------- /src/GitReleaseNotes.Tests/SemanticReleaseNotesTests.ItemIsNotCategorisedWithMultipleCategoriesIfAllLabelsIsFalse.approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitTools/GitReleaseNotes/HEAD/src/GitReleaseNotes.Tests/SemanticReleaseNotesTests.ItemIsNotCategorisedWithMultipleCategoriesIfAllLabelsIsFalse.approved.txt -------------------------------------------------------------------------------- /src/GitReleaseNotes.Tests/SemanticReleaseNotesTests.LabelOfBugIsCategorisedAsFix.approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitTools/GitReleaseNotes/HEAD/src/GitReleaseNotes.Tests/SemanticReleaseNotesTests.LabelOfBugIsCategorisedAsFix.approved.txt -------------------------------------------------------------------------------- /src/GitReleaseNotes.Tests/SemanticReleaseNotesTests.MultipleReleases.approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitTools/GitReleaseNotes/HEAD/src/GitReleaseNotes.Tests/SemanticReleaseNotesTests.MultipleReleases.approved.txt -------------------------------------------------------------------------------- /src/GitReleaseNotes.Tests/SemanticReleaseNotesTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitTools/GitReleaseNotes/HEAD/src/GitReleaseNotes.Tests/SemanticReleaseNotesTests.cs -------------------------------------------------------------------------------- /src/GitReleaseNotes.Tests/TestDataCreator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitTools/GitReleaseNotes/HEAD/src/GitReleaseNotes.Tests/TestDataCreator.cs -------------------------------------------------------------------------------- /src/GitReleaseNotes.Tests/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitTools/GitReleaseNotes/HEAD/src/GitReleaseNotes.Tests/packages.config -------------------------------------------------------------------------------- /src/GitReleaseNotes.Website/App_Start/Startup.BundleConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitTools/GitReleaseNotes/HEAD/src/GitReleaseNotes.Website/App_Start/Startup.BundleConfig.cs -------------------------------------------------------------------------------- /src/GitReleaseNotes.Website/App_Start/Startup.FilterConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitTools/GitReleaseNotes/HEAD/src/GitReleaseNotes.Website/App_Start/Startup.FilterConfig.cs -------------------------------------------------------------------------------- /src/GitReleaseNotes.Website/App_Start/Startup.Json.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitTools/GitReleaseNotes/HEAD/src/GitReleaseNotes.Website/App_Start/Startup.Json.cs -------------------------------------------------------------------------------- /src/GitReleaseNotes.Website/App_Start/Startup.RouteConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitTools/GitReleaseNotes/HEAD/src/GitReleaseNotes.Website/App_Start/Startup.RouteConfig.cs -------------------------------------------------------------------------------- /src/GitReleaseNotes.Website/App_Start/Startup.WebApi.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitTools/GitReleaseNotes/HEAD/src/GitReleaseNotes.Website/App_Start/Startup.WebApi.cs -------------------------------------------------------------------------------- /src/GitReleaseNotes.Website/App_Start/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitTools/GitReleaseNotes/HEAD/src/GitReleaseNotes.Website/App_Start/Startup.cs -------------------------------------------------------------------------------- /src/GitReleaseNotes.Website/ContentTypes/JsonContent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitTools/GitReleaseNotes/HEAD/src/GitReleaseNotes.Website/ContentTypes/JsonContent.cs -------------------------------------------------------------------------------- /src/GitReleaseNotes.Website/Controllers/Api/ApiControllerBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitTools/GitReleaseNotes/HEAD/src/GitReleaseNotes.Website/Controllers/Api/ApiControllerBase.cs -------------------------------------------------------------------------------- /src/GitReleaseNotes.Website/Controllers/Api/ReleaseNotesController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitTools/GitReleaseNotes/HEAD/src/GitReleaseNotes.Website/Controllers/Api/ReleaseNotesController.cs -------------------------------------------------------------------------------- /src/GitReleaseNotes.Website/Controllers/ControllerBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitTools/GitReleaseNotes/HEAD/src/GitReleaseNotes.Website/Controllers/ControllerBase.cs -------------------------------------------------------------------------------- /src/GitReleaseNotes.Website/Controllers/HomeController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitTools/GitReleaseNotes/HEAD/src/GitReleaseNotes.Website/Controllers/HomeController.cs -------------------------------------------------------------------------------- /src/GitReleaseNotes.Website/Filters/Api/ApiResponseFilterAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitTools/GitReleaseNotes/HEAD/src/GitReleaseNotes.Website/Filters/Api/ApiResponseFilterAttribute.cs -------------------------------------------------------------------------------- /src/GitReleaseNotes.Website/Filters/Api/ExceptionFilterAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitTools/GitReleaseNotes/HEAD/src/GitReleaseNotes.Website/Filters/Api/ExceptionFilterAttribute.cs -------------------------------------------------------------------------------- /src/GitReleaseNotes.Website/FodyWeavers.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitTools/GitReleaseNotes/HEAD/src/GitReleaseNotes.Website/FodyWeavers.xml -------------------------------------------------------------------------------- /src/GitReleaseNotes.Website/Formatting/PlainTextFormatter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitTools/GitReleaseNotes/HEAD/src/GitReleaseNotes.Website/Formatting/PlainTextFormatter.cs -------------------------------------------------------------------------------- /src/GitReleaseNotes.Website/GitReleaseNotes.Website.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitTools/GitReleaseNotes/HEAD/src/GitReleaseNotes.Website/GitReleaseNotes.Website.csproj -------------------------------------------------------------------------------- /src/GitReleaseNotes.Website/Global.asax: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitTools/GitReleaseNotes/HEAD/src/GitReleaseNotes.Website/Global.asax -------------------------------------------------------------------------------- /src/GitReleaseNotes.Website/Global.asax.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitTools/GitReleaseNotes/HEAD/src/GitReleaseNotes.Website/Global.asax.cs -------------------------------------------------------------------------------- /src/GitReleaseNotes.Website/IoC/CatelWebApiDependencyResolver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitTools/GitReleaseNotes/HEAD/src/GitReleaseNotes.Website/IoC/CatelWebApiDependencyResolver.cs -------------------------------------------------------------------------------- /src/GitReleaseNotes.Website/Logging/GitReleaseNotesLogger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitTools/GitReleaseNotes/HEAD/src/GitReleaseNotes.Website/Logging/GitReleaseNotesLogger.cs -------------------------------------------------------------------------------- /src/GitReleaseNotes.Website/Models/Api/ReleaseNotesRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitTools/GitReleaseNotes/HEAD/src/GitReleaseNotes.Website/Models/Api/ReleaseNotesRequest.cs -------------------------------------------------------------------------------- /src/GitReleaseNotes.Website/Models/Api/Response.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitTools/GitReleaseNotes/HEAD/src/GitReleaseNotes.Website/Models/Api/Response.cs -------------------------------------------------------------------------------- /src/GitReleaseNotes.Website/ModuleInitializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitTools/GitReleaseNotes/HEAD/src/GitReleaseNotes.Website/ModuleInitializer.cs -------------------------------------------------------------------------------- /src/GitReleaseNotes.Website/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitTools/GitReleaseNotes/HEAD/src/GitReleaseNotes.Website/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/GitReleaseNotes.Website/Services/Interfaces/IReleaseNotesService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitTools/GitReleaseNotes/HEAD/src/GitReleaseNotes.Website/Services/Interfaces/IReleaseNotesService.cs -------------------------------------------------------------------------------- /src/GitReleaseNotes.Website/Services/ReleaseNotesService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitTools/GitReleaseNotes/HEAD/src/GitReleaseNotes.Website/Services/ReleaseNotesService.cs -------------------------------------------------------------------------------- /src/GitReleaseNotes.Website/Views/Home/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitTools/GitReleaseNotes/HEAD/src/GitReleaseNotes.Website/Views/Home/Index.cshtml -------------------------------------------------------------------------------- /src/GitReleaseNotes.Website/Views/Shared/Error.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitTools/GitReleaseNotes/HEAD/src/GitReleaseNotes.Website/Views/Shared/Error.cshtml -------------------------------------------------------------------------------- /src/GitReleaseNotes.Website/Views/Shared/_MainLayout.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitTools/GitReleaseNotes/HEAD/src/GitReleaseNotes.Website/Views/Shared/_MainLayout.cshtml -------------------------------------------------------------------------------- /src/GitReleaseNotes.Website/Views/_ViewStart.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitTools/GitReleaseNotes/HEAD/src/GitReleaseNotes.Website/Views/_ViewStart.cshtml -------------------------------------------------------------------------------- /src/GitReleaseNotes.Website/Views/web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitTools/GitReleaseNotes/HEAD/src/GitReleaseNotes.Website/Views/web.config -------------------------------------------------------------------------------- /src/GitReleaseNotes.Website/Web.Debug.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitTools/GitReleaseNotes/HEAD/src/GitReleaseNotes.Website/Web.Debug.config -------------------------------------------------------------------------------- /src/GitReleaseNotes.Website/Web.Release.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitTools/GitReleaseNotes/HEAD/src/GitReleaseNotes.Website/Web.Release.config -------------------------------------------------------------------------------- /src/GitReleaseNotes.Website/Web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitTools/GitReleaseNotes/HEAD/src/GitReleaseNotes.Website/Web.config -------------------------------------------------------------------------------- /src/GitReleaseNotes.Website/content/angular/app.js: -------------------------------------------------------------------------------- 1 | var app = angular.module('app', ['ui.bootstrap']); -------------------------------------------------------------------------------- /src/GitReleaseNotes.Website/content/angular/components/home/controllers/HomeController.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitTools/GitReleaseNotes/HEAD/src/GitReleaseNotes.Website/content/angular/components/home/controllers/HomeController.js -------------------------------------------------------------------------------- /src/GitReleaseNotes.Website/content/angular/services/BusyIndicatorService.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitTools/GitReleaseNotes/HEAD/src/GitReleaseNotes.Website/content/angular/services/BusyIndicatorService.js -------------------------------------------------------------------------------- /src/GitReleaseNotes.Website/content/angular/services/ReleaseNotesFormattingService.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitTools/GitReleaseNotes/HEAD/src/GitReleaseNotes.Website/content/angular/services/ReleaseNotesFormattingService.js -------------------------------------------------------------------------------- /src/GitReleaseNotes.Website/content/angular/services/ReleaseNotesService.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitTools/GitReleaseNotes/HEAD/src/GitReleaseNotes.Website/content/angular/services/ReleaseNotesService.js -------------------------------------------------------------------------------- /src/GitReleaseNotes.Website/content/fonts/FontAwesome.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitTools/GitReleaseNotes/HEAD/src/GitReleaseNotes.Website/content/fonts/FontAwesome.otf -------------------------------------------------------------------------------- /src/GitReleaseNotes.Website/content/fonts/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitTools/GitReleaseNotes/HEAD/src/GitReleaseNotes.Website/content/fonts/fontawesome-webfont.eot -------------------------------------------------------------------------------- /src/GitReleaseNotes.Website/content/fonts/fontawesome-webfont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitTools/GitReleaseNotes/HEAD/src/GitReleaseNotes.Website/content/fonts/fontawesome-webfont.svg -------------------------------------------------------------------------------- /src/GitReleaseNotes.Website/content/fonts/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitTools/GitReleaseNotes/HEAD/src/GitReleaseNotes.Website/content/fonts/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /src/GitReleaseNotes.Website/content/fonts/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitTools/GitReleaseNotes/HEAD/src/GitReleaseNotes.Website/content/fonts/fontawesome-webfont.woff -------------------------------------------------------------------------------- /src/GitReleaseNotes.Website/content/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitTools/GitReleaseNotes/HEAD/src/GitReleaseNotes.Website/content/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /src/GitReleaseNotes.Website/content/fonts/glyphicons-halflings-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitTools/GitReleaseNotes/HEAD/src/GitReleaseNotes.Website/content/fonts/glyphicons-halflings-regular.svg -------------------------------------------------------------------------------- /src/GitReleaseNotes.Website/content/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitTools/GitReleaseNotes/HEAD/src/GitReleaseNotes.Website/content/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /src/GitReleaseNotes.Website/content/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitTools/GitReleaseNotes/HEAD/src/GitReleaseNotes.Website/content/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /src/GitReleaseNotes.Website/content/fonts/glyphicons-halflings-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitTools/GitReleaseNotes/HEAD/src/GitReleaseNotes.Website/content/fonts/glyphicons-halflings-regular.woff2 -------------------------------------------------------------------------------- /src/GitReleaseNotes.Website/content/scripts/_references.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitTools/GitReleaseNotes/HEAD/src/GitReleaseNotes.Website/content/scripts/_references.js -------------------------------------------------------------------------------- /src/GitReleaseNotes.Website/content/scripts/bootstrap-datepicker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitTools/GitReleaseNotes/HEAD/src/GitReleaseNotes.Website/content/scripts/bootstrap-datepicker.js -------------------------------------------------------------------------------- /src/GitReleaseNotes.Website/content/scripts/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitTools/GitReleaseNotes/HEAD/src/GitReleaseNotes.Website/content/scripts/bootstrap.js -------------------------------------------------------------------------------- /src/GitReleaseNotes.Website/content/scripts/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitTools/GitReleaseNotes/HEAD/src/GitReleaseNotes.Website/content/scripts/bootstrap.min.js -------------------------------------------------------------------------------- /src/GitReleaseNotes.Website/content/scripts/jquery-2.1.1.intellisense.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitTools/GitReleaseNotes/HEAD/src/GitReleaseNotes.Website/content/scripts/jquery-2.1.1.intellisense.js -------------------------------------------------------------------------------- /src/GitReleaseNotes.Website/content/scripts/jquery-2.1.1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitTools/GitReleaseNotes/HEAD/src/GitReleaseNotes.Website/content/scripts/jquery-2.1.1.js -------------------------------------------------------------------------------- /src/GitReleaseNotes.Website/content/scripts/jquery-2.1.1.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitTools/GitReleaseNotes/HEAD/src/GitReleaseNotes.Website/content/scripts/jquery-2.1.1.min.js -------------------------------------------------------------------------------- /src/GitReleaseNotes.Website/content/scripts/jquery-2.1.1.min.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitTools/GitReleaseNotes/HEAD/src/GitReleaseNotes.Website/content/scripts/jquery-2.1.1.min.map -------------------------------------------------------------------------------- /src/GitReleaseNotes.Website/content/scripts/jquery.signalR-2.1.2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitTools/GitReleaseNotes/HEAD/src/GitReleaseNotes.Website/content/scripts/jquery.signalR-2.1.2.js -------------------------------------------------------------------------------- /src/GitReleaseNotes.Website/content/scripts/jquery.signalR-2.1.2.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitTools/GitReleaseNotes/HEAD/src/GitReleaseNotes.Website/content/scripts/jquery.signalR-2.1.2.min.js -------------------------------------------------------------------------------- /src/GitReleaseNotes.Website/content/scripts/jquery.validate-vsdoc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitTools/GitReleaseNotes/HEAD/src/GitReleaseNotes.Website/content/scripts/jquery.validate-vsdoc.js -------------------------------------------------------------------------------- /src/GitReleaseNotes.Website/content/scripts/jquery.validate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitTools/GitReleaseNotes/HEAD/src/GitReleaseNotes.Website/content/scripts/jquery.validate.js -------------------------------------------------------------------------------- /src/GitReleaseNotes.Website/content/scripts/jquery.validate.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitTools/GitReleaseNotes/HEAD/src/GitReleaseNotes.Website/content/scripts/jquery.validate.min.js -------------------------------------------------------------------------------- /src/GitReleaseNotes.Website/content/scripts/jquery.validate.unobtrusive.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitTools/GitReleaseNotes/HEAD/src/GitReleaseNotes.Website/content/scripts/jquery.validate.unobtrusive.js -------------------------------------------------------------------------------- /src/GitReleaseNotes.Website/content/scripts/jquery.validate.unobtrusive.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitTools/GitReleaseNotes/HEAD/src/GitReleaseNotes.Website/content/scripts/jquery.validate.unobtrusive.min.js -------------------------------------------------------------------------------- /src/GitReleaseNotes.Website/content/scripts/modernizr-2.8.3.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitTools/GitReleaseNotes/HEAD/src/GitReleaseNotes.Website/content/scripts/modernizr-2.8.3.js -------------------------------------------------------------------------------- /src/GitReleaseNotes.Website/content/scripts/npm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitTools/GitReleaseNotes/HEAD/src/GitReleaseNotes.Website/content/scripts/npm.js -------------------------------------------------------------------------------- /src/GitReleaseNotes.Website/content/styles/bootstrap-theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitTools/GitReleaseNotes/HEAD/src/GitReleaseNotes.Website/content/styles/bootstrap-theme.css -------------------------------------------------------------------------------- /src/GitReleaseNotes.Website/content/styles/bootstrap-theme.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitTools/GitReleaseNotes/HEAD/src/GitReleaseNotes.Website/content/styles/bootstrap-theme.css.map -------------------------------------------------------------------------------- /src/GitReleaseNotes.Website/content/styles/bootstrap-theme.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitTools/GitReleaseNotes/HEAD/src/GitReleaseNotes.Website/content/styles/bootstrap-theme.min.css -------------------------------------------------------------------------------- /src/GitReleaseNotes.Website/content/styles/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitTools/GitReleaseNotes/HEAD/src/GitReleaseNotes.Website/content/styles/bootstrap.css -------------------------------------------------------------------------------- /src/GitReleaseNotes.Website/content/styles/bootstrap.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitTools/GitReleaseNotes/HEAD/src/GitReleaseNotes.Website/content/styles/bootstrap.css.map -------------------------------------------------------------------------------- /src/GitReleaseNotes.Website/content/styles/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitTools/GitReleaseNotes/HEAD/src/GitReleaseNotes.Website/content/styles/bootstrap.min.css -------------------------------------------------------------------------------- /src/GitReleaseNotes.Website/content/styles/font-awesome.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitTools/GitReleaseNotes/HEAD/src/GitReleaseNotes.Website/content/styles/font-awesome.css -------------------------------------------------------------------------------- /src/GitReleaseNotes.Website/content/styles/font-awesome.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitTools/GitReleaseNotes/HEAD/src/GitReleaseNotes.Website/content/styles/font-awesome.min.css -------------------------------------------------------------------------------- /src/GitReleaseNotes.Website/content/styles/site.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitTools/GitReleaseNotes/HEAD/src/GitReleaseNotes.Website/content/styles/site.css -------------------------------------------------------------------------------- /src/GitReleaseNotes.Website/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitTools/GitReleaseNotes/HEAD/src/GitReleaseNotes.Website/packages.config -------------------------------------------------------------------------------- /src/GitReleaseNotes.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitTools/GitReleaseNotes/HEAD/src/GitReleaseNotes.sln -------------------------------------------------------------------------------- /src/GitReleaseNotes.sln.DotSettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitTools/GitReleaseNotes/HEAD/src/GitReleaseNotes.sln.DotSettings -------------------------------------------------------------------------------- /src/GitReleaseNotes/.ChocolateySpec/GitReleaseNotes.Portable.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitTools/GitReleaseNotes/HEAD/src/GitReleaseNotes/.ChocolateySpec/GitReleaseNotes.Portable.nuspec -------------------------------------------------------------------------------- /src/GitReleaseNotes/.ChocolateySpec/tools/chocolateyInstall.ps1: -------------------------------------------------------------------------------- 1 | Generate-BinFile "grn" "$packageFolder\Tools\GitReleaseNotes.exe" -------------------------------------------------------------------------------- /src/GitReleaseNotes/.ChocolateySpec/tools/chocolateyUninstall.ps1: -------------------------------------------------------------------------------- 1 | Remove-BinFile "grn" "$packageFolder\Tools\GitReleaseNotes.exe" -------------------------------------------------------------------------------- /src/GitReleaseNotes/.NuGetSpec/GitReleaseNotes.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitTools/GitReleaseNotes/HEAD/src/GitReleaseNotes/.NuGetSpec/GitReleaseNotes.nuspec -------------------------------------------------------------------------------- /src/GitReleaseNotes/Exceptions/GitReleaseNotesException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitTools/GitReleaseNotes/HEAD/src/GitReleaseNotes/Exceptions/GitReleaseNotesException.cs -------------------------------------------------------------------------------- /src/GitReleaseNotes/Extensions/GitReleaseNotesArgumentsExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitTools/GitReleaseNotes/HEAD/src/GitReleaseNotes/Extensions/GitReleaseNotesArgumentsExtensions.cs -------------------------------------------------------------------------------- /src/GitReleaseNotes/Extensions/ILogExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitTools/GitReleaseNotes/HEAD/src/GitReleaseNotes/Extensions/ILogExtensions.cs -------------------------------------------------------------------------------- /src/GitReleaseNotes/FileSystem/FileSystem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitTools/GitReleaseNotes/HEAD/src/GitReleaseNotes/FileSystem/FileSystem.cs -------------------------------------------------------------------------------- /src/GitReleaseNotes/FileSystem/Interfaces/IFileSystem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitTools/GitReleaseNotes/HEAD/src/GitReleaseNotes/FileSystem/Interfaces/IFileSystem.cs -------------------------------------------------------------------------------- /src/GitReleaseNotes/FileSystem/ReleaseFileWriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitTools/GitReleaseNotes/HEAD/src/GitReleaseNotes/FileSystem/ReleaseFileWriter.cs -------------------------------------------------------------------------------- /src/GitReleaseNotes/FileSystem/ReleaseNotesFileReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitTools/GitReleaseNotes/HEAD/src/GitReleaseNotes/FileSystem/ReleaseNotesFileReader.cs -------------------------------------------------------------------------------- /src/GitReleaseNotes/FodyWeavers.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitTools/GitReleaseNotes/HEAD/src/GitReleaseNotes/FodyWeavers.xml -------------------------------------------------------------------------------- /src/GitReleaseNotes/Git/Extensions/IRepositoryExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitTools/GitReleaseNotes/HEAD/src/GitReleaseNotes/Git/Extensions/IRepositoryExtensions.cs -------------------------------------------------------------------------------- /src/GitReleaseNotes/GitReleaseNotes.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitTools/GitReleaseNotes/HEAD/src/GitReleaseNotes/GitReleaseNotes.csproj -------------------------------------------------------------------------------- /src/GitReleaseNotes/GitReleaseNotesArguments.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitTools/GitReleaseNotes/HEAD/src/GitReleaseNotes/GitReleaseNotesArguments.cs -------------------------------------------------------------------------------- /src/GitReleaseNotes/GitReleaseNotesEnvironment.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitTools/GitReleaseNotes/HEAD/src/GitReleaseNotes/GitReleaseNotesEnvironment.cs -------------------------------------------------------------------------------- /src/GitReleaseNotes/IssueTrackerParameters.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitTools/GitReleaseNotes/HEAD/src/GitReleaseNotes/IssueTrackerParameters.cs -------------------------------------------------------------------------------- /src/GitReleaseNotes/IssueTrackers/BitBucket/BitBucketApi.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitTools/GitReleaseNotes/HEAD/src/GitReleaseNotes/IssueTrackers/BitBucket/BitBucketApi.cs -------------------------------------------------------------------------------- /src/GitReleaseNotes/IssueTrackers/BitBucket/BitBucketIssueTracker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitTools/GitReleaseNotes/HEAD/src/GitReleaseNotes/IssueTrackers/BitBucket/BitBucketIssueTracker.cs -------------------------------------------------------------------------------- /src/GitReleaseNotes/IssueTrackers/BitBucket/Interfaces/IBitBucketApi.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitTools/GitReleaseNotes/HEAD/src/GitReleaseNotes/IssueTrackers/BitBucket/Interfaces/IBitBucketApi.cs -------------------------------------------------------------------------------- /src/GitReleaseNotes/IssueTrackers/BitBucket/OAuthBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitTools/GitReleaseNotes/HEAD/src/GitReleaseNotes/IssueTrackers/BitBucket/OAuthBase.cs -------------------------------------------------------------------------------- /src/GitReleaseNotes/IssueTrackers/GitHub/GitHubIssueTracker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitTools/GitReleaseNotes/HEAD/src/GitReleaseNotes/IssueTrackers/GitHub/GitHubIssueTracker.cs -------------------------------------------------------------------------------- /src/GitReleaseNotes/IssueTrackers/Interfaces/IIssueNumberExtractor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitTools/GitReleaseNotes/HEAD/src/GitReleaseNotes/IssueTrackers/Interfaces/IIssueNumberExtractor.cs -------------------------------------------------------------------------------- /src/GitReleaseNotes/IssueTrackers/IssueNumberExtractor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitTools/GitReleaseNotes/HEAD/src/GitReleaseNotes/IssueTrackers/IssueNumberExtractor.cs -------------------------------------------------------------------------------- /src/GitReleaseNotes/IssueTrackers/Jira/Interfaces/IJiraApi.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitTools/GitReleaseNotes/HEAD/src/GitReleaseNotes/IssueTrackers/Jira/Interfaces/IJiraApi.cs -------------------------------------------------------------------------------- /src/GitReleaseNotes/IssueTrackers/Jira/JiraApi.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitTools/GitReleaseNotes/HEAD/src/GitReleaseNotes/IssueTrackers/Jira/JiraApi.cs -------------------------------------------------------------------------------- /src/GitReleaseNotes/IssueTrackers/Jira/JiraIssue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitTools/GitReleaseNotes/HEAD/src/GitReleaseNotes/IssueTrackers/Jira/JiraIssue.cs -------------------------------------------------------------------------------- /src/GitReleaseNotes/IssueTrackers/Jira/JiraIssueTracker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitTools/GitReleaseNotes/HEAD/src/GitReleaseNotes/IssueTrackers/Jira/JiraIssueTracker.cs -------------------------------------------------------------------------------- /src/GitReleaseNotes/IssueTrackers/YouTrack/Interfaces/IYouTrackApi.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitTools/GitReleaseNotes/HEAD/src/GitReleaseNotes/IssueTrackers/YouTrack/Interfaces/IYouTrackApi.cs -------------------------------------------------------------------------------- /src/GitReleaseNotes/IssueTrackers/YouTrack/YouTrackApi.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitTools/GitReleaseNotes/HEAD/src/GitReleaseNotes/IssueTrackers/YouTrack/YouTrackApi.cs -------------------------------------------------------------------------------- /src/GitReleaseNotes/IssueTrackers/YouTrack/YouTrackIssueTracker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitTools/GitReleaseNotes/HEAD/src/GitReleaseNotes/IssueTrackers/YouTrack/YouTrackIssueTracker.cs -------------------------------------------------------------------------------- /src/GitReleaseNotes/Logging/ConsoleHelpFormatter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitTools/GitReleaseNotes/HEAD/src/GitReleaseNotes/Logging/ConsoleHelpFormatter.cs -------------------------------------------------------------------------------- /src/GitReleaseNotes/Logging/ConsoleLog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitTools/GitReleaseNotes/HEAD/src/GitReleaseNotes/Logging/ConsoleLog.cs -------------------------------------------------------------------------------- /src/GitReleaseNotes/Logging/CustomLog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitTools/GitReleaseNotes/HEAD/src/GitReleaseNotes/Logging/CustomLog.cs -------------------------------------------------------------------------------- /src/GitReleaseNotes/Logging/Interfaces/ILog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitTools/GitReleaseNotes/HEAD/src/GitReleaseNotes/Logging/Interfaces/ILog.cs -------------------------------------------------------------------------------- /src/GitReleaseNotes/Models/BlankLine.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitTools/GitReleaseNotes/HEAD/src/GitReleaseNotes/Models/BlankLine.cs -------------------------------------------------------------------------------- /src/GitReleaseNotes/Models/Categories.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitTools/GitReleaseNotes/HEAD/src/GitReleaseNotes/Models/Categories.cs -------------------------------------------------------------------------------- /src/GitReleaseNotes/Models/Interfaces/IReleaseNoteLine.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitTools/GitReleaseNotes/HEAD/src/GitReleaseNotes/Models/Interfaces/IReleaseNoteLine.cs -------------------------------------------------------------------------------- /src/GitReleaseNotes/Models/ReleaseDiffInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitTools/GitReleaseNotes/HEAD/src/GitReleaseNotes/Models/ReleaseDiffInfo.cs -------------------------------------------------------------------------------- /src/GitReleaseNotes/Models/ReleaseInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitTools/GitReleaseNotes/HEAD/src/GitReleaseNotes/Models/ReleaseInfo.cs -------------------------------------------------------------------------------- /src/GitReleaseNotes/Models/ReleaseNoteItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitTools/GitReleaseNotes/HEAD/src/GitReleaseNotes/Models/ReleaseNoteItem.cs -------------------------------------------------------------------------------- /src/GitReleaseNotes/Models/ReleaseNoteLine.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitTools/GitReleaseNotes/HEAD/src/GitReleaseNotes/Models/ReleaseNoteLine.cs -------------------------------------------------------------------------------- /src/GitReleaseNotes/Models/SemanticRelease.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitTools/GitReleaseNotes/HEAD/src/GitReleaseNotes/Models/SemanticRelease.cs -------------------------------------------------------------------------------- /src/GitReleaseNotes/Models/SemanticReleaseNotes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitTools/GitReleaseNotes/HEAD/src/GitReleaseNotes/Models/SemanticReleaseNotes.cs -------------------------------------------------------------------------------- /src/GitReleaseNotes/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitTools/GitReleaseNotes/HEAD/src/GitReleaseNotes/Program.cs -------------------------------------------------------------------------------- /src/GitReleaseNotes/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitTools/GitReleaseNotes/HEAD/src/GitReleaseNotes/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/GitReleaseNotes/ReleaseFinder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitTools/GitReleaseNotes/HEAD/src/GitReleaseNotes/ReleaseFinder.cs -------------------------------------------------------------------------------- /src/GitReleaseNotes/ReleaseNotesGenerationParameters.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitTools/GitReleaseNotes/HEAD/src/GitReleaseNotes/ReleaseNotesGenerationParameters.cs -------------------------------------------------------------------------------- /src/GitReleaseNotes/ReleaseNotesGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitTools/GitReleaseNotes/HEAD/src/GitReleaseNotes/ReleaseNotesGenerator.cs -------------------------------------------------------------------------------- /src/GitReleaseNotes/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitTools/GitReleaseNotes/HEAD/src/GitReleaseNotes/packages.config -------------------------------------------------------------------------------- /tools/MSBuildCommunityTasks/MSBuild.Community.Tasks.Targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitTools/GitReleaseNotes/HEAD/tools/MSBuildCommunityTasks/MSBuild.Community.Tasks.Targets -------------------------------------------------------------------------------- /tools/MSBuildCommunityTasks/MSBuild.Community.Tasks.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitTools/GitReleaseNotes/HEAD/tools/MSBuildCommunityTasks/MSBuild.Community.Tasks.dll -------------------------------------------------------------------------------- /tools/MSBuildCommunityTasks/MSBuild.Community.Tasks.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitTools/GitReleaseNotes/HEAD/tools/MSBuildCommunityTasks/MSBuild.Community.Tasks.xml -------------------------------------------------------------------------------- /tools/MSBuildCommunityTasks/MSBuild.Community.Tasks.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitTools/GitReleaseNotes/HEAD/tools/MSBuildCommunityTasks/MSBuild.Community.Tasks.xsd -------------------------------------------------------------------------------- /tools/xUnit.net/HTML.xslt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitTools/GitReleaseNotes/HEAD/tools/xUnit.net/HTML.xslt -------------------------------------------------------------------------------- /tools/xUnit.net/NUnitXml.xslt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitTools/GitReleaseNotes/HEAD/tools/xUnit.net/NUnitXml.xslt -------------------------------------------------------------------------------- /tools/xUnit.net/xunit.console.clr4.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitTools/GitReleaseNotes/HEAD/tools/xUnit.net/xunit.console.clr4.exe -------------------------------------------------------------------------------- /tools/xUnit.net/xunit.console.clr4.exe.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitTools/GitReleaseNotes/HEAD/tools/xUnit.net/xunit.console.clr4.exe.config -------------------------------------------------------------------------------- /tools/xUnit.net/xunit.console.clr4.x86.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitTools/GitReleaseNotes/HEAD/tools/xUnit.net/xunit.console.clr4.x86.exe -------------------------------------------------------------------------------- /tools/xUnit.net/xunit.console.clr4.x86.exe.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitTools/GitReleaseNotes/HEAD/tools/xUnit.net/xunit.console.clr4.x86.exe.config -------------------------------------------------------------------------------- /tools/xUnit.net/xunit.console.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitTools/GitReleaseNotes/HEAD/tools/xUnit.net/xunit.console.exe -------------------------------------------------------------------------------- /tools/xUnit.net/xunit.console.exe.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitTools/GitReleaseNotes/HEAD/tools/xUnit.net/xunit.console.exe.config -------------------------------------------------------------------------------- /tools/xUnit.net/xunit.console.x86.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitTools/GitReleaseNotes/HEAD/tools/xUnit.net/xunit.console.x86.exe -------------------------------------------------------------------------------- /tools/xUnit.net/xunit.console.x86.exe.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitTools/GitReleaseNotes/HEAD/tools/xUnit.net/xunit.console.x86.exe.config -------------------------------------------------------------------------------- /tools/xUnit.net/xunit.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitTools/GitReleaseNotes/HEAD/tools/xUnit.net/xunit.dll -------------------------------------------------------------------------------- /tools/xUnit.net/xunit.dll.tdnet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitTools/GitReleaseNotes/HEAD/tools/xUnit.net/xunit.dll.tdnet -------------------------------------------------------------------------------- /tools/xUnit.net/xunit.extensions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitTools/GitReleaseNotes/HEAD/tools/xUnit.net/xunit.extensions.dll -------------------------------------------------------------------------------- /tools/xUnit.net/xunit.extensions.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitTools/GitReleaseNotes/HEAD/tools/xUnit.net/xunit.extensions.xml -------------------------------------------------------------------------------- /tools/xUnit.net/xunit.gui.clr4.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitTools/GitReleaseNotes/HEAD/tools/xUnit.net/xunit.gui.clr4.exe -------------------------------------------------------------------------------- /tools/xUnit.net/xunit.gui.clr4.x86.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitTools/GitReleaseNotes/HEAD/tools/xUnit.net/xunit.gui.clr4.x86.exe -------------------------------------------------------------------------------- /tools/xUnit.net/xunit.gui.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitTools/GitReleaseNotes/HEAD/tools/xUnit.net/xunit.gui.exe -------------------------------------------------------------------------------- /tools/xUnit.net/xunit.gui.x86.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitTools/GitReleaseNotes/HEAD/tools/xUnit.net/xunit.gui.x86.exe -------------------------------------------------------------------------------- /tools/xUnit.net/xunit.installer.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitTools/GitReleaseNotes/HEAD/tools/xUnit.net/xunit.installer.exe -------------------------------------------------------------------------------- /tools/xUnit.net/xunit.runner.msbuild.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitTools/GitReleaseNotes/HEAD/tools/xUnit.net/xunit.runner.msbuild.dll -------------------------------------------------------------------------------- /tools/xUnit.net/xunit.runner.tdnet.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitTools/GitReleaseNotes/HEAD/tools/xUnit.net/xunit.runner.tdnet.dll -------------------------------------------------------------------------------- /tools/xUnit.net/xunit.runner.utility.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitTools/GitReleaseNotes/HEAD/tools/xUnit.net/xunit.runner.utility.dll -------------------------------------------------------------------------------- /tools/xUnit.net/xunit.runner.utility.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitTools/GitReleaseNotes/HEAD/tools/xUnit.net/xunit.runner.utility.xml -------------------------------------------------------------------------------- /tools/xUnit.net/xunit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitTools/GitReleaseNotes/HEAD/tools/xUnit.net/xunit.xml --------------------------------------------------------------------------------