- Die Schnittstelle `IEmailOutRepository` wurde durch Entfernen unnötiger Klammern gestrafft. - Aktualisierte `IEmailOutService` Schnittstelle, um generische Parameter zu korrigieren und Redundanz zu entfernen. - Aktualisierte Paketversionen in Projektdateien auf `DigitalData.Core.Abstractions` (3.4.0) und `DigitalData.Core.Application` (3.2.0). - Verbesserte `CreateWithTemplateAsync` Methoden in `EmailOutService.cs` für bessere Implementierung. - Das Testprojekt wurde aktualisiert, um die neue Paketversion für `DigitalData.Core.Application` zu berücksichtigen.
42 lines
1.9 KiB
XML
42 lines
1.9 KiB
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<TargetFramework>net7.0</TargetFramework>
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
<Nullable>enable</Nullable>
|
|
<PackageId>DigitalData.EmailProfilerDispatcher</PackageId>
|
|
<Version>2.0.0</Version>
|
|
<Company>Digital Data GmbH</Company>
|
|
<Copyright>Copyright 2024</Copyright>
|
|
<PackageIcon>Assets\icon.png</PackageIcon>
|
|
<PackageTags>digital data email dispatcher</PackageTags>
|
|
<Description>DigitalData.EmailProfilerDispatcher enables adding data to the Email Profiler's SQL tables for systematic and batch email dispatching. It also supports dynamic and automatic template filling using attributes, allowing object property values to populate email templates.</Description>
|
|
<Authors>Digital Data GmbH</Authors>
|
|
<RepositoryUrl>http://git.dd:3000/AppStd/EmailProfilerDispatcher.git</RepositoryUrl>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="AutoMapper" Version="13.0.1" />
|
|
<PackageReference Include="DigitalData.Core.Abstractions" Version="3.4.0" />
|
|
<PackageReference Include="DigitalData.Core.Application" Version="3.2.0" />
|
|
<PackageReference Include="DigitalData.Core.Infrastructure" Version="2.0.0" />
|
|
<PackageReference Include="Microsoft.EntityFrameworkCore" Version="7.0.16" />
|
|
<PackageReference Include="Microsoft.EntityFrameworkCore.Relational" Version="7.0.16" />
|
|
<PackageReference Include="Microsoft.Extensions.Localization" Version="7.0.19" />
|
|
<PackageReference Include="Microsoft.Extensions.Localization.Abstractions" Version="7.0.19" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\DigitalData.EmailProfilerDispatcher.Abstraction\DigitalData.EmailProfilerDispatcher.Abstraction.csproj" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<None Update="Assets\icon.png">
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|
<Pack>True</Pack>
|
|
<PackagePath>\</PackagePath>
|
|
</None>
|
|
</ItemGroup>
|
|
|
|
</Project>
|