Skip to content
Merged

Dev #1454

Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
37 commits
Select commit Hold shift + click to select a range
fd7f3bd
AB#28896 - .net libs updates
AndreGAot May 20, 2025
c90adf9
AB#28896 nuget packages updated
AndreGAot May 20, 2025
28594d8
AB#28896 cater for dt v9 file loading
AndreGAot May 22, 2025
db769c8
AB#28896 more cleanup and fix row buttons
AndreGAot May 22, 2025
33edbfc
AB#28896 - add comment about datatables workaround
AndreGAot May 27, 2025
07b1eb7
AB#28896 correct image docker image versions
AndreGAot May 27, 2025
271cf3f
AB#28896 revert back to old cli and up version
AndreGAot May 28, 2025
b6d0440
AB#29215 - initial commit for bulk approval updates
AndreGAot Jun 24, 2025
6a2fc31
AB#29215 refactor the screen layout and viewmodels
AndreGAot Jun 25, 2025
0832aac
AB#29215 - move some of the validation logic from the UI to applicati…
AndreGAot Jun 25, 2025
691a818
feature/ab#29178 Added reset to default view button
cyrusparsons Jun 25, 2025
26c42d5
Merge branch 'dev' of https://github.com/bcgov/unity into feature/ab#…
cyrusparsons Jun 25, 2025
ad73623
AB#29393 - make report data not null
AndreGAot Jun 25, 2025
69d2533
Merge remote-tracking branch 'origin/dev' into bugfix/AB#29393-intake…
AndreGAot Jun 25, 2025
b9f71e3
Merge remote-tracking branch 'origin/dev' into feature/AB#29215-batch…
AndreGAot Jun 25, 2025
8771381
AB#28379 - comment out the columnToggle extend
AndreGAot Jun 25, 2025
686a854
Merge pull request #1449 from bcgov/bugfix/AB#29393-intake-reportdata…
JamesPasta Jun 26, 2025
f2687bf
AB#29215 apply CodeQL suggestions
AndreGAot Jun 26, 2025
b3a67a0
AB#28379 remove commented out columnToggle extend
AndreGAot Jun 26, 2025
dc8d78d
AB#29399 - Add authorization wrappers to top-level application detail…
plavoie-BC Jun 26, 2025
296c46a
feature/ab#29178 Updated old default columns list and added close dro…
cyrusparsons Jun 26, 2025
b7b013e
AB#29215 update comments suggested by CodeQL
AndreGAot Jun 26, 2025
d5a686c
AB#29215 apply another CodeQL suggestion
AndreGAot Jun 26, 2025
2aef403
AB#29399 - Add fix for payment info tab
plavoie-BC Jun 26, 2025
2368058
Merge pull request #1447 from bcgov/bugfix/AB#28379-column-selector-t…
AndreGAot Jun 26, 2025
fc1b02a
Merge remote-tracking branch 'origin/dev' into feature/AB#28896-dotne…
AndreGAot Jun 26, 2025
b6d8969
AB#28896 merge fixes
AndreGAot Jun 26, 2025
d6d9949
Merge pull request #1453 from bcgov/feature/AB#28896-dotnet-9-upgrade
JamesPasta Jun 26, 2025
ef5aba5
Merge pull request #1452 from bcgov/bugfix/AB#29399-authorization-exc…
JamesPasta Jun 26, 2025
f425db0
Merge pull request #1448 from bcgov/feature/AB#29215-batch-approval-r…
JamesPasta Jun 26, 2025
c5344a1
Merge pull request #1450 from bcgov/feature/ab#29178-Applications-Lis…
JamesPasta Jun 26, 2025
dd612a1
AB#29423 - Add zone-extensions.js back into UX bundle
plavoie-BC Jun 27, 2025
45ebbf6
AB#29423 - Upgrade NodeJS to LTS version 22.17.0 and Yarn v1 to stabl…
plavoie-BC Jun 27, 2025
bb1225e
Merge pull request #1456 from bcgov/bugfix/AB#29423-bundling-regressions
JamesPasta Jun 27, 2025
e526835
bugfix/ab#29195 Saved views columns and display issue
samsaravillo Jun 27, 2025
9da3fd1
Merge branch 'dev' into bugfix/ab#29195-saved-views-columns-issue
samsaravillo Jun 27, 2025
b9b3da6
Merge pull request #1457 from bcgov/bugfix/ab#29195-saved-views-colum…
JamesPasta Jun 27, 2025
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
@@ -1,22 +1,22 @@
<Project Sdk="Microsoft.NET.Sdk">
<Project Sdk="Microsoft.NET.Sdk">

