-
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.
fix: prevent deadlock in OutboxWorker
- Loading branch information
1 parent
a59f3ec
commit 37f06ae
Showing
8 changed files
with
165 additions
and
13 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 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
34 changes: 34 additions & 0 deletions
34
src/Silverback.Storage.Memory/Silverback.Storage.Memory.csproj
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,34 @@ | ||
<Project Sdk="Microsoft.NET.Sdk"> | ||
|
||
<PropertyGroup> | ||
<TargetFrameworks>$(DefaultTargetFrameworks)</TargetFrameworks> | ||
<RootNamespace>$(RootNamespace)</RootNamespace> | ||
<Version>$(BaseVersion)</Version> | ||
<Authors>$(Authors)</Authors> | ||
<Company>$(Company)</Company> | ||
<PackageLicenseExpression>$(License)</PackageLicenseExpression> | ||
<Copyright>$(Copyright)</Copyright> | ||
<PackageProjectUrl>$(ProjectUrl)</PackageProjectUrl> | ||
<RepositoryUrl>$(RepositoryUrl)</RepositoryUrl> | ||
<RepositoryType>$(RepositoryType)</RepositoryType> | ||
<GeneratePackageOnBuild>${GeneratePackageOnBuild}</GeneratePackageOnBuild> | ||
<Description>$(Description) This package contains an implementation of Silverback.Storage that stores the data in memory.</Description> | ||
<PackageIconUrl>$(IconUrl)</PackageIconUrl> | ||
<PackageTags>$(Tags)</PackageTags> | ||
<LangVersion>$(LangVersion)</LangVersion> | ||
<EnforceCodeStyleInBuild>true</EnforceCodeStyleInBuild> | ||
<PackageId>Silverback.Storage.Memory</PackageId> | ||
<Product>Silverback.Storage.Memory</Product> | ||
</PropertyGroup> | ||
|
||
<ItemGroup> | ||
<ProjectReference Include="..\Silverback.Core\Silverback.Core.csproj" /> | ||
<ProjectReference Include="..\Silverback.Integration\Silverback.Integration.csproj" /> | ||
<ProjectReference Include="..\Silverback.Integration.Kafka\Silverback.Integration.Kafka.csproj" /> | ||
</ItemGroup> | ||
|
||
<ItemGroup> | ||
<PackageReference Update="Microsoft.SourceLink.GitHub" Version="1.1.1" /> | ||
</ItemGroup> | ||
|
||
</Project> |
36 changes: 36 additions & 0 deletions
36
src/Silverback.Storage.Sqlite/Silverback.Storage.Sqlite.csproj
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,36 @@ | ||
<Project Sdk="Microsoft.NET.Sdk"> | ||
|
||
<PropertyGroup> | ||
<TargetFrameworks>$(DefaultTargetFrameworks)</TargetFrameworks> | ||
<RootNamespace>$(RootNamespace)</RootNamespace> | ||
<Version>$(BaseVersion)</Version> | ||
<Authors>$(Authors)</Authors> | ||
<Company>$(Company)</Company> | ||
<PackageLicenseExpression>$(License)</PackageLicenseExpression> | ||
<Copyright>$(Copyright)</Copyright> | ||
<PackageProjectUrl>$(ProjectUrl)</PackageProjectUrl> | ||
<RepositoryUrl>$(RepositoryUrl)</RepositoryUrl> | ||
<RepositoryType>$(RepositoryType)</RepositoryType> | ||
<GeneratePackageOnBuild>${GeneratePackageOnBuild}</GeneratePackageOnBuild> | ||
<Description>$(Description) This package contains an implementation of Silverback.Storage that stores the data in Sqlite.</Description> | ||
<PackageIconUrl>$(IconUrl)</PackageIconUrl> | ||
<PackageTags>$(Tags)</PackageTags> | ||
<LangVersion>$(LangVersion)</LangVersion> | ||
<EnforceCodeStyleInBuild>true</EnforceCodeStyleInBuild> | ||
<PackageId>Silverback.Storage.Sqlite</PackageId> | ||
<Product>Silverback.Storage.Sqlite</Product> | ||
</PropertyGroup> | ||
|
||
<ItemGroup> | ||
<ProjectReference Include="..\Silverback.Core\Silverback.Core.csproj" /> | ||
<ProjectReference Include="..\Silverback.Integration\Silverback.Integration.csproj" /> | ||
<ProjectReference Include="..\Silverback.Storage.Memory\Silverback.Storage.Memory.csproj" /> | ||
</ItemGroup> | ||
|
||
<ItemGroup> | ||
<PackageReference Include="Microsoft.Data.Sqlite" Version="7.0.1" /> | ||
<PackageReference Include="System.Linq.Async" Version="6.0.1" /> | ||
<PackageReference Update="Microsoft.SourceLink.GitHub" Version="1.1.1" /> | ||
</ItemGroup> | ||
|
||
</Project> |
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