├── .gitattributes ├── .gitignore ├── .nuget └── packages.config ├── APIComparer.Backend.Tests ├── APIComparer.Backend.Tests.csproj ├── APIUpgradeToHtmlFormatterTest.AppccelerateEventBrokerNoChanges.approved.html ├── APIUpgradeToHtmlFormatterTest.Example.approved.html ├── APIUpgradeToHtmlFormatterTest.TestComplianceAutoMapper.approved.html ├── APIUpgradeToHtmlFormatterTest.TestComplianceAzureSelfDestruct.approved.html ├── APIUpgradeToHtmlFormatterTest.TestComplianceLibGit2SharpNativeBinaries.approved.html ├── APIUpgradeToHtmlFormatterTest.TestComplianceLibGit2SharpNativeBinariesWithRightMissingNativeAssemblies.approved.html ├── APIUpgradeToHtmlFormatterTest.TestComplianceLibGit2SharpPackageEmbeddingNativeBinaries.approved.html ├── APIUpgradeToHtmlFormatterTest.TestComplianceLibLog.approved.html ├── APIUpgradeToHtmlFormatterTest.TestComplianceNServiceBus.approved.html ├── APIUpgradeToHtmlFormatterTest.TestComplianceNewtonsoftJson.approved.html ├── APIUpgradeToHtmlFormatterTest.cs ├── AssemblyInfo.cs ├── CompareLatestPatchTests.cs ├── CompareSetCreateTests.MultiMatchingTargets.approved.txt ├── CompareSetCreateTests.MultiWithMissingLeft.approved.txt ├── CompareSetCreateTests.MultiWithMissingRight.approved.txt ├── CompareSetCreateTests.SingleMatchingTarget.approved.txt ├── TopXNugets.cs ├── app.config └── packages.config ├── APIComparer.Backend ├── APIComparer.Backend.csproj ├── App.config ├── CompareNugetPackageExtensions.cs ├── CompareSetCreator.cs ├── CompareSetDiffer.cs ├── CompareSetReporter.cs ├── CompareSets.cs ├── ComparisonHandler.cs ├── DiffedCompareSet.cs ├── Functions.cs ├── NuGetDownloader.cs ├── PackageDescription.cs ├── Program.cs ├── Properties │ ├── AssemblyInfo.cs │ ├── PublishProfiles │ │ └── particular-apicomparer-live.pubxml │ └── webjob-publish-settings.json ├── Reporting │ ├── APIUpgradeToHtmlFormatter.cs │ ├── Helpers.Html.cs │ ├── IFormatter.cs │ ├── Templates.Html.cs │ ├── ViewModel │ │ ├── APIComparison.cs │ │ ├── ObsoletedItem.cs │ │ ├── RemovedItem.cs │ │ ├── TargetReport.cs │ │ └── TypeDifferencesReport.cs │ └── ViewModelBuilder.cs ├── Shared │ ├── AzureEnvironment.cs │ ├── ConfigureAuditQueue.cs │ ├── ConfigureAzureSubscriptionStorage.cs │ └── ConfigureErrorQueue.cs ├── VersionComparisons │ ├── CompareAgainstFirstReleaseStrategy.cs │ ├── CompareAgainstNextReleaseStrategy.cs │ ├── CompareLatestPatchStrategy.cs │ ├── CompareSet.cs │ ├── CompareStrategies.cs │ ├── ICompareStrategy.cs │ └── VersionPair.cs └── packages.config ├── APIComparer.Contracts ├── APIComparer.Contracts.csproj ├── CompareNugetPackage.cs ├── Properties │ └── AssemblyInfo.cs └── packages.config ├── APIComparer.Core ├── APIComparer.Core.csproj ├── APIUpgradeToMarkdownFormatter.cs ├── ApiChanges.cs ├── AssemblyGroup.cs ├── AssemblyInfo.cs ├── BreakingChanges │ ├── BreakingChange.cs │ ├── BreakingChangeFinder.cs │ ├── EnumFieldValueChanged.cs │ ├── FieldChangedToNonPublic.cs │ ├── MethodChangedToNonPublic.cs │ ├── PublicFieldRemoved.cs │ ├── PublicMethodRemoved.cs │ ├── TypeMadeNonPublic.cs │ └── TypeRemoved.cs ├── CecilExtensions.cs ├── ChangedType.cs ├── CollectionExtensions.cs ├── ComparerEngine.cs ├── Diff.cs ├── EmptyAssemblyGroup.cs ├── EmptyDiff.cs ├── FormattingInfo.cs ├── MatchingMember.cs ├── ObsoleteInfo.cs ├── RawOutputFormatter.cs ├── RemovedType.cs ├── TypeDiff.cs └── packages.config ├── APIComparer.Tests ├── APIComparer.Tests.csproj ├── APIUpgradeToMarkdownFormatterTests.ApproveExample.approved.txt ├── APIUpgradeToMarkdownFormatterTests.ApproveNServiceBus.approved.txt ├── APIUpgradeToMarkdownFormatterTests.cs ├── ApprovalTests.ApproveExample.approved.txt ├── AssemblyCompression │ ├── AssemblyCompressionTests.cs │ ├── NServiceBus.Core.dll │ ├── NServiceBus.Core.pdb │ └── Verifier.cs ├── AssemblyInfo.cs ├── BreakingChangeFinderTests.ApproveExample.approved.txt ├── BreakingChangeFinderTests.cs ├── ComparerEngineTests.VerifyMissingField.approved.txt ├── ComparerEngineTests.cs ├── TypeDiffTests.cs ├── VersionComparisons │ ├── CompareLatestPatchStrategy.cs │ ├── CompareLatestPatchStrategyTests.Run.approved.txt │ └── CompareLatestPatchTests.cs ├── app.config └── packages.config ├── APIComparer.Website ├── APIComparer.Website.csproj ├── Bootstrapper.cs ├── BusConfig.cs ├── CompareModule.cs ├── Comparisons │ ├── .gitignore │ └── CompareRunning.html ├── Content │ └── style.css ├── HomeModule.cs ├── NotFoundException.cs ├── NuGetBrowser.cs ├── Properties │ ├── AssemblyInfo.cs │ ├── PublishProfiles │ │ ├── LocalDir.pubxml │ │ ├── apicomparer-preview - FTP.pubxml │ │ ├── apicomparer-preview - Web Deploy.pubxml │ │ ├── apicomparer-staging - FTP.pubxml │ │ ├── apicomparer-staging - Web Deploy.pubxml │ │ └── particular-apicomparer-live.pubxml │ └── webjobs-list.json ├── SemanticVersionRouteConstraint.cs ├── UnicastBusConfigProvider.cs ├── Views │ ├── gtm.html │ └── home.html ├── Web.Debug.config ├── Web.Release.config ├── Web.config └── packages.config ├── APIComparer.sln ├── APIComparer.sln.DotSettings ├── APIComparer ├── APIComparer.csproj ├── ApiComparerArgumentException.cs ├── App.config ├── AssemblyInfo.cs ├── ExitCode.cs ├── NuGetBrowser.cs ├── NuGetDownloader.cs ├── Program.cs ├── VersionComparisons │ ├── CompareAgainstFirstReleaseStrategy.cs │ ├── CompareAgainstNextReleaseStrategy.cs │ ├── CompareLatestPatchStrategy.cs │ ├── CompareSet.cs │ ├── CompareStrategies.cs │ ├── ICompareStrategy.cs │ └── VersionPair.cs └── packages.config ├── ExampleV1 ├── ClassObsoletedInBothVersions.cs ├── ClassObsoletedWithErrorShouldNotBeIncludedIfInternalized.cs ├── ClassObsoletedWithErrorShouldNotBeIncludedIfRemoved.cs ├── ClassObsoletedWithErrorShouldNotBeIncludedIfStillObsolete.cs ├── ClassObsoletedWithWarnShouldBeIncludedIfInternalized.cs ├── ClassObsoletedWithWarnShouldBeIncludedIfRemoved.cs ├── ClassToBeObsoletedWithErrorInNextVersion.cs ├── ClassToBeObsoletedWithWarnInNextVersion.cs ├── ClassWithFieldToRemovedInNextMajor.cs ├── ClassWithMembersObsoletedInBothVersionsShouldNotBeIncluded.cs ├── ClassWithMembersToBeObsoletedWithErrorInNextVersion.cs ├── ClassWithMembersToBeObsoletedWithWarnInNextVersion.cs ├── ClassWithPrivateMembersRemovedShouldNotBeIncluded.cs ├── ClassWithReadOnlyPropToBeRemovedInNextMajor.cs ├── EnumWithMemberToBeChangedInNextVersion.cs ├── ExampleV1.csproj ├── IMethodChangesParametersNextVersion.cs ├── InternalNextVersionClass.cs ├── MemberInternalNextVersion.cs ├── MemberMissingNextVersion.cs ├── MemberObsoleteNextVersion.cs ├── MissingNextVersionClass.cs ├── MissingNextVersionClassWithRemoveInNextMajor.cs └── PublicClass.cs ├── ExampleV2 ├── ClassObsoletedInBothVersions.cs ├── ClassObsoletedWithErrorShouldNotBeIncludedIfInternalized.cs ├── ClassObsoletedWithErrorShouldNotBeIncludedIfStillObsolete.cs ├── ClassObsoletedWithWarnShouldBeIncludedIfInternalized.cs ├── ClassToBeObsoletedWithErrorInNextVersion.cs ├── ClassToBeObsoletedWithWarnInNextVersion.cs ├── ClassWithFieldToRemovedInNextMajor.cs ├── ClassWithMembersObsoletedInBothVersionsShouldNotBeIncluded.cs ├── ClassWithMembersToBeObsoletedWithErrorInNextVersion.cs ├── ClassWithMembersToBeObsoletedWithWarnInNextVersion.cs ├── ClassWithPrivateMembersRemovedShouldNotBeIncluded.cs ├── ClassWithReadOnlyPropToBeRemovedInNextMajor.cs ├── EnumWithMemberToBeChangedInNextVersion.cs ├── ExampleV2.csproj ├── IMethodChangesParametersNextVersion.cs ├── InternalNextVersionClass.cs ├── MemberInternalNextVersion.cs ├── MemberMissingNextVersion.cs ├── MemberObsoleteNextVersion.cs └── PublicClass.cs ├── GitVersion.yml ├── License.txt ├── Octopus └── ApiComparer.Website.nuspec └── README.md /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasohlund/APIComparer/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasohlund/APIComparer/HEAD/.gitignore -------------------------------------------------------------------------------- /.nuget/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasohlund/APIComparer/HEAD/.nuget/packages.config -------------------------------------------------------------------------------- /APIComparer.Backend.Tests/APIComparer.Backend.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasohlund/APIComparer/HEAD/APIComparer.Backend.Tests/APIComparer.Backend.Tests.csproj -------------------------------------------------------------------------------- /APIComparer.Backend.Tests/APIUpgradeToHtmlFormatterTest.AppccelerateEventBrokerNoChanges.approved.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasohlund/APIComparer/HEAD/APIComparer.Backend.Tests/APIUpgradeToHtmlFormatterTest.AppccelerateEventBrokerNoChanges.approved.html -------------------------------------------------------------------------------- /APIComparer.Backend.Tests/APIUpgradeToHtmlFormatterTest.Example.approved.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasohlund/APIComparer/HEAD/APIComparer.Backend.Tests/APIUpgradeToHtmlFormatterTest.Example.approved.html -------------------------------------------------------------------------------- /APIComparer.Backend.Tests/APIUpgradeToHtmlFormatterTest.TestComplianceAutoMapper.approved.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasohlund/APIComparer/HEAD/APIComparer.Backend.Tests/APIUpgradeToHtmlFormatterTest.TestComplianceAutoMapper.approved.html -------------------------------------------------------------------------------- /APIComparer.Backend.Tests/APIUpgradeToHtmlFormatterTest.TestComplianceAzureSelfDestruct.approved.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasohlund/APIComparer/HEAD/APIComparer.Backend.Tests/APIUpgradeToHtmlFormatterTest.TestComplianceAzureSelfDestruct.approved.html -------------------------------------------------------------------------------- /APIComparer.Backend.Tests/APIUpgradeToHtmlFormatterTest.TestComplianceLibGit2SharpNativeBinaries.approved.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasohlund/APIComparer/HEAD/APIComparer.Backend.Tests/APIUpgradeToHtmlFormatterTest.TestComplianceLibGit2SharpNativeBinaries.approved.html -------------------------------------------------------------------------------- /APIComparer.Backend.Tests/APIUpgradeToHtmlFormatterTest.TestComplianceLibGit2SharpNativeBinariesWithRightMissingNativeAssemblies.approved.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasohlund/APIComparer/HEAD/APIComparer.Backend.Tests/APIUpgradeToHtmlFormatterTest.TestComplianceLibGit2SharpNativeBinariesWithRightMissingNativeAssemblies.approved.html -------------------------------------------------------------------------------- /APIComparer.Backend.Tests/APIUpgradeToHtmlFormatterTest.TestComplianceLibGit2SharpPackageEmbeddingNativeBinaries.approved.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasohlund/APIComparer/HEAD/APIComparer.Backend.Tests/APIUpgradeToHtmlFormatterTest.TestComplianceLibGit2SharpPackageEmbeddingNativeBinaries.approved.html -------------------------------------------------------------------------------- /APIComparer.Backend.Tests/APIUpgradeToHtmlFormatterTest.TestComplianceLibLog.approved.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasohlund/APIComparer/HEAD/APIComparer.Backend.Tests/APIUpgradeToHtmlFormatterTest.TestComplianceLibLog.approved.html -------------------------------------------------------------------------------- /APIComparer.Backend.Tests/APIUpgradeToHtmlFormatterTest.TestComplianceNServiceBus.approved.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasohlund/APIComparer/HEAD/APIComparer.Backend.Tests/APIUpgradeToHtmlFormatterTest.TestComplianceNServiceBus.approved.html -------------------------------------------------------------------------------- /APIComparer.Backend.Tests/APIUpgradeToHtmlFormatterTest.TestComplianceNewtonsoftJson.approved.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasohlund/APIComparer/HEAD/APIComparer.Backend.Tests/APIUpgradeToHtmlFormatterTest.TestComplianceNewtonsoftJson.approved.html -------------------------------------------------------------------------------- /APIComparer.Backend.Tests/APIUpgradeToHtmlFormatterTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasohlund/APIComparer/HEAD/APIComparer.Backend.Tests/APIUpgradeToHtmlFormatterTest.cs -------------------------------------------------------------------------------- /APIComparer.Backend.Tests/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasohlund/APIComparer/HEAD/APIComparer.Backend.Tests/AssemblyInfo.cs -------------------------------------------------------------------------------- /APIComparer.Backend.Tests/CompareLatestPatchTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasohlund/APIComparer/HEAD/APIComparer.Backend.Tests/CompareLatestPatchTests.cs -------------------------------------------------------------------------------- /APIComparer.Backend.Tests/CompareSetCreateTests.MultiMatchingTargets.approved.txt: -------------------------------------------------------------------------------- 1 | net40 2 | net45 -------------------------------------------------------------------------------- /APIComparer.Backend.Tests/CompareSetCreateTests.MultiWithMissingLeft.approved.txt: -------------------------------------------------------------------------------- 1 | net40 2 | net45 -------------------------------------------------------------------------------- /APIComparer.Backend.Tests/CompareSetCreateTests.MultiWithMissingRight.approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasohlund/APIComparer/HEAD/APIComparer.Backend.Tests/CompareSetCreateTests.MultiWithMissingRight.approved.txt -------------------------------------------------------------------------------- /APIComparer.Backend.Tests/CompareSetCreateTests.SingleMatchingTarget.approved.txt: -------------------------------------------------------------------------------- 1 | net40 -------------------------------------------------------------------------------- /APIComparer.Backend.Tests/TopXNugets.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasohlund/APIComparer/HEAD/APIComparer.Backend.Tests/TopXNugets.cs -------------------------------------------------------------------------------- /APIComparer.Backend.Tests/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasohlund/APIComparer/HEAD/APIComparer.Backend.Tests/app.config -------------------------------------------------------------------------------- /APIComparer.Backend.Tests/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasohlund/APIComparer/HEAD/APIComparer.Backend.Tests/packages.config -------------------------------------------------------------------------------- /APIComparer.Backend/APIComparer.Backend.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasohlund/APIComparer/HEAD/APIComparer.Backend/APIComparer.Backend.csproj -------------------------------------------------------------------------------- /APIComparer.Backend/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasohlund/APIComparer/HEAD/APIComparer.Backend/App.config -------------------------------------------------------------------------------- /APIComparer.Backend/CompareNugetPackageExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasohlund/APIComparer/HEAD/APIComparer.Backend/CompareNugetPackageExtensions.cs -------------------------------------------------------------------------------- /APIComparer.Backend/CompareSetCreator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasohlund/APIComparer/HEAD/APIComparer.Backend/CompareSetCreator.cs -------------------------------------------------------------------------------- /APIComparer.Backend/CompareSetDiffer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasohlund/APIComparer/HEAD/APIComparer.Backend/CompareSetDiffer.cs -------------------------------------------------------------------------------- /APIComparer.Backend/CompareSetReporter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasohlund/APIComparer/HEAD/APIComparer.Backend/CompareSetReporter.cs -------------------------------------------------------------------------------- /APIComparer.Backend/CompareSets.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasohlund/APIComparer/HEAD/APIComparer.Backend/CompareSets.cs -------------------------------------------------------------------------------- /APIComparer.Backend/ComparisonHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasohlund/APIComparer/HEAD/APIComparer.Backend/ComparisonHandler.cs -------------------------------------------------------------------------------- /APIComparer.Backend/DiffedCompareSet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasohlund/APIComparer/HEAD/APIComparer.Backend/DiffedCompareSet.cs -------------------------------------------------------------------------------- /APIComparer.Backend/Functions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasohlund/APIComparer/HEAD/APIComparer.Backend/Functions.cs -------------------------------------------------------------------------------- /APIComparer.Backend/NuGetDownloader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasohlund/APIComparer/HEAD/APIComparer.Backend/NuGetDownloader.cs -------------------------------------------------------------------------------- /APIComparer.Backend/PackageDescription.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasohlund/APIComparer/HEAD/APIComparer.Backend/PackageDescription.cs -------------------------------------------------------------------------------- /APIComparer.Backend/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasohlund/APIComparer/HEAD/APIComparer.Backend/Program.cs -------------------------------------------------------------------------------- /APIComparer.Backend/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasohlund/APIComparer/HEAD/APIComparer.Backend/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /APIComparer.Backend/Properties/PublishProfiles/particular-apicomparer-live.pubxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasohlund/APIComparer/HEAD/APIComparer.Backend/Properties/PublishProfiles/particular-apicomparer-live.pubxml -------------------------------------------------------------------------------- /APIComparer.Backend/Properties/webjob-publish-settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasohlund/APIComparer/HEAD/APIComparer.Backend/Properties/webjob-publish-settings.json -------------------------------------------------------------------------------- /APIComparer.Backend/Reporting/APIUpgradeToHtmlFormatter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasohlund/APIComparer/HEAD/APIComparer.Backend/Reporting/APIUpgradeToHtmlFormatter.cs -------------------------------------------------------------------------------- /APIComparer.Backend/Reporting/Helpers.Html.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasohlund/APIComparer/HEAD/APIComparer.Backend/Reporting/Helpers.Html.cs -------------------------------------------------------------------------------- /APIComparer.Backend/Reporting/IFormatter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasohlund/APIComparer/HEAD/APIComparer.Backend/Reporting/IFormatter.cs -------------------------------------------------------------------------------- /APIComparer.Backend/Reporting/Templates.Html.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasohlund/APIComparer/HEAD/APIComparer.Backend/Reporting/Templates.Html.cs -------------------------------------------------------------------------------- /APIComparer.Backend/Reporting/ViewModel/APIComparison.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasohlund/APIComparer/HEAD/APIComparer.Backend/Reporting/ViewModel/APIComparison.cs -------------------------------------------------------------------------------- /APIComparer.Backend/Reporting/ViewModel/ObsoletedItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasohlund/APIComparer/HEAD/APIComparer.Backend/Reporting/ViewModel/ObsoletedItem.cs -------------------------------------------------------------------------------- /APIComparer.Backend/Reporting/ViewModel/RemovedItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasohlund/APIComparer/HEAD/APIComparer.Backend/Reporting/ViewModel/RemovedItem.cs -------------------------------------------------------------------------------- /APIComparer.Backend/Reporting/ViewModel/TargetReport.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasohlund/APIComparer/HEAD/APIComparer.Backend/Reporting/ViewModel/TargetReport.cs -------------------------------------------------------------------------------- /APIComparer.Backend/Reporting/ViewModel/TypeDifferencesReport.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasohlund/APIComparer/HEAD/APIComparer.Backend/Reporting/ViewModel/TypeDifferencesReport.cs -------------------------------------------------------------------------------- /APIComparer.Backend/Reporting/ViewModelBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasohlund/APIComparer/HEAD/APIComparer.Backend/Reporting/ViewModelBuilder.cs -------------------------------------------------------------------------------- /APIComparer.Backend/Shared/AzureEnvironment.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasohlund/APIComparer/HEAD/APIComparer.Backend/Shared/AzureEnvironment.cs -------------------------------------------------------------------------------- /APIComparer.Backend/Shared/ConfigureAuditQueue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasohlund/APIComparer/HEAD/APIComparer.Backend/Shared/ConfigureAuditQueue.cs -------------------------------------------------------------------------------- /APIComparer.Backend/Shared/ConfigureAzureSubscriptionStorage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasohlund/APIComparer/HEAD/APIComparer.Backend/Shared/ConfigureAzureSubscriptionStorage.cs -------------------------------------------------------------------------------- /APIComparer.Backend/Shared/ConfigureErrorQueue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasohlund/APIComparer/HEAD/APIComparer.Backend/Shared/ConfigureErrorQueue.cs -------------------------------------------------------------------------------- /APIComparer.Backend/VersionComparisons/CompareAgainstFirstReleaseStrategy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasohlund/APIComparer/HEAD/APIComparer.Backend/VersionComparisons/CompareAgainstFirstReleaseStrategy.cs -------------------------------------------------------------------------------- /APIComparer.Backend/VersionComparisons/CompareAgainstNextReleaseStrategy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasohlund/APIComparer/HEAD/APIComparer.Backend/VersionComparisons/CompareAgainstNextReleaseStrategy.cs -------------------------------------------------------------------------------- /APIComparer.Backend/VersionComparisons/CompareLatestPatchStrategy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasohlund/APIComparer/HEAD/APIComparer.Backend/VersionComparisons/CompareLatestPatchStrategy.cs -------------------------------------------------------------------------------- /APIComparer.Backend/VersionComparisons/CompareSet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasohlund/APIComparer/HEAD/APIComparer.Backend/VersionComparisons/CompareSet.cs -------------------------------------------------------------------------------- /APIComparer.Backend/VersionComparisons/CompareStrategies.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasohlund/APIComparer/HEAD/APIComparer.Backend/VersionComparisons/CompareStrategies.cs -------------------------------------------------------------------------------- /APIComparer.Backend/VersionComparisons/ICompareStrategy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasohlund/APIComparer/HEAD/APIComparer.Backend/VersionComparisons/ICompareStrategy.cs -------------------------------------------------------------------------------- /APIComparer.Backend/VersionComparisons/VersionPair.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasohlund/APIComparer/HEAD/APIComparer.Backend/VersionComparisons/VersionPair.cs -------------------------------------------------------------------------------- /APIComparer.Backend/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasohlund/APIComparer/HEAD/APIComparer.Backend/packages.config -------------------------------------------------------------------------------- /APIComparer.Contracts/APIComparer.Contracts.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasohlund/APIComparer/HEAD/APIComparer.Contracts/APIComparer.Contracts.csproj -------------------------------------------------------------------------------- /APIComparer.Contracts/CompareNugetPackage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasohlund/APIComparer/HEAD/APIComparer.Contracts/CompareNugetPackage.cs -------------------------------------------------------------------------------- /APIComparer.Contracts/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasohlund/APIComparer/HEAD/APIComparer.Contracts/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /APIComparer.Contracts/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasohlund/APIComparer/HEAD/APIComparer.Contracts/packages.config -------------------------------------------------------------------------------- /APIComparer.Core/APIComparer.Core.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasohlund/APIComparer/HEAD/APIComparer.Core/APIComparer.Core.csproj -------------------------------------------------------------------------------- /APIComparer.Core/APIUpgradeToMarkdownFormatter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasohlund/APIComparer/HEAD/APIComparer.Core/APIUpgradeToMarkdownFormatter.cs -------------------------------------------------------------------------------- /APIComparer.Core/ApiChanges.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasohlund/APIComparer/HEAD/APIComparer.Core/ApiChanges.cs -------------------------------------------------------------------------------- /APIComparer.Core/AssemblyGroup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasohlund/APIComparer/HEAD/APIComparer.Core/AssemblyGroup.cs -------------------------------------------------------------------------------- /APIComparer.Core/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasohlund/APIComparer/HEAD/APIComparer.Core/AssemblyInfo.cs -------------------------------------------------------------------------------- /APIComparer.Core/BreakingChanges/BreakingChange.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasohlund/APIComparer/HEAD/APIComparer.Core/BreakingChanges/BreakingChange.cs -------------------------------------------------------------------------------- /APIComparer.Core/BreakingChanges/BreakingChangeFinder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasohlund/APIComparer/HEAD/APIComparer.Core/BreakingChanges/BreakingChangeFinder.cs -------------------------------------------------------------------------------- /APIComparer.Core/BreakingChanges/EnumFieldValueChanged.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasohlund/APIComparer/HEAD/APIComparer.Core/BreakingChanges/EnumFieldValueChanged.cs -------------------------------------------------------------------------------- /APIComparer.Core/BreakingChanges/FieldChangedToNonPublic.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasohlund/APIComparer/HEAD/APIComparer.Core/BreakingChanges/FieldChangedToNonPublic.cs -------------------------------------------------------------------------------- /APIComparer.Core/BreakingChanges/MethodChangedToNonPublic.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasohlund/APIComparer/HEAD/APIComparer.Core/BreakingChanges/MethodChangedToNonPublic.cs -------------------------------------------------------------------------------- /APIComparer.Core/BreakingChanges/PublicFieldRemoved.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasohlund/APIComparer/HEAD/APIComparer.Core/BreakingChanges/PublicFieldRemoved.cs -------------------------------------------------------------------------------- /APIComparer.Core/BreakingChanges/PublicMethodRemoved.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasohlund/APIComparer/HEAD/APIComparer.Core/BreakingChanges/PublicMethodRemoved.cs -------------------------------------------------------------------------------- /APIComparer.Core/BreakingChanges/TypeMadeNonPublic.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasohlund/APIComparer/HEAD/APIComparer.Core/BreakingChanges/TypeMadeNonPublic.cs -------------------------------------------------------------------------------- /APIComparer.Core/BreakingChanges/TypeRemoved.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasohlund/APIComparer/HEAD/APIComparer.Core/BreakingChanges/TypeRemoved.cs -------------------------------------------------------------------------------- /APIComparer.Core/CecilExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasohlund/APIComparer/HEAD/APIComparer.Core/CecilExtensions.cs -------------------------------------------------------------------------------- /APIComparer.Core/ChangedType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasohlund/APIComparer/HEAD/APIComparer.Core/ChangedType.cs -------------------------------------------------------------------------------- /APIComparer.Core/CollectionExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasohlund/APIComparer/HEAD/APIComparer.Core/CollectionExtensions.cs -------------------------------------------------------------------------------- /APIComparer.Core/ComparerEngine.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasohlund/APIComparer/HEAD/APIComparer.Core/ComparerEngine.cs -------------------------------------------------------------------------------- /APIComparer.Core/Diff.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasohlund/APIComparer/HEAD/APIComparer.Core/Diff.cs -------------------------------------------------------------------------------- /APIComparer.Core/EmptyAssemblyGroup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasohlund/APIComparer/HEAD/APIComparer.Core/EmptyAssemblyGroup.cs -------------------------------------------------------------------------------- /APIComparer.Core/EmptyDiff.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasohlund/APIComparer/HEAD/APIComparer.Core/EmptyDiff.cs -------------------------------------------------------------------------------- /APIComparer.Core/FormattingInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasohlund/APIComparer/HEAD/APIComparer.Core/FormattingInfo.cs -------------------------------------------------------------------------------- /APIComparer.Core/MatchingMember.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasohlund/APIComparer/HEAD/APIComparer.Core/MatchingMember.cs -------------------------------------------------------------------------------- /APIComparer.Core/ObsoleteInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasohlund/APIComparer/HEAD/APIComparer.Core/ObsoleteInfo.cs -------------------------------------------------------------------------------- /APIComparer.Core/RawOutputFormatter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasohlund/APIComparer/HEAD/APIComparer.Core/RawOutputFormatter.cs -------------------------------------------------------------------------------- /APIComparer.Core/RemovedType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasohlund/APIComparer/HEAD/APIComparer.Core/RemovedType.cs -------------------------------------------------------------------------------- /APIComparer.Core/TypeDiff.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasohlund/APIComparer/HEAD/APIComparer.Core/TypeDiff.cs -------------------------------------------------------------------------------- /APIComparer.Core/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasohlund/APIComparer/HEAD/APIComparer.Core/packages.config -------------------------------------------------------------------------------- /APIComparer.Tests/APIComparer.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasohlund/APIComparer/HEAD/APIComparer.Tests/APIComparer.Tests.csproj -------------------------------------------------------------------------------- /APIComparer.Tests/APIUpgradeToMarkdownFormatterTests.ApproveExample.approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasohlund/APIComparer/HEAD/APIComparer.Tests/APIUpgradeToMarkdownFormatterTests.ApproveExample.approved.txt -------------------------------------------------------------------------------- /APIComparer.Tests/APIUpgradeToMarkdownFormatterTests.ApproveNServiceBus.approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasohlund/APIComparer/HEAD/APIComparer.Tests/APIUpgradeToMarkdownFormatterTests.ApproveNServiceBus.approved.txt -------------------------------------------------------------------------------- /APIComparer.Tests/APIUpgradeToMarkdownFormatterTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasohlund/APIComparer/HEAD/APIComparer.Tests/APIUpgradeToMarkdownFormatterTests.cs -------------------------------------------------------------------------------- /APIComparer.Tests/ApprovalTests.ApproveExample.approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasohlund/APIComparer/HEAD/APIComparer.Tests/ApprovalTests.ApproveExample.approved.txt -------------------------------------------------------------------------------- /APIComparer.Tests/AssemblyCompression/AssemblyCompressionTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasohlund/APIComparer/HEAD/APIComparer.Tests/AssemblyCompression/AssemblyCompressionTests.cs -------------------------------------------------------------------------------- /APIComparer.Tests/AssemblyCompression/NServiceBus.Core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasohlund/APIComparer/HEAD/APIComparer.Tests/AssemblyCompression/NServiceBus.Core.dll -------------------------------------------------------------------------------- /APIComparer.Tests/AssemblyCompression/NServiceBus.Core.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasohlund/APIComparer/HEAD/APIComparer.Tests/AssemblyCompression/NServiceBus.Core.pdb -------------------------------------------------------------------------------- /APIComparer.Tests/AssemblyCompression/Verifier.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasohlund/APIComparer/HEAD/APIComparer.Tests/AssemblyCompression/Verifier.cs -------------------------------------------------------------------------------- /APIComparer.Tests/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasohlund/APIComparer/HEAD/APIComparer.Tests/AssemblyInfo.cs -------------------------------------------------------------------------------- /APIComparer.Tests/BreakingChangeFinderTests.ApproveExample.approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasohlund/APIComparer/HEAD/APIComparer.Tests/BreakingChangeFinderTests.ApproveExample.approved.txt -------------------------------------------------------------------------------- /APIComparer.Tests/BreakingChangeFinderTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasohlund/APIComparer/HEAD/APIComparer.Tests/BreakingChangeFinderTests.cs -------------------------------------------------------------------------------- /APIComparer.Tests/ComparerEngineTests.VerifyMissingField.approved.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /APIComparer.Tests/ComparerEngineTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasohlund/APIComparer/HEAD/APIComparer.Tests/ComparerEngineTests.cs -------------------------------------------------------------------------------- /APIComparer.Tests/TypeDiffTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasohlund/APIComparer/HEAD/APIComparer.Tests/TypeDiffTests.cs -------------------------------------------------------------------------------- /APIComparer.Tests/VersionComparisons/CompareLatestPatchStrategy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasohlund/APIComparer/HEAD/APIComparer.Tests/VersionComparisons/CompareLatestPatchStrategy.cs -------------------------------------------------------------------------------- /APIComparer.Tests/VersionComparisons/CompareLatestPatchStrategyTests.Run.approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasohlund/APIComparer/HEAD/APIComparer.Tests/VersionComparisons/CompareLatestPatchStrategyTests.Run.approved.txt -------------------------------------------------------------------------------- /APIComparer.Tests/VersionComparisons/CompareLatestPatchTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasohlund/APIComparer/HEAD/APIComparer.Tests/VersionComparisons/CompareLatestPatchTests.cs -------------------------------------------------------------------------------- /APIComparer.Tests/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasohlund/APIComparer/HEAD/APIComparer.Tests/app.config -------------------------------------------------------------------------------- /APIComparer.Tests/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasohlund/APIComparer/HEAD/APIComparer.Tests/packages.config -------------------------------------------------------------------------------- /APIComparer.Website/APIComparer.Website.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasohlund/APIComparer/HEAD/APIComparer.Website/APIComparer.Website.csproj -------------------------------------------------------------------------------- /APIComparer.Website/Bootstrapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasohlund/APIComparer/HEAD/APIComparer.Website/Bootstrapper.cs -------------------------------------------------------------------------------- /APIComparer.Website/BusConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasohlund/APIComparer/HEAD/APIComparer.Website/BusConfig.cs -------------------------------------------------------------------------------- /APIComparer.Website/CompareModule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasohlund/APIComparer/HEAD/APIComparer.Website/CompareModule.cs -------------------------------------------------------------------------------- /APIComparer.Website/Comparisons/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasohlund/APIComparer/HEAD/APIComparer.Website/Comparisons/.gitignore -------------------------------------------------------------------------------- /APIComparer.Website/Comparisons/CompareRunning.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasohlund/APIComparer/HEAD/APIComparer.Website/Comparisons/CompareRunning.html -------------------------------------------------------------------------------- /APIComparer.Website/Content/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasohlund/APIComparer/HEAD/APIComparer.Website/Content/style.css -------------------------------------------------------------------------------- /APIComparer.Website/HomeModule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasohlund/APIComparer/HEAD/APIComparer.Website/HomeModule.cs -------------------------------------------------------------------------------- /APIComparer.Website/NotFoundException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasohlund/APIComparer/HEAD/APIComparer.Website/NotFoundException.cs -------------------------------------------------------------------------------- /APIComparer.Website/NuGetBrowser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasohlund/APIComparer/HEAD/APIComparer.Website/NuGetBrowser.cs -------------------------------------------------------------------------------- /APIComparer.Website/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasohlund/APIComparer/HEAD/APIComparer.Website/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /APIComparer.Website/Properties/PublishProfiles/LocalDir.pubxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasohlund/APIComparer/HEAD/APIComparer.Website/Properties/PublishProfiles/LocalDir.pubxml -------------------------------------------------------------------------------- /APIComparer.Website/Properties/PublishProfiles/apicomparer-preview - FTP.pubxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasohlund/APIComparer/HEAD/APIComparer.Website/Properties/PublishProfiles/apicomparer-preview - FTP.pubxml -------------------------------------------------------------------------------- /APIComparer.Website/Properties/PublishProfiles/apicomparer-preview - Web Deploy.pubxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasohlund/APIComparer/HEAD/APIComparer.Website/Properties/PublishProfiles/apicomparer-preview - Web Deploy.pubxml -------------------------------------------------------------------------------- /APIComparer.Website/Properties/PublishProfiles/apicomparer-staging - FTP.pubxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasohlund/APIComparer/HEAD/APIComparer.Website/Properties/PublishProfiles/apicomparer-staging - FTP.pubxml -------------------------------------------------------------------------------- /APIComparer.Website/Properties/PublishProfiles/apicomparer-staging - Web Deploy.pubxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasohlund/APIComparer/HEAD/APIComparer.Website/Properties/PublishProfiles/apicomparer-staging - Web Deploy.pubxml -------------------------------------------------------------------------------- /APIComparer.Website/Properties/PublishProfiles/particular-apicomparer-live.pubxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasohlund/APIComparer/HEAD/APIComparer.Website/Properties/PublishProfiles/particular-apicomparer-live.pubxml -------------------------------------------------------------------------------- /APIComparer.Website/Properties/webjobs-list.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasohlund/APIComparer/HEAD/APIComparer.Website/Properties/webjobs-list.json -------------------------------------------------------------------------------- /APIComparer.Website/SemanticVersionRouteConstraint.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasohlund/APIComparer/HEAD/APIComparer.Website/SemanticVersionRouteConstraint.cs -------------------------------------------------------------------------------- /APIComparer.Website/UnicastBusConfigProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasohlund/APIComparer/HEAD/APIComparer.Website/UnicastBusConfigProvider.cs -------------------------------------------------------------------------------- /APIComparer.Website/Views/gtm.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasohlund/APIComparer/HEAD/APIComparer.Website/Views/gtm.html -------------------------------------------------------------------------------- /APIComparer.Website/Views/home.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasohlund/APIComparer/HEAD/APIComparer.Website/Views/home.html -------------------------------------------------------------------------------- /APIComparer.Website/Web.Debug.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasohlund/APIComparer/HEAD/APIComparer.Website/Web.Debug.config -------------------------------------------------------------------------------- /APIComparer.Website/Web.Release.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasohlund/APIComparer/HEAD/APIComparer.Website/Web.Release.config -------------------------------------------------------------------------------- /APIComparer.Website/Web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasohlund/APIComparer/HEAD/APIComparer.Website/Web.config -------------------------------------------------------------------------------- /APIComparer.Website/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasohlund/APIComparer/HEAD/APIComparer.Website/packages.config -------------------------------------------------------------------------------- /APIComparer.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasohlund/APIComparer/HEAD/APIComparer.sln -------------------------------------------------------------------------------- /APIComparer.sln.DotSettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasohlund/APIComparer/HEAD/APIComparer.sln.DotSettings -------------------------------------------------------------------------------- /APIComparer/APIComparer.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasohlund/APIComparer/HEAD/APIComparer/APIComparer.csproj -------------------------------------------------------------------------------- /APIComparer/ApiComparerArgumentException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasohlund/APIComparer/HEAD/APIComparer/ApiComparerArgumentException.cs -------------------------------------------------------------------------------- /APIComparer/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasohlund/APIComparer/HEAD/APIComparer/App.config -------------------------------------------------------------------------------- /APIComparer/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasohlund/APIComparer/HEAD/APIComparer/AssemblyInfo.cs -------------------------------------------------------------------------------- /APIComparer/ExitCode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasohlund/APIComparer/HEAD/APIComparer/ExitCode.cs -------------------------------------------------------------------------------- /APIComparer/NuGetBrowser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasohlund/APIComparer/HEAD/APIComparer/NuGetBrowser.cs -------------------------------------------------------------------------------- /APIComparer/NuGetDownloader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasohlund/APIComparer/HEAD/APIComparer/NuGetDownloader.cs -------------------------------------------------------------------------------- /APIComparer/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasohlund/APIComparer/HEAD/APIComparer/Program.cs -------------------------------------------------------------------------------- /APIComparer/VersionComparisons/CompareAgainstFirstReleaseStrategy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasohlund/APIComparer/HEAD/APIComparer/VersionComparisons/CompareAgainstFirstReleaseStrategy.cs -------------------------------------------------------------------------------- /APIComparer/VersionComparisons/CompareAgainstNextReleaseStrategy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasohlund/APIComparer/HEAD/APIComparer/VersionComparisons/CompareAgainstNextReleaseStrategy.cs -------------------------------------------------------------------------------- /APIComparer/VersionComparisons/CompareLatestPatchStrategy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasohlund/APIComparer/HEAD/APIComparer/VersionComparisons/CompareLatestPatchStrategy.cs -------------------------------------------------------------------------------- /APIComparer/VersionComparisons/CompareSet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasohlund/APIComparer/HEAD/APIComparer/VersionComparisons/CompareSet.cs -------------------------------------------------------------------------------- /APIComparer/VersionComparisons/CompareStrategies.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasohlund/APIComparer/HEAD/APIComparer/VersionComparisons/CompareStrategies.cs -------------------------------------------------------------------------------- /APIComparer/VersionComparisons/ICompareStrategy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasohlund/APIComparer/HEAD/APIComparer/VersionComparisons/ICompareStrategy.cs -------------------------------------------------------------------------------- /APIComparer/VersionComparisons/VersionPair.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasohlund/APIComparer/HEAD/APIComparer/VersionComparisons/VersionPair.cs -------------------------------------------------------------------------------- /APIComparer/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasohlund/APIComparer/HEAD/APIComparer/packages.config -------------------------------------------------------------------------------- /ExampleV1/ClassObsoletedInBothVersions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasohlund/APIComparer/HEAD/ExampleV1/ClassObsoletedInBothVersions.cs -------------------------------------------------------------------------------- /ExampleV1/ClassObsoletedWithErrorShouldNotBeIncludedIfInternalized.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasohlund/APIComparer/HEAD/ExampleV1/ClassObsoletedWithErrorShouldNotBeIncludedIfInternalized.cs -------------------------------------------------------------------------------- /ExampleV1/ClassObsoletedWithErrorShouldNotBeIncludedIfRemoved.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasohlund/APIComparer/HEAD/ExampleV1/ClassObsoletedWithErrorShouldNotBeIncludedIfRemoved.cs -------------------------------------------------------------------------------- /ExampleV1/ClassObsoletedWithErrorShouldNotBeIncludedIfStillObsolete.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasohlund/APIComparer/HEAD/ExampleV1/ClassObsoletedWithErrorShouldNotBeIncludedIfStillObsolete.cs -------------------------------------------------------------------------------- /ExampleV1/ClassObsoletedWithWarnShouldBeIncludedIfInternalized.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasohlund/APIComparer/HEAD/ExampleV1/ClassObsoletedWithWarnShouldBeIncludedIfInternalized.cs -------------------------------------------------------------------------------- /ExampleV1/ClassObsoletedWithWarnShouldBeIncludedIfRemoved.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasohlund/APIComparer/HEAD/ExampleV1/ClassObsoletedWithWarnShouldBeIncludedIfRemoved.cs -------------------------------------------------------------------------------- /ExampleV1/ClassToBeObsoletedWithErrorInNextVersion.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasohlund/APIComparer/HEAD/ExampleV1/ClassToBeObsoletedWithErrorInNextVersion.cs -------------------------------------------------------------------------------- /ExampleV1/ClassToBeObsoletedWithWarnInNextVersion.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasohlund/APIComparer/HEAD/ExampleV1/ClassToBeObsoletedWithWarnInNextVersion.cs -------------------------------------------------------------------------------- /ExampleV1/ClassWithFieldToRemovedInNextMajor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasohlund/APIComparer/HEAD/ExampleV1/ClassWithFieldToRemovedInNextMajor.cs -------------------------------------------------------------------------------- /ExampleV1/ClassWithMembersObsoletedInBothVersionsShouldNotBeIncluded.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasohlund/APIComparer/HEAD/ExampleV1/ClassWithMembersObsoletedInBothVersionsShouldNotBeIncluded.cs -------------------------------------------------------------------------------- /ExampleV1/ClassWithMembersToBeObsoletedWithErrorInNextVersion.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasohlund/APIComparer/HEAD/ExampleV1/ClassWithMembersToBeObsoletedWithErrorInNextVersion.cs -------------------------------------------------------------------------------- /ExampleV1/ClassWithMembersToBeObsoletedWithWarnInNextVersion.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasohlund/APIComparer/HEAD/ExampleV1/ClassWithMembersToBeObsoletedWithWarnInNextVersion.cs -------------------------------------------------------------------------------- /ExampleV1/ClassWithPrivateMembersRemovedShouldNotBeIncluded.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasohlund/APIComparer/HEAD/ExampleV1/ClassWithPrivateMembersRemovedShouldNotBeIncluded.cs -------------------------------------------------------------------------------- /ExampleV1/ClassWithReadOnlyPropToBeRemovedInNextMajor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasohlund/APIComparer/HEAD/ExampleV1/ClassWithReadOnlyPropToBeRemovedInNextMajor.cs -------------------------------------------------------------------------------- /ExampleV1/EnumWithMemberToBeChangedInNextVersion.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasohlund/APIComparer/HEAD/ExampleV1/EnumWithMemberToBeChangedInNextVersion.cs -------------------------------------------------------------------------------- /ExampleV1/ExampleV1.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasohlund/APIComparer/HEAD/ExampleV1/ExampleV1.csproj -------------------------------------------------------------------------------- /ExampleV1/IMethodChangesParametersNextVersion.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasohlund/APIComparer/HEAD/ExampleV1/IMethodChangesParametersNextVersion.cs -------------------------------------------------------------------------------- /ExampleV1/InternalNextVersionClass.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasohlund/APIComparer/HEAD/ExampleV1/InternalNextVersionClass.cs -------------------------------------------------------------------------------- /ExampleV1/MemberInternalNextVersion.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasohlund/APIComparer/HEAD/ExampleV1/MemberInternalNextVersion.cs -------------------------------------------------------------------------------- /ExampleV1/MemberMissingNextVersion.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasohlund/APIComparer/HEAD/ExampleV1/MemberMissingNextVersion.cs -------------------------------------------------------------------------------- /ExampleV1/MemberObsoleteNextVersion.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasohlund/APIComparer/HEAD/ExampleV1/MemberObsoleteNextVersion.cs -------------------------------------------------------------------------------- /ExampleV1/MissingNextVersionClass.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasohlund/APIComparer/HEAD/ExampleV1/MissingNextVersionClass.cs -------------------------------------------------------------------------------- /ExampleV1/MissingNextVersionClassWithRemoveInNextMajor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasohlund/APIComparer/HEAD/ExampleV1/MissingNextVersionClassWithRemoveInNextMajor.cs -------------------------------------------------------------------------------- /ExampleV1/PublicClass.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasohlund/APIComparer/HEAD/ExampleV1/PublicClass.cs -------------------------------------------------------------------------------- /ExampleV2/ClassObsoletedInBothVersions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasohlund/APIComparer/HEAD/ExampleV2/ClassObsoletedInBothVersions.cs -------------------------------------------------------------------------------- /ExampleV2/ClassObsoletedWithErrorShouldNotBeIncludedIfInternalized.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasohlund/APIComparer/HEAD/ExampleV2/ClassObsoletedWithErrorShouldNotBeIncludedIfInternalized.cs -------------------------------------------------------------------------------- /ExampleV2/ClassObsoletedWithErrorShouldNotBeIncludedIfStillObsolete.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasohlund/APIComparer/HEAD/ExampleV2/ClassObsoletedWithErrorShouldNotBeIncludedIfStillObsolete.cs -------------------------------------------------------------------------------- /ExampleV2/ClassObsoletedWithWarnShouldBeIncludedIfInternalized.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasohlund/APIComparer/HEAD/ExampleV2/ClassObsoletedWithWarnShouldBeIncludedIfInternalized.cs -------------------------------------------------------------------------------- /ExampleV2/ClassToBeObsoletedWithErrorInNextVersion.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasohlund/APIComparer/HEAD/ExampleV2/ClassToBeObsoletedWithErrorInNextVersion.cs -------------------------------------------------------------------------------- /ExampleV2/ClassToBeObsoletedWithWarnInNextVersion.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasohlund/APIComparer/HEAD/ExampleV2/ClassToBeObsoletedWithWarnInNextVersion.cs -------------------------------------------------------------------------------- /ExampleV2/ClassWithFieldToRemovedInNextMajor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasohlund/APIComparer/HEAD/ExampleV2/ClassWithFieldToRemovedInNextMajor.cs -------------------------------------------------------------------------------- /ExampleV2/ClassWithMembersObsoletedInBothVersionsShouldNotBeIncluded.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasohlund/APIComparer/HEAD/ExampleV2/ClassWithMembersObsoletedInBothVersionsShouldNotBeIncluded.cs -------------------------------------------------------------------------------- /ExampleV2/ClassWithMembersToBeObsoletedWithErrorInNextVersion.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasohlund/APIComparer/HEAD/ExampleV2/ClassWithMembersToBeObsoletedWithErrorInNextVersion.cs -------------------------------------------------------------------------------- /ExampleV2/ClassWithMembersToBeObsoletedWithWarnInNextVersion.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasohlund/APIComparer/HEAD/ExampleV2/ClassWithMembersToBeObsoletedWithWarnInNextVersion.cs -------------------------------------------------------------------------------- /ExampleV2/ClassWithPrivateMembersRemovedShouldNotBeIncluded.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasohlund/APIComparer/HEAD/ExampleV2/ClassWithPrivateMembersRemovedShouldNotBeIncluded.cs -------------------------------------------------------------------------------- /ExampleV2/ClassWithReadOnlyPropToBeRemovedInNextMajor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasohlund/APIComparer/HEAD/ExampleV2/ClassWithReadOnlyPropToBeRemovedInNextMajor.cs -------------------------------------------------------------------------------- /ExampleV2/EnumWithMemberToBeChangedInNextVersion.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasohlund/APIComparer/HEAD/ExampleV2/EnumWithMemberToBeChangedInNextVersion.cs -------------------------------------------------------------------------------- /ExampleV2/ExampleV2.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasohlund/APIComparer/HEAD/ExampleV2/ExampleV2.csproj -------------------------------------------------------------------------------- /ExampleV2/IMethodChangesParametersNextVersion.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasohlund/APIComparer/HEAD/ExampleV2/IMethodChangesParametersNextVersion.cs -------------------------------------------------------------------------------- /ExampleV2/InternalNextVersionClass.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasohlund/APIComparer/HEAD/ExampleV2/InternalNextVersionClass.cs -------------------------------------------------------------------------------- /ExampleV2/MemberInternalNextVersion.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasohlund/APIComparer/HEAD/ExampleV2/MemberInternalNextVersion.cs -------------------------------------------------------------------------------- /ExampleV2/MemberMissingNextVersion.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasohlund/APIComparer/HEAD/ExampleV2/MemberMissingNextVersion.cs -------------------------------------------------------------------------------- /ExampleV2/MemberObsoleteNextVersion.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasohlund/APIComparer/HEAD/ExampleV2/MemberObsoleteNextVersion.cs -------------------------------------------------------------------------------- /ExampleV2/PublicClass.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasohlund/APIComparer/HEAD/ExampleV2/PublicClass.cs -------------------------------------------------------------------------------- /GitVersion.yml: -------------------------------------------------------------------------------- 1 | mode: Mainline -------------------------------------------------------------------------------- /License.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasohlund/APIComparer/HEAD/License.txt -------------------------------------------------------------------------------- /Octopus/ApiComparer.Website.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasohlund/APIComparer/HEAD/Octopus/ApiComparer.Website.nuspec -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasohlund/APIComparer/HEAD/README.md --------------------------------------------------------------------------------