<Import Project="..\..\common.props" />

<PropertyGroup>
<TargetFrameworks>net8.0</TargetFrameworks>
<TargetFrameworks>net9.0</TargetFrameworks>
<Nullable>enable</Nullable>
<RootNamespace>Unity.Flex</RootNamespace>
</PropertyGroup>

<ItemGroup>
<PackageReference Include="Microsoft.Extensions.Caching.Memory" Version="8.0.1" />
<PackageReference Include="Microsoft.Extensions.FileProviders.Embedded" Version="8.0.8" />
<PackageReference Include="Microsoft.Extensions.Options" Version="9.0.0" />
<PackageReference Include="System.Text.Json" Version="8.0.5" />
<PackageReference Include="Volo.Abp.Ddd.Application.Contracts" Version="8.3.4" />
<PackageReference Include="Volo.Abp.Authorization" Version="8.3.4" />
<PackageReference Include="Volo.Abp.UI" Version="8.3.4" />
<PackageReference Include="Volo.Abp.Validation" Version="8.3.4" />
<PackageReference Include="Microsoft.Extensions.Caching.Memory" Version="9.0.5" />
<PackageReference Include="Microsoft.Extensions.FileProviders.Embedded" Version="9.0.5" />
<PackageReference Include="Microsoft.Extensions.Options" Version="9.0.5" />
<PackageReference Include="System.Text.Json" Version="9.0.5" />
<PackageReference Include="Volo.Abp.Ddd.Application.Contracts" Version="9.1.3" />
<PackageReference Include="Volo.Abp.Authorization" Version="9.1.3" />
<PackageReference Include="Volo.Abp.UI" Version="9.1.3" />
<PackageReference Include="Volo.Abp.Validation" Version="9.1.3" />
</ItemGroup>

<ItemGroup>
Expand All @@ -25,7 +25,7 @@

<ItemGroup>
<PackageReference Update="ConfigureAwait.Fody" Version="3.3.2" />
<PackageReference Update="Fody" Version="6.8.1">
<PackageReference Update="Fody" Version="6.9.2">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers</IncludeAssets>
</PackageReference>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,29 +3,29 @@
<Import Project="..\..\common.props" />

<PropertyGroup>
<TargetFramework>net8.0</TargetFramework>
<TargetFramework>net9.0</TargetFramework>
<Nullable>enable</Nullable>
<RootNamespace>Unity.Flex</RootNamespace>
</PropertyGroup>

