Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/jellyfin/commit/82f30a35dbbb52dc069d027c9a3af7fc3bbb3100
You should set ROOT_URL correctly, otherwise the web may not work correctly.
29 changed files with
103 additions and
57 deletions
@ -32,10 +32,10 @@
<PackageReference Include= "Microsoft.AspNetCore.ResponseCompression" Version= "2.2.0" />
<PackageReference Include= "Microsoft.AspNetCore.Server.Kestrel" Version= "2.2.0" />
<PackageReference Include= "Microsoft.AspNetCore.WebSockets" Version= "2.2.1" />
<PackageReference Include= "Microsoft.Extensions.DependencyInjection" Version= "3.1. 6 " />
<PackageReference Include= "Microsoft.Extensions.Caching.Memory" Version= "3.1. 6 " />
<PackageReference Include= "Microsoft.Extensions.Configuration.Abstractions" Version= "3.1. 6 " />
<PackageReference Include= "Microsoft.Extensions.Hosting.Abstractions" Version= "3.1. 6 " />
<PackageReference Include= "Microsoft.Extensions.DependencyInjection" Version= "3.1. 7 " />
<PackageReference Include= "Microsoft.Extensions.Caching.Memory" Version= "3.1. 7 " />
<PackageReference Include= "Microsoft.Extensions.Configuration.Abstractions" Version= "3.1. 7 " />
<PackageReference Include= "Microsoft.Extensions.Hosting.Abstractions" Version= "3.1. 7 " />
<PackageReference Include= "Mono.Nat" Version= "2.0.2" />
<PackageReference Include= "prometheus-net.DotNetRuntime" Version= "3.4.0" />
<PackageReference Include= "ServiceStack.Text.Core" Version= "5.9.2" />
@ -234,7 +234,7 @@ namespace Jellyfin.Api.Controllers
. First ( ) ;
}
var list = primaryVersion . LinkedAlternateVersions . ToList ( ) ;
var alternateVersionsOfPrimary = primaryVersion . LinkedAlternateVersions . ToList ( ) ;
foreach ( var item in items . Where ( i = > i . Id ! = primaryVersion . Id ) )
{
@ -242,17 +242,20 @@ namespace Jellyfin.Api.Controllers
await item . UpdateToRepositoryAsync ( ItemUpdateType . MetadataEdit , CancellationToken . None ) . ConfigureAwait ( false ) ;
list . Add ( new LinkedChild
if ( ! alternateVersionsOfPrimary . Any ( i = > string . Equals ( i . Path , item . Path , StringComparison . OrdinalIgnoreCase ) ) )
{
Path = item . Path ,
ItemId = item . Id
} ) ;
alternateVersionsOfPrimary . Add ( new LinkedChild
{
Path = item . Path ,
ItemId = item . Id
} ) ;
}
foreach ( var linkedItem in item . LinkedAlternateVersions )
{
if ( ! list . Any ( i = > string . Equals ( i . Path , linkedItem . Path , StringComparison . OrdinalIgnoreCase ) ) )
if ( ! alternateVersionsOfPrimary . Any ( i = > string . Equals ( i . Path , linkedItem . Path , StringComparison . OrdinalIgnoreCase ) ) )
{
list . Add ( linkedItem ) ;
alternateVersionsOfPrimary . Add ( linkedItem ) ;
}
}
@ -263,7 +266,7 @@ namespace Jellyfin.Api.Controllers
}
}
primaryVersion . LinkedAlternateVersions = list . ToArray ( ) ;
primaryVersion . LinkedAlternateVersions = alternateVersionsOfPrimary . ToArray ( ) ;
await primaryVersion . UpdateToRepositoryAsync ( ItemUpdateType . MetadataEdit , CancellationToken . None ) . ConfigureAwait ( false ) ;
return NoContent ( ) ;
}
@ -14,9 +14,9 @@
<ItemGroup >
<PackageReference Include= "Microsoft.AspNetCore.Authentication" Version= "2.2.0" />
<PackageReference Include= "Microsoft.AspNetCore.Authorization" Version= "3.1. 6 " />
<PackageReference Include= "Microsoft.AspNetCore.Authorization" Version= "3.1. 7 " />
<PackageReference Include= "Microsoft.AspNetCore.Mvc" Version= "2.2.0" />
<PackageReference Include= "Microsoft.Extensions.Http" Version= "3.1. 6 " />
<PackageReference Include= "Microsoft.Extensions.Http" Version= "3.1. 7 " />
<PackageReference Include= "Swashbuckle.AspNetCore" Version= "5.5.1" />
<PackageReference Include= "Swashbuckle.AspNetCore.ReDoc" Version= "5.5.1" />
</ItemGroup>
@ -41,8 +41,8 @@
</ItemGroup>
<ItemGroup >
<PackageReference Include= "Microsoft.EntityFrameworkCore.Relational" Version= "3.1. 6 " />
<PackageReference Include= "Microsoft.EntityFrameworkCore.Sqlite" Version= "3.1. 6 " />
<PackageReference Include= "Microsoft.EntityFrameworkCore.Relational" Version= "3.1. 7 " />
<PackageReference Include= "Microsoft.EntityFrameworkCore.Sqlite" Version= "3.1. 7 " />
</ItemGroup>
</Project>
@ -24,11 +24,11 @@
</ItemGroup>
<ItemGroup >
<PackageReference Include= "Microsoft.EntityFrameworkCore.Design" Version= "3.1. 6 ">
<PackageReference Include= "Microsoft.EntityFrameworkCore.Design" Version= "3.1. 7 ">
<PrivateAssets > all</PrivateAssets>
<IncludeAssets > runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
<PackageReference Include= "Microsoft.EntityFrameworkCore.Tools" Version= "3.1. 6 ">
<PackageReference Include= "Microsoft.EntityFrameworkCore.Tools" Version= "3.1. 7 ">
<PrivateAssets > all</PrivateAssets>
<IncludeAssets > runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
@ -0,0 +1,36 @@
using System.Threading ;
using System.Threading.Tasks ;
using Jellyfin.Server.Implementations ;
using Microsoft.Extensions.Diagnostics.HealthChecks ;
namespace Jellyfin.Server.HealthChecks
{
/// <summary>
/// Checks connectivity to the database.
/// </summary>
public class JellyfinDbHealthCheck : IHealthCheck
{
private readonly JellyfinDbProvider _dbProvider ;
/// <summary>
/// Initializes a new instance of the <see cref="JellyfinDbHealthCheck"/> class.
/// </summary>
/// <param name="dbProvider">The jellyfin db provider.</param>
public JellyfinDbHealthCheck ( JellyfinDbProvider dbProvider )
{
_dbProvider = dbProvider ;
}
/// <inheritdoc />
public async Task < HealthCheckResult > CheckHealthAsync ( HealthCheckContext context , CancellationToken cancellationToken = default )
{
await using var jellyfinDb = _dbProvider . CreateContext ( ) ;
if ( await jellyfinDb . Database . CanConnectAsync ( cancellationToken ) . ConfigureAwait ( false ) )
{
return HealthCheckResult . Healthy ( "Database connection successful." ) ;
}
return HealthCheckResult . Unhealthy ( "Unable to connect to the database." ) ;
}
}
}
@ -41,8 +41,9 @@
<ItemGroup >
<PackageReference Include= "CommandLineParser" Version= "2.8.0" />
<PackageReference Include= "Microsoft.Extensions.Configuration.EnvironmentVariables" Version= "3.1.6" />
<PackageReference Include= "Microsoft.Extensions.Configuration.Json" Version= "3.1.6" />
<PackageReference Include= "Microsoft.Extensions.Configuration.EnvironmentVariables" Version= "3.1.7" />
<PackageReference Include= "Microsoft.Extensions.Configuration.Json" Version= "3.1.7" />
<PackageReference Include= "Microsoft.Extensions.Diagnostics.HealthChecks" Version= "3.1.7" />
<PackageReference Include= "prometheus-net" Version= "3.6.0" />
<PackageReference Include= "prometheus-net.AspNetCore" Version= "3.6.0" />
<PackageReference Include= "Serilog.AspNetCore" Version= "3.4.0" />
@ -3,9 +3,9 @@ using System.ComponentModel;
using System.Net.Http.Headers ;
using Jellyfin.Api.TypeConverters ;
using Jellyfin.Server.Extensions ;
using Jellyfin.Server.HealthChecks ;
using Jellyfin.Server.Middleware ;
using Jellyfin.Server.Models ;
using MediaBrowser.Common ;
using MediaBrowser.Common.Net ;
using MediaBrowser.Controller ;
using MediaBrowser.Controller.Configuration ;
@ -77,6 +77,9 @@ namespace Jellyfin.Server
c . DefaultRequestHeaders . UserAgent . Add ( new ProductInfoHeaderValue ( $"({_serverApplicationHost.ApplicationUserAgentAddress})" ) ) ;
} )
. ConfigurePrimaryHttpMessageHandler ( x = > new DefaultHttpClientHandler ( ) ) ;
services . AddHealthChecks ( )
. AddCheck < JellyfinDbHealthCheck > ( "JellyfinDb" ) ;
}
/// <summary>
@ -132,6 +135,8 @@ namespace Jellyfin.Server
{
endpoints . MapMetrics ( _serverConfigurationManager . Configuration . BaseUrl . TrimStart ( '/' ) + "/metrics" ) ;
}
endpoints . MapHealthChecks ( _serverConfigurationManager . Configuration . BaseUrl . TrimStart ( '/' ) + "/health" ) ;
} ) ;
// Add type descriptor for legacy datetime parsing.
@ -18,9 +18,9 @@
</ItemGroup>
<ItemGroup >
<PackageReference Include= "Microsoft.Extensions.Configuration.Abstractions" Version= "3.1.7" />
<PackageReference Include= "Microsoft.Extensions.DependencyInjection.Abstractions" Version= "3.1.7" />
<PackageReference Include= "Microsoft.SourceLink.GitHub" Version= "1.0.0" PrivateAssets= "All" />
<PackageReference Include= "Microsoft.Extensions.Configuration.Abstractions" Version= "3.1.6" />
<PackageReference Include= "Microsoft.Extensions.DependencyInjection.Abstractions" Version= "3.1.6" />
<PackageReference Include= "Microsoft.Net.Http.Headers" Version= "2.2.8" />
</ItemGroup>
@ -14,9 +14,9 @@
</PropertyGroup>
<ItemGroup >
<PackageReference Include= "Microsoft.Extensions.Configuration.Abstractions" Version= "3.1.7" />
<PackageReference Include= "Microsoft.Extensions.Configuration.Binder" Version= "3.1.7" />
<PackageReference Include= "Microsoft.SourceLink.GitHub" Version= "1.0.0" PrivateAssets= "All" />
<PackageReference Include= "Microsoft.Extensions.Configuration.Abstractions" Version= "3.1.6" />
<PackageReference Include= "Microsoft.Extensions.Configuration.Binder" Version= "3.1.6" />
</ItemGroup>
<ItemGroup >
@ -34,7 +34,7 @@
<ItemGroup >
<PackageReference Include= "Microsoft.SourceLink.GitHub" Version= "1.0.0" PrivateAssets= "All" />
<PackageReference Include= "Microsoft.AspNetCore.Http.Abstractions" Version= "2.2.0" />
<PackageReference Include= "Microsoft.Extensions.Logging.Abstractions" Version= "3.1. 6 " />
<PackageReference Include= "Microsoft.Extensions.Logging.Abstractions" Version= "3.1. 7 " />
<PackageReference Include= "System.Globalization" Version= "4.3.0" />
<PackageReference Include= "System.Text.Json" Version= "5.0.0-preview.8.20407.11" />
</ItemGroup>
@ -16,9 +16,9 @@
</ItemGroup>
<ItemGroup >
<PackageReference Include= "Microsoft.Extensions.Configuration.Abstractions" Version= "3.1. 6 " />
<PackageReference Include= "Microsoft.Extensions.Caching.Abstractions" Version= "3.1. 6 " />
<PackageReference Include= "Microsoft.Extensions.Http" Version= "3.1. 6 " />
<PackageReference Include= "Microsoft.Extensions.Configuration.Abstractions" Version= "3.1. 7 " />
<PackageReference Include= "Microsoft.Extensions.Caching.Abstractions" Version= "3.1. 7 " />
<PackageReference Include= "Microsoft.Extensions.Http" Version= "3.1. 7 " />
<PackageReference Include= "OptimizedPriorityQueue" Version= "4.2.0" />
<PackageReference Include= "PlaylistsNET" Version= "1.1.2" />
<PackageReference Include= "TvDbSharper" Version= "3.2.1" />
@ -16,7 +16,7 @@ RUN apt-get update \
# Install dotnet repository
# https://dotnet.microsoft.com/download/linux-package-manager/debian9/sdk-current
RUN wget https://download.visualstudio.microsoft.com/download/pr/c1a30ceb-adc2-4244-b24a-06ca29bb1ee9/6df5d856ff1b3e910d283f89690b7cae/dotnet-sdk-3.1.302 -linux-x64.tar.gz -O dotnet-sdk.tar.gz \
RUN wget https://download.visualstudio.microsoft.com/download/pr/4f9b8a64-5e09-456c-a087-527cfc8b4cd2/15e14ec06eab947432de139f172f7a98/dotnet-sdk-3.1.401 -linux-x64.tar.gz -O dotnet-sdk.tar.gz \
&& mkdir -p dotnet-sdk \
&& tar -xzf dotnet-sdk.tar.gz -C dotnet-sdk \
&& ln -s $( pwd ) /dotnet-sdk/dotnet /usr/bin/dotnet
@ -16,7 +16,7 @@ RUN apt-get update \
# Install dotnet repository
# https://dotnet.microsoft.com/download/linux-package-manager/debian9/sdk-current
RUN wget https://download.visualstudio.microsoft.com/download/pr/c1a30ceb-adc2-4244-b24a-06ca29bb1ee9/6df5d856ff1b3e910d283f89690b7cae/dotnet-sdk-3.1.302 -linux-x64.tar.gz -O dotnet-sdk.tar.gz \
RUN wget https://download.visualstudio.microsoft.com/download/pr/4f9b8a64-5e09-456c-a087-527cfc8b4cd2/15e14ec06eab947432de139f172f7a98/dotnet-sdk-3.1.401 -linux-x64.tar.gz -O dotnet-sdk.tar.gz \
&& mkdir -p dotnet-sdk \
&& tar -xzf dotnet-sdk.tar.gz -C dotnet-sdk \
&& ln -s $( pwd ) /dotnet-sdk/dotnet /usr/bin/dotnet
@ -16,7 +16,7 @@ RUN apt-get update \
# Install dotnet repository
# https://dotnet.microsoft.com/download/linux-package-manager/debian9/sdk-current
RUN wget https://download.visualstudio.microsoft.com/download/pr/c1a30ceb-adc2-4244-b24a-06ca29bb1ee9/6df5d856ff1b3e910d283f89690b7cae/dotnet-sdk-3.1.302 -linux-x64.tar.gz -O dotnet-sdk.tar.gz \
RUN wget https://download.visualstudio.microsoft.com/download/pr/4f9b8a64-5e09-456c-a087-527cfc8b4cd2/15e14ec06eab947432de139f172f7a98/dotnet-sdk-3.1.401 -linux-x64.tar.gz -O dotnet-sdk.tar.gz \
&& mkdir -p dotnet-sdk \
&& tar -xzf dotnet-sdk.tar.gz -C dotnet-sdk \
&& ln -s $( pwd ) /dotnet-sdk/dotnet /usr/bin/dotnet
@ -16,7 +16,7 @@ RUN apt-get update \
# Install dotnet repository
# https://dotnet.microsoft.com/download/linux-package-manager/debian9/sdk-current
RUN wget https://download.visualstudio.microsoft.com/download/pr/c1a30ceb-adc2-4244-b24a-06ca29bb1ee9/6df5d856ff1b3e910d283f89690b7cae/dotnet-sdk-3.1.302 -linux-x64.tar.gz -O dotnet-sdk.tar.gz \
RUN wget https://download.visualstudio.microsoft.com/download/pr/4f9b8a64-5e09-456c-a087-527cfc8b4cd2/15e14ec06eab947432de139f172f7a98/dotnet-sdk-3.1.401 -linux-x64.tar.gz -O dotnet-sdk.tar.gz \
&& mkdir -p dotnet-sdk \
&& tar -xzf dotnet-sdk.tar.gz -C dotnet-sdk \
&& ln -s $( pwd ) /dotnet-sdk/dotnet /usr/bin/dotnet
@ -16,7 +16,7 @@ RUN apt-get update \
# Install dotnet repository
# https://dotnet.microsoft.com/download/linux-package-manager/debian9/sdk-current
RUN wget https://download.visualstudio.microsoft.com/download/pr/c1a30ceb-adc2-4244-b24a-06ca29bb1ee9/6df5d856ff1b3e910d283f89690b7cae/dotnet-sdk-3.1.302 -linux-x64.tar.gz -O dotnet-sdk.tar.gz \
RUN wget https://download.visualstudio.microsoft.com/download/pr/4f9b8a64-5e09-456c-a087-527cfc8b4cd2/15e14ec06eab947432de139f172f7a98/dotnet-sdk-3.1.401 -linux-x64.tar.gz -O dotnet-sdk.tar.gz \
&& mkdir -p dotnet-sdk \
&& tar -xzf dotnet-sdk.tar.gz -C dotnet-sdk \
&& ln -s $( pwd ) /dotnet-sdk/dotnet /usr/bin/dotnet
@ -15,7 +15,7 @@ RUN apt-get update \
# Install dotnet repository
# https://dotnet.microsoft.com/download/linux-package-manager/debian9/sdk-current
RUN wget https://download.visualstudio.microsoft.com/download/pr/c1a30ceb-adc2-4244-b24a-06ca29bb1ee9/6df5d856ff1b3e910d283f89690b7cae/dotnet-sdk-3.1.302 -linux-x64.tar.gz -O dotnet-sdk.tar.gz \
RUN wget https://download.visualstudio.microsoft.com/download/pr/4f9b8a64-5e09-456c-a087-527cfc8b4cd2/15e14ec06eab947432de139f172f7a98/dotnet-sdk-3.1.401 -linux-x64.tar.gz -O dotnet-sdk.tar.gz \
&& mkdir -p dotnet-sdk \
&& tar -xzf dotnet-sdk.tar.gz -C dotnet-sdk \
&& ln -s $( pwd ) /dotnet-sdk/dotnet /usr/bin/dotnet
@ -16,7 +16,7 @@ RUN apt-get update \
# Install dotnet repository
# https://dotnet.microsoft.com/download/linux-package-manager/debian9/sdk-current
RUN wget https://download.visualstudio.microsoft.com/download/pr/c1a30ceb-adc2-4244-b24a-06ca29bb1ee9/6df5d856ff1b3e910d283f89690b7cae/dotnet-sdk-3.1.302 -linux-x64.tar.gz -O dotnet-sdk.tar.gz \
RUN wget https://download.visualstudio.microsoft.com/download/pr/4f9b8a64-5e09-456c-a087-527cfc8b4cd2/15e14ec06eab947432de139f172f7a98/dotnet-sdk-3.1.401 -linux-x64.tar.gz -O dotnet-sdk.tar.gz \
&& mkdir -p dotnet-sdk \
&& tar -xzf dotnet-sdk.tar.gz -C dotnet-sdk \
&& ln -s $( pwd ) /dotnet-sdk/dotnet /usr/bin/dotnet
@ -16,7 +16,7 @@ RUN apt-get update \
# Install dotnet repository
# https://dotnet.microsoft.com/download/linux-package-manager/debian9/sdk-current
RUN wget https://download.visualstudio.microsoft.com/download/pr/c1a30ceb-adc2-4244-b24a-06ca29bb1ee9/6df5d856ff1b3e910d283f89690b7cae/dotnet-sdk-3.1.302 -linux-x64.tar.gz -O dotnet-sdk.tar.gz \
RUN wget https://download.visualstudio.microsoft.com/download/pr/4f9b8a64-5e09-456c-a087-527cfc8b4cd2/15e14ec06eab947432de139f172f7a98/dotnet-sdk-3.1.401 -linux-x64.tar.gz -O dotnet-sdk.tar.gz \
&& mkdir -p dotnet-sdk \
&& tar -xzf dotnet-sdk.tar.gz -C dotnet-sdk \
&& ln -s $( pwd ) /dotnet-sdk/dotnet /usr/bin/dotnet
@ -16,7 +16,7 @@ RUN apt-get update \
# Install dotnet repository
# https://dotnet.microsoft.com/download/linux-package-manager/debian9/sdk-current
RUN wget https://download.visualstudio.microsoft.com/download/pr/c1a30ceb-adc2-4244-b24a-06ca29bb1ee9/6df5d856ff1b3e910d283f89690b7cae/dotnet-sdk-3.1.302 -linux-x64.tar.gz -O dotnet-sdk.tar.gz \
RUN wget https://download.visualstudio.microsoft.com/download/pr/4f9b8a64-5e09-456c-a087-527cfc8b4cd2/15e14ec06eab947432de139f172f7a98/dotnet-sdk-3.1.401 -linux-x64.tar.gz -O dotnet-sdk.tar.gz \
&& mkdir -p dotnet-sdk \
&& tar -xzf dotnet-sdk.tar.gz -C dotnet-sdk \
&& ln -s $( pwd ) /dotnet-sdk/dotnet /usr/bin/dotnet
@ -15,7 +15,7 @@ RUN apt-get update \
# Install dotnet repository
# https://dotnet.microsoft.com/download/linux-package-manager/debian9/sdk-current
RUN wget https://download.visualstudio.microsoft.com/download/pr/c1a30ceb-adc2-4244-b24a-06ca29bb1ee9/6df5d856ff1b3e910d283f89690b7cae/dotnet-sdk-3.1.302 -linux-x64.tar.gz -O dotnet-sdk.tar.gz \
RUN wget https://download.visualstudio.microsoft.com/download/pr/4f9b8a64-5e09-456c-a087-527cfc8b4cd2/15e14ec06eab947432de139f172f7a98/dotnet-sdk-3.1.401 -linux-x64.tar.gz -O dotnet-sdk.tar.gz \
&& mkdir -p dotnet-sdk \
&& tar -xzf dotnet-sdk.tar.gz -C dotnet-sdk \
&& ln -s $( pwd ) /dotnet-sdk/dotnet /usr/bin/dotnet
@ -14,12 +14,12 @@
<ItemGroup >
<PackageReference Include= "AutoFixture" Version= "4.13.0" />
<PackageReference Include= "AutoFixture.AutoMoq" Version= "4.1 2 .0" />
<PackageReference Include= "AutoFixture.Xunit2" Version= "4.1 2 .0" />
<PackageReference Include= "Microsoft.Extensions.Options" Version= "3.1. 6 " />
<PackageReference Include= "Microsoft.NET.Test.Sdk" Version= "16.7. 0 " />
<PackageReference Include= "AutoFixture.AutoMoq" Version= "4.1 3 .0" />
<PackageReference Include= "AutoFixture.Xunit2" Version= "4.1 3 .0" />
<PackageReference Include= "Microsoft.Extensions.Options" Version= "3.1. 7 " />
<PackageReference Include= "Microsoft.NET.Test.Sdk" Version= "16.7. 1 " />
<PackageReference Include= "xunit" Version= "2.4.1" />
<PackageReference Include= "xunit.runner.visualstudio" Version= "2.4. 1 " />
<PackageReference Include= "xunit.runner.visualstudio" Version= "2.4. 3 " />
<PackageReference Include= "coverlet.collector" Version= "1.3.0" />
<PackageReference Include= "Moq" Version= "4.14.5" />
</ItemGroup>
@ -13,9 +13,9 @@
</PropertyGroup>
<ItemGroup >
<PackageReference Include= "Microsoft.NET.Test.Sdk" Version= "16.7. 0 " />
<PackageReference Include= "Microsoft.NET.Test.Sdk" Version= "16.7. 1 " />
<PackageReference Include= "xunit" Version= "2.4.1" />
<PackageReference Include= "xunit.runner.visualstudio" Version= "2.4. 1 " />
<PackageReference Include= "xunit.runner.visualstudio" Version= "2.4. 3 " />
<PackageReference Include= "coverlet.collector" Version= "1.3.0" />
</ItemGroup>
@ -13,9 +13,9 @@
</PropertyGroup>
<ItemGroup >
<PackageReference Include= "Microsoft.NET.Test.Sdk" Version= "16.7. 0 " />
<PackageReference Include= "Microsoft.NET.Test.Sdk" Version= "16.7. 1 " />
<PackageReference Include= "xunit" Version= "2.4.1" />
<PackageReference Include= "xunit.runner.visualstudio" Version= "2.4. 1 " />
<PackageReference Include= "xunit.runner.visualstudio" Version= "2.4. 3 " />
<PackageReference Include= "coverlet.collector" Version= "1.3.0" />
</ItemGroup>
@ -19,9 +19,9 @@
</ItemGroup>
<ItemGroup >
<PackageReference Include= "Microsoft.NET.Test.Sdk" Version= "16.7. 0 " />
<PackageReference Include= "Microsoft.NET.Test.Sdk" Version= "16.7. 1 " />
<PackageReference Include= "xunit" Version= "2.4.1" />
<PackageReference Include= "xunit.runner.visualstudio" Version= "2.4. 1 " />
<PackageReference Include= "xunit.runner.visualstudio" Version= "2.4. 3 " />
<PackageReference Include= "coverlet.collector" Version= "1.3.0" />
</ItemGroup>
@ -13,9 +13,9 @@
</PropertyGroup>
<ItemGroup >
<PackageReference Include= "Microsoft.NET.Test.Sdk" Version= "16.7. 0 " />
<PackageReference Include= "Microsoft.NET.Test.Sdk" Version= "16.7. 1 " />
<PackageReference Include= "xunit" Version= "2.4.1" />
<PackageReference Include= "xunit.runner.visualstudio" Version= "2.4. 1 " />
<PackageReference Include= "xunit.runner.visualstudio" Version= "2.4. 3 " />
<PackageReference Include= "coverlet.collector" Version= "1.3.0" />
</ItemGroup>
@ -15,10 +15,11 @@
<ItemGroup >
<PackageReference Include= "AutoFixture" Version= "4.13.0" />
<PackageReference Include= "AutoFixture.AutoMoq" Version= "4.12.0" />
<PackageReference Include= "AutoFixture.AutoMoq" Version= "4.13.0" />
<PackageReference Include= "Microsoft.NET.Test.Sdk" Version= "16.7.1" />
<PackageReference Include= "Moq" Version= "4.14.5" />
<PackageReference Include= "xunit" Version= "2.4.1" />
<PackageReference Include= "xunit.runner.visualstudio" Version= "2.4. 1 " />
<PackageReference Include= "xunit.runner.visualstudio" Version= "2.4. 3 " />
<PackageReference Include= "coverlet.collector" Version= "1.3.0" />
</ItemGroup>
@ -8,10 +8,10 @@
</PropertyGroup>
<ItemGroup >
<PackageReference Include= "Microsoft.AspNetCore.Mvc.Testing" Version= "3.1. 6 " />
<PackageReference Include= "Microsoft.NET.Test.Sdk" Version= "16.7. 0 " />
<PackageReference Include= "Microsoft.AspNetCore.Mvc.Testing" Version= "3.1. 7 " />
<PackageReference Include= "Microsoft.NET.Test.Sdk" Version= "16.7. 1 " />
<PackageReference Include= "xunit" Version= "2.4.1" />
<PackageReference Include= "xunit.runner.visualstudio" Version= "2.4. 1 " />
<PackageReference Include= "xunit.runner.visualstudio" Version= "2.4. 3 " />
<PackageReference Include= "coverlet.collector" Version= "1.3.0" />
</ItemGroup>