Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 3fe9728

Browse files
bitschubseMarkus Kochlbargaoanu
authoredFeb 17, 2025··
feat: updated to Automapper 14.0 (#29)
* feat: updated to Automapper 14.0 * reference the current major version, 14 * chore: workflows updated --------- Co-authored-by: Markus Koch <[email protected]> Co-authored-by: Lucian Bargaoanu <[email protected]>
1 parent 6a5c265 commit 3fe9728

File tree

4 files changed

+13
-14
lines changed

4 files changed

+13
-14
lines changed
 

‎.github/workflows/ci.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
runs-on: windows-latest
1515
steps:
1616
- name: Checkout
17-
uses: actions/checkout@v2
17+
uses: actions/checkout@v4
1818
with:
1919
fetch-depth: 0
2020
- name: Build and Test
@@ -27,7 +27,7 @@ jobs:
2727
run: ./Push.ps1
2828
shell: pwsh
2929
- name: Artifacts
30-
uses: actions/upload-artifact@v2
30+
uses: actions/upload-artifact@v4
3131
with:
3232
name: artifacts
3333
path: artifacts/**/*

‎.github/workflows/release.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
runs-on: windows-latest
1212
steps:
1313
- name: Checkout
14-
uses: actions/checkout@v2
14+
uses: actions/checkout@v4
1515
with:
1616
fetch-depth: 0
1717
- name: Build and Test
@@ -30,7 +30,7 @@ jobs:
3030
run: ./Push.ps1
3131
shell: pwsh
3232
- name: Artifacts
33-
uses: actions/upload-artifact@v2
33+
uses: actions/upload-artifact@v4
3434
with:
3535
name: artifacts
3636
path: artifacts/**/*

‎src/AutoMapper.Extensions.EnumMapping.Tests/AutoMapper.Extensions.EnumMapping.Tests.csproj

+6-7
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,20 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22
<PropertyGroup>
3-
<TargetFramework>net8.0</TargetFramework>
3+
<TargetFramework>net9.0</TargetFramework>
44
<IsPackable>false</IsPackable>
55
<AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects>
66
</PropertyGroup>
77

88
<ItemGroup>
9-
<PackageReference Include="AutoMapper" Version="[13,)" />
10-
<PackageReference Include="Microsoft.CSharp" Version="4.7.0" />
11-
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.8.0" />
9+
<PackageReference Include="AutoMapper" Version="[14,)" />
10+
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.11.1" />
1211
<PackageReference Include="Shouldly" Version="4.2.1" />
13-
<PackageReference Include="xunit" Version="2.6.6" />
14-
<PackageReference Include="xunit.runner.visualstudio" Version="2.5.6">
12+
<PackageReference Include="xunit" Version="2.9.2" />
13+
<PackageReference Include="xunit.runner.visualstudio" Version="2.8.2">
1514
<PrivateAssets>all</PrivateAssets>
1615
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
1716
</PackageReference>
18-
<PackageReference Include="coverlet.collector" Version="6.0.0">
17+
<PackageReference Include="coverlet.collector" Version="6.0.4">
1918
<PrivateAssets>all</PrivateAssets>
2019
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
2120
</PackageReference>

‎src/AutoMapper.Extensions.EnumMapping/AutoMapper.Extensions.EnumMapping.csproj

+3-3
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<Company>Henk Kin</Company>
66
<Summary>Convention-based enum value mapping extension for AutoMapper.</Summary>
77
<Description>Convention-based enum value mapping extension for AutoMapper.</Description>
8-
<TargetFramework>net6.0</TargetFramework>
8+
<TargetFramework>net8.0</TargetFramework>
99
<GenerateDocumentationFile>true</GenerateDocumentationFile>
1010
<AssemblyName>AutoMapper.Extensions.EnumMapping</AssemblyName>
1111
<AssemblyOriginatorKeyFile>..\..\AutoMapper.snk</AssemblyOriginatorKeyFile>
@@ -26,12 +26,12 @@
2626
</PropertyGroup>
2727

2828
<ItemGroup>
29-
<PackageReference Include="AutoMapper" Version="[12.0, 14.0)" />
29+
<PackageReference Include="AutoMapper" Version="[14,15)" />
3030
</ItemGroup>
3131

3232
<ItemGroup>
3333
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="8.0.0" PrivateAssets="All" />
34-
<PackageReference Include="MinVer" Version="4.3.0" PrivateAssets="All" />
34+
<PackageReference Include="MinVer" Version="6.0.0" PrivateAssets="All" />
3535
</ItemGroup>
3636

3737
<ItemGroup>

0 commit comments

Comments
 (0)
Please sign in to comment.