-
Notifications
You must be signed in to change notification settings - Fork 3
/
Directory.Packages.props
38 lines (31 loc) · 1.46 KB
/
Directory.Packages.props
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
<Project>
<!--
Minimum version of Roslyn supporting our source generators.
These properties MUST be kept in sync with the version of Microsoft.CodeAnalysis.CSharp.
-->
<PropertyGroup>
<!--
The minimum supported version of Roslyn.
Used by the SDK to determine whether the compiler in use is supported.
-->
<BV_MinRoslynVersion>4.9</BV_MinRoslynVersion>
<!--
A textual hint telling which toolchains contain a suupported version of Roslyn.
Used by the SDK to construct a meaningful diagnostic message when an unsupported Roslyn version is detected.
-->
<BV_MinRoslynVersionHint>.NET SDK v8.0.200+ / Visual Studio 2022 17.9+</BV_MinRoslynVersionHint>
<!--
The package folder, under analyzers/dotnet, where the source generators DLL is put when packing the SDK.
Used by the SDK project when packing.
-->
<BV_SourceGeneratorsPackageFolder>roslyn4.9</BV_SourceGeneratorsPackageFolder>
</PropertyGroup>
<ItemGroup>
<PackageVersion Include="Microsoft.Build.Framework" Version="17.9.5" />
<PackageVersion Include="Microsoft.Build.Tasks.Core" Version="17.9.5" />
<PackageVersion Include="Microsoft.Build.Utilities.Core" Version="17.9.5" />
<PackageVersion Include="Microsoft.CodeAnalysis.Analyzers" Version="3.3.4" />
<PackageVersion Include="Microsoft.CodeAnalysis.CSharp" Version="4.9.2" />
<PackageVersion Include="PolyKit.Embedded" Version="3.0.9" />
</ItemGroup>
</Project>