-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDirectory.Packages.props
41 lines (41 loc) · 2.72 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
39
40
41
<?xml version="1.0" encoding="utf-8"?>
<Project>
<PropertyGroup>
<ManagePackageVersionsCentrally>true</ManagePackageVersionsCentrally>
</PropertyGroup>
<!-- Set versions of dependencies that need special treatment or consist of multiple packages of the same version. -->
<PropertyGroup>
<!-- We must match the version used by the lowest version of Visual Studion supported by the VSX. -->
<NewtonsoftJsonMinVersion>12.0.1</NewtonsoftJsonMinVersion>
<!-- This is the version used in the programs (not in libraries) and it should be the latest. -->
<NewtonsoftJsonVersion>13.0.3</NewtonsoftJsonVersion>
<PostSharpEngineeringVersion Condition="'$(PostSharpEngineeringVersion)'==''">2023.2.140</PostSharpEngineeringVersion>
</PropertyGroup>
<ItemGroup>
<PackageVersion Include="Azure.Identity" Version="1.11.4" />
<PackageVersion Include="Azure.Security.KeyVault.Secrets" Version="4.6.0" />
<PackageVersion Include="JetBrains.Annotations" Version="2022.3.1" />
<PackageVersion Include="JetBrains.Profiler.SelfApi" Version="2.5.3" />
<!-- With K4os.Hash.xxHash, make sure that the dependency on System.Memory is not higher
than the one required by the lowest version of Visual Studion supported by the VSX. -->
<PackageVersion Include="K4os.Hash.xxHash" Version="1.0.8" />
<PackageVersion Include="Microsoft.Bcl.HashCode" Version="1.1.1" />
<PackageVersion Include="Microsoft.Extensions.DependencyInjection" Version="2.1.1" />
<PackageVersion Include="Microsoft.Extensions.DependencyInjection.Abstractions" Version="2.1.1" />
<PackageVersion Include="Microsoft.Toolkit.Uwp.Notifications" Version="7.1.3" />
<PackageVersion Include="Microsoft.Web.WebView2" Version="1.0.2210.55" />
<PackageVersion Include="Newtonsoft.Json" Version="$(NewtonsoftJsonVersion)" />
<PackageVersion Include="PostSharp.Engineering.BuildTools" Version="$(PostSharpEngineeringVersion)" />
<PackageVersion Include="Spectre.Console" Version="0.48.0" />
<PackageVersion Include="Spectre.Console.Cli" Version="0.48.0" />
<!-- The version should not be higher than the one in Metalama.Compiler,
otherwise we downgrade the package. -->
<PackageVersion Include="System.Collections.Immutable" Version="5.0.0" />
<PackageVersion Include="System.DirectoryServices" Version="6.0.1" />
<PackageVersion Include="System.IO.Abstractions" Version="13.2.47" />
<PackageVersion Include="System.IO.Abstractions.TestingHelpers" Version="13.2.47" />
<PackageVersion Include="System.IO.Packaging" Version="6.0.1" />
<PackageVersion Include="Microsoft.Win32.Registry" Version="5.0.0" />
<PackageVersion Include="System.Threading.AccessControl" Version="8.0.0" />
</ItemGroup>
</Project>