File tree Expand file tree Collapse file tree 4 files changed +12
-8
lines changed Expand file tree Collapse file tree 4 files changed +12
-8
lines changed Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ name: Build and deploy to Azure Web App
4
4
env :
5
5
AZURE_WEBAPP_NAME : bff-vue-aspnetcore # set this to the name of your Azure Web App
6
6
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
8
8
9
9
on :
10
10
push :
Original file line number Diff line number Diff line change 17
17
- name : Setup .NET
18
18
uses : actions/setup-dotnet@v3
19
19
with :
20
- dotnet-version : 7 .0.x
20
+ dotnet-version : 8 .0.x
21
21
22
22
- name : Restore dependencies
23
23
run : dotnet restore
Original file line number Diff line number Diff line change 1
1
## ASP.NET Core, Vue.js BFF using Microsoft Entra ID Changelog
2
2
3
+ ### 2023-11-17 0.0.3
4
+
5
+ - .NET 8
6
+
3
7
### 2023-09-30 0.0.2
4
8
5
9
- Update packages
Original file line number Diff line number Diff line change 1
1
<Project Sdk =" Microsoft.NET.Sdk.Web" >
2
2
3
3
<PropertyGroup >
4
- <TargetFramework >net7 .0</TargetFramework >
4
+ <TargetFramework >net8 .0</TargetFramework >
5
5
<Nullable >enable</Nullable >
6
6
<ImplicitUsings >enable</ImplicitUsings >
7
7
<UserSecretsId >1718c0e4-1dc3-49e8-87a7-16301f1eecb3</UserSecretsId >
8
8
</PropertyGroup >
9
9
10
10
<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 " />
16
16
<PackageReference Include =" NetEscapades.AspNetCore.SecurityHeaders" Version =" 0.21.0" />
17
17
<PackageReference Include =" NetEscapades.AspNetCore.SecurityHeaders.TagHelpers" Version =" 0.21.0" />
18
18
<PackageReference Include =" Yarp.ReverseProxy" Version =" 2.0.1" />
You can’t perform that action at this time.
0 commit comments