Skip to content

Commit 6796b1b

Browse files
Change Id Web version to 3.6.2 (#265)
* bump version * use net 9 * Updating packages (#266) --------- Co-authored-by: Jean-Marc Prieur <[email protected]>
1 parent 627d3e1 commit 6796b1b

File tree

6 files changed

+15
-12
lines changed

6 files changed

+15
-12
lines changed

.gitignore

+2
Original file line numberDiff line numberDiff line change
@@ -190,3 +190,5 @@ artifacts/
190190
/1. Desktop app calls Web API/AppCreationScripts/Steps.md
191191
/3.-Web-api-call-Microsoft-graph-for-personal-accounts/AppCreationScripts/createdApps.html
192192
/1.1 Desktop app calls Web API - PoP/AppCreationScripts/createdApps.html
193+
/.SharedData
194+
/out

1. Desktop app calls Web API/TodoListClient/TodoListClient.csproj

+3-3
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,9 @@
77
</PropertyGroup>
88

99
<ItemGroup>
10-
<PackageReference Include="Microsoft.Identity.Client" Version="4.54.1" />
11-
<PackageReference Include="Microsoft.Identity.Client.Desktop" Version="4.54.1" />
12-
<PackageReference Include="Microsoft.Identity.Client.Extensions.Msal" Version="2.29.0" />
10+
<PackageReference Include="Microsoft.Identity.Client" Version="4.67.2" />
11+
<PackageReference Include="Microsoft.Identity.Client.Desktop" Version="4.67.2" />
12+
<PackageReference Include="Microsoft.Identity.Client.Extensions.Msal" Version="4.67.2" />
1313
<PackageReference Include="Newtonsoft.Json" Version="13.0.1" />
1414
</ItemGroup>
1515

Original file line numberDiff line numberDiff line change
@@ -1,12 +1,13 @@
11
<Project Sdk="Microsoft.NET.Sdk.Web">
22

33
<PropertyGroup>
4-
<TargetFramework>netcoreapp3.1</TargetFramework>
4+
<TargetFramework>net9.0</TargetFramework>
55
<UserSecretsId>aspnet-TodoListService-03230DB1-5145-408C-A48B-BE3DAFC56C30</UserSecretsId>
66
<WebProject_DirectoryAccessLevelKey>0</WebProject_DirectoryAccessLevelKey>
77
</PropertyGroup>
88

99
<ItemGroup>
10-
<PackageReference Include="Microsoft.Identity.Web" Version="2.19.1" />
10+
<PackageReference Include="Microsoft.Identity.Web" Version="3.6.2" />
11+
<PackageReference Include="System.Drawing.Common" Version="6.0.0" />
1112
</ItemGroup>
1213
</Project>

2. Web API now calls Microsoft Graph/TodoListClient/TodoListClient.csproj

+2-2
Original file line numberDiff line numberDiff line change
@@ -108,10 +108,10 @@
108108
</ItemGroup>
109109
<ItemGroup>
110110
<PackageReference Include="Microsoft.Identity.Client">
111-
<Version>4.53.0</Version>
111+
<Version>4.67.2</Version>
112112
</PackageReference>
113113
<PackageReference Include="Microsoft.Identity.Client.Extensions.Msal">
114-
<Version>2.29.0</Version>
114+
<Version>4.67.2</Version>
115115
</PackageReference>
116116
<PackageReference Include="Newtonsoft.Json">
117117
<Version>13.0.3</Version>
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<Project Sdk="Microsoft.NET.Sdk.Web">
22

33
<PropertyGroup>
4-
<TargetFramework>net6.0</TargetFramework>
4+
<TargetFramework>net9.0</TargetFramework>
55
<UserSecretsId>aspnet-TodoListService-03230DB1-5145-408C-A48B-BE3DAFC56C31</UserSecretsId>
66
<WebProject_DirectoryAccessLevelKey>0</WebProject_DirectoryAccessLevelKey>
77
</PropertyGroup>
@@ -11,8 +11,8 @@
1111
</ItemGroup>
1212

1313
<ItemGroup>
14-
<PackageReference Include="Microsoft.Identity.Web.MicrosoftGraph" Version="2.19.1" />
15-
<PackageReference Include="Microsoft.Identity.Web" Version="2.19.1" />
14+
<PackageReference Include="Microsoft.Identity.Web" Version="3.6.2" />
15+
<PackageReference Include="Microsoft.Identity.Web.MicrosoftGraph" Version="3.6.2" />
1616
</ItemGroup>
1717

1818
</Project>

build.bat

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
msbuild /t:restore buildAllSlns.proj
2-
msbuild buildAllSlns.proj
1+
msbuild /t:restore buildAllSlns.proj /v:m
2+
msbuild buildAllSlns.proj /v:m

0 commit comments

Comments
 (0)