Skip to content

Commit 359fb07

Browse files
committed
Update .NET 8
1 parent 984c1d9 commit 359fb07

File tree

4 files changed

+12
-8
lines changed

4 files changed

+12
-8
lines changed

.github/workflows/azure-webapps-dotnet-core.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ name: Build and deploy to Azure Web App
44
env:
55
AZURE_WEBAPP_NAME: bff-vue-aspnetcore # set this to the name of your Azure Web App
66
AZURE_WEBAPP_PACKAGE_PATH: '.' # set this to the path to your web app project, defaults to the repository root
7-
DOTNET_VERSION: '7.0' # set this to the .NET Core version to use
7+
DOTNET_VERSION: '8.0' # set this to the .NET Core version to use
88

99
on:
1010
push:

.github/workflows/dotnet.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
- name: Setup .NET
1818
uses: actions/setup-dotnet@v3
1919
with:
20-
dotnet-version: 7.0.x
20+
dotnet-version: 8.0.x
2121

2222
- name: Restore dependencies
2323
run: dotnet restore

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
## ASP.NET Core, Vue.js BFF using Microsoft Entra ID Changelog
22

3+
### 2023-11-17 0.0.3
4+
5+
- .NET 8
6+
37
### 2023-09-30 0.0.2
48

59
- Update packages

server/BffMicrosoftEntraID.Server.csproj

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,18 @@
11
<Project Sdk="Microsoft.NET.Sdk.Web">
22

33
<PropertyGroup>
4-
<TargetFramework>net7.0</TargetFramework>
4+
<TargetFramework>net8.0</TargetFramework>
55
<Nullable>enable</Nullable>
66
<ImplicitUsings>enable</ImplicitUsings>
77
<UserSecretsId>1718c0e4-1dc3-49e8-87a7-16301f1eecb3</UserSecretsId>
88
</PropertyGroup>
99

1010
<ItemGroup>
11-
<PackageReference Include="Microsoft.AspNetCore.Authentication.OpenIdConnect" Version="7.0.11" NoWarn="NU1605" />
12-
<PackageReference Include="Microsoft.AspNetCore.Components.WebAssembly.Server" Version="7.0.11" />
13-
<PackageReference Include="Microsoft.Identity.Web.GraphServiceClient" Version="2.14.0" />
14-
<PackageReference Include="Microsoft.Identity.Web" Version="2.14.0" />
15-
<PackageReference Include="Microsoft.Identity.Web.UI" Version="2.14.0" />
11+
<PackageReference Include="Microsoft.AspNetCore.Authentication.OpenIdConnect" Version="8.0.0" NoWarn="NU1605" />
12+
<PackageReference Include="Microsoft.AspNetCore.Components.WebAssembly.Server" Version="8.0.0" />
13+
<PackageReference Include="Microsoft.Identity.Web.GraphServiceClient" Version="2.15.3" />
14+
<PackageReference Include="Microsoft.Identity.Web" Version="2.15.3" />
15+
<PackageReference Include="Microsoft.Identity.Web.UI" Version="2.15.3" />
1616
<PackageReference Include="NetEscapades.AspNetCore.SecurityHeaders" Version="0.21.0" />
1717
<PackageReference Include="NetEscapades.AspNetCore.SecurityHeaders.TagHelpers" Version="0.21.0" />
1818
<PackageReference Include="Yarp.ReverseProxy" Version="2.0.1" />

0 commit comments

Comments
 (0)