Skip to content

Commit

Permalink
Updated to Automapper 13.0 (#25)
Browse files Browse the repository at this point in the history
* Updated to Automapper 13.0
Changed CI/CD pipeline to net8.0 for tests
Changed target framework of library to net6.0
Updated other nuget packages to latest stable version
Updated documentation

* Removed explicit .net version from ci/cd pipelines

---------

Co-authored-by: Henk Kin <HenkK@4dotnet.nl>
  • Loading branch information
HenkKin and Henk Kin committed Feb 6, 2024
1 parent 5eb10e2 commit 6a5c265
Show file tree
Hide file tree
Showing 6 changed files with 13 additions and 22 deletions.
4 changes: 0 additions & 4 deletions .github/workflows/ci.yml
Expand Up @@ -17,10 +17,6 @@ jobs:
uses: actions/checkout@v2
with:
fetch-depth: 0
- name: Use .NET 6
uses: actions/setup-dotnet@v1
with:
dotnet-version: '6.0.x'
- name: Build and Test
run: ./Build.ps1
shell: pwsh
Expand Down
4 changes: 0 additions & 4 deletions .github/workflows/release.yml
Expand Up @@ -14,10 +14,6 @@ jobs:
uses: actions/checkout@v2
with:
fetch-depth: 0
- name: Use .NET 6
uses: actions/setup-dotnet@v1
with:
dotnet-version: '6.0.x'
- name: Build and Test
run: ./Build.ps1
shell: pwsh
Expand Down
4 changes: 2 additions & 2 deletions AutoMapper.Extensions.EnumMapping.sln
@@ -1,7 +1,7 @@

Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio Version 16
VisualStudioVersion = 16.0.29519.87
# Visual Studio Version 17
VisualStudioVersion = 17.8.34511.84
MinimumVisualStudioVersion = 10.0.40219.1
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "AutoMapper.Extensions.EnumMapping", "src\AutoMapper.Extensions.EnumMapping\AutoMapper.Extensions.EnumMapping.csproj", "{9D0DA173-4F23-4A38-B636-DD5D097CFE35}"
EndProject
Expand Down
2 changes: 0 additions & 2 deletions README.md
Expand Up @@ -11,8 +11,6 @@ The AutoMapper.Extensions.EnumMapping library gives you control about your enum

This library supports mapping enums values like properties.

This library is Cross-platform, supporting `netstandard2.0` and `net461`.

### Dependencies

- [AutoMapper](https://www.nuget.org/packages/AutoMapper/) (from version 10.0)
Expand Down
@@ -1,20 +1,21 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net6.0</TargetFramework>
<TargetFramework>net8.0</TargetFramework>
<IsPackable>false</IsPackable>
<AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects>
</PropertyGroup>

<ItemGroup>
<PackageReference Include="AutoMapper" Version="[13,)" />
<PackageReference Include="Microsoft.CSharp" Version="4.7.0" />
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="16.2.0" />
<PackageReference Include="Shouldly" Version="3.0.2" />
<PackageReference Include="xunit" Version="2.4.1" />
<PackageReference Include="xunit.runner.visualstudio" Version="2.4.1">
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.8.0" />
<PackageReference Include="Shouldly" Version="4.2.1" />
<PackageReference Include="xunit" Version="2.6.6" />
<PackageReference Include="xunit.runner.visualstudio" Version="2.5.6">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
<PackageReference Include="coverlet.collector" Version="1.1.0">
<PackageReference Include="coverlet.collector" Version="6.0.0">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
Expand Down
Expand Up @@ -5,7 +5,7 @@
<Company>Henk Kin</Company>
<Summary>Convention-based enum value mapping extension for AutoMapper.</Summary>
<Description>Convention-based enum value mapping extension for AutoMapper.</Description>
<TargetFramework>netstandard2.1</TargetFramework>
<TargetFramework>net6.0</TargetFramework>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
<AssemblyName>AutoMapper.Extensions.EnumMapping</AssemblyName>
<AssemblyOriginatorKeyFile>..\..\AutoMapper.snk</AssemblyOriginatorKeyFile>
Expand All @@ -26,12 +26,12 @@
</PropertyGroup>

<ItemGroup>
<PackageReference Include="AutoMapper" Version="[12.0, 13.0)" />
<PackageReference Include="AutoMapper" Version="[12.0, 14.0)" />
</ItemGroup>

<ItemGroup>
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="1.0.0" PrivateAssets="All" />
<PackageReference Include="MinVer" Version="2.3.0" PrivateAssets="All" />
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="8.0.0" PrivateAssets="All" />
<PackageReference Include="MinVer" Version="4.3.0" PrivateAssets="All" />
</ItemGroup>

<ItemGroup>
Expand Down

0 comments on commit 6a5c265

Please sign in to comment.