Skip to content

Commit f8bcd6f

Browse files
test: Add end-to-end test for CPM features
Signed-off-by: Marcel Bochtler <marcel.bochtler@bosch.com>
1 parent 4dbfe0b commit f8bcd6f

4 files changed

Lines changed: 590 additions & 0 deletions

File tree

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
<Project>
2+
3+
<PropertyGroup>
4+
<ManagePackageVersionsCentrally>true</ManagePackageVersionsCentrally>
5+
</PropertyGroup>
6+
7+
<ItemGroup>
8+
<!-- GlobalPackageReference: applied to all projects automatically -->
9+
<GlobalPackageReference Include="MinVer" Version="4.2.0" />
10+
</ItemGroup>
11+
12+
<ItemGroup>
13+
<!-- PackageVersion: central version definitions used by projects without a version -->
14+
<PackageVersion Include="Newtonsoft.Json" Version="13.0.3" />
15+
<!-- System.Text.Json: central version is 7.0.3, but the project will override it -->
16+
<PackageVersion Include="System.Text.Json" Version="7.0.3" />
17+
</ItemGroup>
18+
19+
</Project>
Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
<Project Sdk="Microsoft.NET.Sdk">
2+
3+
<PropertyGroup>
4+
<TargetFramework>net6.0</TargetFramework>
5+
</PropertyGroup>
6+
7+
<ItemGroup>
8+
<!-- Version resolved from central Directory.Packages.props (PackageVersion 13.0.3) -->
9+
<PackageReference Include="Newtonsoft.Json" />
10+
<!-- VersionOverride takes precedence over the central version of 7.0.3 -->
11+
<PackageReference Include="System.Text.Json">
12+
<VersionOverride>6.0.9</VersionOverride>
13+
</PackageReference>
14+
</ItemGroup>
15+
16+
</Project>

0 commit comments

Comments
 (0)