<ItemGroup>
<PackageReference Include="Microsoft.Extensions.Caching.Memory" Version="8.0.1" />
<PackageReference Include="Microsoft.Extensions.Options" Version="9.0.0" />
<PackageReference Include="System.Text.Json" Version="8.0.5" />
<PackageReference Include="Volo.Abp.Autofac" Version="8.3.4" />
<PackageReference Include="Volo.Abp.AutoMapper" Version="8.3.4" />
<PackageReference Include="Volo.Abp.Ddd.Application" Version="8.3.4" />
<PackageReference Include="Volo.Abp.AspNetCore.Mvc" Version="8.3.4" />
<PackageReference Include="Volo.Abp.Http.Client" Version="8.3.4" />
<PackageReference Include="Volo.Abp.EntityFrameworkCore" Version="8.3.4" />
<PackageReference Include="Volo.Abp.TenantManagement.Domain" Version="8.3.4" />
<PackageReference Include="Microsoft.Extensions.Caching.Memory" Version="9.0.5" />
<PackageReference Include="Microsoft.Extensions.Options" Version="9.0.5" />
<PackageReference Include="System.Text.Json" Version="9.0.5" />
<PackageReference Include="Volo.Abp.Autofac" Version="9.1.3" />
<PackageReference Include="Volo.Abp.AutoMapper" Version="9.1.3" />
<PackageReference Include="Volo.Abp.Ddd.Application" Version="9.1.3" />
<PackageReference Include="Volo.Abp.AspNetCore.Mvc" Version="9.1.3" />
<PackageReference Include="Volo.Abp.Http.Client" Version="9.1.3" />
<PackageReference Include="Volo.Abp.EntityFrameworkCore" Version="9.1.3" />
<PackageReference Include="Volo.Abp.TenantManagement.Domain" Version="9.1.3" />
<ProjectReference Include="..\..\..\..\src\Unity.GrantManager.Application.Contracts\Unity.GrantManager.Application.Contracts.csproj" />
<ProjectReference Include="..\Unity.Flex.Application.Contracts\Unity.Flex.Application.Contracts.csproj" />
</ItemGroup>

<ItemGroup>
<PackageReference Update="ConfigureAwait.Fody" Version="3.3.2" />
<PackageReference Update="Fody" Version="6.8.1">
<PackageReference Update="Fody" Version="6.9.2">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers</IncludeAssets>
</PackageReference>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,25 +1,25 @@
<Project Sdk="Microsoft.NET.Sdk">
<Project Sdk="Microsoft.NET.Sdk">

<Import Project="..\..\common.props" />

<PropertyGroup>
<TargetFrameworks>net8.0</TargetFrameworks>
<TargetFrameworks>net9.0</TargetFrameworks>
<Nullable>enable</Nullable>
<RootNamespace>Unity.Flex</RootNamespace>
<GenerateEmbeddedFilesManifest>true</GenerateEmbeddedFilesManifest>
</PropertyGroup>

<ItemGroup>
<PackageReference Include="Microsoft.Extensions.Caching.Memory" Version="8.0.1" />
<PackageReference Include="Microsoft.Extensions.Options" Version="9.0.0" />
<PackageReference Include="Microsoft.Extensions.Caching.Memory" Version="9.0.5" />
<PackageReference Include="Microsoft.Extensions.Options" Version="9.0.5" />
<PackageReference Include="Newtonsoft.Json" Version="13.0.3" />
<PackageReference Include="System.Text.Json" Version="8.0.5" />
<PackageReference Include="Volo.Abp.Ddd.Domain.Shared" Version="8.3.4" />
<PackageReference Include="Volo.Abp.Validation" Version="8.3.4" />
<PackageReference Include="System.Text.Json" Version="9.0.5" />
<PackageReference Include="Volo.Abp.Ddd.Domain.Shared" Version="9.1.3" />
<PackageReference Include="Volo.Abp.Validation" Version="9.1.3" />
</ItemGroup>

<ItemGroup>
<PackageReference Include="Microsoft.Extensions.FileProviders.Embedded" Version="8.0.8" />
<PackageReference Include="Microsoft.Extensions.FileProviders.Embedded" Version="9.0.5" />
</ItemGroup>

<ItemGroup>
Expand All @@ -32,7 +32,7 @@

<ItemGroup>
<PackageReference Update="ConfigureAwait.Fody" Version="3.3.2" />
<PackageReference Update="Fody" Version="6.8.1">
<PackageReference Update="Fody" Version="6.9.2">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers</IncludeAssets>
</PackageReference>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,27 +1,26 @@
<Project Sdk="Microsoft.NET.Sdk.Web">
<Project Sdk="Microsoft.NET.Sdk.Web">

