-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathcommon_versions.props
More file actions
57 lines (53 loc) · 2.46 KB
/
Copy pathcommon_versions.props
File metadata and controls
57 lines (53 loc) · 2.46 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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup Condition="$(TargetFramework.StartsWith('net6'))">
<LangVersion>12.0</LangVersion>
<MsExtensionsVer>8.*</MsExtensionsVer>
<MsCodeAnalysisVer>4.12.0</MsCodeAnalysisVer>
<MsCodeAnalysisAnalyzersVer>3.3.4</MsCodeAnalysisAnalyzersVer>
<FSharpVer>43.9.300</FSharpVer>
<MsTestVer>3.11.1</MsTestVer>
<MsTestSdkVer>17.13.0</MsTestSdkVer>
<!-- net6.0 is past end-of-life and many transitive packages (10.x) no longer claim
net6.0 support. Silence the TFM-support warning for the net6 build only (not net10),
since net6 is kept intentionally. -->
<SuppressTfmSupportBuildWarnings>true</SuppressTfmSupportBuildWarnings>
</PropertyGroup>
<PropertyGroup Condition="$(TargetFramework.StartsWith('netstandard')) OR $(TargetFramework.StartsWith('net10'))">
<LangVersion>latest</LangVersion>
<MsCodeAnalysisVer>5.*</MsCodeAnalysisVer>
<MsCodeAnalysisAnalyzersVer>5.*</MsCodeAnalysisAnalyzersVer>
</PropertyGroup>
<PropertyGroup Condition="$(TargetFramework.StartsWith('net10'))">
<MsExtensionsVer>10.*</MsExtensionsVer>
<FSharpVer>43.*</FSharpVer>
<MsTestVer>4.*</MsTestVer>
<MsTestSdkVer>18.*</MsTestSdkVer>
</PropertyGroup>
<PropertyGroup>
<EcngVer>1.0.*</EcngVer>
<MicrosoftAspNetWebApiClientVer>6.*</MicrosoftAspNetWebApiClientVer>
<SystemReflectionEmitLightweightVer>4.*</SystemReflectionEmitLightweightVer>
<SystemMemoryVer>4.*</SystemMemoryVer>
<NewtonJsonVer>13.*</NewtonJsonVer>
<RestSharpVer>112.*</RestSharpVer>
<NDdeVer>4.*</NDdeVer>
<NitoVer>5.*</NitoVer>
<MarkdigVer>1.*</MarkdigVer>
<CsWin32Ver>0.3.106</CsWin32Ver>
<WmiLightVer>6.5.2</WmiLightVer>
<AzureStorageBlobsVer>12.*</AzureStorageBlobsVer>
<AWSSDKVer>4.*</AWSSDKVer>
<IronPythonVer>3.*</IronPythonVer>
<NuGetApiVer>7.6.0</NuGetApiVer>
<ImageSharpVer>3.*</ImageSharpVer>
<MsSqlClientVer>7.*</MsSqlClientVer>
<!-- 11.0 preview: pulls SQLitePCLRaw.bundle_e_sqlite3 3.0.3 (SQLite >= 3.50.2)
transitively, clearing NU1903/CVE-2025-6965. The 10.* line still ships the
vulnerable native lib 2.1.11. Move back to a stable 11.* once it releases. -->
<MsDataSqliteVer>11.0.0-preview.5.26302.115</MsDataSqliteVer>
<OpenXmlVer>3.*</OpenXmlVer>
<SharpCompressVer>1.*</SharpCompressVer>
<NpgsqlVer>10.*</NpgsqlVer>
<SmartFormatVer>3.*</SmartFormatVer>
</PropertyGroup>
</Project>