Aktualisierte das Zielframework von `net7.0` auf mehrere Frameworks (`net7.0;net8.0;net9.0`). Diese Änderung verbessert die Kompatibilität und macht die Projekte zukunftssicher für die .NET-Versionen 7.0, 8.0 und 9.0.
42 lines
2.0 KiB
XML
42 lines
2.0 KiB
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<TargetFrameworks>net7.0;net8.0;net9.0</TargetFrameworks>
|
|
<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>
|