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
1 change: 0 additions & 1 deletion Directory.Packages.props
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,6 @@
<PackageVersion Include="Microsoft.OData.Core" Version="$(ODataVersion)" />
<PackageVersion Include="Microsoft.SourceLink.GitHub" Version="10.0.103" />
<PackageVersion Include="Microsoft.Spatial" Version="8.4.3" />
<PackageVersion Include="MicrosoftExtensions.Logging.Xunit" Version="1.2.1" />
<PackageVersion Include="Newtonsoft.Json" Version="13.0.4" />
<PackageVersion Include="MongoDB.Driver" Version="3.6.0" />
<PackageVersion Include="NSubstitute" Version="5.3.0" />
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,5 @@
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
<PrivateAssets>all</PrivateAssets>
</PackageReference>
<PackageReference Include="MicrosoftExtensions.Logging.Xunit"/>
</ItemGroup>
</Project>
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@
using CommunityToolkit.Datasync.TestCommon.Databases;
using Microsoft.EntityFrameworkCore;
using Microsoft.Extensions.Logging;
using Microsoft.Extensions.Logging.Xunit;
using Xunit.Abstractions;

namespace CommunityToolkit.Datasync.Server.Automapper.Test;
Expand All @@ -31,7 +30,7 @@ public class MappedTableRepository_Tests : RepositoryTests<MovieDto>, IDisposabl
public MappedTableRepository_Tests(ITestOutputHelper output)
{
this.output = output;
this.loggerFactory = new LoggerFactory([ new XunitLoggerProvider(this.output) ]);
this.loggerFactory = new TestLoggerFactory(this.output);
MapperConfiguration config = new(c => c.AddProfile(new MapperProfile()), this.loggerFactory);
this.mapper = config.CreateMapper();
}
Expand Down
Loading