- 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.
32 lines
1.2 KiB
XML
32 lines
1.2 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.Abstraction</PackageId>
|
|
<Authors>Digital Data GmbH</Authors>
|
|
<Company>Digital Data GmbH</Company>
|
|
<Description>This package provides the necessary abstractions and interfaces for the DigitalData.EmailProfilerDispatcher library, facilitating a clean and decoupled architecture.</Description>
|
|
<Copyright>Copyright 2024</Copyright>
|
|
<PackageIcon>icon.png</PackageIcon>
|
|
<RepositoryUrl>http://git.dd:3000/AppStd/EmailProfilerDispatcher.git</RepositoryUrl>
|
|
<PackageTags>digital data email dispatcher abstraction</PackageTags>
|
|
<Version>3.0.0</Version>
|
|
<FileVersion>3.0.0</FileVersion>
|
|
<AssemblyVersion>3.0.0</AssemblyVersion>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<None Include="..\Assets\icon.png">
|
|
<Pack>True</Pack>
|
|
<PackagePath>\</PackagePath>
|
|
</None>
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="DigitalData.Core.Abstractions" Version="3.4.0" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|