Skip to content

Commit

Permalink
Fix Microsoft.Bcl.AsyncInterfaces conflict on sample and test (#508)
Browse files Browse the repository at this point in the history
  • Loading branch information
Arkatufus authored Jan 20, 2025
1 parent e03f42b commit c74a620
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@

<PackageReference Include="System.Data.SQLite" />

<PackageReference Include="Microsoft.Bcl.AsyncInterfaces" />
<PackageReference Include="Microsoft.Extensions.Hosting" />
<PackageReference Include="xunit" />
<PackageReference Include="xunit.runner.visualstudio">
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@
<ItemGroup>
<PackageReference Include="System.CommandLine" />
<PackageReference Include="Microsoft.Data.SqlClient" />
<PackageReference Include="Microsoft.Bcl.AsyncInterfaces" />
</ItemGroup>

<ItemGroup>
Expand Down
4 changes: 3 additions & 1 deletion src/Directory.Packages.props
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
<FluentMigratorVersion>5.2.0</FluentMigratorVersion>
<SqliteVersion>1.0.118</SqliteVersion>
<MicrosoftSqliteVersion>8.0.7</MicrosoftSqliteVersion>
<MicrosoftExtensionsVersion>[8.0.0, )</MicrosoftExtensionsVersion>
</PropertyGroup>
<!-- Akka dependencies -->
<ItemGroup>
Expand Down Expand Up @@ -75,7 +76,8 @@
<PackageVersion Include="xunit" Version="2.8.1" />
<PackageVersion Include="xunit.runner.visualstudio" Version="2.8.2" />
<PackageVersion Include="coverlet.collector" Version="6.0.2" />
<PackageVersion Include="Microsoft.Extensions.Hosting" Version="6.0.0" />
<PackageVersion Include="Microsoft.Extensions.Hosting" Version="$(MicrosoftExtensionsVersion)" />
<PackageVersion Include="Microsoft.Bcl.AsyncInterfaces" Version="$(MicrosoftExtensionsVersion)" />
</ItemGroup>
<!-- SourceLink support for all Akka.NET projects -->
<ItemGroup>
Expand Down
1 change: 1 addition & 0 deletions src/Examples/HoconConfiguration/HoconConfiguration.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@

<ItemGroup>
<PackageReference Include="Microsoft.Data.Sqlite" />
<PackageReference Include="Microsoft.Bcl.AsyncInterfaces" />
</ItemGroup>

<ItemGroup>
Expand Down

0 comments on commit c74a620

Please sign in to comment.