Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[feature/9.x] Bump the identity-dependencies group in /eng/dependabot/independent with 3 updates #7856

Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion eng/dependabot/independent/Versions.props
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<AzureIdentityVersion>1.13.2</AzureIdentityVersion>
<AzureStorageBlobsVersion>12.23.0</AzureStorageBlobsVersion>
<AzureStorageQueuesVersion>12.21.0</AzureStorageQueuesVersion>
<MicrosoftIdentityWebVersion>3.5.0</MicrosoftIdentityWebVersion>
<MicrosoftIdentityWebVersion>3.6.2</MicrosoftIdentityWebVersion>
<MicrosoftOpenApiReadersVersion>1.6.23</MicrosoftOpenApiReadersVersion>
<SystemPrivateUriVersion>4.3.2</SystemPrivateUriVersion>
<SystemSecurityPrincipalWindowsVersion>5.0.0</SystemSecurityPrincipalWindowsVersion>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,17 @@
<TargetFrameworks>$(TestTargetFrameworks)</TargetFrameworks>
<DefineConstants>$(DefineConstants);UNITTEST</DefineConstants>
</PropertyGroup>
<!--
Microsoft.Identity.Web and related libraries no longer support building
on .NET 7 and lower. Suppress the build warning for now until either the tests
are refactored to not build on .NET 7 and lower or when they are removed.
-->
<PropertyGroup Condition="'$(TargetFramework)'=='net6.0'">
<SuppressTfmSupportBuildWarnings>true</SuppressTfmSupportBuildWarnings>
</PropertyGroup>
<PropertyGroup Condition="'$(TargetFramework)'=='net7.0'">
<SuppressTfmSupportBuildWarnings>true</SuppressTfmSupportBuildWarnings>
</PropertyGroup>

<ItemGroup>
<FrameworkReference Include="Microsoft.AspNetCore.App" />
Expand Down
Loading