Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/Directory.Packages.props
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@
<ManagePackageVersionsCentrally>true</ManagePackageVersionsCentrally>
</PropertyGroup>
<ItemGroup>
<PackageVersion Include="IvAt.CommonFramework" Version="2.0.0" />
<PackageVersion Include="IvAt.CommonFramework.DependencyInjection" Version="2.0.0" />
<PackageVersion Include="IvAt.CommonFramework" Version="2.0.1" />
<PackageVersion Include="IvAt.CommonFramework.DependencyInjection" Version="2.0.1" />
<PackageVersion Include="Microsoft.EntityFrameworkCore" Version="10.0.1" />
<PackageVersion Include="Microsoft.EntityFrameworkCore.Sqlite" Version="10.0.1" />
</ItemGroup>
Expand Down
5 changes: 4 additions & 1 deletion src/GenericQueryable.IntegrationTests/MainTests.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
using GenericQueryable.EntityFramework;
using CommonFramework.DependencyInjection;
using GenericQueryable.EntityFramework;
using GenericQueryable.IntegrationTests.Domain;

using Microsoft.EntityFrameworkCore;
Expand All @@ -20,6 +21,8 @@ public async Task DefaultGenericQueryable_InvokeToListAsync_MethodInvoked()
.UseGenericQueryable(),
contextLifetime: ServiceLifetime.Singleton,
optionsLifetime: ServiceLifetime.Singleton)
.AddValidator<DuplicateServiceUsageValidator>()
.Validate()
.BuildServiceProvider(new ServiceProviderOptions { ValidateOnBuild = true, ValidateScopes = true });

var dbContext = sp.GetRequiredService<TestDbContext>();
Expand Down
2 changes: 1 addition & 1 deletion src/__SolutionItems/CommonAssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
[assembly: AssemblyProduct("GenericQueryable")]
[assembly: AssemblyCompany("IvAt")]

[assembly: AssemblyVersion("2.0.0.0")]
[assembly: AssemblyVersion("2.0.1.0")]
[assembly: AssemblyInformationalVersion("changes at build")]

#if DEBUG
Expand Down
Loading