Skip to content

Releases: tavobarrientos/TacoMapper

TacoMapper v1.0.1

23 Jun 23:00

Choose a tag to compare

🌮 TacoMapper v1.0.1

🚀 What's New in v1.0.1

This release includes the following changes:

📝 Commits

  • Add Release .nupkg to Github Release (4697fa3)

📊 Repository Stats

  • Release Date: 2025-06-23 22:59:42 UTC
  • Version Type: patch release
  • Commits Included: 1 commits
  • Previous Version: 1.0.0

📊 Quality Metrics

  • ✅ All tests passing
  • 📈 Code coverage ≥ 70%
  • 🔍 Static analysis passed
  • 🏗️ Built with .NET 8.0

📦 Installation

📦 Direct Download

You can download the NuGet package directly from this release:

NuGet Package Manager

dotnet add package TacoMapper --version 1.0.1

Package Manager Console (Visual Studio)

Install-Package TacoMapper -Version 1.0.1

PackageReference (in .csproj)

<PackageReference Include="TacoMapper" Version="1.0.1" />

🌮 Quick Start

using TacoMapper;

var mapper = new ObjectMapper();

// Basic mapping
var result = mapper.Map<Source, Target>(source)
    .To(target => target.Name, source => source.FullName)
    .Execute();

// Conditional mapping
var result = mapper.Map<Source, Target>(source)
    .To(target => target.Status, source => source.IsActive ? "Active" : "Inactive")
    .When(source => source.IsValid)
    .Execute();

📚 Documentation

🤝 Contributing

We welcome contributions! Please see our Contributing Guidelines for details.


Happy Mapping! 🌮✨