Skip to content

Commit 4294182

Browse files
FrostyApeOneFrostyApeOne
authored andcommitted
Updated the package references to use the new GovUK.Dfe.CoreLibs prefixed packages
1 parent 732e947 commit 4294182

41 files changed

Lines changed: 74 additions & 74 deletions

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

src/DfE.ExternalApplications.Application/DfE.ExternalApplications.Application.csproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@
77
</PropertyGroup>
88

99
<ItemGroup>
10-
<PackageReference Include="DfE.CoreLibs.Notifications" Version="0.1.3" />
11-
<PackageReference Include="GovUK.Dfe.ExternalApplications.Api.Client" Version="0.1.25" />
10+
<PackageReference Include="GovUK.Dfe.CoreLibs.Notifications" Version="0.1.5" />
11+
<PackageReference Include="GovUK.Dfe.ExternalApplications.Api.Client" Version="0.1.26" />
1212
<PackageReference Include="Microsoft.AspNetCore.Http.Features" Version="2.3.0" />
1313
<PackageReference Include="Microsoft.AspNetCore.Mvc.Abstractions" Version="2.3.0" />
1414
</ItemGroup>

src/DfE.ExternalApplications.Application/Interfaces/IApplicationStateService.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
using DfE.ExternalApplications.Domain.Models;
2-
using DfE.CoreLibs.Contracts.ExternalApplications.Models.Response;
2+
using GovUK.Dfe.CoreLibs.Contracts.ExternalApplications.Models.Response;
33
using Microsoft.AspNetCore.Http;
44
using Task = System.Threading.Tasks.Task;
55

src/DfE.ExternalApplications.Application/Interfaces/IContributorService.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
using DfE.CoreLibs.Contracts.ExternalApplications.Models.Request;
2-
using DfE.CoreLibs.Contracts.ExternalApplications.Models.Response;
1+
using GovUK.Dfe.CoreLibs.Contracts.ExternalApplications.Models.Request;
2+
using GovUK.Dfe.CoreLibs.Contracts.ExternalApplications.Models.Response;
33

44
namespace DfE.ExternalApplications.Application.Interfaces;
55

src/DfE.ExternalApplications.Application/Interfaces/IFileUploadService.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
using DfE.CoreLibs.Contracts.ExternalApplications.Models.Response;
1+
using GovUK.Dfe.CoreLibs.Contracts.ExternalApplications.Models.Response;
22
using GovUK.Dfe.ExternalApplications.Api.Client.Contracts;
33

44
namespace DfE.ExternalApplications.Application.Interfaces

src/DfE.ExternalApplications.Application/Interfaces/ITemplateManagementService.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
using DfE.ExternalApplications.Domain.Models;
2-
using DfE.CoreLibs.Contracts.ExternalApplications.Models.Response;
2+
using GovUK.Dfe.CoreLibs.Contracts.ExternalApplications.Models.Response;
33

44
namespace DfE.ExternalApplications.Application.Interfaces
55
{

src/DfE.ExternalApplications.Domain/DfE.ExternalApplications.Domain.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
</PropertyGroup>
88

99
<ItemGroup>
10-
<PackageReference Include="DfE.CoreLibs.Contracts" Version="1.0.44" />
10+
<PackageReference Include="GovUK.Dfe.CoreLibs.Contracts" Version="1.0.45" />
1111
</ItemGroup>
1212

1313
</Project>

src/DfE.ExternalApplications.Infrastructure/DfE.ExternalApplications.Infrastructure.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
</PropertyGroup>
88

99
<ItemGroup>
10-
<PackageReference Include="DfE.CoreLibs.Caching" Version="1.0.10" />
10+
<PackageReference Include="GovUK.Dfe.CoreLibs.Caching" Version="1.0.10" />
1111
<PackageReference Include="Microsoft.AspNetCore.Http.Extensions" Version="2.3.0" />
1212
</ItemGroup>
1313

src/DfE.ExternalApplications.Infrastructure/Providers/FormTemplateProvider.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
using DfE.CoreLibs.Caching.Helpers;
2-
using DfE.CoreLibs.Caching.Interfaces;
1+
using GovUK.Dfe.CoreLibs.Caching.Helpers;
2+
using GovUK.Dfe.CoreLibs.Caching.Interfaces;
33
using DfE.ExternalApplications.Application.Interfaces;
44
using DfE.ExternalApplications.Domain.Models;
55
using System.Diagnostics.CodeAnalysis;

src/DfE.ExternalApplications.Infrastructure/Services/ApplicationResponseService.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
using DfE.CoreLibs.Contracts.ExternalApplications.Models.Request;
1+
using GovUK.Dfe.CoreLibs.Contracts.ExternalApplications.Models.Request;
22
using DfE.ExternalApplications.Application.Interfaces;
33
using GovUK.Dfe.ExternalApplications.Api.Client.Contracts;
44
using Microsoft.AspNetCore.Http;

src/DfE.ExternalApplications.Infrastructure/Services/ApplicationStateService.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
using DfE.ExternalApplications.Application.Interfaces;
22
using DfE.ExternalApplications.Domain.Models;
3-
using DfE.CoreLibs.Contracts.ExternalApplications.Models.Response;
3+
using GovUK.Dfe.CoreLibs.Contracts.ExternalApplications.Models.Response;
44
using GovUK.Dfe.ExternalApplications.Api.Client.Contracts;
55
using Microsoft.AspNetCore.Http;
66
using Microsoft.Extensions.Logging;

0 commit comments

Comments
 (0)