<Import Project="..\..\common.props" />

<PropertyGroup>
<TargetFramework>net8.0</TargetFramework>
<TargetFramework>net9.0</TargetFramework>
<Nullable>enable</Nullable>
<AssetTargetFallback>$(AssetTargetFallback);portable-net45+win8+wp8+wpa81;</AssetTargetFallback>
<IsPackable>true</IsPackable>
<OutputType>Library</OutputType>
<RootNamespace>Unity.Flex.Web</RootNamespace>
<GenerateEmbeddedFilesManifest>true</GenerateEmbeddedFilesManifest>
</PropertyGroup>

<ItemGroup>
<PackageReference Include="Microsoft.Extensions.Caching.Memory" Version="8.0.1" />
<PackageReference Include="Microsoft.Extensions.Options" Version="9.0.0" />
<PackageReference Include="System.Text.Json" Version="8.0.5" />
<PackageReference Include="Volo.Abp.AutoMapper" Version="8.3.4" />
<PackageReference Include="Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared" Version="8.3.4" />
<PackageReference Include="Microsoft.Extensions.Caching.Memory" Version="9.0.5" />
<PackageReference Include="Microsoft.Extensions.Options" Version="9.0.5" />
<PackageReference Include="System.Text.Json" Version="9.0.5" />
<PackageReference Include="Volo.Abp.AutoMapper" Version="9.1.3" />
<PackageReference Include="Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared" Version="9.1.3" />
</ItemGroup>

<ItemGroup>
<PackageReference Include="Microsoft.Extensions.FileProviders.Embedded" Version="8.0.8" />
<PackageReference Include="Microsoft.Extensions.FileProviders.Embedded" Version="9.0.5" />
</ItemGroup>

<ItemGroup>
Expand Down Expand Up @@ -55,7 +54,7 @@

<ItemGroup>
<PackageReference Update="ConfigureAwait.Fody" Version="3.3.2" />
<PackageReference Update="Fody" Version="6.8.1">
<PackageReference Update="Fody" Version="6.9.2">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers</IncludeAssets>
</PackageReference>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,28 +1,28 @@
<Project Sdk="Microsoft.NET.Sdk">
<Project Sdk="Microsoft.NET.Sdk">

<Import Project="..\..\common.props" />

<PropertyGroup>
<TargetFramework>net8.0</TargetFramework>
<TargetFramework>net9.0</TargetFramework>
<Nullable>enable</Nullable>
<RootNamespace>Unity.Flex</RootNamespace>
</PropertyGroup>

<ItemGroup>
<ProjectReference Include="..\..\src\Unity.Flex.Application\Unity.Flex.Application.csproj" />
<ProjectReference Include="..\Unity.Flex.TestBase\Unity.Flex.TestBase.csproj" />
<PackageReference Include="Microsoft.Extensions.Caching.Memory" Version="8.0.1" />
<PackageReference Include="Microsoft.Extensions.Options" Version="9.0.0" />
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.11.1" />
<PackageReference Include="System.Text.Json" Version="8.0.5" />
<PackageReference Include="Volo.Abp.EntityFrameworkCore.Sqlite" Version="8.3.4" />
<PackageReference Include="Volo.Abp.SettingManagement.Application" Version="8.3.4" />
<PackageReference Include="Volo.Abp.SettingManagement.Domain" Version="8.3.4" />
<PackageReference Include="Microsoft.Extensions.Caching.Memory" Version="9.0.5" />
<PackageReference Include="Microsoft.Extensions.Options" Version="9.0.5" />
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.14.0" />
<PackageReference Include="System.Text.Json" Version="9.0.5" />
<PackageReference Include="Volo.Abp.EntityFrameworkCore.Sqlite" Version="9.1.3" />
<PackageReference Include="Volo.Abp.SettingManagement.Application" Version="9.1.3" />
<PackageReference Include="Volo.Abp.SettingManagement.Domain" Version="9.1.3" />
</ItemGroup>

