-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathDirectory.Build.props
More file actions
30 lines (27 loc) · 1.66 KB
/
Directory.Build.props
File metadata and controls
30 lines (27 loc) · 1.66 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
<?xml version="1.0" encoding="utf-8"?>
<Project>
<PropertyGroup>
<!-- Suppress invalid LIB search path warning across the solution -->
<NoWarn>$(NoWarn);1668</NoWarn>
<!-- Use static graph evaluation during restore to avoid target walk cycles -->
<RestoreUseStaticGraphEvaluation>true</RestoreUseStaticGraphEvaluation>
</PropertyGroup>
<ItemGroup>
<!-- Centralize package versions to avoid downgrades across projects -->
<PackageReference Update="Microsoft.Data.SqlClient" Version="5.2.2" />
<PackageReference Update="System.Configuration.ConfigurationManager" Version="7.0.0" />
<!-- If any legacy projects still reference System.Data.SqlClient, keep this pin. Ideally migrate to Microsoft.Data.SqlClient. -->
<PackageReference Update="System.Data.SqlClient" Version="4.9.0" />
<PackageReference Update="AWSSDK.Core" Version="3.7.500.17" />
<!-- Security and downgrade alignment -->
<PackageReference Update="Microsoft.Identity.Client" Version="4.61.3" />
<PackageReference Update="Microsoft.IdentityModel.JsonWebTokens" Version="6.35.0" />
<PackageReference Update="Microsoft.IdentityModel.Tokens" Version="6.35.0" />
<PackageReference Update="Microsoft.IdentityModel.Protocols" Version="6.35.0" />
<PackageReference Update="Microsoft.IdentityModel.Protocols.OpenIdConnect" Version="6.35.0" />
<PackageReference Update="System.Text.Encodings.Web" Version="6.0.0" />
<PackageReference Update="System.Memory" Version="4.5.5" />
<PackageReference Update="System.Collections.Immutable" Version="8.0.0" />
<PackageReference Update="System.Diagnostics.DiagnosticSource" Version="6.0.1" />
</ItemGroup>
</Project>