Skip to content

Commit f3d16cc

Browse files
committed
moved to 5
1 parent 40ff460 commit f3d16cc

File tree

4 files changed

+11
-11
lines changed

4 files changed

+11
-11
lines changed

.github/workflows/dotnet.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
- name: Setup .NET
1717
uses: actions/setup-dotnet@v1
1818
with:
19-
dotnet-version: 6.0.x
19+
dotnet-version: 5.0.x
2020
include-prerelease: true
2121

2222
- name: Build

BlazorWasmWithAADAuth/Client/BlazorWasmWithAADAuth.Client.csproj

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

33
<PropertyGroup>
4-
<TargetFramework>net6.0</TargetFramework>
4+
<TargetFramework>net5.0</TargetFramework>
55
</PropertyGroup>
66

77
<ItemGroup>
88
<None Remove="Services\3rkcddko.owg~" />
99
</ItemGroup>
1010

1111
<ItemGroup>
12-
<PackageReference Include="Microsoft.AspNetCore.Components.WebAssembly" Version="6.0.0" />
13-
<PackageReference Include="Microsoft.AspNetCore.Components.WebAssembly.DevServer" Version="6.0.0" PrivateAssets="all" />
12+
<PackageReference Include="Microsoft.AspNetCore.Components.WebAssembly" Version="5.0.12" />
13+
<PackageReference Include="Microsoft.AspNetCore.Components.WebAssembly.DevServer" Version="5.0.12" PrivateAssets="all" />
1414
<PackageReference Include="Microsoft.AspNetCore.WebUtilities" Version="2.2.0" />
15-
<PackageReference Include="Microsoft.Authentication.WebAssembly.Msal" Version="6.0.0" />
16-
<PackageReference Include="Microsoft.Extensions.Http" Version="6.0.0" />
15+
<PackageReference Include="Microsoft.Authentication.WebAssembly.Msal" Version="5.0.12" />
16+
<PackageReference Include="Microsoft.Extensions.Http" Version="5.0.0" />
1717
<PackageReference Include="Newtonsoft.Json" Version="13.0.1" />
1818
<PackageReference Include="Polly" Version="7.2.2" />
19-
<PackageReference Include="System.Net.Http.Json" Version="6.0.0" />
19+
<PackageReference Include="System.Net.Http.Json" Version="5.0.0" />
2020
</ItemGroup>
2121

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

33
<PropertyGroup>
4-
<TargetFramework>net6.0</TargetFramework>
4+
<TargetFramework>net5.0</TargetFramework>
55
<UserSecretsId>BlazorWasmWithAADAuth.Server-94FFA1CF-62F9-4AD1-B379-0F47F24D0B8A</UserSecretsId>
66
<WebProject_DirectoryAccessLevelKey>0</WebProject_DirectoryAccessLevelKey>
77
</PropertyGroup>
88

99
<ItemGroup>
10-
<PackageReference Include="Microsoft.AspNetCore.Components.WebAssembly.Server" Version="6.0.0" />
10+
<PackageReference Include="Microsoft.AspNetCore.Components.WebAssembly.Server" Version="5.0.12" />
1111
</ItemGroup>
1212

1313
<ItemGroup>
@@ -16,7 +16,7 @@
1616
</ItemGroup>
1717

1818
<ItemGroup>
19-
<PackageReference Include="Microsoft.AspNetCore.Authentication.AzureAD.UI" Version="6.0.0" />
19+
<PackageReference Include="Microsoft.AspNetCore.Authentication.AzureAD.UI" Version="5.0.12" />
2020
</ItemGroup>
2121

2222
</Project>
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22

33
<PropertyGroup>
4-
<TargetFramework>net6.0</TargetFramework>
4+
<TargetFramework>net5.0</TargetFramework>
55
</PropertyGroup>
66

77
</Project>

0 commit comments

Comments
 (0)