<ItemGroup>
<PackageReference Update="ConfigureAwait.Fody" Version="3.3.2" />
<PackageReference Update="Fody" Version="6.8.1">
<PackageReference Update="Fody" Version="6.9.2">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers</IncludeAssets>
</PackageReference>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,39 +1,39 @@
<Project Sdk="Microsoft.NET.Sdk">
<Project Sdk="Microsoft.NET.Sdk">

<Import Project="..\..\common.props" />

<PropertyGroup>
<TargetFramework>net8.0</TargetFramework>
<TargetFramework>net9.0</TargetFramework>
<Nullable>enable</Nullable>
<RootNamespace>Unity.Flex</RootNamespace>
</PropertyGroup>

<ItemGroup>
<PackageReference Include="Microsoft.Extensions.Options" Version="9.0.0" />
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.11.1" />
<PackageReference Include="NSubstitute" Version="5.1.0" />
<PackageReference Include="Microsoft.Extensions.Options" Version="9.0.5" />
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.14.0" />
<PackageReference Include="NSubstitute" Version="5.3.0" />
<PackageReference Include="NSubstitute.Analyzers.CSharp" Version="1.0.17">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers</IncludeAssets>
</PackageReference>
<PackageReference Include="Shouldly" Version="4.2.1" />
<PackageReference Include="System.Text.Json" Version="8.0.5" />
<PackageReference Include="Volo.Abp.Features" Version="8.3.4" />
<PackageReference Include="xunit" Version="2.9.0" />
<PackageReference Include="xunit.extensibility.execution" Version="2.9.0" />
<PackageReference Include="xunit.runner.visualstudio" Version="2.8.2">
<PackageReference Include="Shouldly" Version="4.3.0" />
<PackageReference Include="System.Text.Json" Version="9.0.5" />
<PackageReference Include="Volo.Abp.Features" Version="9.1.3" />
<PackageReference Include="xunit" Version="2.9.3" />
<PackageReference Include="xunit.extensibility.execution" Version="2.9.3" />
<PackageReference Include="xunit.runner.visualstudio" Version="3.1.0">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
<PackageReference Include="Volo.Abp.Autofac" Version="8.3.4" />
<PackageReference Include="Volo.Abp.Authorization" Version="8.3.4" />
<PackageReference Include="Volo.Abp.Guids" Version="8.3.4" />
<PackageReference Include="Volo.Abp.TestBase" Version="8.3.4" />
<PackageReference Include="Volo.Abp.Autofac" Version="9.1.3" />
<PackageReference Include="Volo.Abp.Authorization" Version="9.1.3" />
<PackageReference Include="Volo.Abp.Guids" Version="9.1.3" />
<PackageReference Include="Volo.Abp.TestBase" Version="9.1.3" />
</ItemGroup>

<ItemGroup>
<PackageReference Update="ConfigureAwait.Fody" Version="3.3.2" />
<PackageReference Update="Fody" Version="6.8.1">
<PackageReference Update="Fody" Version="6.9.2">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers</IncludeAssets>
</PackageReference>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk">
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFramework>net8.0</TargetFramework>
<TargetFramework>net9.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>

Expand All @@ -10,19 +10,19 @@
</PropertyGroup>

