Skip to content
Merged

Rc #286

Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
28 commits
Select commit Hold shift + click to select a range
4a6d933
Fixes-TD-3959
AnjuJose011 Apr 9, 2024
82a099f
Merge pull request #265 from TechnologyEnhancedLearning/TD-3959-Fixes
AnjuJose011 Apr 9, 2024
de73449
Merge pull request #269 from TechnologyEnhancedLearning/Develop/Featu…
binon Apr 9, 2024
9c55d27
TD-4016:Remove character limit from catalogue description
sarathlal-sarangadharan Apr 10, 2024
328b55b
TD-2954: Filter issue in combination of Assessment and Completed (Iss…
sarathlal-sarangadharan Apr 11, 2024
5c2e39e
Merge pull request #273 from TechnologyEnhancedLearning/Develop/Featu…
sarathlal-sarangadharan Apr 11, 2024
bd7ec86
TD-4016: Updated models package in WebUI project
sarathlal-sarangadharan Apr 11, 2024
2670516
Merge pull request #272 from TechnologyEnhancedLearning/Develop/Featu…
sarathlal-sarangadharan Apr 11, 2024
6b455d4
TD-2954: Filter issues for assessment resolved
sarathlal-sarangadharan Apr 11, 2024
256f662
Included missing file
Swapnamol Apr 11, 2024
990131d
TD-2954:Model package version changed to 3.0.31
sarathlal-sarangadharan Apr 11, 2024
ee12fad
Merge pull request #276 from TechnologyEnhancedLearning/Develop/Fixes…
Swapnamol Apr 11, 2024
863ef33
Merge pull request #275 from TechnologyEnhancedLearning/Develop/Featu…
sarathlal-sarangadharan Apr 11, 2024
081fa43
Modified the build action to None
Swapnamol Apr 11, 2024
47f04e7
Merge pull request #277 from TechnologyEnhancedLearning/Develop/Fixes…
Swapnamol Apr 11, 2024
76f227f
TD-4016: Deployement issue fix
sarathlal-sarangadharan Apr 12, 2024
4815a72
Merge pull request #278 from TechnologyEnhancedLearning/Develop/Featu…
sarathlal-sarangadharan Apr 12, 2024
458ce58
TD-4016:Build fail fix
sarathlal-sarangadharan Apr 12, 2024
09be671
TD-4016:Build issue fix
sarathlal-sarangadharan Apr 12, 2024
7e1215b
Merge pull request #280 from TechnologyEnhancedLearning/Develop/Featu…
sarathlal-sarangadharan Apr 12, 2024
da0620e
TD-4016:Build fail fix
sarathlal-sarangadharan Apr 12, 2024
16bd8bd
Merge pull request #282 from TechnologyEnhancedLearning/Develop/Featu…
sarathlal-sarangadharan Apr 12, 2024
51a237e
TD-2954: Filter fix
sarathlal-sarangadharan Apr 12, 2024
03c510e
Merge pull request #283 from TechnologyEnhancedLearning/Develop/Featu…
sarathlal-sarangadharan Apr 15, 2024
9f49785
TD-2954: Missing logic added
sarathlal-sarangadharan Apr 15, 2024
c7f27c9
TD-2954: Deployment fail issue fix
sarathlal-sarangadharan Apr 15, 2024
cb4ec4f
Merge pull request #284 from TechnologyEnhancedLearning/Develop/Featu…
sarathlal-sarangadharan Apr 15, 2024
7f058d9
Merge pull request #285 from TechnologyEnhancedLearning/Develop/Featu…
binon Apr 15, 2024
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
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@
<PackageReference Include="HtmlSanitizer" Version="6.0.453" />
<PackageReference Include="IdentityModel" Version="4.4.0" />
<PackageReference Include="LearningHub.Nhs.Caching" Version="2.0.2" />
<PackageReference Include="LearningHub.Nhs.Models" Version="3.0.30" />
<PackageReference Include="LearningHub.Nhs.Models" Version="3.0.31" />
<PackageReference Include="Microsoft.ApplicationInsights.AspNetCore" Version="2.19.0" />
<PackageReference Include="Microsoft.AspNetCore.Authentication.OpenIdConnect" Version="6.0.0" />
<PackageReference Include="Microsoft.AspNetCore.Mvc.NewtonsoftJson" Version="6.0.0" />
Expand Down
8 changes: 0 additions & 8 deletions AdminUI/LearningHub.Nhs.AdminUI/Views/Catalogue/Edit.cshtml
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,6 @@
<div class="col-12">
<label for="Description">Description</label>
<textarea asp-for="Description" class="form-control"></textarea>
<small id="with-hint-info" class="pt-2">You have 1800 characters remaining</small>
<span asp-validation-for="Description"></span>
</div>
</div>
Expand Down Expand Up @@ -413,13 +412,6 @@
var editorData = editor.getData();
var data = $("<p></p>").html(editorData).text();
var textData = data.replace(/\s\n\n/g, ' ').replace(/\n\n/g, ' ').replace(/\s\n/g, '').replace(/\n/g, '');
var remaining = 1800 - textData.length;

if (remaining >= 0) {
$('#with-hint-info').text("You have " + remaining + " characters remaining").removeClass('text-danger');
} else {
$('#with-hint-info').text("You have " + (-1 * remaining) + " character too many").addClass('text-danger');
}
});

