- Deleted the binary file `icon.png`. - Updated `PackageIcon` paths in project files to remove dependency on `Assets\icon.png`. - Added a new `None` item in `DigitalData.EmailProfilerDispatcher.Abstraction.csproj` to include `..\Assets\icon.png`. - Created a new project section for "Solution Items" in `DigitalData.EmailProfilerDispatcher.sln` to include `icon.png`. - Removed the previous `ItemGroup` for `None` that updated `Assets\icon.png`. - The binary file `icon.png` was replaced with a new version.
43 lines
2.0 KiB
XML
43 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>3.0.0</Version>
|
|
<Company>Digital Data GmbH</Company>
|
|
<Copyright>Copyright 2024</Copyright>
|
|
<PackageIcon>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>
|
|
<AssemblyVersion>3.0.0</AssemblyVersion>
|
|
<FileVersion>3.0.0</FileVersion>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<None Include="..\Assets\icon.png">
|
|
<Pack>True</Pack>
|
|
<PackagePath>\</PackagePath>
|
|
</None>
|
|
</ItemGroup>
|
|
|
|
<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>
|
|
|
|
</Project>
|