-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDirectory.Packages.props
More file actions
35 lines (29 loc) · 1.54 KB
/
Copy pathDirectory.Packages.props
File metadata and controls
35 lines (29 loc) · 1.54 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
<Project>
<Import Project="$(MSBuildThisFileDirectory)eng/Dependencies.props" />
<PropertyGroup>
<ManagePackageVersionsCentrally>true</ManagePackageVersionsCentrally>
<CentralPackageTransitivePinningEnabled>false</CentralPackageTransitivePinningEnabled>
</PropertyGroup>
<ItemGroup Label="Upstream CanKit — consumed as NuGet packages (Apache-2.0)">
<PackageVersion Include="CanKit.Abstractions" Version="$(CanKitVersion)" />
<PackageVersion Include="CanKit.Core" Version="$(CanKitVersion)" />
<PackageVersion Include="CanKit.Adapter.Virtual" Version="$(CanKitVersion)" />
</ItemGroup>
<ItemGroup Label="netstandard2.0 polyfills">
<PackageVersion Include="Microsoft.Bcl.AsyncInterfaces" Version="10.0.12" />
<PackageVersion Include="System.Memory" Version="4.6.3" />
<PackageVersion Include="System.Threading.Channels" Version="10.0.12" />
</ItemGroup>
<ItemGroup Label="Test">
<PackageVersion Include="Microsoft.NET.Test.Sdk" Version="18.9.0" />
<PackageVersion Include="xunit" Version="2.9.3" />
<PackageVersion Include="xunit.runner.visualstudio" Version="4.0.0" />
<!--
FluentAssertions is deliberately pinned to the 6.x line: from 8.0.0 onwards it ships under
the Xceed commercial license, which does not fit this MIT-licensed project. Do not accept an
automated major-version bump here (see .github/dependabot.yml).
-->
<PackageVersion Include="FluentAssertions" Version="6.12.2" />
<PackageVersion Include="coverlet.collector" Version="10.0.1" />
</ItemGroup>
</Project>