editor.fire('change');
Expand Down
2 changes: 1 addition & 1 deletion LearningHub.Nhs.WebUI/LearningHub.Nhs.WebUI.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@
<PackageReference Include="HtmlAgilityPack" Version="1.11.38" />
<PackageReference Include="IdentityModel" Version="4.3.0" />
<PackageReference Include="LearningHub.Nhs.Caching" Version="2.0.0" />
<PackageReference Include="LearningHub.Nhs.Models" Version="3.0.30" />
<PackageReference Include="LearningHub.Nhs.Models" Version="3.0.31" />
<PackageReference Include="linqtotwitter" Version="6.9.0" />
<PackageReference Include="Microsoft.ApplicationInsights.AspNetCore" Version="2.19.0" />
<PackageReference Include="Microsoft.ApplicationInsights.EventCounterCollector" Version="2.21.0" />
Expand Down
1 change: 1 addition & 0 deletions LearningHub.Nhs.WebUI/Views/Home/Accessibility.cshtml
Original file line number Diff line number Diff line change
Expand Up @@ -66,6 +66,7 @@
<a href="~/documents/Learning Hub accessibility statement v2.0 July 2023.pdf" target="_blank">Download as PDF</a>
</section>
</article>
@await Html.PartialAsync("~/Views/Shared/_PageReviewPartial.cshtml", new PageReviewModel { LastReviewedDate = new DateTime(2023, 3, 17), NextReviewDate = new DateTime(2026, 8, 16) })
</div>
</div>
</div>
Expand Down
43 changes: 21 additions & 22 deletions LearningHub.Nhs.WebUI/Views/Home/NhsSites.cshtml
Original file line number Diff line number Diff line change
@@ -1,33 +1,32 @@
@{
ViewData["Title"] = "NHS sites";
}
@section styles{
@section styles {
<link rel="stylesheet" type="text/css" href="~/css/nhsuk/pages/staticpages.css" asp-append-version="true" />
}
<div class="nhsuk-width-container app-width-container">
<div class="nhsuk-main-wrapper ">
<div class="nhsuk-main-wrapper ">

<div class="nhsuk-grid-row">
<div class="nhsuk-grid-column-full ">
<h1>
@ViewData["Title"]
</h1>
</div>
</div>
<div class="nhsuk-grid-row">
<div class="nhsuk-grid-column-full ">
<h1>
@ViewData["Title"]
</h1>
</div>
</div>


<div class="nhsuk-grid-row">
<div class="nhsuk-grid-column-full">
<section>
<p><a href="https://www.hee.nhs.uk" target="_blank">Health Education England</a></p>
<p><a href="https://www.nhsinform.scot" target="_blank">NHS Scotland</a></p>
<p><a href="http://online.hscni.net" target="_blank">NHS Northern Ireland</a></p>
<p><a href="https://111.wales.nhs.uk" target="_blank">NHS 111 Wales</a></p>
<p><a href="https://www.gov.uk/government/organisations/department-of-health-and-social-care" target="_blank">Department of Health and Social Care</a></p>
<p><a href="https://www.england.nhs.uk" target="_blank">NHS England and NHS Improvement</a></p>
@await Html.PartialAsync("~/Views/Shared/_PageReviewPartial.cshtml", new PageReviewModel { LastReviewedDate = DateTimeOffset.Now, NextReviewDate = DateTimeOffset.Now.AddYears(3) })
</section>
</div>
<div class="nhsuk-grid-row">
<div class="nhsuk-grid-column-full">
<section>
<p><a href="https://www.nhsinform.scot" target="_blank">NHS Scotland</a></p>
<p><a href="http://online.hscni.net" target="_blank">NHS Northern Ireland</a></p>
<p><a href="https://111.wales.nhs.uk" target="_blank">NHS 111 Wales</a></p>
<p><a href="https://www.gov.uk/government/organisations/department-of-health-and-social-care" target="_blank">Department of Health and Social Care</a></p>
<p><a href="https://www.england.nhs.uk" target="_blank">NHS England</a></p>
@await Html.PartialAsync("~/Views/Shared/_PageReviewPartial.cshtml", new PageReviewModel { LastReviewedDate = DateTimeOffset.Now, NextReviewDate = DateTimeOffset.Now.AddYears(3) })
</section>
</div>
</div>
</div>
</div>
</div>
Original file line number Diff line number Diff line change
Expand Up @@ -218,7 +218,7 @@
</ol>
</section>
</article>
@await Html.PartialAsync("~/Views/Shared/_PageReviewPartial.cshtml", new PageReviewModel { LastReviewedDate = new DateTime(2023, 6, 01), NextReviewDate = new DateTime(2026, 6, 01) })
@await Html.PartialAsync("~/Views/Shared/_PageReviewPartial.cshtml", new PageReviewModel { LastReviewedDate = new DateTime(2023, 6, 01), NextReviewDate = new DateTime(2026, 8, 16) })
</div>

</div>
2 changes: 1 addition & 1 deletion LearningHub.Nhs.WebUI/Views/Policies/ContentPolicy.cshtml
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,7 @@
We ask that where practicable, all content should aim to meet accessibility standards as described in our Accessibility Statement and as set out in the AA standard Web Content Accessibility Guidelines v2.0.
</p>
</section>
@await Html.PartialAsync("~/Views/Shared/_PageReviewPartial.cshtml", new PageReviewModel { LastReviewedDate = new DateTime(2020, 5, 26), NextReviewDate = new DateTime(2023, 5, 26) })
@await Html.PartialAsync("~/Views/Shared/_PageReviewPartial.cshtml", new PageReviewModel { LastReviewedDate = new DateTime(2020, 5, 26), NextReviewDate = new DateTime(2026, 8, 16) })
</article>
</div>
</div>
2 changes: 1 addition & 1 deletion LearningHub.Nhs.WebUI/Views/Policies/CookiePolicy.cshtml
Original file line number Diff line number Diff line change
Expand Up @@ -317,7 +317,7 @@
<section>
<div>
@await Html.PartialAsync("_CookiePolicyConfirmation", new CookieConsentViewModel {UserConsent = cookieBannerCookieValue, Layout = Layout})
@await Html.PartialAsync("~/Views/Shared/_PageReviewPartial.cshtml", new PageReviewModel { LastReviewedDate = new DateTime(2020, 5, 26), NextReviewDate = new DateTime(2023, 5, 26) })
@await Html.PartialAsync("~/Views/Shared/_PageReviewPartial.cshtml", new PageReviewModel { LastReviewedDate = new DateTime(2020, 5, 26), NextReviewDate = new DateTime(2026, 8, 16) })
</div>
</section>
</article>
Expand Down
2 changes: 1 addition & 1 deletion LearningHub.Nhs.WebUI/Views/Policies/PrivacyPolicy.cshtml
Original file line number Diff line number Diff line change
Expand Up @@ -208,7 +208,7 @@
</p>
</section>
</article>
@await Html.PartialAsync("~/Views/Shared/_PageReviewPartial.cshtml", new PageReviewModel { LastReviewedDate = new DateTime(2023, 6, 01), NextReviewDate = new DateTime(2026, 6, 01) })
@await Html.PartialAsync("~/Views/Shared/_PageReviewPartial.cshtml", new PageReviewModel { LastReviewedDate = new DateTime(2023, 6, 01), NextReviewDate = new DateTime(2026, 8, 16) })
</div>

</div>
3 changes: 2 additions & 1 deletion LearningHub.Nhs.WebUI/Views/Policies/TermsConditions.cshtml
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
@model LearningHub.Nhs.WebUI.Models.Policies.TermsAndConditionsViewModel
@{
ViewData["Title"] = "Terms and Conditions";
var nextDate = new DateTime(2026, 8, 16);
}
@section styles{
<link rel="stylesheet" type="text/css" href="~/css/nhsuk/pages/Policies.css" asp-append-version="true" />
Expand All @@ -14,7 +15,7 @@
<section>
<div id="terms-and-conditions-content">
@Html.Raw(Model.TermsAndConditions)
@await Html.PartialAsync("~/Views/Shared/_PageReviewPartial.cshtml", new PageReviewModel { LastReviewedDate = Model.CreatedDate, NextReviewDate = Model.CreatedDate.AddYears(3) })
@await Html.PartialAsync("~/Views/Shared/_PageReviewPartial.cshtml", new PageReviewModel { LastReviewedDate = Model.CreatedDate, NextReviewDate = nextDate })
</div>
</section>
</article>
Expand Down
2 changes: 1 addition & 1 deletion WebAPI/LearningHub.Nhs.API/LearningHub.Nhs.Api.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
<PackageReference Include="elfhHub.Nhs.Models" Version="3.0.8" />
<PackageReference Include="IdentityServer4.AccessTokenValidation" Version="3.0.1" />
<PackageReference Include="LearningHub.Nhs.Caching" Version="2.0.0" />
<PackageReference Include="LearningHub.Nhs.Models" Version="3.0.30" />
<PackageReference Include="LearningHub.Nhs.Models" Version="3.0.31" />
<PackageReference Include="Microsoft.ApplicationInsights.AspNetCore" Version="2.19.0" />
<PackageReference Include="Microsoft.AspNetCore" Version="2.2.0" />
<PackageReference Include="Microsoft.AspNetCore.Mvc.NewtonsoftJson" Version="6.0.0" />
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
<ItemGroup>
<PackageReference Include="elfhHub.Nhs.Models" Version="3.0.8" />
<PackageReference Include="LearningHub.Nhs.Caching" Version="2.0.0" />
<PackageReference Include="LearningHub.Nhs.Models" Version="3.0.30" />
<PackageReference Include="LearningHub.Nhs.Models" Version="3.0.31" />
<PackageReference Update="StyleCop.Analyzers" Version="1.1.118">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
<PackageReference Include="elfhHub.Nhs.Models" Version="3.0.8" />
<PackageReference Include="FluentAssertions" Version="6.2.0" />
<PackageReference Include="LearningHub.Nhs.Caching" Version="2.0.0" />
<PackageReference Include="LearningHub.Nhs.Models" Version="3.0.30" />
<PackageReference Include="LearningHub.Nhs.Models" Version="3.0.31" />
<PackageReference Include="Microsoft.AspNetCore.Mvc.Core" Version="2.2.5" />
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.0.0" />
<PackageReference Include="Moq" Version="4.16.1" />
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -512,6 +512,7 @@
<Build Include="Stored Procedures\Activity\GetUserLatestActivityCheck.sql" />
<Build Include="Stored Procedures\Activity\GetUserLearningActivities.sql" />
<Build Include="Stored Procedures\Activity\GetUserLearningActivitiesCount.sql" />
<None Include="Scripts\Post-Deploy\Scripts\TD-2929_ActivityStatusUpdates.sql" />
</ItemGroup>
<ItemGroup>
<None Include="Scripts\Pre-Deploy\Scripts\Card5766_AuthorTableChanges.PreDeployment.sql" />
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -246,7 +246,8 @@ FROM (
)
)
OR
([Res].[ResourceTypeId] IN (6) AND [ResourceActivity].[ActivityStatusId] = 3)
([Res].[ResourceTypeId] IN (6,11) AND [ResourceActivity].[ActivityStatusId] = 3)
OR ([Res].[ResourceTypeId] IN (11) AND [ResourceActivity].[ActivityStatusId] = 3 AND [AssessResVer].[AssessmentType]=1)
--OR
--(
-- ([Res].[ResourceTypeId] IN (1,5,10,12) AND [ResourceActivity].[ActivityStatusId] = 3)
Expand Down Expand Up @@ -347,7 +348,7 @@ FROM (
EXISTS (SELECT 1 FROM @tmpActivityStatus WHERE ActivityStatusId = 5)
AND
(
[Res].[ResourceTypeId] = 11
[Res].[ResourceTypeId] = 11 AND [AssessResVer].[AssessmentType]=2
AND
EXISTS
(
Expand Down Expand Up @@ -380,7 +381,7 @@ FROM (

AND
(
[Res].[ResourceTypeId] = 11
[Res].[ResourceTypeId] = 11 and [AssessResVer].[AssessmentType]=2
AND
EXISTS
(
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -161,7 +161,8 @@ FROM (
)
)
OR
([Res].[ResourceTypeId] IN (6) AND [ResourceActivity].[ActivityStatusId] = 3)
([Res].[ResourceTypeId] IN (6,11) AND [ResourceActivity].[ActivityStatusId] = 3)
OR ([Res].[ResourceTypeId] IN (11) AND [ResourceActivity].[ActivityStatusId] = 3 AND [AssessResVer].[AssessmentType]=1)

--OR
--(
Expand Down Expand Up @@ -263,7 +264,7 @@ FROM (
EXISTS (SELECT 1 FROM @tmpActivityStatus WHERE ActivityStatusId = 5)
AND
(
[Res].[ResourceTypeId] = 11
[Res].[ResourceTypeId] = 11 AND [AssessResVer].[AssessmentType]=2
AND
EXISTS
(
Expand Down Expand Up @@ -296,7 +297,7 @@ FROM (

AND
(
[Res].[ResourceTypeId] = 11
[Res].[ResourceTypeId] = 11 and [AssessResVer].[AssessmentType]=2
AND
EXISTS
(
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ CREATE PROCEDURE [hierarchy].[CatalogueCreate]
@CardImageUrl nvarchar(128),
@BannerUrl nvarchar(128) null,
@Order int,
@Description nvarchar(4000),
@Description nvarchar(max),
@UserId int,
@Hidden bit,
@Keywords nvarchar(max),
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
[CardImageUrl] NVARCHAR (128) NULL,
[BannerUrl] NVARCHAR (128) NULL,
[CertificateUrl] NVARCHAR (128) NULL,
[Description] NVARCHAR (4000) NOT NULL,
[Description] NVARCHAR (MAX) NOT NULL,
[OwnerName] NVARCHAR (250) NULL,
[OwnerEmailAddress] NVARCHAR (250) NULL,
[Notes] NVARCHAR (MAX) NULL,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
<ItemGroup>
<PackageReference Include="elfhHub.Nhs.Models" Version="3.0.8" />
<PackageReference Include="LearningHub.Nhs.Caching" Version="2.0.0" />
<PackageReference Include="LearningHub.Nhs.Models" Version="3.0.30" />
<PackageReference Include="LearningHub.Nhs.Models" Version="3.0.31" />
<PackageReference Include="Microsoft.EntityFrameworkCore" Version="6.0.0" />
<PackageReference Include="Microsoft.EntityFrameworkCore.SqlServer" Version="6.0.0" />
<PackageReference Update="StyleCop.Analyzers" Version="1.1.118">
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -400,11 +400,14 @@ private void BindAssessmentResourceActivityNestedData(List<MyLearningActivity> r
List<AssessmentResourceActivityInteraction> assessmentResourceActivityInteractionList = new List<AssessmentResourceActivityInteraction>();
foreach (var item in c)
{
AssessmentResourceActivityInteraction assessmentResourceActivityInteraction = new AssessmentResourceActivityInteraction();
assessmentResourceActivityInteraction.AssessmentResourceActivityId = i.AssessmentResourceActivity_AssessmentResourceActivityInteraction_AssessmentResourceActivityId ?? 0;
assessmentResourceActivityInteraction.Id = i.AssessmentResourceActivity_AssessmentResourceActivityInteraction_Id ?? 0;
assessmentResourceActivityInteraction.QuestionBlockId = i.AssessmentResourceActivity_AssessmentResourceActivityInteraction_QuestionBlockId ?? 0;
assessmentResourceActivityInteractionList.Add(assessmentResourceActivityInteraction);
if (i.AssessmentResourceActivity_AssessmentResourceActivityInteraction_Id != null)
{
AssessmentResourceActivityInteraction assessmentResourceActivityInteraction = new AssessmentResourceActivityInteraction();
assessmentResourceActivityInteraction.AssessmentResourceActivityId = i.AssessmentResourceActivity_AssessmentResourceActivityInteraction_AssessmentResourceActivityId ?? 0;
assessmentResourceActivityInteraction.Id = i.AssessmentResourceActivity_AssessmentResourceActivityInteraction_Id ?? 0;
assessmentResourceActivityInteraction.QuestionBlockId = i.AssessmentResourceActivity_AssessmentResourceActivityInteraction_QuestionBlockId ?? 0;
assessmentResourceActivityInteractionList.Add(assessmentResourceActivityInteraction);
}
}

assessmentResourceActivity.AssessmentResourceActivityInteractions = assessmentResourceActivityInteractionList;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
<ItemGroup>
<PackageReference Include="elfhHub.Nhs.Models" Version="3.0.8" />
<PackageReference Include="LearningHub.Nhs.Caching" Version="2.0.0" />
<PackageReference Include="LearningHub.Nhs.Models" Version="3.0.30" />
<PackageReference Include="LearningHub.Nhs.Models" Version="3.0.31" />
<PackageReference Include="Microsoft.EntityFrameworkCore" Version="6.0.0" />
<PackageReference Include="Microsoft.EntityFrameworkCore.SqlServer" Version="6.0.0" />
<PackageReference Update="StyleCop.Analyzers" Version="1.1.118">
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
<PackageReference Include="Azure.Storage.Queues" Version="12.11.0" />
<PackageReference Include="elfhHub.Nhs.Models" Version="3.0.8" />
<PackageReference Include="LearningHub.Nhs.Caching" Version="2.0.0" />
<PackageReference Include="LearningHub.Nhs.Models" Version="3.0.30" />
<PackageReference Include="LearningHub.Nhs.Models" Version="3.0.31" />
<PackageReference Include="System.Data.SqlClient" Version="4.8.5" />
<PackageReference Update="StyleCop.Analyzers" Version="1.1.118">
<PrivateAssets>all</PrivateAssets>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
<PackageReference Include="EntityFrameworkCore.Testing.Moq" Version="4.0.0" />
<PackageReference Include="FluentAssertions" Version="6.2.0" />
<PackageReference Include="LearningHub.Nhs.Caching" Version="2.0.0" />
<PackageReference Include="LearningHub.Nhs.Models" Version="3.0.30" />
<PackageReference Include="LearningHub.Nhs.Models" Version="3.0.31" />
<PackageReference Include="Microsoft.EntityFrameworkCore" Version="6.0.0" />
<PackageReference Include="Microsoft.EntityFrameworkCore.SqlServer" Version="6.0.0" />
<PackageReference Include="Microsoft.Extensions.Configuration.Json" Version="6.0.0" />
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
<PackageReference Include="elfhHub.Nhs.Models" Version="3.0.8" />
<PackageReference Include="FluentValidation.AspNetCore" Version="10.3.4" />
<PackageReference Include="LearningHub.Nhs.Caching" Version="2.0.0" />
<PackageReference Include="LearningHub.Nhs.Models" Version="3.0.30" />
<PackageReference Include="LearningHub.Nhs.Models" Version="3.0.31" />
<PackageReference Include="Microsoft.Azure.Management.DataFactory" Version="4.28.0" />
<PackageReference Include="Microsoft.Azure.Management.Media" Version="5.0.0" />
<PackageReference Include="Microsoft.IdentityModel.Clients.ActiveDirectory" Version="5.2.9" />
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
<PackageReference Include="elfhHub.Nhs.Models" Version="3.0.8" />
<PackageReference Include="IdentityModel" Version="5.2.0" />
<PackageReference Include="LearningHub.Nhs.Caching" Version="2.0.0" />
<PackageReference Include="LearningHub.Nhs.Models" Version="3.0.30" />
<PackageReference Include="LearningHub.Nhs.Models" Version="3.0.31" />
<PackageReference Include="Microsoft.Extensions.Configuration.Json" Version="6.0.0" />
<PackageReference Update="StyleCop.Analyzers" Version="1.1.118">
<PrivateAssets>all</PrivateAssets>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
<ItemGroup>
<PackageReference Include="elfhHub.Nhs.Models" Version="3.0.8" />
<PackageReference Include="LearningHub.Nhs.Caching" Version="2.0.0" />
<PackageReference Include="LearningHub.Nhs.Models" Version="3.0.30" />
<PackageReference Include="LearningHub.Nhs.Models" Version="3.0.31" />
<PackageReference Update="StyleCop.Analyzers" Version="1.1.118">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
Expand Down
Loading