-
Notifications
You must be signed in to change notification settings - Fork 40
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Upgrade referenced packages * Added Silverback.EventSourcing / Silverback.EventSourcing.EntityFrameworkCore * Upgrade to Confluent.Kafka 1.0.0 * New icon * Fixed cast issue in QueryPublisher * OutboundQueueWorker scheduler * Testing * Improve error policies (Publish) * Fix disposed IServiceProvider issue in OutboundQueueWorker * Fix AddBackgroundTaskManager ambiguity * Small refactoring and unit tests for ReflectionHelper * OutboundQueueWorkerService leveraging IHostedService * Upgrade to Confluent.Kafka 1.0.1 * Set up CI with Azure Pipelines [skip ci] * Update azure-pipelines.yml for Azure Pipelines Enabled tests * Update azure-pipelines.yml for Azure Pipelines (#29) Added tests * Update README.md Add azure pipeline status badge * Improving logs * Add code coverage to azure pipeline * Enable all tests on CI pipeline * Topic/update low risk nu get packages (#27) * Fix some csproj formatting issues * Update FluentAssertion, Microsoft.NET.Test.Sdk, Microsoft.EntityFrameworkCore.InMemory,NLog and NSubstitute * Improved message unwrapping * Added some summaries * Fix issue #24 - IPublisher couldn't be resolved when applying configuration because it is scoped * Update azure-pipelines.yml for Azure Pipelines Trigger develop * Publish code coverage * Try to fix coverage report * Exclude xunit from code coverage * Feature/deserializer error handling (#30) * Refactored Silverback.Integration to better handle deserializer errors. * Avoid double serialization of byte array (useful when moving a not deserialized message) * Extended Silverback.Examples to handle new policies * Log deserialization errors * Fix duplicated failed attempts header * Make MaxFailedAttempts stack when chained * Improve logs
- Loading branch information
1 parent
3ff1367
commit 293ea5c
Showing
271 changed files
with
6,252 additions
and
1,399 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
# ASP.NET Core | ||
# Build and test ASP.NET Core projects targeting .NET Core. | ||
# Add steps that run tests, create a NuGet package, deploy, and more: | ||
# https://docs.microsoft.com/azure/devops/pipelines/languages/dotnet-core | ||
|
||
trigger: | ||
- master | ||
- develop | ||
|
||
pool: | ||
vmImage: 'ubuntu-latest' | ||
|
||
variables: | ||
buildConfiguration: 'Release' | ||
|
||
steps: | ||
- script: dotnet build Silverback.sln --configuration $(buildConfiguration) | ||
displayName: 'dotnet build $(buildConfiguration)' | ||
- script: dotnet test Silverback.sln --logger trx --collect "Code coverage" --filter CI!=false /p:CollectCoverage=true /p:CoverletOutputFormat=cobertura /p:Exclude="[xunit.*]*" | ||
displayName: 'dotnet test' | ||
- task: PublishTestResults@2 | ||
inputs: | ||
testRunner: VSTest | ||
testResultsFiles: '**/*.trx' | ||
- task: PublishCodeCoverageResults@1 | ||
inputs: | ||
summaryFileLocation: $(System.DefaultWorkingDirectory)/**/coverage.cobertura.xml | ||
codecoverageTool: cobertura |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
78 changes: 0 additions & 78 deletions
78
samples/Examples/src/Silverback.Examples.Common/JobScheduler.cs
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.