-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDirectory.Packages.props
More file actions
56 lines (47 loc) · 2.5 KB
/
Directory.Packages.props
File metadata and controls
56 lines (47 loc) · 2.5 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
<Project>
<PropertyGroup>
<ManagePackageVersionsCentrally>true</ManagePackageVersionsCentrally>
<CentralPackageTransitivePinningEnabled>true</CentralPackageTransitivePinningEnabled>
</PropertyGroup>
<!-- MAUI version varies by target framework -->
<PropertyGroup>
<MauiVersion Condition="$(TargetFramework.StartsWith('net10'))">10.0.41</MauiVersion>
<MauiVersion Condition="$(TargetFramework.StartsWith('net9'))">9.0.120</MauiVersion>
</PropertyGroup>
<ItemGroup>
<!-- Testing Framework -->
<PackageVersion Include="NSubstitute" Version="5.3.0" />
<PackageVersion Include="TUnit" Version="1.19.22" />
<PackageVersion Include="Verify.TUnit" Version="31.13.2" />
<PackageVersion Include="Verify.SourceGenerators" Version="2.5.0" />
<!--
Roslyn / Code Analysis — deliberately pinned to 4.14.0 to match the
minimum Roslyn version the source generator targets. Do NOT update these
independently; they must stay aligned with the Roslyn SDK the generator
is compiled against.
-->
<PackageVersion Include="Microsoft.CodeAnalysis.Analyzers" Version="3.11.0" />
<PackageVersion Include="Microsoft.CodeAnalysis.CSharp" Version="4.14.0" />
<PackageVersion Include="Microsoft.CodeAnalysis.CSharp.Workspaces" Version="4.14.0" />
<!-- Test Infrastructure -->
<PackageVersion Include="Basic.Reference.Assemblies.Net100" Version="1.8.4" />
<PackageVersion Include="Basic.Reference.Assemblies.Net90" Version="1.8.5" />
<PackageVersion Include="Basic.Reference.Assemblies.Net80" Version="1.8.4" />
<!-- Dependencies -->
<PackageVersion Include="Splat" Version="19.3.1" />
<PackageVersion Include="System.Reactive" Version="6.1.0" />
<!-- Build Tools -->
<PackageVersion Include="Nerdbank.GitVersioning" Version="3.9.50" />
<PackageVersion Include="stylecop.analyzers" Version="1.2.0-beta.556" />
<PackageVersion Include="Roslynator.Analyzers" Version="4.15.0" />
<PackageVersion Include="Microsoft.SourceLink.GitHub" Version="10.0.201" />
<!-- MAUI -->
<PackageVersion Include="Microsoft.Maui.Controls" Version="$(MauiVersion)" />
<PackageVersion Include="Microsoft.Maui.Controls.Compatibility" Version="$(MauiVersion)" />
<!-- Benchmarking -->
<PackageVersion Include="BenchmarkDotNet" Version="0.15.8" />
<!-- Test App Dependencies-->
<PackageVersion Include="ReactiveUI" Version="23.1.8" />
<PackageVersion Include="ReactiveUI.SourceGenerators" Version="2.6.1" />
</ItemGroup>
</Project>