<ItemGroup>
<PackageReference Include="coverlet.collector" Version="6.0.2">
<PackageReference Include="coverlet.collector" Version="6.0.4">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
<PackageReference Include="Microsoft.Extensions.Caching.Memory" Version="8.0.1" />
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.11.1" />
<PackageReference Include="Npgsql" Version="8.0.6" />
<PackageReference Include="System.Formats.Asn1" Version="8.0.1" />
<PackageReference Include="System.Text.Json" Version="8.0.5" />
<PackageReference Include="Microsoft.Extensions.Caching.Memory" Version="9.0.5" />
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.14.0" />
<PackageReference Include="Npgsql" Version="9.0.3" />
<PackageReference Include="System.Formats.Asn1" Version="9.0.5" />
<PackageReference Include="System.Text.Json" Version="9.0.5" />
<PackageReference Include="System.Text.RegularExpressions" Version="4.3.1" />
<PackageReference Include="Volo.Abp.AspNetCore.Authentication.OpenIdConnect" Version="8.3.4" />
<PackageReference Include="xunit" Version="2.9.0" />
<PackageReference Include="xunit.runner.visualstudio" Version="2.8.2">
<PackageReference Include="Volo.Abp.AspNetCore.Authentication.OpenIdConnect" Version="9.1.3" />
<PackageReference Include="xunit" Version="2.9.3" />
<PackageReference Include="xunit.runner.visualstudio" Version="3.1.0">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,10 +1,9 @@
<Project Sdk="Microsoft.NET.Sdk.Web">
<Project Sdk="Microsoft.NET.Sdk.Web">

<PropertyGroup><LangVersion>latest</LangVersion>
<TargetFramework>net8.0</TargetFramework>
<TargetFramework>net9.0</TargetFramework>
<AssemblyName>Unity.Identity.Web</AssemblyName>
<PackageId>Unity.Identity.Web</PackageId>
<AssetTargetFallback>$(AssetTargetFallback);portable-net45+win8+wp8+wpa81;</AssetTargetFallback>
<PackageId>Unity.Identity.Web</PackageId>
<GenerateAssemblyConfigurationAttribute>false</GenerateAssemblyConfigurationAttribute>
<GenerateAssemblyCompanyAttribute>false</GenerateAssemblyCompanyAttribute>
<GenerateAssemblyProductAttribute>false</GenerateAssemblyProductAttribute>
Expand Down Expand Up @@ -32,16 +31,16 @@
</ItemGroup>

<ItemGroup>
<PackageReference Include="Microsoft.Extensions.Caching.Memory" Version="8.0.1" />
<PackageReference Include="Microsoft.Extensions.Options" Version="9.0.0" />
<PackageReference Include="System.Text.Json" Version="8.0.5" />
<PackageReference Include="Volo.Abp.PermissionManagement.Web" Version="8.3.4" />
<PackageReference Include="Volo.Abp.AutoMapper" Version="8.3.4" />
<PackageReference Include="Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared" Version="8.3.4" />
<PackageReference Include="Microsoft.Extensions.Caching.Memory" Version="9.0.5" />
<PackageReference Include="Microsoft.Extensions.Options" Version="9.0.5" />
<PackageReference Include="System.Text.Json" Version="9.0.5" />
<PackageReference Include="Volo.Abp.PermissionManagement.Web" Version="9.1.3" />
<PackageReference Include="Volo.Abp.AutoMapper" Version="9.1.3" />
<PackageReference Include="Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared" Version="9.1.3" />
</ItemGroup>

<ItemGroup>
<PackageReference Include="Microsoft.Extensions.FileProviders.Embedded" Version="8.0.8" />
<PackageReference Include="Microsoft.Extensions.FileProviders.Embedded" Version="9.0.5" />
</ItemGroup>

<ItemGroup>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk">
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFramework>net8.0</TargetFramework>
<TargetFramework>net9.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>

Expand All @@ -10,16 +10,16 @@
</PropertyGroup>

<ItemGroup>
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.11.1" />
<PackageReference Include="xunit" Version="2.9.0" />
<PackageReference Include="xunit.runner.visualstudio" Version="2.8.2">
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.14.0" />
<PackageReference Include="xunit" Version="2.9.3" />
<PackageReference Include="xunit.runner.visualstudio" Version="3.1.0">
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
<PrivateAssets>all</PrivateAssets>
</PackageReference>
</ItemGroup>

<ItemGroup>
<PackageReference Update="coverlet.collector" Version="6.0.2">
<PackageReference Update="coverlet.collector" Version="6.0.4">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers</IncludeAssets>
</PackageReference>
Expand Down
Loading