Skip to content

Commit

Permalink
Remove EntityFramework dependency from HealthChecks.UI.Core (#763)
Browse files Browse the repository at this point in the history
  • Loading branch information
Freakazoid182 committed Dec 25, 2022
1 parent d759df1 commit af47efa
Show file tree
Hide file tree
Showing 70 changed files with 137 additions and 84 deletions.
8 changes: 8 additions & 0 deletions .github/workflows/healthchecks_ui_cd.yml
Expand Up @@ -25,6 +25,8 @@ jobs:
run: dotnet restore ./src/HealthChecks.UI.Client/HealthChecks.UI.Client.csproj
- name: Restore UI.Core
run: dotnet restore ./src/HealthChecks.UI.Core/HealthChecks.UI.Core.csproj
- name: Restore UI.Data
run: dotnet restore ./src/HealthChecks.UI.Data/HealthChecks.UI.Data.csproj
- name: Restore UI.InMemory.Storage
run: dotnet restore ./src/HealthChecks.UI.InMemory.Storage/HealthChecks.UI.InMemory.Storage.csproj
- name: Restore UI.MySql.Storage
Expand All @@ -43,6 +45,8 @@ jobs:
run: dotnet build --no-restore ./src/HealthChecks.UI.Client/HealthChecks.UI.Client.csproj -c $BUILD_CONFIG
- name: Build UI.Core
run: dotnet build --no-restore ./src/HealthChecks.UI.Core/HealthChecks.UI.Core.csproj -c $BUILD_CONFIG
- name: Build UI.Data
run: dotnet build --no-restore ./src/HealthChecks.UI.Data/HealthChecks.UI.Data.csproj -c $BUILD_CONFIG
- name: Build UI.InMemory.Storage
run: dotnet build --no-restore ./src/HealthChecks.UI.InMemory.Storage/HealthChecks.UI.InMemory.Storage.csproj -c $BUILD_CONFIG
- name: Build UI.MySql.Storage
Expand All @@ -61,6 +65,8 @@ jobs:
run: dotnet pack --no-build ./src/HealthChecks.UI.Client/HealthChecks.UI.Client.csproj -c $BUILD_CONFIG -o ./artifacts
- name: Pack UI.Core
run: dotnet pack --no-build ./src/HealthChecks.UI.Core/HealthChecks.UI.Core.csproj -c $BUILD_CONFIG -o ./artifacts
- name: Pack UI.Data
run: dotnet pack --no-build ./src/HealthChecks.UI.Data/HealthChecks.UI.Data.csproj -c $BUILD_CONFIG -o ./artifacts
- name: Pack UI.InMemory.Storage
run: dotnet pack --no-build ./src/HealthChecks.UI.InMemory.Storage/HealthChecks.UI.InMemory.Storage.csproj -c $BUILD_CONFIG -o ./artifacts
- name: Pack UI.MySql.Storage
Expand All @@ -79,6 +85,8 @@ jobs:
run: dotnet nuget push ./artifacts/AspNetCore.HealthChecks.UI.Client.*.nupkg -k ${{secrets.NUGET_API_KEY}} -s https://api.nuget.org/v3/index.json --skip-duplicate
- name: Publish UI.Core Health Check
run: dotnet nuget push ./artifacts/AspNetCore.HealthChecks.UI.Core.*.nupkg -k ${{secrets.NUGET_API_KEY}} -s https://api.nuget.org/v3/index.json --skip-duplicate
- name: Publish UI.Data Health Check
run: dotnet nuget push ./artifacts/AspNetCore.HealthChecks.UI.Data.*.nupkg -k ${{secrets.NUGET_API_KEY}} -s https://api.nuget.org/v3/index.json --skip-duplicate
- name: Publish UI.InMemory.Storage Health Check
run: dotnet nuget push ./artifacts/AspNetCore.HealthChecks.UI.InMemory.Storage.*.nupkg -k ${{secrets.NUGET_API_KEY}} -s https://api.nuget.org/v3/index.json --skip-duplicate
- name: Publish UI.MySql.Storage Health Check
Expand Down
8 changes: 8 additions & 0 deletions .github/workflows/healthchecks_ui_cd_preview.yml
Expand Up @@ -26,6 +26,8 @@ jobs:
run: dotnet restore ./src/HealthChecks.UI.Client/HealthChecks.UI.Client.csproj
- name: Restore UI.Core
run: dotnet restore ./src/HealthChecks.UI.Core/HealthChecks.UI.Core.csproj
- name: Restore UI.Data
run: dotnet restore ./src/HealthChecks.UI.Data/HealthChecks.UI.Data.csproj
- name: Restore UI.InMemory.Storage
run: dotnet restore ./src/HealthChecks.UI.InMemory.Storage/HealthChecks.UI.InMemory.Storage.csproj
- name: Restore UI.MySql.Storage
Expand All @@ -44,6 +46,8 @@ jobs:
run: dotnet build --no-restore ./src/HealthChecks.UI.Client/HealthChecks.UI.Client.csproj -c $BUILD_CONFIG
- name: Build UI.Core
run: dotnet build --no-restore ./src/HealthChecks.UI.Core/HealthChecks.UI.Core.csproj -c $BUILD_CONFIG
- name: Build UI.Data
run: dotnet build --no-restore ./src/HealthChecks.UI.Data/HealthChecks.UI.Data.csproj -c $BUILD_CONFIG
- name: Build UI.InMemory.Storage
run: dotnet build --no-restore ./src/HealthChecks.UI.InMemory.Storage/HealthChecks.UI.InMemory.Storage.csproj -c $BUILD_CONFIG
- name: Build UI.MySql.Storage
Expand All @@ -62,6 +66,8 @@ jobs:
run: dotnet pack --no-build ./src/HealthChecks.UI.Client/HealthChecks.UI.Client.csproj --version-suffix $VERSION_SUFFIX -c $BUILD_CONFIG -o ./artifacts
- name: Pack UI.Core
run: dotnet pack --no-build ./src/HealthChecks.UI.Core/HealthChecks.UI.Core.csproj --version-suffix $VERSION_SUFFIX -c $BUILD_CONFIG -o ./artifacts
- name: Pack UI.Data
run: dotnet pack --no-build ./src/HealthChecks.UI.Data/HealthChecks.UI.Data.csproj --version-suffix $VERSION_SUFFIX -c $BUILD_CONFIG -o ./artifacts
- name: Pack UI.InMemory.Storage
run: dotnet pack --no-build ./src/HealthChecks.UI.InMemory.Storage/HealthChecks.UI.InMemory.Storage.csproj --version-suffix $VERSION_SUFFIX -c $BUILD_CONFIG -o ./artifacts
- name: Pack UI.MySql.Storage
Expand All @@ -80,6 +86,8 @@ jobs:
run: dotnet nuget push ./artifacts/AspNetCore.HealthChecks.UI.Client.*.nupkg -k ${{secrets.NUGET_API_KEY}} -s https://api.nuget.org/v3/index.json --skip-duplicate
- name: Publish UI.Core Health Check
run: dotnet nuget push ./artifacts/AspNetCore.HealthChecks.UI.Core.*.nupkg -k ${{secrets.NUGET_API_KEY}} -s https://api.nuget.org/v3/index.json --skip-duplicate
- name: Publish UI.Data Health Check
run: dotnet nuget push ./artifacts/AspNetCore.HealthChecks.UI.Data.*.nupkg -k ${{secrets.NUGET_API_KEY}} -s https://api.nuget.org/v3/index.json --skip-duplicate
- name: Publish UI.InMemory.Storage Health Check
run: dotnet nuget push ./artifacts/AspNetCore.HealthChecks.UI.InMemory.Storage.*.nupkg -k ${{secrets.NUGET_API_KEY}} -s https://api.nuget.org/v3/index.json --skip-duplicate
- name: Publish UI.MySql.Storage Health Check
Expand Down
6 changes: 6 additions & 0 deletions .github/workflows/healthchecks_ui_ci.yml
Expand Up @@ -66,6 +66,8 @@ jobs:
run: dotnet restore ./src/HealthChecks.UI.Client/HealthChecks.UI.Client.csproj
- name: Restore UI.Core
run: dotnet restore ./src/HealthChecks.UI.Core/HealthChecks.UI.Core.csproj
- name: Restore UI.Data
run: dotnet restore ./src/HealthChecks.UI.Data/HealthChecks.UI.Data.csproj
- name: Restore UI.InMemory.Storage
run: dotnet restore ./src/HealthChecks.UI.InMemory.Storage/HealthChecks.UI.InMemory.Storage.csproj
- name: Restore UI.MySql.Storage
Expand All @@ -85,6 +87,8 @@ jobs:
run: dotnet format --no-restore --verify-no-changes --severity warn ./src/HealthChecks.UI.Client/HealthChecks.UI.Client.csproj || (echo "Run 'dotnet format' to fix issues" && exit 1)
- name: Check formatting UI.Core
run: dotnet format --no-restore --verify-no-changes --severity warn ./src/HealthChecks.UI.Core/HealthChecks.UI.Core.csproj || (echo "Run 'dotnet format' to fix issues" && exit 1)
- name: Check formatting UI.Data
run: dotnet format --no-restore --verify-no-changes --severity warn ./src/HealthChecks.UI.Data/HealthChecks.UI.Data.csproj || (echo "Run 'dotnet format' to fix issues" && exit 1)
- name: Check formatting UI.InMemory.Storage
run: dotnet format --no-restore --verify-no-changes --severity warn ./src/HealthChecks.UI.InMemory.Storage/HealthChecks.UI.InMemory.Storage.csproj || (echo "Run 'dotnet format' to fix issues" && exit 1)
- name: Check formatting UI.MySql.Storage
Expand All @@ -104,6 +108,8 @@ jobs:
run: dotnet build --no-restore ./src/HealthChecks.UI.Client/HealthChecks.UI.Client.csproj
- name: Build UI.Core
run: dotnet build --no-restore ./src/HealthChecks.UI.Core/HealthChecks.UI.Core.csproj
- name: Build UI.Data
run: dotnet build --no-restore ./src/HealthChecks.UI.Data/HealthChecks.UI.Data.csproj
- name: Build UI.InMemory.Storage
run: dotnet build --no-restore ./src/HealthChecks.UI.InMemory.Storage/HealthChecks.UI.InMemory.Storage.csproj
- name: Build UI.MySql.Storage
Expand Down
35 changes: 21 additions & 14 deletions AspNetCore.Diagnostics.HealthChecks.sln
Expand Up @@ -416,10 +416,12 @@ Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "HealthChecks.EventStore.gRP
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "HealthChecks.EventStore.gRPC", "src\HealthChecks.EventStore.gRPC\HealthChecks.EventStore.gRPC.csproj", "{30B12BAB-F5DA-48D8-A706-6D9904C196A7}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "HealthChecks.UI.Core.Tests", "test\HealthChecks.UI.Core.Tests\HealthChecks.UI.Core.Tests.csproj", "{3B32DF1F-03AA-4625-8694-E427C51E2398}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "HealthChecks.UI.Client.Tests", "test\HealthChecks.UI.Client.Tests\HealthChecks.UI.Client.Tests.csproj", "{711762D3-0A1E-4859-81F1-94C8E8E82610}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "HealthChecks.UI.Core.Tests", "test\HealthChecks.UI.Core.Tests\HealthChecks.UI.Core.Tests.csproj", "{3B32DF1F-03AA-4625-8694-E427C51E2398}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "HealthChecks.UI.Client.Tests", "test\HealthChecks.UI.Client.Tests\HealthChecks.UI.Client.Tests.csproj", "{711762D3-0A1E-4859-81F1-94C8E8E82610}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "HealthChecks.UI.Data", "src\HealthChecks.UI.Data\HealthChecks.UI.Data.csproj", "{51F0A996-9C63-4C59-85E0-D91B6A58C653}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
Expand Down Expand Up @@ -890,14 +892,18 @@ Global
{30B12BAB-F5DA-48D8-A706-6D9904C196A7}.Debug|Any CPU.Build.0 = Debug|Any CPU
{30B12BAB-F5DA-48D8-A706-6D9904C196A7}.Release|Any CPU.ActiveCfg = Release|Any CPU
{30B12BAB-F5DA-48D8-A706-6D9904C196A7}.Release|Any CPU.Build.0 = Release|Any CPU
{3B32DF1F-03AA-4625-8694-E427C51E2398}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{3B32DF1F-03AA-4625-8694-E427C51E2398}.Debug|Any CPU.Build.0 = Debug|Any CPU
{3B32DF1F-03AA-4625-8694-E427C51E2398}.Release|Any CPU.ActiveCfg = Release|Any CPU
{3B32DF1F-03AA-4625-8694-E427C51E2398}.Release|Any CPU.Build.0 = Release|Any CPU
{711762D3-0A1E-4859-81F1-94C8E8E82610}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{711762D3-0A1E-4859-81F1-94C8E8E82610}.Debug|Any CPU.Build.0 = Debug|Any CPU
{711762D3-0A1E-4859-81F1-94C8E8E82610}.Release|Any CPU.ActiveCfg = Release|Any CPU
{711762D3-0A1E-4859-81F1-94C8E8E82610}.Release|Any CPU.Build.0 = Release|Any CPU
{3B32DF1F-03AA-4625-8694-E427C51E2398}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{3B32DF1F-03AA-4625-8694-E427C51E2398}.Debug|Any CPU.Build.0 = Debug|Any CPU
{3B32DF1F-03AA-4625-8694-E427C51E2398}.Release|Any CPU.ActiveCfg = Release|Any CPU
{3B32DF1F-03AA-4625-8694-E427C51E2398}.Release|Any CPU.Build.0 = Release|Any CPU
{711762D3-0A1E-4859-81F1-94C8E8E82610}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{711762D3-0A1E-4859-81F1-94C8E8E82610}.Debug|Any CPU.Build.0 = Debug|Any CPU
{711762D3-0A1E-4859-81F1-94C8E8E82610}.Release|Any CPU.ActiveCfg = Release|Any CPU
{711762D3-0A1E-4859-81F1-94C8E8E82610}.Release|Any CPU.Build.0 = Release|Any CPU
{51F0A996-9C63-4C59-85E0-D91B6A58C653}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{51F0A996-9C63-4C59-85E0-D91B6A58C653}.Debug|Any CPU.Build.0 = Debug|Any CPU
{51F0A996-9C63-4C59-85E0-D91B6A58C653}.Release|Any CPU.ActiveCfg = Release|Any CPU
{51F0A996-9C63-4C59-85E0-D91B6A58C653}.Release|Any CPU.Build.0 = Release|Any CPU
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
Expand Down Expand Up @@ -1020,8 +1026,9 @@ Global
{555D90D5-22C7-433D-B908-2DFFF98ED08C} = {FF4414C2-8863-4ADA-8A1D-4B9F25C361FE}
{8F174B4B-9F70-4309-B716-02B0D862FA00} = {FF4414C2-8863-4ADA-8A1D-4B9F25C361FE}
{30B12BAB-F5DA-48D8-A706-6D9904C196A7} = {2A3FD988-2BB8-43CF-B3A2-B70E648259D4}
{3B32DF1F-03AA-4625-8694-E427C51E2398} = {FF4414C2-8863-4ADA-8A1D-4B9F25C361FE}
{711762D3-0A1E-4859-81F1-94C8E8E82610} = {FF4414C2-8863-4ADA-8A1D-4B9F25C361FE}
{3B32DF1F-03AA-4625-8694-E427C51E2398} = {FF4414C2-8863-4ADA-8A1D-4B9F25C361FE}
{711762D3-0A1E-4859-81F1-94C8E8E82610} = {FF4414C2-8863-4ADA-8A1D-4B9F25C361FE}
{51F0A996-9C63-4C59-85E0-D91B6A58C653} = {2A3FD988-2BB8-43CF-B3A2-B70E648259D4}
EndGlobalSection
GlobalSection(ExtensibilityGlobals) = postSolution
SolutionGuid = {2B8C62A1-11B6-469F-874C-A02443256568}
Expand Down
@@ -1,4 +1,4 @@
using HealthChecks.UI.Core.Data;
using HealthChecks.UI.Data;
using Microsoft.EntityFrameworkCore;

namespace HealthChecks.UI.Image.PushService
Expand Down
1 change: 1 addition & 0 deletions build/versions.props
Expand Up @@ -53,6 +53,7 @@
<HealthCheckUI>7.0.0</HealthCheckUI>
<HealthCheckUIClient>7.0.0</HealthCheckUIClient>
<HealthCheckUICore>7.0.0</HealthCheckUICore>
<HealthCheckUIData>7.0.0</HealthCheckUIData>
<HealthCheckUIInMemoryStorage>7.0.0</HealthCheckUIInMemoryStorage>
<HealthCheckUIMySqlStorage>7.0.0</HealthCheckUIMySqlStorage>
<HealthCheckUISQLiteStorage>7.0.0</HealthCheckUISQLiteStorage>
Expand Down
2 changes: 1 addition & 1 deletion src/HealthChecks.UI.Core/HealthChecks.UI.Core.csproj
Expand Up @@ -8,7 +8,7 @@
</PropertyGroup>

<ItemGroup>
<PackageReference Include="Microsoft.EntityFrameworkCore" Version="7.0.1" />
<PackageReference Include="Microsoft.Extensions.DependencyInjection.Abstractions" Version="7.0.0" />
<PackageReference Include="Microsoft.Extensions.Diagnostics.HealthChecks" Version="7.0.1" />
<PackageReference Include="System.Text.Json" Version="7.0.1" />
</ItemGroup>
Expand Down
@@ -1,7 +1,7 @@
using Microsoft.EntityFrameworkCore;
using Microsoft.EntityFrameworkCore.Metadata.Builders;

namespace HealthChecks.UI.Core.Data.Configuration
namespace HealthChecks.UI.Data.Configuration
{
internal class HealthCheckConfigurationMap
: IEntityTypeConfiguration<HealthCheckConfiguration>
Expand Down
Expand Up @@ -3,7 +3,7 @@
using Microsoft.EntityFrameworkCore.ChangeTracking;
using Microsoft.EntityFrameworkCore.Metadata.Builders;

namespace HealthChecks.UI.Core.Data.Configuration
namespace HealthChecks.UI.Data.Configuration
{
internal class HealthCheckExecutionEntryMap
: IEntityTypeConfiguration<HealthCheckExecutionEntry>
Expand Down
@@ -1,7 +1,7 @@
using Microsoft.EntityFrameworkCore;
using Microsoft.EntityFrameworkCore.Metadata.Builders;

namespace HealthChecks.UI.Core.Data.Configuration
namespace HealthChecks.UI.Data.Configuration
{
internal class HealthCheckExecutionHistoryMap
: IEntityTypeConfiguration<HealthCheckExecutionHistory>
Expand Down
@@ -1,7 +1,7 @@
using Microsoft.EntityFrameworkCore;
using Microsoft.EntityFrameworkCore.Metadata.Builders;

namespace HealthChecks.UI.Core.Data.Configuration
namespace HealthChecks.UI.Data.Configuration
{
internal class HealthCheckExecutionMap
: IEntityTypeConfiguration<HealthCheckExecution>
Expand Down
@@ -1,7 +1,7 @@
using Microsoft.EntityFrameworkCore;
using Microsoft.EntityFrameworkCore.Metadata.Builders;

namespace HealthChecks.UI.Core.Data.Configuration
namespace HealthChecks.UI.Data.Configuration
{
public class HealthCheckFailureNotificationsMap
: IEntityTypeConfiguration<HealthCheckFailureNotification>
Expand Down
@@ -1,4 +1,4 @@
namespace HealthChecks.UI.Core.Data
namespace HealthChecks.UI.Data
{
public class HealthCheckConfiguration
{
Expand Down
@@ -1,4 +1,6 @@
namespace HealthChecks.UI.Core.Data
using HealthChecks.UI.Core;

namespace HealthChecks.UI.Data
{
public class HealthCheckExecution
{
Expand Down
@@ -1,4 +1,6 @@
namespace HealthChecks.UI.Core.Data
using HealthChecks.UI.Core;

namespace HealthChecks.UI.Data
{
public class HealthCheckExecutionEntry
{
Expand Down
@@ -1,4 +1,4 @@
namespace HealthChecks.UI.Core.Data
namespace HealthChecks.UI.Data
{
public class HealthCheckFailureNotification
{
Expand Down
@@ -1,4 +1,6 @@
namespace HealthChecks.UI.Core.Data
using HealthChecks.UI.Core;

namespace HealthChecks.UI.Data
{
public class HealthCheckExecutionHistory
{
Expand Down
19 changes: 19 additions & 0 deletions src/HealthChecks.UI.Data/HealthChecks.UI.Data.csproj
@@ -0,0 +1,19 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFramework>net6.0</TargetFramework>
<PackageTags>$(PackageTags);Data</PackageTags>
<Description>HealthChecks.UI.Data package containing data models and database context definition</Description>
<VersionPrefix>$(HealthCheckUIData)</VersionPrefix>
</PropertyGroup>

<ItemGroup>
<PackageReference Include="Microsoft.Extensions.Diagnostics.HealthChecks" Version="7.0.1" />
<PackageReference Include="System.Text.Json" Version="7.0.1" />
<PackageReference Include="Microsoft.EntityFrameworkCore" Version="7.0.1" />
</ItemGroup>

<ItemGroup>
<ProjectReference Include="..\HealthChecks.UI.Core\HealthChecks.UI.Core.csproj" />
</ItemGroup>
</Project>
@@ -1,7 +1,7 @@
using HealthChecks.UI.Core.Data.Configuration;
using HealthChecks.UI.Data.Configuration;
using Microsoft.EntityFrameworkCore;

namespace HealthChecks.UI.Core.Data
namespace HealthChecks.UI.Data
{
public class HealthChecksDb
: DbContext
Expand Down
Expand Up @@ -12,7 +12,7 @@
</ItemGroup>

<ItemGroup>
<ProjectReference Include="..\HealthChecks.UI.Core\HealthChecks.UI.Core.csproj" />
<ProjectReference Include="..\HealthChecks.UI.Data\HealthChecks.UI.Data.csproj" />
</ItemGroup>

</Project>
@@ -1,4 +1,4 @@
using HealthChecks.UI.Core.Data;
using HealthChecks.UI.Data;
using Microsoft.EntityFrameworkCore;

namespace Microsoft.Extensions.DependencyInjection
Expand Down
Expand Up @@ -12,7 +12,7 @@
</ItemGroup>

<ItemGroup>
<ProjectReference Include="..\HealthChecks.UI.Core\HealthChecks.UI.Core.csproj" />
<ProjectReference Include="..\HealthChecks.UI.Data\HealthChecks.UI.Data.csproj" />
</ItemGroup>

</Project>
@@ -1,4 +1,4 @@
using HealthChecks.UI.Core.Data;
using HealthChecks.UI.Data;
using Microsoft.EntityFrameworkCore;

namespace Microsoft.Extensions.DependencyInjection
Expand Down

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

@@ -1,6 +1,6 @@
// <auto-generated />
using System;
using HealthChecks.UI.Core.Data;
using HealthChecks.UI.Data;
using Microsoft.EntityFrameworkCore;
using Microsoft.EntityFrameworkCore.Infrastructure;
using Microsoft.EntityFrameworkCore.Storage.ValueConversion;
Expand Down
Expand Up @@ -12,7 +12,7 @@
</ItemGroup>

<ItemGroup>
<ProjectReference Include="..\HealthChecks.UI.Core\HealthChecks.UI.Core.csproj" />
<ProjectReference Include="..\HealthChecks.UI.Data\HealthChecks.UI.Data.csproj" />
</ItemGroup>

</Project>
@@ -1,4 +1,4 @@
using HealthChecks.UI.Core.Data;
using HealthChecks.UI.Data;
using Microsoft.EntityFrameworkCore;

namespace Microsoft.Extensions.DependencyInjection
Expand Down

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

@@ -1,6 +1,6 @@
// <auto-generated />
using System;
using HealthChecks.UI.Core.Data;
using HealthChecks.UI.Data;
using Microsoft.EntityFrameworkCore;
using Microsoft.EntityFrameworkCore.Infrastructure;
using Microsoft.EntityFrameworkCore.Storage.ValueConversion;
Expand Down
Expand Up @@ -12,7 +12,7 @@
</ItemGroup>

<ItemGroup>
<ProjectReference Include="..\HealthChecks.UI.Core\HealthChecks.UI.Core.csproj" />
<ProjectReference Include="..\HealthChecks.UI.Data\HealthChecks.UI.Data.csproj" />
</ItemGroup>

</Project>
@@ -1,4 +1,4 @@
using HealthChecks.UI.Core.Data;
using HealthChecks.UI.Data;
using Microsoft.EntityFrameworkCore;

namespace Microsoft.Extensions.DependencyInjection
Expand Down

0 comments on commit af47efa

Please sign in to comment.