Skip to content

Commit

Permalink
Add support for .net8 (#22)
Browse files Browse the repository at this point in the history
  • Loading branch information
Jeavon authored Jan 12, 2024
1 parent 42338cc commit 9f2358c
Showing 1 changed file with 11 additions and 2 deletions.
13 changes: 11 additions & 2 deletions src/Umbraco.Community.AzureSSO/Umbraco.Community.AzureSSO.csproj
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFrameworks>net7.0;net6.0</TargetFrameworks>
<TargetFrameworks>net8.0;net7.0;net6.0</TargetFrameworks>
<Nullable>enable</Nullable>
<PackageId>Umbraco.Community.AzureSSO</PackageId>
<Version>1.2.0-beta002</Version>
Expand Down Expand Up @@ -29,7 +29,16 @@
</None>
</ItemGroup>
<ItemGroup>
<PackageReference Include="Microsoft.Identity.Web.MicrosoftGraph" Version="1.25.10" />
<PackageReference Include="Microsoft.Identity.Web" Version="2.16.0" />
</ItemGroup>

<ItemGroup Condition="'$(TargetFramework)' == 'net8.0'">
<PackageReference Include="Umbraco.Cms.Core">
<Version>13.0.0</Version>
</PackageReference>
<PackageReference Include="Umbraco.Cms.Web.BackOffice">
<Version>13.0.0</Version>
</PackageReference>
</ItemGroup>
<ItemGroup Condition="'$(TargetFramework)' == 'net7.0'">
<PackageReference Include="Umbraco.Cms.Core">
Expand Down

0 comments on commit 9f2358c

Please sign in to comment.